diff options
104 files changed, 9079 insertions, 0 deletions
diff --git a/games/childsplay/Makefile b/games/childsplay/Makefile new file mode 100644 index 000000000..cb746b2b3 --- /dev/null +++ b/games/childsplay/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: pyassetml +# Date created: 6 July 2004 +# Whom: bruno +# +# $FreeBSD$ +# + +PORTNAME= childsplay +PORTVERSION= 0.80.2 +PORTREVISION= 4 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= childsplay +EXTRACT_SUFX= .tgz + +MAINTAINER= bruno@tinkerbox.org +COMMENT= Educative games for children + +BUILD_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/pygame/pygame.h:${PORTSDIR}/devel/py-game +RUN_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/pygame/pygame.h:${PORTSDIR}/devel/py-game +LIB_DEPENDS= assetml.0:${PORTSDIR}/devel/libassetml + +USE_PYTHON= yes +NO_BUILD= yes + +# avoid asking for translation to your local language on install +MAKE_ENV= LANG=C + +MAN6= childsplay.6 letters-trans.6 +MANCOMPRESSED= yes + +post-patch: + @${REINPLACE_CMD} -e "s@PREFIX=/usr/local@PREFIX=${PREFIX}@g " ${WRKSRC}/INSTALL.sh + @${REINPLACE_CMD} -e "s@ASSETMLROOT = '/usr/local@ASSETMLROOT= '${PREFIX}@g" ${WRKSRC}/pyassetml.py + @${REINPLACE_CMD} -e "s@PREFIX=/usr/local@PREFIX=${PREFIX}@g" ${WRKSRC}/cleanup.sh + @${REINPLACE_CMD} -e "s@/usr/local/lib/games@${PREFIX}@g" ${WRKSRC}/childsplay.sh + +post-build: + @${FIND} ${WRKSRC} -name *.orig -delete + +.include <bsd.port.mk> diff --git a/games/childsplay/distinfo b/games/childsplay/distinfo new file mode 100644 index 000000000..4e114f923 --- /dev/null +++ b/games/childsplay/distinfo @@ -0,0 +1,3 @@ +MD5 (childsplay-0.80.2.tgz) = e3719de335da8260756d8f713560c6ac +SHA256 (childsplay-0.80.2.tgz) = b8d240b8527327adbdeb8c9d2b7e5ecb0ee0461f02905b2d724a39af1e59ead2 +SIZE (childsplay-0.80.2.tgz) = 1169198 diff --git a/games/childsplay/files/patch-INSTALL.sh b/games/childsplay/files/patch-INSTALL.sh new file mode 100644 index 000000000..53330f1d1 --- /dev/null +++ b/games/childsplay/files/patch-INSTALL.sh @@ -0,0 +1,97 @@ +--- INSTALL.sh.orig Wed Apr 20 10:57:03 2005 ++++ INSTALL.sh Wed Apr 20 11:02:16 2005 +@@ -1,5 +1,5 @@ +-#!/bin/bash ++#!/bin/sh + # install childsplay. + # Be aware that childsplay probably won't work when you edit this file :-( + # As of 11/2004 childsplay will be converted to follow the File System + # Hierarchy (FSH). +@@ -21,16 +21,15 @@ + PYTHON=`which python` + + EXECDIR=$PREFIX/bin + LOCALEDIR=$PREFIX/share/locale +-ASSETMLDIR=/usr/share/assetml ++ASSETMLDIR=$PREFIX/share/assetml + SCOREDIR=/var/games + SCOREFILE=$SCOREDIR/childsplay.score + DOCDIR=$PREFIX/share/doc/childsplay + MANDIR=$PREFIX/man/man6 +-CPDIR=$PREFIX/lib/games/childsplay ++CPDIR=$PREFIX/childsplay + SHAREDIR=$PREFIX/share/childsplay +-BINDIR=$PREFIX/games + LIBDIR=$CPDIR/lib + MODULESDIR=$LIBDIR + SHARELIBDATADIR=$SHAREDIR/lib + SHAREDATADIR=$SHAREDIR/Data +@@ -38,10 +37,8 @@ + + HOME_DIR_NAME=.childsplay + CHILDSPLAYRC=childsplayrc + +-OLDCPDIR=$PREFIX/games/childsplay +- + echo "Making directorys" + mkdir -vp $CPDIR + mkdir -vp $CPDIR/lib + mkdir -vp $DOCDIR +@@ -51,9 +48,8 @@ + mkdir -vp $MANDIR + mkdir -vp $SHAREDIR + mkdir -vp $SHAREDATADIR + mkdir -vp $SHARELIBDATADIR +-mkdir -vp $BINDIR + mkdir -vp $EXECDIR + + set -e + +@@ -63,13 +59,8 @@ + echo " You must be root to install the plugins" + echo " exit" + exit 1 + fi +-echo " Looking for obsolete childsplay files in $OLDCPDIR" +-if [ -e $OLDCPDIR ] && [ -d $OLDCPDIR ] +-then rm -fr $OLDCPDIR +- echo " Old files removed" +-fi + + echo -e "\n>>>>>>>>>>> Install childsplay >>>>>>>>>>>>>>>>>>>>" + echo " Installing in $PREFIX" + +@@ -113,22 +105,14 @@ + echo " Copy docs" + cp -rf $CWD/doc/* $DOCDIR/ + + echo " Copy executable and setting permissions." +-cp -f $CWD/childsplay.sh $BINDIR/childsplay + cp -f $CWD/childsplay.sh $EXECDIR/childsplay +-chmod +x $BINDIR/childsplay + chmod +x $EXECDIR/childsplay + + chmod +x $CPDIR/childsplay.py + chmod +x $CPDIR/letters-trans.py + +-#echo " Looking for the old executable, if any" +-#if [ -e /usr/local/bin/childsplay ] +-#then rm -f /usr/local/bin/childsplay +-# echo "found and removed" +-#fi +- + echo " Setting the base path in childsplay to $PREFIX" + echo "## Automated file please do not edit" > $CPDIR/BASEPATH.py + echo "BASEPATH=\"$PREFIX\"" >> $CPDIR/BASEPATH.py + echo "EXECDIR=\"$EXECDIR\"" >> $CPDIR/BASEPATH.py +@@ -157,9 +141,9 @@ + echo "" + echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" + echo " One thing left todo..." + echo " Translating words" +-$PYTHON $CPDIR/letters-trans.py $ASSETMLDIR ++echo " to translate words run: $PYTHON $CPDIR/letters-trans.py $ASSETMLDIR" + echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" + echo " Be sure to read the README-MEMORY file on how you can" + echo " use your own pictures in the memory game." + echo "" diff --git a/games/childsplay/files/patch-Makefile b/games/childsplay/files/patch-Makefile new file mode 100644 index 000000000..ec4ca1856 --- /dev/null +++ b/games/childsplay/files/patch-Makefile @@ -0,0 +1,10 @@ +--- Makefile.orig Sat May 7 23:13:35 2005 ++++ Makefile Sat May 7 23:15:11 2005 +@@ -0,0 +1,7 @@ ++PYTHON = /usr/bin/env python ++ ++install: ++ ./INSTALL.sh ++ @echo "Compiling modules to bytecode..." ++ @$(PYTHON) install.py --compile ${PREFIX}/childsplay ++ @$(PYTHON) install.py --compile ${PREFIX}/childsplay/lib diff --git a/games/childsplay/files/patch-pyassetmlSDL.py b/games/childsplay/files/patch-pyassetmlSDL.py new file mode 100644 index 000000000..1c446f853 --- /dev/null +++ b/games/childsplay/files/patch-pyassetmlSDL.py @@ -0,0 +1,13 @@ +--- pyassetmlSDL.py.orig Wed Apr 20 11:41:47 2005 ++++ pyassetmlSDL.py Wed Apr 20 11:42:32 2005 +@@ -76,8 +76,10 @@ + pygame.mixer.music.load(self.s) + pygame.mixer.music.play(loop) + def stop(self): + pygame.mixer.music.stop() ++ def queue(self): ++ pygame.mixer.music.queue(self.s) + + class NoneSound: + def play(self,loop=0): + pass diff --git a/games/childsplay/pkg-descr b/games/childsplay/pkg-descr new file mode 100644 index 000000000..25c49954f --- /dev/null +++ b/games/childsplay/pkg-descr @@ -0,0 +1,8 @@ +Childsplay is a 'suite' of educational games for young children, like gcompris, +but without the overkill of GNOME environment. Also the use of the SDL +libraries makes smooth animation and the playing of sound very easy. +Childsplay uses a plugin system for the games, so you might want to check the +childsplay-plugins page. (There are two built-in games; Memory and a typing +game) + +WWW: http://childsplay.sourceforge.net diff --git a/games/childsplay/pkg-plist b/games/childsplay/pkg-plist new file mode 100644 index 000000000..a1e1ba07f --- /dev/null +++ b/games/childsplay/pkg-plist @@ -0,0 +1,169 @@ +bin/childsplay +childsplay/lib/letters.py +childsplay/lib/letters.pyc +childsplay/lib/memory.py +childsplay/lib/memory.pyc +childsplay/CPConstants.py +childsplay/utils.py +childsplay/splash.py +childsplay/pyassetmlcreator.py +childsplay/pyassetmlSDL.py +childsplay/pyassetml.py +childsplay/out.py +childsplay/letters-trans.py +childsplay/install.py +childsplay/childsplay.py +childsplay/Timer.py +childsplay/SpriteUtils.py +childsplay/ConfParser.py +childsplay/CPMenu.py +childsplay/version.py +childsplay/CPConstants.pyc +childsplay/utils.pyc +childsplay/splash.pyc +childsplay/pyassetmlcreator.pyc +childsplay/pyassetmlSDL.pyc +childsplay/out.pyc +childsplay/pyassetml.pyc +childsplay/letters-trans.pyc +childsplay/install.pyc +childsplay/childsplay.pyc +childsplay/Timer.pyc +childsplay/SpriteUtils.pyc +childsplay/ConfParser.pyc +childsplay/CPMenu.pyc +childsplay/version.pyc +childsplay/BASEPATH.py +childsplay/BASEPATH.pyc +share/doc/childsplay/po/fr/childsplay.po +share/doc/childsplay/po/de/childsplay.po +share/doc/childsplay/po/de/new_de.po +share/doc/childsplay/po/de/.#childsplay.po.1.2 +share/doc/childsplay/po/es/childsplay.po +share/doc/childsplay/po/es/new_es.po +share/doc/childsplay/po/wordlist/words-de.gz +share/doc/childsplay/po/wordlist/words-en.gz +share/doc/childsplay/po/wordlist/words-fr.gz +share/doc/childsplay/po/wordlist/words-nl.gz +share/doc/childsplay/po/wordlist/README.gz +share/doc/childsplay/po/wordlist/words-esp.gz +share/doc/childsplay/po/da/childsplay.po +share/doc/childsplay/po/da/new_da.po +share/doc/childsplay/po/nl/childsplay.po +share/doc/childsplay/po/tr/childsplay.po +share/doc/childsplay/po/tr/new_tr.po +share/doc/childsplay/po/it/childsplay.po +share/doc/childsplay/po/childsplay_0.72.pot +share/doc/childsplay/copyright +share/doc/childsplay/README.rc-files +share/doc/childsplay/README.develop +share/doc/childsplay/GPL-2 +share/doc/childsplay/Changelog +share/doc/childsplay/README.games-module +share/locale/da/LC_MESSAGES/childsplay.mo +share/locale/de/LC_MESSAGES/childsplay.mo +share/locale/es/LC_MESSAGES/childsplay.mo +share/locale/fr/LC_MESSAGES/childsplay.mo +share/locale/it/LC_MESSAGES/childsplay.mo +share/locale/nl/LC_MESSAGES/childsplay.mo +share/assetml/childsplay/childsplay-images/po/Translation.raw +share/assetml/childsplay/childsplay-images/bluebold.ttf +share/assetml/childsplay/childsplay-images/OK_but.png +share/assetml/childsplay/childsplay-images/question1.png +share/assetml/childsplay/childsplay-images/bullpen3.ttf +share/assetml/childsplay/childsplay-images/firework1.png +share/assetml/childsplay/childsplay-images/firework2.png +share/assetml/childsplay/childsplay-images/chpl-icon-48-flat.png +share/assetml/childsplay/childsplay-images/cowsplash.png +share/assetml/childsplay/childsplay-images/blue.jpg +share/assetml/childsplay/childsplay-images/tux.png +share/assetml/childsplay/childsplay-images/pointer.png +share/assetml/childsplay/childsplay-images/arrow.png +share/assetml/childsplay/childsplay-images/bluehigh.ttf +share/assetml/childsplay/childsplay-images/cowsplash-load.png +share/assetml/childsplay/childsplay-images/childsplay-images.assetml +share/assetml/childsplay/childsplay-images/land.png +share/assetml/childsplay/childsplay-images/MORE_but.png +share/assetml/childsplay/childsplay-images/balloonsl.png +share/assetml/childsplay/childsplay-images/balloonsr.png +share/assetml/childsplay/childsplay-images/stop.png +share/assetml/childsplay/childsplay-images/hscore.png +share/assetml/childsplay/childsplay-images/chpl-icon-48.png +share/assetml/childsplay/childsplay-images/chpl-icon-48.xpm +share/assetml/childsplay/memory-136x136/po/es.po +share/assetml/childsplay/memory-136x136/po/fr.po +share/assetml/childsplay/memory-136x136/po/nl.po +share/assetml/childsplay/memory-136x136/po/memory-136x136.pot +share/assetml/childsplay/memory-136x136/tree.png +share/assetml/childsplay/memory-136x136/plane.png +share/assetml/childsplay/memory-136x136/apple.png +share/assetml/childsplay/memory-136x136/bread.png +share/assetml/childsplay/memory-136x136/dog.png +share/assetml/childsplay/memory-136x136/bear.png +share/assetml/childsplay/memory-136x136/fish.png +share/assetml/childsplay/memory-136x136/monkey.png +share/assetml/childsplay/memory-136x136/boat.png +share/assetml/childsplay/memory-136x136/memory-136x136.assetml +share/assetml/childsplay/memory-136x136/car.png +share/assetml/childsplay/memory-136x136/grapes.png +share/assetml/childsplay/memory-136x136/lion.png +share/assetml/childsplay/childsplay-sounds/po/nl.po +share/assetml/childsplay/childsplay-sounds/po/Translation.raw +share/assetml/childsplay/childsplay-sounds/bummer.wav +share/assetml/childsplay/childsplay-sounds/childsplay-sounds.assetml +share/assetml/childsplay/childsplay-sounds/level_clear.wav +share/assetml/childsplay/childsplay-sounds/rocket.wav +share/assetml/childsplay/childsplay-sounds/wahoo.wav +share/assetml/childsplay/childsplay-sounds/cows.ogg +share/assetml/childsplay/childsplay-sounds/Winner2.ogg +share/assetml/childsplay/childsplay-sounds/music1.ogg +share/assetml/childsplay/childsplay-sounds/dealcard1.wav +share/assetml/childsplay/childsplay-sounds/boom.wav +share/childsplay/Data/bluebold.ttf +share/childsplay/Data/bluehigh.ttf +share/childsplay/Data/boom.wav +share/childsplay/Data/bullpen3.ttf +share/childsplay/Data/bummer.wav +share/childsplay/Data/childsplay.ico +share/childsplay/Data/childsplay.score +share/childsplay/Data/chpl-icon-48-flat.png +share/childsplay/Data/chpl-icon-48.png +share/childsplay/Data/chpl-icon-48.xpm +share/childsplay/Data/cows.ogg +share/childsplay/Data/cowsplash-load.png +share/childsplay/Data/cowsplash.png +share/childsplay/Data/pointer_mask.xbm +share/childsplay/Data/wahoo.wav +share/childsplay/Data/icons/letters.icon.png +share/childsplay/Data/icons/memory.icon.png +share/childsplay/Data/childsplay.score.org +share/childsplay/lib/ConfigData/childsplayrc +share/childsplay/lib/MemoryData/cardfront.png +share/childsplay/lib/MemoryData/cardback.png +@dirrm childsplay/lib +@dirrm childsplay +@dirrm share/doc/childsplay/po/fr +@dirrm share/doc/childsplay/po/de +@dirrm share/doc/childsplay/po/es +@dirrm share/doc/childsplay/po/wordlist +@dirrm share/doc/childsplay/po/da +@dirrm share/doc/childsplay/po/nl +@dirrm share/doc/childsplay/po/tr +@dirrm share/doc/childsplay/po/it +@dirrm share/doc/childsplay/po +@dirrm share/doc/childsplay +@dirrm share/assetml/childsplay/childsplay-images/po +@dirrm share/assetml/childsplay/childsplay-images +@dirrm share/assetml/childsplay/memory-136x136/po +@dirrm share/assetml/childsplay/memory-136x136 +@dirrm share/assetml/childsplay/childsplay-sounds/po +@dirrm share/assetml/childsplay/childsplay-sounds +@dirrm share/assetml/childsplay +@dirrm share/childsplay/Data/icons +@dirrm share/childsplay/Data +@dirrm share/childsplay/lib/ConfigData +@dirrm share/childsplay/lib/MemoryData +@dirrm share/childsplay/lib +@dirrm share/childsplay +@cwd / +var/games/childsplay.score diff --git a/games/childsplay_plugins/Makefile b/games/childsplay_plugins/Makefile new file mode 100644 index 000000000..502705a18 --- /dev/null +++ b/games/childsplay_plugins/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: childsplay_plugins +# Date created: 6 July 2004 +# Whom: bruno +# +# $FreeBSD$ +# + +PORTNAME= childsplay_plugins +PORTVERSION= 0.80.1.1 +PORTREVISION= 4 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= childsplay +EXTRACT_SUFX= .tgz + +MAINTAINER= bruno@tinkerbox.org +COMMENT= Educative games for children + +BUILD_DEPENDS= childsplay:${PORTSDIR}/games/childsplay +RUN_DEPENDS= childsplay:${PORTSDIR}/games/childsplay + +USE_PYTHON= yes + +post-patch: + @${REINPLACE_CMD} -e "s@PREFIX=/usr/local@PREFIX=${PREFIX}@g " ${WRKSRC}/install.sh + +.include <bsd.port.mk> diff --git a/games/childsplay_plugins/distinfo b/games/childsplay_plugins/distinfo new file mode 100644 index 000000000..7ed3f343a --- /dev/null +++ b/games/childsplay_plugins/distinfo @@ -0,0 +1,3 @@ +MD5 (childsplay_plugins-0.80.1.1.tgz) = 3591a4f6945dae0d1493778a15fa2321 +SHA256 (childsplay_plugins-0.80.1.1.tgz) = 35abe0fac3bd35b13b251806e29028740e8242cfe870ab22a6fd617c0c726df2 +SIZE (childsplay_plugins-0.80.1.1.tgz) = 3352850 diff --git a/games/childsplay_plugins/files/patch-Makefile b/games/childsplay_plugins/files/patch-Makefile new file mode 100644 index 000000000..e02280ccb --- /dev/null +++ b/games/childsplay_plugins/files/patch-Makefile @@ -0,0 +1,12 @@ +--- Makefile.orig Sat May 7 23:03:39 2005 ++++ Makefile Sat May 7 23:04:02 2005 +@@ -0,0 +1,9 @@ ++PYTHON = /usr/bin/env python ++CPDIR=${LOCALBASE}/childsplay ++ ++all: ++ echo "Compiling modules to bytecode..." ++ $(PYTHON) $(CPDIR)/install.py --compile ./lib ++ ++install: ++ ./install.sh diff --git a/games/childsplay_plugins/files/patch-install.sh b/games/childsplay_plugins/files/patch-install.sh new file mode 100644 index 000000000..a2c725390 --- /dev/null +++ b/games/childsplay_plugins/files/patch-install.sh @@ -0,0 +1,66 @@ +diff -U 4 -r -N ./install.sh.orig ./install.sh +--- ./install.sh.orig Fri Mar 18 09:51:09 2005 ++++ ./install.sh Tue Mar 22 18:33:38 2005 +@@ -1,5 +1,5 @@ +-#!/bin/bash ++#!/bin/sh + # install childsplay. + # Be aware that childsplay probably won't work when you edit this file :-( + # As of 11/2004 childsplay will be converted to follow the File System + # Hierarchy (FSH). +@@ -18,16 +18,16 @@ + then PREFIX=$1 + fi + + LOCALEDIR=$PREFIX/share/locale +-ASSETMLDIR=/usr/share/assetml ++ASSETMLDIR=$PREFIX/share/assetml + PYTHON=`which python` + SCOREDIR=/var/games + DOCDIR=$PREFIX/share/doc/childsplay + MANDIR=$PREFIX/man/man6 +-CPDIR=$PREFIX/lib/games/childsplay ++CPDIR=$PREFIX/childsplay + SHAREDIR=$PREFIX/share/childsplay +-BINDIR=$PREFIX/games ++BINDIR=$PREFIX/bin + SHARELIBDATADIR=$SHAREDIR/lib + SHAREDATADIR=$SHAREDIR/Data + + ################################################## +@@ -66,23 +66,8 @@ + fi + + set -e + +-echo -e "\n The path to install the plugins in is $CPDIR." +-echo " If you have installed childsplay in a other place, you can" +-echo " give the full path to childsplay, otherwise just hit enter" +-echo " Hit enter to install in $CPDIR, or give the full path" +-read path +-if [ $path ];then +- if [ -e $path/install.py ];then +- CPDIR=path +- else +- echo "*********** WARNING *************" +- echo " $path does not exists or is not the childsplay directory" +- echo " exit" +- exit 1 +- fi +-fi + echo " Installing in $CPDIR" + + if [ `expr $VERSION \< $DEPEN` -eq 1 ] + then +@@ -91,11 +76,8 @@ + echo "exit"; + exit 1 + fi + +- +-echo "Compiling modules to bytecode..." +-$PYTHON $CPDIR/install.py --compile $CWD/lib + + echo " Copy libraries" + for DIR in `ls $CWD/lib` + do diff --git a/games/childsplay_plugins/pkg-descr b/games/childsplay_plugins/pkg-descr new file mode 100644 index 000000000..672059091 --- /dev/null +++ b/games/childsplay_plugins/pkg-descr @@ -0,0 +1,11 @@ +Childsplay is a 'suite' of educational games for young children, like gcompris, +but without the overkill of c/c++ and the gnome environ.:-) Also the use of the +SDL libraries makes smooth animation and the playing of sound very easy. +Childsplay uses a plugin system for the games, so you might want to check the +childsplay-plugins page. (There are two built-in games; Memory and a typing +game) + +Childsplay and the games are GNU-GPL licensed and are tested on GNU/Linux and +the Windows platforms. (and now, FreeBSD) + +WWW: http://childsplay.sourceforge.net diff --git a/games/childsplay_plugins/pkg-plist b/games/childsplay_plugins/pkg-plist new file mode 100644 index 000000000..53c7bcc28 --- /dev/null +++ b/games/childsplay_plugins/pkg-plist @@ -0,0 +1,240 @@ +childsplay/lib/.#numberhunt.py.1.4 +childsplay/lib/billiard.py +childsplay/lib/billiard.pyc +childsplay/lib/fallingletters.py +childsplay/lib/fallingletters.pyc +childsplay/lib/findsound.py +childsplay/lib/findsound.pyc +childsplay/lib/findsound2.py +childsplay/lib/findsound2.pyc +childsplay/lib/in.ps +childsplay/lib/in.ps~ +childsplay/lib/numberhunt.ps +childsplay/lib/numbers.py +childsplay/lib/numbers.pyc +childsplay/lib/out.ps +childsplay/lib/packid.py +childsplay/lib/packid.pyc +childsplay/lib/pong.py +childsplay/lib/pong.pyc +childsplay/lib/soundNpic.py +childsplay/lib/soundNpic.pyc +childsplay/lib/soundmemory.py +childsplay/lib/soundmemory.pyc +share/assetml/childsplay/sounds-misc/po/Translation.raw +share/assetml/childsplay/sounds-misc/catmeow.ogg +share/assetml/childsplay/sounds-misc/cow.ogg +share/assetml/childsplay/sounds-misc/elephant.ogg +share/assetml/childsplay/sounds-misc/frog.ogg +share/assetml/childsplay/sounds-misc/lion.ogg +share/assetml/childsplay/sounds-misc/passby.ogg +share/assetml/childsplay/sounds-misc/phone1.ogg +share/assetml/childsplay/sounds-misc/plane.ogg +share/assetml/childsplay/sounds-misc/police.ogg +share/assetml/childsplay/sounds-misc/rocket.ogg +share/assetml/childsplay/sounds-misc/rooster.ogg +share/assetml/childsplay/sounds-misc/sheep.ogg +share/assetml/childsplay/sounds-misc/slideup.ogg +share/assetml/childsplay/sounds-misc/smackzin.ogg +share/assetml/childsplay/sounds-misc/sneeze3.ogg +share/assetml/childsplay/sounds-misc/sounds-misc.assetml +share/assetml/childsplay/sounds-misc/tomtom.ogg +share/assetml/childsplay/sounds-misc/train.ogg +share/childsplay/Data/icons/billiard.icon.png +share/childsplay/Data/icons/soundNpic.icon.png +share/childsplay/Data/icons/pong.icon.png +share/childsplay/Data/icons/packid.icon.png +share/childsplay/Data/icons/numbers.icon.png +share/childsplay/Data/icons/findsound2.icon.png +share/childsplay/Data/icons/findsound.icon.png +share/childsplay/Data/icons/fallingletters.icon.png +share/childsplay/Data/icons/soundmemory.icon.png +share/childsplay/Data/AlphabetSounds/en/z.ogg +share/childsplay/Data/AlphabetSounds/en/10.ogg +share/childsplay/Data/AlphabetSounds/en/11.ogg +share/childsplay/Data/AlphabetSounds/en/12.ogg +share/childsplay/Data/AlphabetSounds/en/13.ogg +share/childsplay/Data/AlphabetSounds/en/14.ogg +share/childsplay/Data/AlphabetSounds/en/15.ogg +share/childsplay/Data/AlphabetSounds/en/16.ogg +share/childsplay/Data/AlphabetSounds/en/17.ogg +share/childsplay/Data/AlphabetSounds/en/18.ogg +share/childsplay/Data/AlphabetSounds/en/19.ogg +share/childsplay/Data/AlphabetSounds/en/2.ogg +share/childsplay/Data/AlphabetSounds/en/20.ogg +share/childsplay/Data/AlphabetSounds/en/3.ogg +share/childsplay/Data/AlphabetSounds/en/4.ogg +share/childsplay/Data/AlphabetSounds/en/5.ogg +share/childsplay/Data/AlphabetSounds/en/6.ogg +share/childsplay/Data/AlphabetSounds/en/7.ogg +share/childsplay/Data/AlphabetSounds/en/8.ogg +share/childsplay/Data/AlphabetSounds/en/9.ogg +share/childsplay/Data/AlphabetSounds/en/a.ogg +share/childsplay/Data/AlphabetSounds/en/b.ogg +share/childsplay/Data/AlphabetSounds/en/c.ogg +share/childsplay/Data/AlphabetSounds/en/d.ogg +share/childsplay/Data/AlphabetSounds/en/e.ogg +share/childsplay/Data/AlphabetSounds/en/f.ogg +share/childsplay/Data/AlphabetSounds/en/g.ogg +share/childsplay/Data/AlphabetSounds/en/h.ogg +share/childsplay/Data/AlphabetSounds/en/i.ogg +share/childsplay/Data/AlphabetSounds/en/j.ogg +share/childsplay/Data/AlphabetSounds/en/k.ogg +share/childsplay/Data/AlphabetSounds/en/l.ogg +share/childsplay/Data/AlphabetSounds/en/m.ogg +share/childsplay/Data/AlphabetSounds/en/n.ogg +share/childsplay/Data/AlphabetSounds/en/o.ogg +share/childsplay/Data/AlphabetSounds/en/p.ogg +share/childsplay/Data/AlphabetSounds/en/q.ogg +share/childsplay/Data/AlphabetSounds/en/r.ogg +share/childsplay/Data/AlphabetSounds/en/s.ogg +share/childsplay/Data/AlphabetSounds/en/t.ogg +share/childsplay/Data/AlphabetSounds/en/u.ogg +share/childsplay/Data/AlphabetSounds/en/v.ogg +share/childsplay/Data/AlphabetSounds/en/w.ogg +share/childsplay/Data/AlphabetSounds/en/x.ogg +share/childsplay/Data/AlphabetSounds/en/y.ogg +share/childsplay/Data/AlphabetSounds/en/1.ogg +share/childsplay/lib/ConfigData/pongrc +share/childsplay/lib/BilliardData/sndh.wav +share/childsplay/lib/BilliardData/ball1.png +share/childsplay/lib/BilliardData/ball2.png +share/childsplay/lib/BilliardData/backgr.png +share/childsplay/lib/BilliardData/sndt.wav +share/childsplay/lib/BilliardData/stick.png +share/childsplay/lib/BilliardData/hole.png +share/childsplay/lib/FallingLettersData/scenery2.png +share/childsplay/lib/FallingLettersData/scenery0.png +share/childsplay/lib/FallingLettersData/scenery1.png +share/childsplay/lib/Findsound2Data/Data/back.jpg +share/childsplay/lib/Findsound2Data/Data/soundbut.png +share/childsplay/lib/FindsoundData/Data/back.jpg +share/childsplay/lib/FindsoundData/Data/soundbut.png +share/childsplay/lib/FindsoundData/Images/level1/elephant.png +share/childsplay/lib/FindsoundData/Images/level1/cow.png +share/childsplay/lib/FindsoundData/Images/level1/frog.png +share/childsplay/lib/FindsoundData/Images/level1/lion.png +share/childsplay/lib/FindsoundData/Images/level1/rooster.png +share/childsplay/lib/FindsoundData/Images/level1/sheep.png +share/childsplay/lib/FindsoundData/Images/level2/boat.png +share/childsplay/lib/FindsoundData/Images/level2/car.png +share/childsplay/lib/FindsoundData/Images/level2/plane.png +share/childsplay/lib/FindsoundData/Images/level2/police.png +share/childsplay/lib/FindsoundData/Images/level2/rocket.png +share/childsplay/lib/FindsoundData/Images/level3/drum.png +share/childsplay/lib/FindsoundData/Images/level3/flute.png +share/childsplay/lib/FindsoundData/Images/level3/guitar.png +share/childsplay/lib/FindsoundData/Images/level3/harp.png +share/childsplay/lib/FindsoundData/Images/level3/piano.png +share/childsplay/lib/FindsoundData/Images/level3/violin.png +share/childsplay/lib/FindsoundData/Sounds/level1/elephant.ogg +share/childsplay/lib/FindsoundData/Sounds/level1/cow.ogg +share/childsplay/lib/FindsoundData/Sounds/level1/frog.ogg +share/childsplay/lib/FindsoundData/Sounds/level1/lion.ogg +share/childsplay/lib/FindsoundData/Sounds/level1/rooster.ogg +share/childsplay/lib/FindsoundData/Sounds/level1/sheep.ogg +share/childsplay/lib/FindsoundData/Sounds/level2/boat.ogg +share/childsplay/lib/FindsoundData/Sounds/level2/car.ogg +share/childsplay/lib/FindsoundData/Sounds/level2/plane.ogg +share/childsplay/lib/FindsoundData/Sounds/level2/police.ogg +share/childsplay/lib/FindsoundData/Sounds/level2/rocket.ogg +share/childsplay/lib/FindsoundData/Sounds/level3/drum.ogg +share/childsplay/lib/FindsoundData/Sounds/level3/flute.ogg +share/childsplay/lib/FindsoundData/Sounds/level3/guitar.ogg +share/childsplay/lib/FindsoundData/Sounds/level3/harp.ogg +share/childsplay/lib/FindsoundData/Sounds/level3/piano.ogg +share/childsplay/lib/FindsoundData/Sounds/level3/violin.ogg +share/childsplay/lib/NumbersData/balloon.png +share/childsplay/lib/NumbersData/shot.wav +share/childsplay/lib/PackidData/words-nl +share/childsplay/lib/PackidData/appel.png +share/childsplay/lib/PackidData/banaan.png +share/childsplay/lib/PackidData/brick.png +share/childsplay/lib/PackidData/camo.png +share/childsplay/lib/PackidData/cherry.gif +share/childsplay/lib/PackidData/citroen.png +share/childsplay/lib/PackidData/eat.wav +share/childsplay/lib/PackidData/exit.png +share/childsplay/lib/PackidData/feelgood.ogg +share/childsplay/lib/PackidData/finlevel.wav +share/childsplay/lib/PackidData/grid0.txt +share/childsplay/lib/PackidData/grid1.txt +share/childsplay/lib/PackidData/grid2.txt +share/childsplay/lib/PackidData/grid3.txt +share/childsplay/lib/PackidData/kers.png +share/childsplay/lib/PackidData/leafs.png +share/childsplay/lib/PackidData/pac1.ogg +share/childsplay/lib/PackidData/pac2.ogg +share/childsplay/lib/PackidData/pac3.ogg +share/childsplay/lib/PackidData/pac4.ogg +share/childsplay/lib/PackidData/pac5.ogg +share/childsplay/lib/PackidData/pac6.ogg +share/childsplay/lib/PackidData/pac_d.png +share/childsplay/lib/PackidData/pac_d_c.png +share/childsplay/lib/PackidData/pac_l.png +share/childsplay/lib/PackidData/pac_l_c.png +share/childsplay/lib/PackidData/pac_r.png +share/childsplay/lib/PackidData/pac_r_c.png +share/childsplay/lib/PackidData/pac_sad.png +share/childsplay/lib/PackidData/pac_smile.png +share/childsplay/lib/PackidData/pac_u.png +share/childsplay/lib/PackidData/pac_u_c.png +share/childsplay/lib/PackidData/peer.png +share/childsplay/lib/PackidData/sea.png +share/childsplay/lib/PackidData/waka.wav +share/childsplay/lib/PackidData/walk.wav +share/childsplay/lib/PackidData/words-de +share/childsplay/lib/PackidData/words-en +share/childsplay/lib/PackidData/words-es +share/childsplay/lib/PackidData/words-fr +share/childsplay/lib/PackidData/aardbei.png +share/childsplay/lib/PongData/arrow_up.png +share/childsplay/lib/PongData/loser.jpg +share/childsplay/lib/PongData/multi_pc.jpg +share/childsplay/lib/PongData/multi_person.jpg +share/childsplay/lib/PongData/pick.wav +share/childsplay/lib/PongData/single.jpg +share/childsplay/lib/PongData/winner.jpg +share/childsplay/lib/PongData/arrow_down.png +share/childsplay/lib/PongData/bump.wav +share/childsplay/lib/PongData/goal.wav +share/childsplay/lib/PongData/winner.ogg +share/childsplay/lib/SoundMemory/but_back.png +share/childsplay/lib/SoundMemory/but_bleu_up.png +share/childsplay/lib/SoundMemory/but_red_down.png +share/childsplay/lib/SoundNpicData/Level1/sheep.png +share/childsplay/lib/SoundNpicData/Level1/cow.ogg +share/childsplay/lib/SoundNpicData/Level1/cow.png +share/childsplay/lib/SoundNpicData/Level1/elephant.png +share/childsplay/lib/SoundNpicData/Level1/frog.ogg +share/childsplay/lib/SoundNpicData/Level1/frog.png +share/childsplay/lib/SoundNpicData/Level1/lion.ogg +share/childsplay/lib/SoundNpicData/Level1/lion.png +share/childsplay/lib/SoundNpicData/Level1/rooster.ogg +share/childsplay/lib/SoundNpicData/Level1/rooster.png +share/childsplay/lib/SoundNpicData/Level1/sheep.ogg +share/childsplay/lib/SoundNpicData/Level1/elephant.ogg +@dirrm share/assetml/childsplay/sounds-misc/po +@dirrm share/assetml/childsplay/sounds-misc +@dirrm share/childsplay/Data/AlphabetSounds/en +@dirrm share/childsplay/Data/AlphabetSounds +@dirrm share/childsplay/lib/BilliardData +@dirrm share/childsplay/lib/FallingLettersData +@dirrm share/childsplay/lib/Findsound2Data/Data +@dirrm share/childsplay/lib/Findsound2Data +@dirrm share/childsplay/lib/FindsoundData/Data +@dirrm share/childsplay/lib/FindsoundData/Images/level1 +@dirrm share/childsplay/lib/FindsoundData/Images/level2 +@dirrm share/childsplay/lib/FindsoundData/Images/level3 +@dirrm share/childsplay/lib/FindsoundData/Images +@dirrm share/childsplay/lib/FindsoundData/Sounds/level1 +@dirrm share/childsplay/lib/FindsoundData/Sounds/level2 +@dirrm share/childsplay/lib/FindsoundData/Sounds/level3 +@dirrm share/childsplay/lib/FindsoundData/Sounds +@dirrm share/childsplay/lib/FindsoundData +@dirrm share/childsplay/lib/NumbersData +@dirrm share/childsplay/lib/PackidData +@dirrm share/childsplay/lib/PongData +@dirrm share/childsplay/lib/SoundMemory +@dirrm share/childsplay/lib/SoundNpicData/Level1 +@dirrm share/childsplay/lib/SoundNpicData diff --git a/games/gdado/Makefile b/games/gdado/Makefile new file mode 100644 index 000000000..2dad2e96e --- /dev/null +++ b/games/gdado/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: gdado +# Date created: 06 May 2007 +# Whom: Anish Mistry <amistry@am-productions.biz> +# +# $FreeBSD$ +# + +PORTNAME= gdado +PORTVERSION= 2.2 +PORTREVISION= 1 +CATEGORIES= games +MASTER_SITES= SF + +MAINTAINER= amistry@am-productions.biz +COMMENT= GTK2 dice roller + +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gtk20 libgnomeui + +post-patch: + @${REINPLACE_CMD} "s|-O2|${CFLAGS}|" ${WRKSRC}/configure + +.include <bsd.port.mk> diff --git a/games/gdado/distinfo b/games/gdado/distinfo new file mode 100644 index 000000000..d6954a10c --- /dev/null +++ b/games/gdado/distinfo @@ -0,0 +1,3 @@ +MD5 (gdado-2.2.tar.gz) = b84114df6ca8b20560524afed0e21b25 +SHA256 (gdado-2.2.tar.gz) = cc272f097832e074804bf405f2c013b4f941ad57f0f5f5ec6c08edecc9ad17fa +SIZE (gdado-2.2.tar.gz) = 285864 diff --git a/games/gdado/files/patch-Makefile.in b/games/gdado/files/patch-Makefile.in new file mode 100644 index 000000000..307549762 --- /dev/null +++ b/games/gdado/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig Sun May 6 17:02:19 2007 ++++ Makefile.in Sun May 6 17:03:38 2007 +@@ -91,7 +91,7 @@ + EXTRA_DIST = autogen.sh gdado.glade gdado.gladep gdado.desktop + + +-gdadomenudir = /usr/share/applications ++gdadomenudir = @prefix@/share/applications + gdadomenu_DATA = gdado.desktop + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/games/gdado/pkg-descr b/games/gdado/pkg-descr new file mode 100644 index 000000000..3f0d06f56 --- /dev/null +++ b/games/gdado/pkg-descr @@ -0,0 +1,3 @@ +A very simple application for rolling dice. Intended for use by roleplayers. + +WWW: http://sourceforge.net/projects/gdado/ diff --git a/games/gdado/pkg-plist b/games/gdado/pkg-plist new file mode 100644 index 000000000..cfe57e661 --- /dev/null +++ b/games/gdado/pkg-plist @@ -0,0 +1,15 @@ +bin/gdado +share/applications/gdado.desktop +share/pixmaps/gdado/dados.xpm +share/pixmaps/gdado/gdado.png +share/pixmaps/gdado/gnome-calc3.xpm +share/pixmaps/gdado/menu_sides_10.xpm +share/pixmaps/gdado/menu_sides_100.xpm +share/pixmaps/gdado/menu_sides_12.xpm +share/pixmaps/gdado/menu_sides_20.xpm +share/pixmaps/gdado/menu_sides_3.xpm +share/pixmaps/gdado/menu_sides_4.xpm +share/pixmaps/gdado/menu_sides_6.xpm +share/pixmaps/gdado/menu_sides_8.xpm +@dirrm share/pixmaps/gdado +@dirrmtry share/applications diff --git a/games/glife/Makefile b/games/glife/Makefile new file mode 100644 index 000000000..46f6c010d --- /dev/null +++ b/games/glife/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: glife +# Date created: 18th May 2000 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= glife +PORTVERSION= 0.2.1 +PORTREVISION= 5 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= gLife-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Conway's Game of Life for GNOME + +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +USE_GNOME= gnomeprefix gnomehack libglade +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ + s|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ + ${WRKSRC}/configure + +.include <bsd.port.mk> diff --git a/games/glife/distinfo b/games/glife/distinfo new file mode 100644 index 000000000..3435bc857 --- /dev/null +++ b/games/glife/distinfo @@ -0,0 +1,3 @@ +MD5 (gLife-0.2.1.tar.gz) = 1176413bec7aad8410f492d8fda43706 +SHA256 (gLife-0.2.1.tar.gz) = 0b226ecf7193b25753b16257871053deac0f536a86b54c80bf235c644c918ec4 +SIZE (gLife-0.2.1.tar.gz) = 246601 diff --git a/games/glife/pkg-descr b/games/glife/pkg-descr new file mode 100644 index 000000000..d6728fc65 --- /dev/null +++ b/games/glife/pkg-descr @@ -0,0 +1,12 @@ +An artificial life implementation using GNOME :) + +It will try to emulate an Artificial Society. It will implement +reproduction, and movement. Movement will be based on the 'vision' +of the animals. In the future there will also be terrain interaction +(consume food, and food 'reproduction rate') - this will also come along +with animal 'metabolism' rates. After this is done, combat and +'culture' factors will be added - Maybe inheritance. + +Among other things :) The aim is to keep everything HIGHLY configurable. + +WWW: http://glife.sourceforge.net/ diff --git a/games/glife/pkg-plist b/games/glife/pkg-plist new file mode 100644 index 000000000..8c569f768 --- /dev/null +++ b/games/glife/pkg-plist @@ -0,0 +1,20 @@ +bin/glife +share/gnome/apps/Games/glife.desktop +share/glife/glife.glade +share/gnome/help/glife/C/appearance.html +share/gnome/help/glife/C/docbook.css +share/gnome/help/glife/C/glife-attributes.html +share/gnome/help/glife/C/glife-bugs.html +share/gnome/help/glife/C/glife-coord-info.html +share/gnome/help/glife/C/glife-credits.html +share/gnome/help/glife/C/glife-intro.html +share/gnome/help/glife/C/glife-menus.html +share/gnome/help/glife/C/glife-preferences.html +share/gnome/help/glife/C/glife-rules.html +share/gnome/help/glife/C/index.html +share/gnome/help/glife/C/ln18.html +share/gnome/help/glife/C/topic.dat +share/locale/ru/LC_MESSAGES/gLife.mo +@dirrm share/gnome/help/glife/C +@dirrm share/gnome/help/glife +@dirrm share/glife diff --git a/games/gno3dtet/Makefile b/games/gno3dtet/Makefile new file mode 100644 index 000000000..f71d40dfd --- /dev/null +++ b/games/gno3dtet/Makefile @@ -0,0 +1,49 @@ +# New ports collection makefile for: gno3dtet +# Date created: 21 Dec 1999 +# Whom: Will Andrews <andrews@technologist.com> +# +# $FreeBSD$ +# + +PORTNAME= gno3dtet +PORTVERSION= 1.96.1 +PORTREVISION= 2 +CATEGORIES= games gnome +MASTER_SITES= http://eseb.net/ftp/gno3dtet/ +EXTRACT_SUFX= .tgz + +MAINTAINER= ports@FreeBSD.org +COMMENT= GNOME version of the classic 3D-ified T*tris + +EXTRACT_DEPENDS=intltoolize:${PORTSDIR}/textproc/intltool + +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomeprefix gnometarget intlhack libgnomeui librsvg2 +USE_GMAKE= yes +USE_AUTOTOOLS= autoheader:259 automake:19 aclocal:19 autoconf:259 +ACLOCAL_ARGS= -I m4 -I ${ACLOCAL_DIR} -I ${LOCALBASE}/share/aclocal +AUTOMAKE_ARGS= -a -c -f +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +INSTALLS_OMF= yes + +run-autotools:: run-autotools-aclocal run-autotools-autoheader \ + run-autotools-automake run-autotools-autoconf + +post-extract: + @cd ${WRKSRC} && ${LOCALBASE}/bin/intltoolize -c -f + +post-patch: + @${REINPLACE_CMD} -e '/LIBTOOL/d ; \ + s|gnome-games|gno3dtet|g' ${WRKSRC}/configure.in + +pre-configure: + @${INSTALL_SCRIPT} ${AUTOMAKE_DIR}/mkinstalldirs ${WRKSRC} + +post-install: + ${CHOWN} root:games ${PREFIX}/bin/gno3dtet + ${CHMOD} 2555 ${PREFIX}/bin/gno3dtet + ${CHOWN} root:games ${PREFIX}/share/games/gno3dtet.hof + ${CHMOD} 664 ${PREFIX}/share/games/gno3dtet.hof + +.include <bsd.port.mk> diff --git a/games/gno3dtet/distinfo b/games/gno3dtet/distinfo new file mode 100644 index 000000000..c3aa01508 --- /dev/null +++ b/games/gno3dtet/distinfo @@ -0,0 +1,3 @@ +MD5 (gno3dtet-1.96.1.tgz) = f298fe3306d5938ef843302a31a19713 +SHA256 (gno3dtet-1.96.1.tgz) = 81988eee8d824962d5d348ae72c5c66bf4e15dc406eac2bce8a76b098709f37b +SIZE (gno3dtet-1.96.1.tgz) = 202401 diff --git a/games/gno3dtet/files/patch-src__main.cc b/games/gno3dtet/files/patch-src__main.cc new file mode 100644 index 000000000..6c2d27a31 --- /dev/null +++ b/games/gno3dtet/files/patch-src__main.cc @@ -0,0 +1,10 @@ +--- src/main.cc.orig Wed Mar 9 11:07:47 2005 ++++ src/main.cc Fri Nov 25 23:00:18 2005 +@@ -375,6 +375,7 @@ + textdomain (PACKAGE); + + // init ++ setregid(getegid(), -1); + // gnome_init_with_popt_table (GNO3DTET_EXENAME, GNO3DTET_VERSION, argc, argv, options, 0, NULL);// gnome-1 + gnome_program_init (GNO3DTET_EXENAME, GNO3DTET_VERSION, + LIBGNOMEUI_MODULE, diff --git a/games/gno3dtet/pkg-descr b/games/gno3dtet/pkg-descr new file mode 100644 index 000000000..065b29055 --- /dev/null +++ b/games/gno3dtet/pkg-descr @@ -0,0 +1,8 @@ +Gno3DTet is a funky 3D-ified version of T*tris that reminds me of games +I used to play 10 years ago. It'll make for hours of fun if you learn +how to move the pieces around right. + +WWW: http://eseb.net/3dtetris.php +Author: Sebastien Nicoud <seb at eseb.net> + +--Will <andrews@technologist.com> diff --git a/games/gno3dtet/pkg-plist b/games/gno3dtet/pkg-plist new file mode 100644 index 000000000..7b7ddab0a --- /dev/null +++ b/games/gno3dtet/pkg-plist @@ -0,0 +1,22 @@ +bin/gno3dtet +share/applications/gno3dtet.desktop +share/games/gno3dtet.hof +share/gnome/help/gno3dtet/C/gno3dtet.xml +share/gnome/help/gno3dtet/C/legal.xml +share/omf/gno3dtet/gno3dtet-C.omf +share/pixmaps/gno3dtet.png +share/sounds/gno3dtet/danger.wav +share/sounds/gno3dtet/fall.wav +share/sounds/gno3dtet/hof.wav +share/sounds/gno3dtet/land.wav +share/sounds/gno3dtet/layer.wav +share/sounds/gno3dtet/level.wav +share/sounds/gno3dtet/new.wav +share/sounds/gno3dtet/pause.wav +share/sounds/gno3dtet/score.wav +share/sounds/gno3dtet/screwd.wav +share/locale/fr/LC_MESSAGES/gno3dtet.mo +@dirrm share/sounds/gno3dtet +@dirrm share/omf/gno3dtet +@dirrm share/gnome/help/gno3dtet/C +@dirrm share/gnome/help/gno3dtet diff --git a/games/gnomeattacks/Makefile b/games/gnomeattacks/Makefile new file mode 100644 index 000000000..05856f74d --- /dev/null +++ b/games/gnomeattacks/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: gnomeattacks +# Date created: 01 July 2003 +# Whom: Adam Weinberger <adamw@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gnomeattacks +PORTVERSION= 0.3 +PORTREVISION= 7 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= GNOME 2 game featuring a bizarre flying GNOME logo + +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_GNOME= gnomehack gnomeprefix gnomevfs2 libgnomeui +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +.include <bsd.port.mk> diff --git a/games/gnomeattacks/distinfo b/games/gnomeattacks/distinfo new file mode 100644 index 000000000..19b0305ff --- /dev/null +++ b/games/gnomeattacks/distinfo @@ -0,0 +1,3 @@ +MD5 (gnomeattacks-0.3.tar.gz) = 0ae6e3d4110a512063f101e459aeea53 +SHA256 (gnomeattacks-0.3.tar.gz) = 98934d4341777011cb3a018ad32ef034ad6d9107085d99348009d8d9382c01f3 +SIZE (gnomeattacks-0.3.tar.gz) = 3496396 diff --git a/games/gnomeattacks/files/patch-src-game.c b/games/gnomeattacks/files/patch-src-game.c new file mode 100644 index 000000000..bfee2a724 --- /dev/null +++ b/games/gnomeattacks/files/patch-src-game.c @@ -0,0 +1,19 @@ +--- src/game.c.orig Thu Feb 19 22:33:32 2004 ++++ src/game.c Thu Feb 19 22:33:44 2004 +@@ -15,6 +15,7 @@ + #include "graphics.h" + #include "hiscore.h" + ++GString* levelset_get_file_name( gchar* file_name ); + + /** + * Set up a random seed and set the levels to the first ones. +@@ -271,8 +272,6 @@ + + va_list varptr; + gchar msg[255]; +- +- varptr = NULL; + + va_start( varptr, format ); + diff --git a/games/gnomeattacks/pkg-descr b/games/gnomeattacks/pkg-descr new file mode 100644 index 000000000..8b58abf08 --- /dev/null +++ b/games/gnomeattacks/pkg-descr @@ -0,0 +1,14 @@ +Oh no! The fair city is under attack by a GNOME logo that drops bombs! You +must destroy the city before the logo crashes into a building! + +Wait, no, that's not right. Oh no! There is a city standing in the way of +the GNOME logo you're trying to fly around. You must destroy the buildings +before they crash into your flying logo. + +Either way, the game is so simple to play that your cat could potentially +earn the high score just by walking across the keyboard. GNOME Attacks! + +This game also features one of the coolest splash screens ever. + +WWW: http://gnomeattacks.sourceforge.net/ +-Adam Weinberger <adamw@FreeBSD.org> diff --git a/games/gnomeattacks/pkg-plist b/games/gnomeattacks/pkg-plist new file mode 100644 index 000000000..85ab12e16 --- /dev/null +++ b/games/gnomeattacks/pkg-plist @@ -0,0 +1,32 @@ +bin/gnomeattacks +share/pixmaps/gnomeattacks/bullet.png +share/pixmaps/gnomeattacks/dead_ship.png +share/pixmaps/gnomeattacks/hiscore.png +share/pixmaps/gnomeattacks/instructions.png +share/pixmaps/gnomeattacks/London/level_1_bg.png +share/pixmaps/gnomeattacks/London/level_1_fg.png +share/pixmaps/gnomeattacks/London/level_1_heights.txt +share/pixmaps/gnomeattacks/London/level_2_bg.png +share/pixmaps/gnomeattacks/London/level_2_fg.png +share/pixmaps/gnomeattacks/London/level_2_heights.txt +share/pixmaps/gnomeattacks/London/level_3_bg.png +share/pixmaps/gnomeattacks/London/level_3_fg.png +share/pixmaps/gnomeattacks/London/level_3_heights.txt +share/pixmaps/gnomeattacks/London/level_4_bg.png +share/pixmaps/gnomeattacks/London/level_4_fg.png +share/pixmaps/gnomeattacks/London/level_4_heights.txt +share/pixmaps/gnomeattacks/London/level_5_bg.png +share/pixmaps/gnomeattacks/London/level_5_fg.png +share/pixmaps/gnomeattacks/London/level_5_heights.txt +share/pixmaps/gnomeattacks/London/level_6_bg.png +share/pixmaps/gnomeattacks/London/level_6_fg.png +share/pixmaps/gnomeattacks/London/level_6_heights.txt +share/pixmaps/gnomeattacks/Original/level_1_bg.png +share/pixmaps/gnomeattacks/Original/level_1_fg.png +share/pixmaps/gnomeattacks/Original/level_2_bg.png +share/pixmaps/gnomeattacks/Original/level_2_fg.png +share/pixmaps/gnomeattacks/ship.png +share/pixmaps/gnomeattacks/title.png +@dirrm share/pixmaps/gnomeattacks/Original +@dirrm share/pixmaps/gnomeattacks/London +@dirrm share/pixmaps/gnomeattacks diff --git a/games/gnomebreakout/Makefile b/games/gnomebreakout/Makefile new file mode 100644 index 000000000..5b94b6cac --- /dev/null +++ b/games/gnomebreakout/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: gnomebreakout +# Date created: 01 Sep 2000 +# Whom: Kris Kennaway <kris@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gnomebreakout +PORTVERSION= 0.5.3 +PORTREVISION= 5 +CATEGORIES= games gnome +MASTER_SITES= http://www.users.on.net/~mipearson/ +DISTNAME= gnome-breakout-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= GNOME version of the classic breakout game + +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomeprefix libgnomeui +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e \ + 's|games.games|root:games|g' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|-Werror||g' ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e \ + 's|@GETTEXT_PACKAGE@|@PACKAGE@|g' ${WRKSRC}/po/Makefile.in.in + @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-DGNOME_DISABLE_DEPRECATED||g ; s|-DGTK_DISABLE_DEPRECATED||g' + +.include <bsd.port.mk> diff --git a/games/gnomebreakout/distinfo b/games/gnomebreakout/distinfo new file mode 100644 index 000000000..0692acb97 --- /dev/null +++ b/games/gnomebreakout/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome-breakout-0.5.3.tar.gz) = 38da8b1d1594e7ed6e94bd334d7c7d25 +SHA256 (gnome-breakout-0.5.3.tar.gz) = c015704839c233293f78b6b478cc40b82b7068dd68655a097a8a2de14b5df7d1 +SIZE (gnome-breakout-0.5.3.tar.gz) = 197538 diff --git a/games/gnomebreakout/files/patch-src::anim.c b/games/gnomebreakout/files/patch-src::anim.c new file mode 100644 index 000000000..95f0e9fc4 --- /dev/null +++ b/games/gnomebreakout/files/patch-src::anim.c @@ -0,0 +1,18 @@ +--- src/anim.c.orig Mon May 10 19:42:51 2004 ++++ src/anim.c Thu May 20 00:26:00 2004 +@@ -47,6 +47,7 @@ + Animation newanim; + char *fullfilename; + int i; ++ GError *gerror = NULL; + + /* Find the number of frames */ + fullfilename = g_strdup_printf("%s.%d.png", filename, 0); +@@ -64,7 +65,6 @@ + sizeof(GdkPixbuf *)); + for(i = 0; i < newanim.num_frames; i++) { + fullfilename = g_strdup_printf("%s.%d.png", filename, i); +- GError *gerror = NULL; + newanim.pixmaps[i] = gdk_pixbuf_new_from_file(fullfilename, + &gerror); + if(!newanim.pixmaps[i]) { diff --git a/games/gnomebreakout/pkg-descr b/games/gnomebreakout/pkg-descr new file mode 100644 index 000000000..8d4d32c66 --- /dev/null +++ b/games/gnomebreakout/pkg-descr @@ -0,0 +1,5 @@ +GNOME Breakout is a clone of the classic arcade game Breakout, +written for GNOME. Still in development, but very playable, and +very addictive. + +WWW: http://www.users.on.net/mipearson/ diff --git a/games/gnomebreakout/pkg-plist b/games/gnomebreakout/pkg-plist new file mode 100644 index 000000000..341e5a8c4 --- /dev/null +++ b/games/gnomebreakout/pkg-plist @@ -0,0 +1,76 @@ +bin/gnome-breakout +share/gnome/apps/Games/gnome-breakout.desktop +share/games/gnome-breakout.scores +share/gnome-breakout/levels/alcaron.gbl +share/gnome-breakout/levels/mdutour.gbl +share/gnome-breakout/levels/mmack.gbl +share/gnome-breakout/pixmaps/ball.default.0.png +share/gnome-breakout/pixmaps/bat.default.0.png +share/gnome-breakout/pixmaps/bat.laser.0.png +share/gnome-breakout/pixmaps/bat.wide.0.png +share/gnome-breakout/pixmaps/block.default.0.png +share/gnome-breakout/pixmaps/block.default.die.0.png +share/gnome-breakout/pixmaps/block.default.die.1.png +share/gnome-breakout/pixmaps/block.default.die.10.png +share/gnome-breakout/pixmaps/block.default.die.11.png +share/gnome-breakout/pixmaps/block.default.die.12.png +share/gnome-breakout/pixmaps/block.default.die.13.png +share/gnome-breakout/pixmaps/block.default.die.2.png +share/gnome-breakout/pixmaps/block.default.die.3.png +share/gnome-breakout/pixmaps/block.default.die.4.png +share/gnome-breakout/pixmaps/block.default.die.5.png +share/gnome-breakout/pixmaps/block.default.die.6.png +share/gnome-breakout/pixmaps/block.default.die.7.png +share/gnome-breakout/pixmaps/block.default.die.8.png +share/gnome-breakout/pixmaps/block.default.die.9.png +share/gnome-breakout/pixmaps/block.explode.0.png +share/gnome-breakout/pixmaps/block.explode.die.0.png +share/gnome-breakout/pixmaps/block.explode.die.1.png +share/gnome-breakout/pixmaps/block.explode.die.2.png +share/gnome-breakout/pixmaps/block.explode.die.3.png +share/gnome-breakout/pixmaps/block.explode.die.4.png +share/gnome-breakout/pixmaps/block.explode.die.5.png +share/gnome-breakout/pixmaps/block.explode.die.6.png +share/gnome-breakout/pixmaps/block.explode.die.7.png +share/gnome-breakout/pixmaps/block.invincible.0.png +share/gnome-breakout/pixmaps/block.strong.1.0.png +share/gnome-breakout/pixmaps/block.strong.1.die.0.png +share/gnome-breakout/pixmaps/block.strong.1.die.1.png +share/gnome-breakout/pixmaps/block.strong.1.die.2.png +share/gnome-breakout/pixmaps/block.strong.1.die.3.png +share/gnome-breakout/pixmaps/block.strong.1.die.4.png +share/gnome-breakout/pixmaps/block.strong.1.die.5.png +share/gnome-breakout/pixmaps/block.strong.1.die.6.png +share/gnome-breakout/pixmaps/block.strong.2.0.png +share/gnome-breakout/pixmaps/block.strong.2.die.0.png +share/gnome-breakout/pixmaps/block.strong.2.die.1.png +share/gnome-breakout/pixmaps/block.strong.2.die.2.png +share/gnome-breakout/pixmaps/block.strong.2.die.3.png +share/gnome-breakout/pixmaps/block.strong.2.die.4.png +share/gnome-breakout/pixmaps/block.strong.2.die.5.png +share/gnome-breakout/pixmaps/block.strong.2.die.6.png +share/gnome-breakout/pixmaps/block.strong.3.0.png +share/gnome-breakout/pixmaps/block.strong.3.die.0.png +share/gnome-breakout/pixmaps/block.strong.3.die.1.png +share/gnome-breakout/pixmaps/block.strong.3.die.2.png +share/gnome-breakout/pixmaps/block.strong.3.die.3.png +share/gnome-breakout/pixmaps/block.strong.3.die.4.png +share/gnome-breakout/pixmaps/block.strong.3.die.5.png +share/gnome-breakout/pixmaps/block.strong.3.die.6.png +share/gnome-breakout/pixmaps/laser.0.png +share/gnome-breakout/pixmaps/powerup.laser.0.png +share/gnome-breakout/pixmaps/powerup.newball.0.png +share/gnome-breakout/pixmaps/powerup.newlife.0.png +share/gnome-breakout/pixmaps/powerup.nextlevel.0.png +share/gnome-breakout/pixmaps/powerup.score500.0.png +share/gnome-breakout/pixmaps/powerup.slow.0.png +share/gnome-breakout/pixmaps/powerup.widebat.0.png +share/gnome-breakout/pixmaps/title.png +share/pixmaps/gnome-breakout.png +share/locale/de/LC_MESSAGES/gnome-breakout.mo +share/locale/ru/LC_MESSAGES/gnome-breakout.mo +share/locale/sv/LC_MESSAGES/gnome-breakout.mo +share/locale/tr/LC_MESSAGES/gnome-breakout.mo +@dirrm share/gnome-breakout/pixmaps +@dirrm share/gnome-breakout/levels +@dirrm share/gnome-breakout diff --git a/games/gnomechess/Makefile b/games/gnomechess/Makefile new file mode 100644 index 000000000..87a8c7cf2 --- /dev/null +++ b/games/gnomechess/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: gnomechess +# Date created: 29 January 2000 +# Whom: Jeremy Lea <reg@shale.csir.co.za> +# +# $FreeBSD$ +# + +PORTNAME= gnomechess +PORTVERSION= 0.3.3 +PORTREVISION= 5 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/gnome-chess/0.3 +DISTNAME= gnome-chess-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A GUI chess front-end to crafy, for the GNOME Desktop Environment + +BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty +RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty + +USE_X_PREFIX= yes +USE_GNOME= gnomecanvas gnomehack gnomeprefix libglade +USE_GMAKE= yes +INSTALLS_OMF= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +MAKE_ARGS= XML_I18N_UPDATE="${TRUE}" XML_I18N_EXTRACT="${TRUE}" + +.include <bsd.port.mk> diff --git a/games/gnomechess/distinfo b/games/gnomechess/distinfo new file mode 100644 index 000000000..fac3bc829 --- /dev/null +++ b/games/gnomechess/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome-chess-0.3.3.tar.gz) = 6b266b6fe449de042b33dacf0ecd32a7 +SHA256 (gnome-chess-0.3.3.tar.gz) = c07816875c7a1b226baf25714d776b64ee9087a463a3c2eca4f94ba3d7931a44 +SIZE (gnome-chess-0.3.3.tar.gz) = 342099 diff --git a/games/gnomechess/files/patch-src::board.c b/games/gnomechess/files/patch-src::board.c new file mode 100644 index 000000000..3afe254c1 --- /dev/null +++ b/games/gnomechess/files/patch-src::board.c @@ -0,0 +1,10 @@ +--- src/board.c.orig Mon Jul 23 07:45:20 2001 ++++ src/board.c Sun Aug 22 03:42:58 2004 +@@ -661,6 +661,7 @@ + + break; + default: ++ ; + } + + return 0; diff --git a/games/gnomechess/files/patch-src::pgn.c b/games/gnomechess/files/patch-src::pgn.c new file mode 100644 index 000000000..c6cb616b1 --- /dev/null +++ b/games/gnomechess/files/patch-src::pgn.c @@ -0,0 +1,18 @@ +--- src/pgn.c.orig Thu Jun 28 06:14:20 2001 ++++ src/pgn.c Sun Aug 22 03:44:44 2004 +@@ -311,6 +311,7 @@ + tag->result = g_strdup(value2.v_string); + break; + default: ++ ; + } + } + +@@ -512,6 +513,7 @@ + } + + finish: ++ ; + } + + static int diff --git a/games/gnomechess/files/patch-src::server-term.c b/games/gnomechess/files/patch-src::server-term.c new file mode 100644 index 000000000..914865718 --- /dev/null +++ b/games/gnomechess/files/patch-src::server-term.c @@ -0,0 +1,10 @@ +--- src/server-term.c.orig Sun Jun 17 04:47:01 2001 ++++ src/server-term.c Sun Aug 22 03:46:07 2004 +@@ -348,6 +348,7 @@ + jump2: + i++; + jump: ++ ; + } + newtext[j] = 0; + zvt_term_feed (ZVT_TERM (widget), newtext, j); diff --git a/games/gnomechess/pkg-descr b/games/gnomechess/pkg-descr new file mode 100644 index 000000000..242c7d922 --- /dev/null +++ b/games/gnomechess/pkg-descr @@ -0,0 +1,6 @@ +A GUI chess front-end to crafty, for the GNOME Desktop Environment + +It works with chess programs and chess servers - it is also a PGN viewer. +For chess programs, it works best with the chess engine crafty +(ftp://ftp.cis.uab.edu/pub/hyatt) but most features should also work with +GNU Chess (ftp://ftp.gnu.org). diff --git a/games/gnomechess/pkg-plist b/games/gnomechess/pkg-plist new file mode 100644 index 000000000..96b08ef56 --- /dev/null +++ b/games/gnomechess/pkg-plist @@ -0,0 +1,78 @@ +bin/gnome-chess +share/gnome/apps/Games/gnome-chess.desktop +share/gnome-chess/glade/level.glade +share/gnome-chess/glade/login.glade +share/gnome-chess/glade/pgn.glade +share/gnome-chess/glade/prefs.glade +share/gnome-chess/glade/promotion.glade +share/gnome/help/gnome-chess-manual/C/docbook.css +share/gnome/help/gnome-chess-manual/C/fdl-appendix.sgml +share/gnome/help/gnome-chess-manual/C/figures/main.png +share/gnome/help/gnome-chess-manual/C/figures/prefs.png +share/gnome/help/gnome-chess-manual/C/gnome-chess-manual.sgml +share/gnome/help/gnome-chess-manual/C/index.html +share/gnome/help/gnome-chess-manual/C/prefs.html +share/gnome/help/gnome-chess-manual/C/stylesheet-images/caution.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/home.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/important.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/next.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/note.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/prev.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/tip.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/toc-blank.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/toc-minus.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/toc-plus.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/up.gif +share/gnome/help/gnome-chess-manual/C/stylesheet-images/warning.gif +share/gnome/help/gnome-chess-manual/C/usage.html +share/mime-info/gnome-chess.keys +share/mime-info/gnome-chess.mime +share/omf/gnome-chess/gnome-chess-manual-C.omf +share/pixmaps/gnome-chess.png +share/pixmaps/gnome-chess/B.png +share/pixmaps/gnome-chess/K.png +share/pixmaps/gnome-chess/N.png +share/pixmaps/gnome-chess/P.png +share/pixmaps/gnome-chess/Q.png +share/pixmaps/gnome-chess/R.png +share/pixmaps/gnome-chess/b.png +share/pixmaps/gnome-chess/end.png +share/pixmaps/gnome-chess/k.png +share/pixmaps/gnome-chess/n.png +share/pixmaps/gnome-chess/next.png +share/pixmaps/gnome-chess/p.png +share/pixmaps/gnome-chess/prev.png +share/pixmaps/gnome-chess/q.png +share/pixmaps/gnome-chess/r.png +share/pixmaps/gnome-chess/start.png +share/locale/az/LC_MESSAGES/gnome-chess.mo +share/locale/ca/LC_MESSAGES/gnome-chess.mo +share/locale/da/LC_MESSAGES/gnome-chess.mo +share/locale/de/LC_MESSAGES/gnome-chess.mo +share/locale/el/LC_MESSAGES/gnome-chess.mo +share/locale/es/LC_MESSAGES/gnome-chess.mo +share/locale/fr/LC_MESSAGES/gnome-chess.mo +share/locale/ga/LC_MESSAGES/gnome-chess.mo +share/locale/gl/LC_MESSAGES/gnome-chess.mo +share/locale/it/LC_MESSAGES/gnome-chess.mo +share/locale/ja/LC_MESSAGES/gnome-chess.mo +share/locale/lt/LC_MESSAGES/gnome-chess.mo +share/locale/nl/LC_MESSAGES/gnome-chess.mo +share/locale/nn/LC_MESSAGES/gnome-chess.mo +share/locale/no/LC_MESSAGES/gnome-chess.mo +share/locale/pl/LC_MESSAGES/gnome-chess.mo +share/locale/pt_BR/LC_MESSAGES/gnome-chess.mo +share/locale/ro/LC_MESSAGES/gnome-chess.mo +share/locale/ru/LC_MESSAGES/gnome-chess.mo +share/locale/sv/LC_MESSAGES/gnome-chess.mo +share/locale/tr/LC_MESSAGES/gnome-chess.mo +share/locale/uk/LC_MESSAGES/gnome-chess.mo +share/locale/zh_TW.Big5/LC_MESSAGES/gnome-chess.mo +@dirrm share/pixmaps/gnome-chess +@dirrm share/omf/gnome-chess +@dirrm share/gnome/help/gnome-chess-manual/C/stylesheet-images +@dirrm share/gnome/help/gnome-chess-manual/C/figures +@dirrm share/gnome/help/gnome-chess-manual/C +@dirrm share/gnome/help/gnome-chess-manual +@dirrm share/gnome-chess/glade +@dirrm share/gnome-chess diff --git a/games/gnomekiss/Makefile b/games/gnomekiss/Makefile new file mode 100644 index 000000000..187b5c0ba --- /dev/null +++ b/games/gnomekiss/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: gnomekiss +# Date created: 4 Apr 2001 +# Whom: UMENO Takashi <umeno@rr.iij4u.or.jp> +# +# $FreeBSD$ +# + +PORTNAME= gnomekiss +PORTVERSION= 2.0 +PORTREVISION= 2 +CATEGORIES= games gnome +MASTER_SITES= http://devel.tlrmx.org/kiss/source/ + +MAINTAINER= umeno@rr.iij4u.or.jp +COMMENT= GNOME version of Kisekae Set System + +RUN_DEPENDS= lha:${PORTSDIR}/archivers/lha + +USE_X_PREFIX= yes +USE_GNOME= gnomeprefix gnomehack libgnomeui +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +MAN1= gnomekiss.1 + +.include <bsd.port.mk> diff --git a/games/gnomekiss/distinfo b/games/gnomekiss/distinfo new file mode 100644 index 000000000..012f2b3ca --- /dev/null +++ b/games/gnomekiss/distinfo @@ -0,0 +1,3 @@ +MD5 (gnomekiss-2.0.tar.gz) = 5322b42074c43bf04139c5a56ee716ae +SHA256 (gnomekiss-2.0.tar.gz) = 28c03b2b978bca1fcc4876edc62317ce875025f7cde957e13d82ea407e7f02d3 +SIZE (gnomekiss-2.0.tar.gz) = 166377 diff --git a/games/gnomekiss/files/patch-src::event.c b/games/gnomekiss/files/patch-src::event.c new file mode 100644 index 000000000..8ba2cdc86 --- /dev/null +++ b/games/gnomekiss/files/patch-src::event.c @@ -0,0 +1,10 @@ +--- src/event.c.orig Sat May 10 07:14:55 2003 ++++ src/event.c Sat May 10 11:05:13 2003 +@@ -21,6 +21,7 @@ + #endif + + #include <sys/types.h> ++#include <signal.h> + #include <sys/wait.h> + #include <unistd.h> + #include <gnome.h> diff --git a/games/gnomekiss/pkg-descr b/games/gnomekiss/pkg-descr new file mode 100644 index 000000000..d536ff2c8 --- /dev/null +++ b/games/gnomekiss/pkg-descr @@ -0,0 +1,6 @@ +GnomeKiss is an implementation of French-KiSS for the GNOME desktop +environment, using GNOME, GTK+ and the X Window System. French KiSS is +an enhanced KiSS/GS for scriptable dolls, where KiSS is an +abbreviation for Kisekae Set System (or something). + +WWW: http://devel.tlrmx.org/kiss/ diff --git a/games/gnomekiss/pkg-plist b/games/gnomekiss/pkg-plist new file mode 100644 index 000000000..9983956ee --- /dev/null +++ b/games/gnomekiss/pkg-plist @@ -0,0 +1,8 @@ +bin/gnomekiss +share/pixmaps/gnomekiss/besito_sinfondo.png +share/pixmaps/gnomekiss/gnome-kiss.png +share/applications/gnomekiss.desktop +share/locale/en_GB/LC_MESSAGES/gnomekiss.mo +share/locale/es/LC_MESSAGES/gnomekiss.mo +share/locale/es_ES/LC_MESSAGES/gnomekiss.mo +@dirrm share/pixmaps/gnomekiss diff --git a/games/grhino/Makefile b/games/grhino/Makefile new file mode 100644 index 000000000..4a08ea808 --- /dev/null +++ b/games/grhino/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: grhino +# Date created: 21 Sep 2002 +# Whom: UMENO Takashi <umeno@rr.iij4u.or.jp> +# +# $FreeBSD$ +# + +PORTNAME= grhino +PORTVERSION= 0.16.0 +PORTREVISION= 2 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= rhino + +MAINTAINER= umeno@rr.iij4u.or.jp +COMMENT= GRhino Othello/Reversi Program + +USE_X_PREFIX= yes +USE_GNOME= gnomeprefix libgnomeui +USE_GCC= 3.4+ +USE_PERL5_BUILD=yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +INSTALLS_OMF= yes +PLIST_SUB+= VERSION=${PORTVERSION} + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + +.include <bsd.port.mk> diff --git a/games/grhino/distinfo b/games/grhino/distinfo new file mode 100644 index 000000000..f1b5d124c --- /dev/null +++ b/games/grhino/distinfo @@ -0,0 +1,3 @@ +MD5 (grhino-0.16.0.tar.gz) = 51d975cc1645112d12bb5fd030db1f7f +SHA256 (grhino-0.16.0.tar.gz) = 67c3263bcfeb064b859149b25ee3c1c7d33a07ff4f83955eb501e9517069b9cf +SIZE (grhino-0.16.0.tar.gz) = 1172321 diff --git a/games/grhino/files/patch-alphabeta.cc b/games/grhino/files/patch-alphabeta.cc new file mode 100644 index 000000000..de991ed45 --- /dev/null +++ b/games/grhino/files/patch-alphabeta.cc @@ -0,0 +1,11 @@ +--- alphabeta.cc.orig Mon May 3 15:05:35 2004 ++++ alphabeta.cc Wed May 5 04:07:31 2004 +@@ -18,6 +18,8 @@ + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + ++#include <string> ++#include <iostream> + #include "boardio.h" + #include "hash.h" + #include "alphabeta.h" diff --git a/games/grhino/files/patch-log_proc.h b/games/grhino/files/patch-log_proc.h new file mode 100644 index 000000000..3a6291836 --- /dev/null +++ b/games/grhino/files/patch-log_proc.h @@ -0,0 +1,10 @@ +--- log_proc.h.orig Fri Apr 15 23:03:04 2005 ++++ log_proc.h Fri Apr 29 15:36:28 2005 +@@ -39,6 +39,7 @@ + #undef N_ + #endif + ++#define _INTL_REDIRECT_MACROS + #include <libintl.h> + #define _(x) gettext(x) + #define N_(x) x diff --git a/games/grhino/pkg-descr b/games/grhino/pkg-descr new file mode 100644 index 000000000..24af54587 --- /dev/null +++ b/games/grhino/pkg-descr @@ -0,0 +1,3 @@ +GRhino Othello/Reversi Program + +WWW: http://rhino.sourceforge.net/ diff --git a/games/grhino/pkg-plist b/games/grhino/pkg-plist new file mode 100644 index 000000000..c99d22e0a --- /dev/null +++ b/games/grhino/pkg-plist @@ -0,0 +1,49 @@ +bin/grhino +bin/gtp-rhino +share/grhino-%%VERSION%%/pattern/row1.bin +share/grhino-%%VERSION%%/pattern/row2.bin +share/grhino-%%VERSION%%/pattern/row3.bin +share/grhino-%%VERSION%%/pattern/row4.bin +share/grhino-%%VERSION%%/pattern/diag1.bin +share/grhino-%%VERSION%%/pattern/diag2.bin +share/grhino-%%VERSION%%/pattern/diag3.bin +share/grhino-%%VERSION%%/pattern/diag4.bin +share/grhino-%%VERSION%%/pattern/diag5.bin +share/grhino-%%VERSION%%/pattern/corner5x2.bin +share/grhino-%%VERSION%%/book/book.bin +share/grhino-%%VERSION%%/theme/small/black.xpm +share/grhino-%%VERSION%%/theme/small/black_last.xpm +share/grhino-%%VERSION%%/theme/small/bottom.xpm +share/grhino-%%VERSION%%/theme/small/empty.xpm +share/grhino-%%VERSION%%/theme/small/highlight_black.xpm +share/grhino-%%VERSION%%/theme/small/highlight_empty.xpm +share/grhino-%%VERSION%%/theme/small/highlight_white.xpm +share/grhino-%%VERSION%%/theme/small/hint_black.xpm +share/grhino-%%VERSION%%/theme/small/hint_white.xpm +share/grhino-%%VERSION%%/theme/small/left.xpm +share/grhino-%%VERSION%%/theme/small/right.xpm +share/grhino-%%VERSION%%/theme/small/top.xpm +share/grhino-%%VERSION%%/theme/small/white.xpm +share/grhino-%%VERSION%%/theme/small/white_last.xpm +share/gnome/help/grhino/C/grhino.xml +share/gnome/help/grhino/C/legal.xml +share/gnome/help/grhino/C/figures/gamelist.png +share/gnome/help/grhino/C/figures/history.png +share/gnome/help/grhino/C/figures/mainwindow.png +share/gnome/help/grhino/C/figures/pattern.png +share/gnome/help/grhino/C/figures/prefs-ai.png +share/gnome/help/grhino/C/figures/prefs-board.png +share/gnome/help/grhino/C/figures/prefs-theme.png +share/gnome/help/grhino/C/figures/toolbar-edit.png +share/omf/grhino/grhino-C.omf +share/pixmaps/grhino.png +share/locale/en_GB/LC_MESSAGES/grhino.mo +@dirrm share/omf/grhino +@dirrm share/gnome/help/grhino/C/figures +@dirrm share/gnome/help/grhino/C +@dirrm share/gnome/help/grhino +@dirrm share/grhino-%%VERSION%%/theme/small +@dirrm share/grhino-%%VERSION%%/theme +@dirrm share/grhino-%%VERSION%%/book +@dirrm share/grhino-%%VERSION%%/pattern +@dirrm share/grhino-%%VERSION%% diff --git a/games/gtetrinet/Makefile b/games/gtetrinet/Makefile new file mode 100644 index 000000000..9525f08f4 --- /dev/null +++ b/games/gtetrinet/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: gtetrinet +# Date created: 27 Feb 2000 +# Whom: Dan Papasian <bugg@bugg.strangled.net> +# +# $FreeBSD$ + +PORTNAME= gtetrinet +PORTVERSION= 0.7.11 +PORTREVISION= 2 +CATEGORIES= games gnome ipv6 +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R} +DIST_SUBDIR= gnome2 + +MAINTAINER= ports@FreeBSD.org +COMMENT= A version of the popular TetriNET multiplayer tetris clone + +USE_GETTEXT= yes +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_GNOME= esound gnomehack gnomeprefix gnometarget libgnomeui +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --bindir=${PREFIX}/bin --enable-ipv6 + +MAN6= gtetrinet.6 +GCONF_SCHEMAS= gtetrinet.schemas + +pre-configure: + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|[(]prefix[)]/games|{bindir}|g; /_DISABLE_DEPRECATED/d' + +.include <bsd.port.mk> diff --git a/games/gtetrinet/distinfo b/games/gtetrinet/distinfo new file mode 100644 index 000000000..ffb2f58ce --- /dev/null +++ b/games/gtetrinet/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gtetrinet-0.7.11.tar.bz2) = 7d113e49506e44b836ce6f259fd3ad88 +SHA256 (gnome2/gtetrinet-0.7.11.tar.bz2) = cea27a5f65cc4384e9130cf345421ef677418be4ebdab14d82b9049dd162ddc0 +SIZE (gnome2/gtetrinet-0.7.11.tar.bz2) = 416744 diff --git a/games/gtetrinet/files/patch-src_misc.c b/games/gtetrinet/files/patch-src_misc.c new file mode 100644 index 000000000..4f2680e0e --- /dev/null +++ b/games/gtetrinet/files/patch-src_misc.c @@ -0,0 +1,18 @@ +--- src/misc.c.orig Sun May 8 16:05:33 2005 ++++ src/misc.c Sun May 8 16:06:48 2005 +@@ -145,6 +145,7 @@ + GtkTextIter iter; + guchar* p; + guchar* text=g_strdup(str); ++ gchar out[7]; /* max utf-8 length plus \0 */ + + + /* is the scroll bar at the bottom ?? */ +@@ -201,7 +202,6 @@ + { + tmp=g_utf8_get_char(p); /* It's not a color code, so get the entire char. */ + /* gchar *out = g_locale_to_utf8 (&text[i], 1, NULL, NULL, NULL); */ +- gchar out[7]; /* max utf-8 length plus \0 */ + out[g_unichar_to_utf8(tmp,out)]='\0'; /* convert and terminate */ + g_assert(g_utf8_validate(out,-1,NULL)); + diff --git a/games/gtetrinet/pkg-descr b/games/gtetrinet/pkg-descr new file mode 100644 index 000000000..ae1203ceb --- /dev/null +++ b/games/gtetrinet/pkg-descr @@ -0,0 +1,11 @@ +GTetrinet is a client program for the popular Tetrinet game, a multiplayer +game that is played over the internet. +(If you don't know what Tetrinet is, check out http://tetrinet.org) + +Features: + +-Fully network compatible with Tetrinet v1.13 for Win95/98/NT +-Theme support with sound +-Spectator support on Tetrinet-X servers with the qirc patch by Drslum. + +WWW: http://gtetrinet.sourceforge.net/ diff --git a/games/gtetrinet/pkg-plist b/games/gtetrinet/pkg-plist new file mode 100644 index 000000000..0f486cb65 --- /dev/null +++ b/games/gtetrinet/pkg-plist @@ -0,0 +1,53 @@ +bin/gtetrinet +share/applications/gtetrinet.desktop +share/gtetrinet/themes/default/blocks.png +share/gtetrinet/themes/default/theme.cfg +share/gtetrinet/themes/small/blocks.png +share/gtetrinet/themes/small/theme.cfg +share/pixmaps/gtetrinet/alone.png +share/pixmaps/gtetrinet/team.png +share/pixmaps/gtetrinet.png +share/locale/am/LC_MESSAGES/gtetrinet.mo +share/locale/az/LC_MESSAGES/gtetrinet.mo +share/locale/bg/LC_MESSAGES/gtetrinet.mo +share/locale/ca/LC_MESSAGES/gtetrinet.mo +share/locale/cs/LC_MESSAGES/gtetrinet.mo +share/locale/cy/LC_MESSAGES/gtetrinet.mo +share/locale/de/LC_MESSAGES/gtetrinet.mo +share/locale/en_CA/LC_MESSAGES/gtetrinet.mo +share/locale/en_GB/LC_MESSAGES/gtetrinet.mo +share/locale/es/LC_MESSAGES/gtetrinet.mo +share/locale/eu/LC_MESSAGES/gtetrinet.mo +share/locale/fi/LC_MESSAGES/gtetrinet.mo +share/locale/fr/LC_MESSAGES/gtetrinet.mo +share/locale/ga/LC_MESSAGES/gtetrinet.mo +share/locale/hr/LC_MESSAGES/gtetrinet.mo +share/locale/it/LC_MESSAGES/gtetrinet.mo +share/locale/ja/LC_MESSAGES/gtetrinet.mo +share/locale/ko/LC_MESSAGES/gtetrinet.mo +share/locale/mk/LC_MESSAGES/gtetrinet.mo +share/locale/ml/LC_MESSAGES/gtetrinet.mo +share/locale/ms/LC_MESSAGES/gtetrinet.mo +share/locale/nb/LC_MESSAGES/gtetrinet.mo +share/locale/ne/LC_MESSAGES/gtetrinet.mo +share/locale/nl/LC_MESSAGES/gtetrinet.mo +share/locale/pa/LC_MESSAGES/gtetrinet.mo +share/locale/pl/LC_MESSAGES/gtetrinet.mo +share/locale/pt/LC_MESSAGES/gtetrinet.mo +share/locale/pt_BR/LC_MESSAGES/gtetrinet.mo +share/locale/ru/LC_MESSAGES/gtetrinet.mo +share/locale/rw/LC_MESSAGES/gtetrinet.mo +share/locale/sr/LC_MESSAGES/gtetrinet.mo +share/locale/sr@Latn/LC_MESSAGES/gtetrinet.mo +share/locale/sv/LC_MESSAGES/gtetrinet.mo +share/locale/tr/LC_MESSAGES/gtetrinet.mo +share/locale/uk/LC_MESSAGES/gtetrinet.mo +share/locale/vi/LC_MESSAGES/gtetrinet.mo +share/locale/zh_CN/LC_MESSAGES/gtetrinet.mo +share/locale/zh_HK/LC_MESSAGES/gtetrinet.mo +share/locale/zh_TW/LC_MESSAGES/gtetrinet.mo +@dirrm share/gtetrinet/themes/small +@dirrm share/gtetrinet/themes/default +@dirrm share/gtetrinet/themes +@dirrm share/gtetrinet +@dirrm share/pixmaps/gtetrinet diff --git a/games/gtktetcolor/Makefile b/games/gtktetcolor/Makefile new file mode 100644 index 000000000..e231c9001 --- /dev/null +++ b/games/gtktetcolor/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: gtktetcolor +# Date created: 17 August 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gtktetcolor +PORTVERSION= 0.6.4 +PORTREVISION= 5 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + http://www.dvgu.ru/ifit/~panov/gtktetcolor/ +MASTER_SITE_SUBDIR= games + +MAINTAINER= ports@FreeBSD.org +COMMENT= A game for GNOME that resembles well-known tetris and columns + +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomeprefix intlhack libgnomeui +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e \ + 's|games\.games|games:games|g' ${WRKSRC}/Makefile.in + @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-D.*_DISABLE_DEPRECATED||g' + +.include <bsd.port.mk> diff --git a/games/gtktetcolor/distinfo b/games/gtktetcolor/distinfo new file mode 100644 index 000000000..7d49b021d --- /dev/null +++ b/games/gtktetcolor/distinfo @@ -0,0 +1,3 @@ +MD5 (gtktetcolor-0.6.4.tar.gz) = c861933ed6dff0a56fee2d1715cf1af4 +SHA256 (gtktetcolor-0.6.4.tar.gz) = 1d70d9d4c87ab6f42366dc491e8a467dae01ce168d3bbf4b9fc5215227ce5628 +SIZE (gtktetcolor-0.6.4.tar.gz) = 198699 diff --git a/games/gtktetcolor/pkg-descr b/games/gtktetcolor/pkg-descr new file mode 100644 index 000000000..fc50ef658 --- /dev/null +++ b/games/gtktetcolor/pkg-descr @@ -0,0 +1,9 @@ +GtkTetcolor is a game that resembles well-known tetris and columns. The rules +of the game are simple - you can move or rotate the block which continue to +fall. After block landing the sequence of at least three cells horizontally, +vertically or diagonally having matching colors is removed and the above blocks +will collapse. If two or more sequences will be removed simultaneously the +player has got bonus points. The game will be over when new block cannot be +placed on screen. + +WWW: http://www.dvgu.ru/ifit/~panov/gtktetcolor/ diff --git a/games/gtktetcolor/pkg-plist b/games/gtktetcolor/pkg-plist new file mode 100644 index 000000000..cb3eca132 --- /dev/null +++ b/games/gtktetcolor/pkg-plist @@ -0,0 +1,12 @@ +bin/gtktetcolor +etc/sound/events/gtktetcolor.soundlist +share/applications/gtktetcolor.desktop +share/games/gtktetcolor.scores +share/pixmaps/gtktetcolor.xpm +share/sounds/gtktetcolor/bonus.wav +share/sounds/gtktetcolor/gameover.wav +share/sounds/gtktetcolor/linerem.wav +share/locale/de/LC_MESSAGES/gtktetcolor.mo +share/locale/fr/LC_MESSAGES/gtktetcolor.mo +share/locale/ru/LC_MESSAGES/gtktetcolor.mo +@dirrm share/sounds/gtktetcolor diff --git a/games/gturing/Makefile b/games/gturing/Makefile new file mode 100644 index 000000000..54faa4b82 --- /dev/null +++ b/games/gturing/Makefile @@ -0,0 +1,56 @@ +# New ports collection makefile for: games/gturing +# Date created: 08 Jul 2002 +# Whom: Juan Salaverria <rael@vectorstar.net> +# +# $FreeBSD$ +# + +PORTNAME= gturing +PORTVERSION= 0.1.1 +PORTREVISION= 11 +CATEGORIES= games gnome +MASTER_SITES= ftp://ftp.gnome.org/pub/gnome/sources/gturing/0.1/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= A simple turing machine simulator for GNOME 2 + +USE_X_PREFIX= yes +USE_GNOME= gnomeprefix gnomehack libgnomeui +USE_GMAKE= yes +USE_AUTOTOOLS= libtool:15 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" +INSTALLS_OMF= yes +CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} + +DOCS= AUTHORS COPYING NEWS ChangeLog TODO README INSTALL + +EXAMPLEDIR= ${PREFIX}/share/examples/gturing + +EXAMPLES= 3ones2zeroes.tur add.tur bb3.tur dashnumbers.tur addbin.tur \ + bb5.tur dec2bin.tur dec2bin_shift.tur bb2.tur bin2dec.tur \ + bin2dec_shift.tur sort.tur subst.tur + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \ + ${WRKSRC}/configure + +post-install: + ${INSTALL} -d -o root -g wheel -m 0755 ${EXAMPLEDIR} +.for f in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/tapes/${f} ${EXAMPLEDIR} +.endfor +.if !defined(NOPORTDOCS) + ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.post.mk> diff --git a/games/gturing/distinfo b/games/gturing/distinfo new file mode 100644 index 000000000..baf36348a --- /dev/null +++ b/games/gturing/distinfo @@ -0,0 +1,3 @@ +MD5 (gturing-0.1.1.tar.gz) = 69f2ae5afd8dd2e13a224f6b768e45eb +SHA256 (gturing-0.1.1.tar.gz) = 9eb8a1e415952c0f9deeb4c80f098c440d460563854f41313db55df002bb911d +SIZE (gturing-0.1.1.tar.gz) = 533818 diff --git a/games/gturing/files/patch-Makefile.in b/games/gturing/files/patch-Makefile.in new file mode 100644 index 000000000..255d4a6a5 --- /dev/null +++ b/games/gturing/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig Mon Jul 8 02:09:09 2002 ++++ Makefile.in Mon Jul 8 02:52:04 2002 +@@ -116,7 +116,7 @@ + + SUBDIRS = pixmaps tapes po src help + +-desktopdir = $(datadir)/apps/Applications ++desktopdir = $(datadir)/applications + desktop_in_files = gturing.desktop.in + desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) + diff --git a/games/gturing/files/patch-gturing.desktop.in b/games/gturing/files/patch-gturing.desktop.in new file mode 100644 index 000000000..21e6149e4 --- /dev/null +++ b/games/gturing/files/patch-gturing.desktop.in @@ -0,0 +1,7 @@ +--- gturing.desktop.in.orig Sat Jul 14 07:15:50 2001 ++++ gturing.desktop.in Mon Jul 8 22:51:47 2002 +@@ -5,3 +5,4 @@ + Icon=gnome-gturing.png + Terminal=0 + Type=Application ++Categories=Application;Game; diff --git a/games/gturing/files/patch-pixmaps-Makefile.in b/games/gturing/files/patch-pixmaps-Makefile.in new file mode 100644 index 000000000..f928b2c7b --- /dev/null +++ b/games/gturing/files/patch-pixmaps-Makefile.in @@ -0,0 +1,11 @@ +--- pixmaps/Makefile.in.orig Tue Jul 9 01:09:00 2002 ++++ pixmaps/Makefile.in Tue Jul 9 01:22:36 2002 +@@ -114,7 +114,7 @@ + WARN_CFLAGS = @WARN_CFLAGS@ + cxxflags_set = @cxxflags_set@ + +-pixmapsdir = $(datadir)/$(PACKAGE)/pixmaps ++pixmapsdir = $(datadir)/pixmaps + + pixmaps_DATA = gnome-gturing.png play.xpm power.xpm step.xpm stop.xpm + diff --git a/games/gturing/pkg-descr b/games/gturing/pkg-descr new file mode 100644 index 000000000..b60d53359 --- /dev/null +++ b/games/gturing/pkg-descr @@ -0,0 +1,14 @@ +gturing is a simple turing machine simulator with +graphical interface. A Turing machine is the simplest possible +computing device which can only perform very simple operations. +However, almost everything in programming languages can be +written as a program for the Turing machine. + +Of course, no one uses the Turing machine for actual computing +work, but it is very useful in theoretical computer science and +mathematical logic. + +It's a nice complement for students who likes to practice with +theory and a nice toy to play with. + +gpoo@ubiobio.cl diff --git a/games/gturing/pkg-plist b/games/gturing/pkg-plist new file mode 100644 index 000000000..81a2ba01e --- /dev/null +++ b/games/gturing/pkg-plist @@ -0,0 +1,69 @@ +bin/gturing +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%EXAMPLESDIR%%/3ones2zeroes.tur +%%EXAMPLESDIR%%/add.tur +%%EXAMPLESDIR%%/addbin.tur +%%EXAMPLESDIR%%/bb2.tur +%%EXAMPLESDIR%%/bb3.tur +%%EXAMPLESDIR%%/bb5.tur +%%EXAMPLESDIR%%/bin2dec.tur +%%EXAMPLESDIR%%/bin2dec_shift.tur +%%EXAMPLESDIR%%/dashnumbers.tur +%%EXAMPLESDIR%%/dec2bin.tur +%%EXAMPLESDIR%%/dec2bin_shift.tur +%%EXAMPLESDIR%%/sort.tur +%%EXAMPLESDIR%%/subst.tur +share/applications/gturing.desktop +share/gnome/help/gturing/C/figures/mainwin.png +share/gnome/help/gturing/C/gturing.xml +share/gnome/help/gturing/C/legal.xml +share/omf/gturing/gturing-C.omf +share/pixmaps/gnome-gturing.png +share/pixmaps/play.xpm +share/pixmaps/power.xpm +share/pixmaps/step.xpm +share/pixmaps/stop.xpm +share/locale/az/LC_MESSAGES/gturing-2.0.mo +share/locale/cs/LC_MESSAGES/gturing-2.0.mo +share/locale/da/LC_MESSAGES/gturing-2.0.mo +share/locale/de/LC_MESSAGES/gturing-2.0.mo +share/locale/el/LC_MESSAGES/gturing-2.0.mo +share/locale/es/LC_MESSAGES/gturing-2.0.mo +share/locale/et/LC_MESSAGES/gturing-2.0.mo +share/locale/fi/LC_MESSAGES/gturing-2.0.mo +share/locale/fr/LC_MESSAGES/gturing-2.0.mo +share/locale/ga/LC_MESSAGES/gturing-2.0.mo +share/locale/gl/LC_MESSAGES/gturing-2.0.mo +share/locale/hu/LC_MESSAGES/gturing-2.0.mo +share/locale/it/LC_MESSAGES/gturing-2.0.mo +share/locale/ja/LC_MESSAGES/gturing-2.0.mo +share/locale/ko/LC_MESSAGES/gturing-2.0.mo +share/locale/lt/LC_MESSAGES/gturing-2.0.mo +share/locale/nl/LC_MESSAGES/gturing-2.0.mo +share/locale/no/LC_MESSAGES/gturing-2.0.mo +share/locale/pl/LC_MESSAGES/gturing-2.0.mo +share/locale/pt/LC_MESSAGES/gturing-2.0.mo +share/locale/pt_BR/LC_MESSAGES/gturing-2.0.mo +share/locale/ro/LC_MESSAGES/gturing-2.0.mo +share/locale/ru/LC_MESSAGES/gturing-2.0.mo +share/locale/sk/LC_MESSAGES/gturing-2.0.mo +share/locale/sl/LC_MESSAGES/gturing-2.0.mo +share/locale/sv/LC_MESSAGES/gturing-2.0.mo +share/locale/tr/LC_MESSAGES/gturing-2.0.mo +share/locale/uk/LC_MESSAGES/gturing-2.0.mo +share/locale/vi/LC_MESSAGES/gturing-2.0.mo +share/locale/wa/LC_MESSAGES/gturing-2.0.mo +share/locale/zh_CN/LC_MESSAGES/gturing-2.0.mo +share/locale/zh_TW/LC_MESSAGES/gturing-2.0.mo +@dirrm share/omf/gturing +@dirrm share/gnome/help/gturing/C/figures +@dirrm share/gnome/help/gturing/C +@dirrm share/gnome/help/gturing +@dirrm %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/games/gweled/Makefile b/games/gweled/Makefile new file mode 100644 index 000000000..4eb3d7fb8 --- /dev/null +++ b/games/gweled/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: gweled +# Date created: November 28, 2003 +# Whom: James Earl +# +# $FreeBSD$ +# + +PORTNAME= gweled +PORTVERSION= 0.7 +PORTREVISION= 5 +CATEGORIES= games gnome +MASTER_SITES= http://sebdelestaing.free.fr/gweled/Release/ + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GNOME version of the game called "Bejeweled" or "Diamond Mine" + +LIB_DEPENDS= mikmod.2:${PORTSDIR}/audio/libmikmod + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack gnomehier libgnomeui librsvg2 +GNU_CONFIGURE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|/var/games|${PREFIX}/share/games|' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|$${MKDIRPROG-mkdir}|mkdir -p|' \ + ${WRKSRC}/install-sh + +.include <bsd.port.mk> diff --git a/games/gweled/distinfo b/games/gweled/distinfo new file mode 100644 index 000000000..e8b98eefd --- /dev/null +++ b/games/gweled/distinfo @@ -0,0 +1,3 @@ +MD5 (gweled-0.7.tar.gz) = 730fe1737e0b0e9940575aa573d63d84 +SHA256 (gweled-0.7.tar.gz) = 636916cfdb7d39f86431c971f5f212a6199bb1fe3e576fe0b4b2bab56048356f +SIZE (gweled-0.7.tar.gz) = 232178 diff --git a/games/gweled/files/patch-src_Makefile.in b/games/gweled/files/patch-src_Makefile.in new file mode 100644 index 000000000..2e445bece --- /dev/null +++ b/games/gweled/files/patch-src_Makefile.in @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig Fri Jun 9 16:10:56 2006 ++++ src/Makefile.in Fri Jun 9 16:11:08 2006 +@@ -178,7 +178,7 @@ Data_DATA = \ + gweled_icon.png \ + gweled_logo.png + +-gweled_LDADD = @PACKAGE_LIBS@ ++gweled_LDADD = @PACKAGE_LIBS@ -Wl,--export-dynamic + all: all-am + + .SUFFIXES: diff --git a/games/gweled/pkg-descr b/games/gweled/pkg-descr new file mode 100644 index 000000000..1a0e0812c --- /dev/null +++ b/games/gweled/pkg-descr @@ -0,0 +1,6 @@ +Gweled is a Gnome version of a popular PalmOS/Windows/Java game called +"Bejeweled" or "Diamond Mine". The aim of the game is to make alignment +of 3 or more gems, both vertically or horizontally by swapping adjacent +gems. The game ends when there are no possible moves left. + +WWW: http://sebdelestaing.free.fr/gweled/ diff --git a/games/gweled/pkg-install b/games/gweled/pkg-install new file mode 100644 index 000000000..8c40e3417 --- /dev/null +++ b/games/gweled/pkg-install @@ -0,0 +1,13 @@ +#!/bin/sh + +if [ "$2" = "POST-INSTALL" ]; then + mkdir -p ${PKG_PREFIX}/share/games + SCORES="gweled.easy.scores gweled.timed.scores" + for i in ${SCORES}; do + if [ ! -f ${PKG_PREFIX}/share/games/${i} ]; then + touch -f ${PKG_PREFIX}/share/games/${i} + chown games:games ${PKG_PREFIX}/share/games/${i} + chmod 0664 ${PKG_PREFIX}/share/games/${i} + fi + done +fi diff --git a/games/gweled/pkg-plist b/games/gweled/pkg-plist new file mode 100644 index 000000000..36602c990 --- /dev/null +++ b/games/gweled/pkg-plist @@ -0,0 +1,26 @@ +bin/gweled +share/applications/gweled.desktop +@unexec [ -s %D/share/games/gweled.easy.scores ] || rm -f %D/share/games/gweled.easy.scores +@unexec [ -s %D/share/games/gweled.timed.scores ] || rm -f %D/share/games/gweled.timed.scores +share/gweled/gweled.glade +share/gweled/gweled_icon.png +share/gweled/gweled_logo.png +share/pixmaps/gweled.png +share/pixmaps/gweled/cursor.svg +share/pixmaps/gweled/font_24_20.png +share/pixmaps/gweled/font_48_40.png +share/pixmaps/gweled/gem01.svg +share/pixmaps/gweled/gem02.svg +share/pixmaps/gweled/gem03.svg +share/pixmaps/gweled/gem04.svg +share/pixmaps/gweled/gem05.svg +share/pixmaps/gweled/gem06.svg +share/pixmaps/gweled/gem07.svg +share/pixmaps/gweled/tile_even.svg +share/pixmaps/gweled/tile_odd.svg +share/sounds/gweled/autonom.s3m +share/sounds/gweled/click.wav +share/sounds/gweled/swap.wav +@dirrm share/sounds/gweled +@dirrm share/pixmaps/gweled +@dirrm share/gweled diff --git a/games/monkeybubble/Makefile b/games/monkeybubble/Makefile new file mode 100644 index 000000000..9399ca422 --- /dev/null +++ b/games/monkeybubble/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: monkeybubble +# Date created: 06 October 2003 +# Whom: Adam Weinberger +# +# $FreeBSD$ +# + +PORTNAME= monkeybubble +PORTVERSION= 0.4.0 +PORTREVISION= 1 +CATEGORIES= games gnome +MASTER_SITES= http://home.gna.org/monkeybubble/downloads/ +DISTNAME= monkey-bubble-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= GTK2 Puzzle Bobble clone with monkeys + +USE_GNOME= gnomedocutils gnomehack gnomeprefix gnometarget intlhack \ + librsvg2 libgnomeui +USE_GSTREAMER= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +INSTALLS_OMF= yes + +GCONF_SCHEMAS= monkey-bubble.schemas + +.include <bsd.port.pre.mk> + +post-patch: + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-g -O2||g ; \ + s|-Werror||g' + +.include <bsd.port.post.mk> diff --git a/games/monkeybubble/distinfo b/games/monkeybubble/distinfo new file mode 100644 index 000000000..5150184ae --- /dev/null +++ b/games/monkeybubble/distinfo @@ -0,0 +1,3 @@ +MD5 (monkey-bubble-0.4.0.tar.gz) = 0de8a05c8c15e08326d244534dc30f22 +SHA256 (monkey-bubble-0.4.0.tar.gz) = eb96293a0fadbbfc3cd3ae0bbb557d9bf8a4dd8edccdd8ce1b913e8ba49a1c89 +SIZE (monkey-bubble-0.4.0.tar.gz) = 5360713 diff --git a/games/monkeybubble/files/patch-help__C__monkey-bubble.xml b/games/monkeybubble/files/patch-help__C__monkey-bubble.xml new file mode 100644 index 000000000..cef7e42ce --- /dev/null +++ b/games/monkeybubble/files/patch-help__C__monkey-bubble.xml @@ -0,0 +1,29 @@ +--- help/C/monkey-bubble.xml.orig Wed Aug 2 00:12:41 2006 ++++ help/C/monkey-bubble.xml Wed May 2 03:37:19 2007 +@@ -15,6 +15,16 @@ + <article id="index" lang="en"> + <articleinfo> + <title>&app; Manual V&manrevision;</title> ++ <abstract role="description"> ++ <para> ++ Monkey Bubble is in a game in which you must explode all bubbles in the ++ game area. ++ ++ You explode bubbles by putting at least 3 of the same colour in contact. ++ Any bubble that is connected to the top or the sides of the game area by ++ bubbles you just exploded falls too. ++ </para> ++ </abstract> + <copyright> + <year>2004</year> + <holder>Thomas Cataldo</holder> +@@ -22,6 +32,9 @@ + <publisher> + <publishername>GNOME Documentation Project</publishername> + </publisher> ++ <othercredit role="maintainer"> ++ <name>GNOME Documentation Project</name> ++ </othercredit> + <authorgroup> + <author> + <firstname>Thomas</firstname> diff --git a/games/monkeybubble/pkg-descr b/games/monkeybubble/pkg-descr new file mode 100644 index 000000000..cafb063d6 --- /dev/null +++ b/games/monkeybubble/pkg-descr @@ -0,0 +1,7 @@ +Think Puzzle Bobble, but with monkeys. Monkeys that throw +colourful things. It's a game, except SO MUCH MORE, because +it has monkeys. It has sound and network play and a spiffy +GTK+-2 interface, but that's all irrelevant because, come on... +monkeys! + +WWW: http://home.gna.org/monkeybubble/ diff --git a/games/monkeybubble/pkg-plist b/games/monkeybubble/pkg-plist new file mode 100644 index 000000000..1daa5156c --- /dev/null +++ b/games/monkeybubble/pkg-plist @@ -0,0 +1,190 @@ +bin/monkey-bubble +bin/monkey-srv +share/applications/monkey-bubble.desktop +share/gnome/help/monkey-bubble/C/monkey-bubble.xml +share/gnome/help/monkey-bubble/fr/monkey-bubble.xml +share/monkey-bubble/gfx/banana.svg +share/monkey-bubble/gfx/bubbles/bubble_01.svg +share/monkey-bubble/gfx/bubbles/bubble_02.svg +share/monkey-bubble/gfx/bubbles/bubble_03.svg +share/monkey-bubble/gfx/bubbles/bubble_04.svg +share/monkey-bubble/gfx/bubbles/bubble_05.svg +share/monkey-bubble/gfx/bubbles/bubble_06.svg +share/monkey-bubble/gfx/bubbles/bubble_07.svg +share/monkey-bubble/gfx/bubbles/bubble_08.svg +share/monkey-bubble/gfx/bubbles/little_bubble_01.svg +share/monkey-bubble/gfx/bubbles/little_bubble_02.svg +share/monkey-bubble/gfx/bubbles/little_bubble_03.svg +share/monkey-bubble/gfx/bubbles/little_bubble_04.svg +share/monkey-bubble/gfx/bubbles/little_bubble_05.svg +share/monkey-bubble/gfx/bubbles/little_bubble_06.svg +share/monkey-bubble/gfx/bubbles/little_bubble_07.svg +share/monkey-bubble/gfx/bubbles/little_bubble_08.svg +share/monkey-bubble/gfx/frozen-bubble/back_hiscores.png +share/monkey-bubble/gfx/harm.svg +share/monkey-bubble/gfx/harm_down.svg +share/monkey-bubble/gfx/harm_shoot.svg +share/monkey-bubble/gfx/harm_up.svg +share/monkey-bubble/gfx/hurry_up.svg +share/monkey-bubble/gfx/layout_1_player.svg +share/monkey-bubble/gfx/layout_2_players.svg +share/monkey-bubble/gfx/layout_network_player.svg +share/monkey-bubble/gfx/left_monkey.svg +share/monkey-bubble/gfx/looser.svg +share/monkey-bubble/gfx/lost.svg +share/monkey-bubble/gfx/monkey.png +share/monkey-bubble/gfx/number/0.svg +share/monkey-bubble/gfx/number/1.svg +share/monkey-bubble/gfx/number/2.svg +share/monkey-bubble/gfx/number/3.svg +share/monkey-bubble/gfx/number/4.svg +share/monkey-bubble/gfx/number/5.svg +share/monkey-bubble/gfx/number/6.svg +share/monkey-bubble/gfx/number/7.svg +share/monkey-bubble/gfx/number/8.svg +share/monkey-bubble/gfx/number/9.svg +share/monkey-bubble/gfx/pane.svg +share/monkey-bubble/gfx/pause.svg +share/monkey-bubble/gfx/right_monkey.svg +share/monkey-bubble/gfx/snake/snake.svg +share/monkey-bubble/gfx/snake/snake_-0.svg +share/monkey-bubble/gfx/snake/snake_-1.svg +share/monkey-bubble/gfx/snake/snake_-10.svg +share/monkey-bubble/gfx/snake/snake_-11.svg +share/monkey-bubble/gfx/snake/snake_-12.svg +share/monkey-bubble/gfx/snake/snake_-13.svg +share/monkey-bubble/gfx/snake/snake_-14.svg +share/monkey-bubble/gfx/snake/snake_-15.svg +share/monkey-bubble/gfx/snake/snake_-16.svg +share/monkey-bubble/gfx/snake/snake_-17.svg +share/monkey-bubble/gfx/snake/snake_-18.svg +share/monkey-bubble/gfx/snake/snake_-19.svg +share/monkey-bubble/gfx/snake/snake_-2.svg +share/monkey-bubble/gfx/snake/snake_-20.svg +share/monkey-bubble/gfx/snake/snake_-21.svg +share/monkey-bubble/gfx/snake/snake_-22.svg +share/monkey-bubble/gfx/snake/snake_-23.svg +share/monkey-bubble/gfx/snake/snake_-24.svg +share/monkey-bubble/gfx/snake/snake_-25.svg +share/monkey-bubble/gfx/snake/snake_-26.svg +share/monkey-bubble/gfx/snake/snake_-27.svg +share/monkey-bubble/gfx/snake/snake_-28.svg +share/monkey-bubble/gfx/snake/snake_-29.svg +share/monkey-bubble/gfx/snake/snake_-3.svg +share/monkey-bubble/gfx/snake/snake_-30.svg +share/monkey-bubble/gfx/snake/snake_-31.svg +share/monkey-bubble/gfx/snake/snake_-32.svg +share/monkey-bubble/gfx/snake/snake_-33.svg +share/monkey-bubble/gfx/snake/snake_-34.svg +share/monkey-bubble/gfx/snake/snake_-35.svg +share/monkey-bubble/gfx/snake/snake_-36.svg +share/monkey-bubble/gfx/snake/snake_-37.svg +share/monkey-bubble/gfx/snake/snake_-38.svg +share/monkey-bubble/gfx/snake/snake_-39.svg +share/monkey-bubble/gfx/snake/snake_-4.svg +share/monkey-bubble/gfx/snake/snake_-40.svg +share/monkey-bubble/gfx/snake/snake_-5.svg +share/monkey-bubble/gfx/snake/snake_-6.svg +share/monkey-bubble/gfx/snake/snake_-7.svg +share/monkey-bubble/gfx/snake/snake_-8.svg +share/monkey-bubble/gfx/snake/snake_-9.svg +share/monkey-bubble/gfx/snake/snake_0.svg +share/monkey-bubble/gfx/snake/snake_1.svg +share/monkey-bubble/gfx/snake/snake_10.svg +share/monkey-bubble/gfx/snake/snake_11.svg +share/monkey-bubble/gfx/snake/snake_12.svg +share/monkey-bubble/gfx/snake/snake_13.svg +share/monkey-bubble/gfx/snake/snake_14.svg +share/monkey-bubble/gfx/snake/snake_15.svg +share/monkey-bubble/gfx/snake/snake_16.svg +share/monkey-bubble/gfx/snake/snake_17.svg +share/monkey-bubble/gfx/snake/snake_18.svg +share/monkey-bubble/gfx/snake/snake_19.svg +share/monkey-bubble/gfx/snake/snake_2.svg +share/monkey-bubble/gfx/snake/snake_20.svg +share/monkey-bubble/gfx/snake/snake_21.svg +share/monkey-bubble/gfx/snake/snake_22.svg +share/monkey-bubble/gfx/snake/snake_23.svg +share/monkey-bubble/gfx/snake/snake_24.svg +share/monkey-bubble/gfx/snake/snake_25.svg +share/monkey-bubble/gfx/snake/snake_26.svg +share/monkey-bubble/gfx/snake/snake_27.svg +share/monkey-bubble/gfx/snake/snake_28.svg +share/monkey-bubble/gfx/snake/snake_29.svg +share/monkey-bubble/gfx/snake/snake_3.svg +share/monkey-bubble/gfx/snake/snake_30.svg +share/monkey-bubble/gfx/snake/snake_31.svg +share/monkey-bubble/gfx/snake/snake_32.svg +share/monkey-bubble/gfx/snake/snake_33.svg +share/monkey-bubble/gfx/snake/snake_34.svg +share/monkey-bubble/gfx/snake/snake_35.svg +share/monkey-bubble/gfx/snake/snake_36.svg +share/monkey-bubble/gfx/snake/snake_37.svg +share/monkey-bubble/gfx/snake/snake_38.svg +share/monkey-bubble/gfx/snake/snake_39.svg +share/monkey-bubble/gfx/snake/snake_4.svg +share/monkey-bubble/gfx/snake/snake_40.svg +share/monkey-bubble/gfx/snake/snake_5.svg +share/monkey-bubble/gfx/snake/snake_6.svg +share/monkey-bubble/gfx/snake/snake_7.svg +share/monkey-bubble/gfx/snake/snake_8.svg +share/monkey-bubble/gfx/snake/snake_9.svg +share/monkey-bubble/gfx/snake-body.svg +share/monkey-bubble/gfx/splash.svg +share/monkey-bubble/gfx/star.svg +share/monkey-bubble/gfx/tomato.svg +share/monkey-bubble/gfx/win.svg +share/monkey-bubble/glade/keybinding.glade +share/monkey-bubble/glade/monkey-bubble.glade +share/monkey-bubble/glade/netgame.glade +share/monkey-bubble/glade/netserver.glade +share/monkey-bubble/levels +share/monkey-bubble/sounds/destroy_group.wav +share/monkey-bubble/sounds/game.ogg +share/monkey-bubble/sounds/launch.wav +share/monkey-bubble/sounds/rebound.wav +share/monkey-bubble/sounds/splash.ogg +share/monkey-bubble/sounds/stick.wav +share/omf/monkey-bubble/monkey-bubble-C.omf +share/omf/monkey-bubble/monkey-bubble-fr.omf +share/pixmaps/monkey-bubble-icon.png +share/locale/bg/LC_MESSAGES/monkey-bubble.mo +share/locale/cs/LC_MESSAGES/monkey-bubble.mo +share/locale/de/LC_MESSAGES/monkey-bubble.mo +share/locale/en_CA/LC_MESSAGES/monkey-bubble.mo +share/locale/en_GB/LC_MESSAGES/monkey-bubble.mo +share/locale/es/LC_MESSAGES/monkey-bubble.mo +share/locale/eu/LC_MESSAGES/monkey-bubble.mo +share/locale/fi/LC_MESSAGES/monkey-bubble.mo +share/locale/fr/LC_MESSAGES/monkey-bubble.mo +share/locale/hr/LC_MESSAGES/monkey-bubble.mo +share/locale/hu/LC_MESSAGES/monkey-bubble.mo +share/locale/ja/LC_MESSAGES/monkey-bubble.mo +share/locale/lv/LC_MESSAGES/monkey-bubble.mo +share/locale/ms/LC_MESSAGES/monkey-bubble.mo +share/locale/ne/LC_MESSAGES/monkey-bubble.mo +share/locale/nl/LC_MESSAGES/monkey-bubble.mo +share/locale/pt/LC_MESSAGES/monkey-bubble.mo +share/locale/pt_BR/LC_MESSAGES/monkey-bubble.mo +share/locale/ru/LC_MESSAGES/monkey-bubble.mo +share/locale/rw/LC_MESSAGES/monkey-bubble.mo +share/locale/sr/LC_MESSAGES/monkey-bubble.mo +share/locale/sr@Latn/LC_MESSAGES/monkey-bubble.mo +share/locale/sv/LC_MESSAGES/monkey-bubble.mo +share/locale/tr/LC_MESSAGES/monkey-bubble.mo +share/locale/uk/LC_MESSAGES/monkey-bubble.mo +share/locale/vi/LC_MESSAGES/monkey-bubble.mo +share/locale/zh_CN/LC_MESSAGES/monkey-bubble.mo +share/locale/zh_TW/LC_MESSAGES/monkey-bubble.mo +@dirrm share/omf/monkey-bubble +@dirrm share/monkey-bubble/sounds +@dirrm share/monkey-bubble/glade +@dirrm share/monkey-bubble/gfx/snake +@dirrm share/monkey-bubble/gfx/number +@dirrm share/monkey-bubble/gfx/frozen-bubble +@dirrm share/monkey-bubble/gfx/bubbles +@dirrm share/monkey-bubble/gfx +@dirrm share/monkey-bubble +@dirrm share/gnome/help/monkey-bubble/fr +@dirrm share/gnome/help/monkey-bubble/C +@dirrm share/gnome/help/monkey-bubble diff --git a/games/monster-masher/Makefile b/games/monster-masher/Makefile new file mode 100644 index 000000000..2b3206ff9 --- /dev/null +++ b/games/monster-masher/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: Monster-Masher +# Date created: 26 Oct 2003 +# Whom: Koop Mast <einekoai@chello.nl> +# +# $FreeBSD$ +# + +PORTNAME= monster +PORTVERSION= 1.7 +PORTREVISION= 3 +CATEGORIES= games gnome +MASTER_SITES= http://www.cs.aau.dk/~olau/monster-masher/source/ +PKGNAMESUFFIX= -masher +DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Gnomemm puzzle game where you have to clean the caves of monsters + +LIB_DEPENDS= gnomeuimm-2.6.1:${PORTSDIR}/x11-toolkits/libgnomeuimm26 + +USE_X_PREFIX= yes +USE_BZIP2= yes +USE_GNOME= gnomeprefix gnomehack gnometarget intlhack +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +GCONF_SCHEMAS= monster-masher.schemas + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500010 +IGNORE= Freezes when starting a new game +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-vector.hpp +.endif + +.include <bsd.port.post.mk> diff --git a/games/monster-masher/distinfo b/games/monster-masher/distinfo new file mode 100644 index 000000000..835268485 --- /dev/null +++ b/games/monster-masher/distinfo @@ -0,0 +1,3 @@ +MD5 (monster-masher-1.7.tar.bz2) = 2fd7df60c87041ff8fcf03944ae01ed0 +SHA256 (monster-masher-1.7.tar.bz2) = bf8096883abae15afff09e8a869f1edb4eaaa5307e9e5d2bfd50bb4baded1231 +SIZE (monster-masher-1.7.tar.bz2) = 1091488 diff --git a/games/monster-masher/files/extra-patch-src-vector.hpp b/games/monster-masher/files/extra-patch-src-vector.hpp new file mode 100644 index 000000000..1ba2faf28 --- /dev/null +++ b/games/monster-masher/files/extra-patch-src-vector.hpp @@ -0,0 +1,30 @@ +--- src/vector.hpp.orig Fri Aug 15 19:07:16 2003 ++++ src/vector.hpp Wed Nov 5 20:34:27 2003 +@@ -107,25 +107,17 @@ + } + + template <typename T> +-inline bool operator !=(Vector<T> lhs, Vector<T> rhs) +-{ +- return !(lhs == rhs); +-} +- +-template <typename T> + inline bool operator ==(Vector<T> lhs, Vector<T> rhs) + { + return lhs.x == rhs.x && lhs.y == rhs.y; + } + +-template <> +-inline bool operator ==<double>(Vector<double> lhs, Vector<double> rhs) ++inline bool operator ==(Vector<double> lhs, Vector<double> rhs) + { + return std::abs(lhs.x - rhs.x) < 0.001 && std::abs(lhs.y - rhs.y) < 0.001; + } + +-template <> +-inline bool operator ==<float>(Vector<float> lhs, Vector<float> rhs) ++inline bool operator ==(Vector<float> lhs, Vector<float> rhs) + { + return std::abs(lhs.x - rhs.x) < 0.001 && std::abs(lhs.y - rhs.y) < 0.001; + } diff --git a/games/monster-masher/files/patch-src-Makefile.in b/games/monster-masher/files/patch-src-Makefile.in new file mode 100644 index 000000000..8e80d68a0 --- /dev/null +++ b/games/monster-masher/files/patch-src-Makefile.in @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig Thu Apr 28 14:07:13 2005 ++++ src/Makefile.in Thu Apr 28 14:07:55 2005 +@@ -199,7 +199,7 @@ + ucompose.hpp \ + vector.hpp + +-@MAINTAINER_MODE_FALSE@AM_CXXFLAGS = @CXXFLAGS@ $(DEPS_CFLAGS) -Wall -O3 ++@MAINTAINER_MODE_FALSE@AM_CXXFLAGS = @CXXFLAGS@ $(DEPS_CFLAGS) -Wall @CFLAGS@ + + @MAINTAINER_MODE_TRUE@AM_CXXFLAGS = @CXXFLAGS@ $(DEPS_CFLAGS) -O0 -Wall + diff --git a/games/monster-masher/files/patch-src::arena.cpp b/games/monster-masher/files/patch-src::arena.cpp new file mode 100644 index 000000000..aaf23107e --- /dev/null +++ b/games/monster-masher/files/patch-src::arena.cpp @@ -0,0 +1,21 @@ +--- src/arena.cpp.orig Mon Nov 3 06:47:41 2003 ++++ src/arena.cpp Wed Nov 5 20:32:03 2003 +@@ -64,11 +64,16 @@ + + Vector<int> Arena::random_tile() + { ++ const size_t ax = size.x - 2; ++ const size_t ay = size.y - 2; ++ const size_t av = ax * ay; ++ + Vector<int> t; + + do { +- t.x = std::rand() % (size.x - 2) + 1; +- t.y = std::rand() % (size.y - 2) + 1; ++ const int rnd = std::rand() % av; ++ t.x = rnd % ax + 1; ++ t.y = rnd / ax + 1; + } while (occupier(t) != 0); + + return t; diff --git a/games/monster-masher/pkg-descr b/games/monster-masher/pkg-descr new file mode 100644 index 000000000..8a304bdcd --- /dev/null +++ b/games/monster-masher/pkg-descr @@ -0,0 +1,6 @@ +Monster Masher is an action game for the Gnome desktop environment. +The basic idea is that you, as levitation worker gnome, has to clean +the caves for monsters that want to roll over you. You do the cleaning +by mashing the monsters with stone blocks. + +WWW: http://www.cs.auc.dk/~olau/monster-masher/ diff --git a/games/monster-masher/pkg-plist b/games/monster-masher/pkg-plist new file mode 100644 index 000000000..a00df4574 --- /dev/null +++ b/games/monster-masher/pkg-plist @@ -0,0 +1,125 @@ +bin/monster-masher +share/applications/monster-masher.desktop +share/monster-masher/glade/ui.glade +share/monster-masher/pixmaps/block-24.png +share/monster-masher/pixmaps/block-32.png +share/monster-masher/pixmaps/egg-layer-egg-24.png +share/monster-masher/pixmaps/egg-layer-egg-32.png +share/monster-masher/pixmaps/egg-layer-gore-24.png +share/monster-masher/pixmaps/egg-layer-gore-32.png +share/monster-masher/pixmaps/egg-layer-monster-24.png +share/monster-masher/pixmaps/egg-layer-monster-32.png +share/monster-masher/pixmaps/footprint-down-leftmost.png +share/monster-masher/pixmaps/footprint-down-rightmost.png +share/monster-masher/pixmaps/footprint-left-down-leftmost.png +share/monster-masher/pixmaps/footprint-left-down-rightmost.png +share/monster-masher/pixmaps/footprint-left-leftmost.png +share/monster-masher/pixmaps/footprint-left-rightmost.png +share/monster-masher/pixmaps/footprint-left-up-leftmost.png +share/monster-masher/pixmaps/footprint-left-up-rightmost.png +share/monster-masher/pixmaps/footprint-right-down-leftmost.png +share/monster-masher/pixmaps/footprint-right-down-rightmost.png +share/monster-masher/pixmaps/footprint-right-leftmost.png +share/monster-masher/pixmaps/footprint-right-rightmost.png +share/monster-masher/pixmaps/footprint-right-up-leftmost.png +share/monster-masher/pixmaps/footprint-right-up-rightmost.png +share/monster-masher/pixmaps/footprint-up-leftmost.png +share/monster-masher/pixmaps/footprint-up-rightmost.png +share/monster-masher/pixmaps/freeze-box-24.png +share/monster-masher/pixmaps/freeze-box-32.png +share/monster-masher/pixmaps/hard-egg-24.png +share/monster-masher/pixmaps/hard-egg-32.png +share/monster-masher/pixmaps/hard-gore-24.png +share/monster-masher/pixmaps/hard-gore-32.png +share/monster-masher/pixmaps/hard-monster-24.png +share/monster-masher/pixmaps/hard-monster-32.png +share/monster-masher/pixmaps/hero-down-24.png +share/monster-masher/pixmaps/hero-down-32.png +share/monster-masher/pixmaps/hero-gore-24.png +share/monster-masher/pixmaps/hero-gore-32.png +share/monster-masher/pixmaps/hero-left-24.png +share/monster-masher/pixmaps/hero-left-32.png +share/monster-masher/pixmaps/hero-left-down-24.png +share/monster-masher/pixmaps/hero-left-down-32.png +share/monster-masher/pixmaps/hero-left-up-24.png +share/monster-masher/pixmaps/hero-left-up-32.png +share/monster-masher/pixmaps/hero-right-24.png +share/monster-masher/pixmaps/hero-right-32.png +share/monster-masher/pixmaps/hero-right-down-24.png +share/monster-masher/pixmaps/hero-right-down-32.png +share/monster-masher/pixmaps/hero-right-up-24.png +share/monster-masher/pixmaps/hero-right-up-32.png +share/monster-masher/pixmaps/hero-up-24.png +share/monster-masher/pixmaps/hero-up-32.png +share/monster-masher/pixmaps/invisible-hero-down-24.png +share/monster-masher/pixmaps/invisible-hero-down-32.png +share/monster-masher/pixmaps/invisible-hero-left-24.png +share/monster-masher/pixmaps/invisible-hero-left-32.png +share/monster-masher/pixmaps/invisible-hero-left-down-24.png +share/monster-masher/pixmaps/invisible-hero-left-down-32.png +share/monster-masher/pixmaps/invisible-hero-left-up-24.png +share/monster-masher/pixmaps/invisible-hero-left-up-32.png +share/monster-masher/pixmaps/invisible-hero-right-24.png +share/monster-masher/pixmaps/invisible-hero-right-32.png +share/monster-masher/pixmaps/invisible-hero-right-down-24.png +share/monster-masher/pixmaps/invisible-hero-right-down-32.png +share/monster-masher/pixmaps/invisible-hero-right-up-24.png +share/monster-masher/pixmaps/invisible-hero-right-up-32.png +share/monster-masher/pixmaps/invisible-hero-up-24.png +share/monster-masher/pixmaps/invisible-hero-up-32.png +share/monster-masher/pixmaps/levitation-24.png +share/monster-masher/pixmaps/levitation-32.png +share/monster-masher/pixmaps/monster-wall-24.png +share/monster-masher/pixmaps/monster-wall-32.png +share/monster-masher/pixmaps/plain-egg-24.png +share/monster-masher/pixmaps/plain-egg-32.png +share/monster-masher/pixmaps/plain-gore-24.png +share/monster-masher/pixmaps/plain-gore-32.png +share/monster-masher/pixmaps/plain-monster-24.png +share/monster-masher/pixmaps/plain-monster-32.png +share/monster-masher/pixmaps/power-up-explode-24.png +share/monster-masher/pixmaps/power-up-explode-32.png +share/monster-masher/pixmaps/power-up-freeze-24.png +share/monster-masher/pixmaps/power-up-freeze-32.png +share/monster-masher/pixmaps/power-up-invisibility-24.png +share/monster-masher/pixmaps/power-up-invisibility-32.png +share/monster-masher/pixmaps/seeker-egg-24.png +share/monster-masher/pixmaps/seeker-egg-32.png +share/monster-masher/pixmaps/seeker-gore-24.png +share/monster-masher/pixmaps/seeker-gore-32.png +share/monster-masher/pixmaps/seeker-monster-24.png +share/monster-masher/pixmaps/seeker-monster-32.png +share/monster-masher/pixmaps/splash.jpg +share/monster-masher/pixmaps/wall-24.png +share/monster-masher/pixmaps/wall-32.png +share/monster-masher/sounds/clinck.wav +share/monster-masher/sounds/splat.wav +share/pixmaps/monster-masher.png +share/locale/az/LC_MESSAGES/monster-masher.mo +share/locale/cs/LC_MESSAGES/monster-masher.mo +share/locale/cy/LC_MESSAGES/monster-masher.mo +share/locale/da/LC_MESSAGES/monster-masher.mo +share/locale/de/LC_MESSAGES/monster-masher.mo +share/locale/el/LC_MESSAGES/monster-masher.mo +share/locale/en_CA/LC_MESSAGES/monster-masher.mo +share/locale/en_GB/LC_MESSAGES/monster-masher.mo +share/locale/es/LC_MESSAGES/monster-masher.mo +share/locale/eu/LC_MESSAGES/monster-masher.mo +share/locale/ga/LC_MESSAGES/monster-masher.mo +share/locale/hr/LC_MESSAGES/monster-masher.mo +share/locale/it/LC_MESSAGES/monster-masher.mo +share/locale/lt/LC_MESSAGES/monster-masher.mo +share/locale/nl/LC_MESSAGES/monster-masher.mo +share/locale/no/LC_MESSAGES/monster-masher.mo +share/locale/pl/LC_MESSAGES/monster-masher.mo +share/locale/pt/LC_MESSAGES/monster-masher.mo +share/locale/pt_BR/LC_MESSAGES/monster-masher.mo +share/locale/sr/LC_MESSAGES/monster-masher.mo +share/locale/sr@Latn/LC_MESSAGES/monster-masher.mo +share/locale/sv/LC_MESSAGES/monster-masher.mo +share/locale/tr/LC_MESSAGES/monster-masher.mo +share/locale/zh_TW/LC_MESSAGES/monster-masher.mo +@dirrm share/monster-masher/glade +@dirrm share/monster-masher/pixmaps +@dirrm share/monster-masher/sounds +@dirrm share/monster-masher diff --git a/games/pioneers/Makefile b/games/pioneers/Makefile new file mode 100644 index 000000000..a3231a050 --- /dev/null +++ b/games/pioneers/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: gnocotan +# Date created: 22nd July 2000 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= pioneers +PORTVERSION= 0.10.2 +PORTREVISION= 3 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} +MASTER_SITE_SUBDIR= pio + +MAINTAINER= stefan@FreeBSD.org +COMMENT= An Internet playable version of the Settlers of Catan for GNOME/GTK+ + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_GETTEXT= yes +USE_GNOME= gnomehack gnomeprefix gtk20 libgnome +INSTALLS_OMF= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +MAN6= pioneers.6 pioneers-server-gtk.6 pioneers-server-console.6 \ + pioneersai.6 pioneers-meta-server.6 + +.include <bsd.port.mk> diff --git a/games/pioneers/distinfo b/games/pioneers/distinfo new file mode 100644 index 000000000..4bd96eafd --- /dev/null +++ b/games/pioneers/distinfo @@ -0,0 +1,3 @@ +MD5 (pioneers-0.10.2.tar.gz) = a363abbced6054dd87040c63db5007c4 +SHA256 (pioneers-0.10.2.tar.gz) = d1f76b29b06a2724245ba7eaf6c1b28cdae53ab45d66713db6bcb100efc5127c +SIZE (pioneers-0.10.2.tar.gz) = 2518677 diff --git a/games/pioneers/pkg-descr b/games/pioneers/pkg-descr new file mode 100644 index 000000000..78d7f8125 --- /dev/null +++ b/games/pioneers/pkg-descr @@ -0,0 +1,4 @@ +Pioneers is an Internet playable implementation of the Settlers of Catan board +game. The aim is to remain as faithful to the board game as is possible. + +WWW: http://pio.sourceforge.net/ diff --git a/games/pioneers/pkg-plist b/games/pioneers/pkg-plist new file mode 100644 index 000000000..fcf68b7f2 --- /dev/null +++ b/games/pioneers/pkg-plist @@ -0,0 +1,158 @@ +bin/pioneers +bin/pioneers-editor +bin/pioneers-meta-server +bin/pioneers-server-console +bin/pioneers-server-gtk +bin/pioneersai +share/applications/pioneers-editor.desktop +share/applications/pioneers-server.desktop +share/applications/pioneers.desktop +share/games/pioneers/5-6-player.game +share/games/pioneers/Another_swimming_pool_in_the_wall.game +share/games/pioneers/Cube.game +share/games/pioneers/Evil_square.game +share/games/pioneers/GuerreDe100ans.game +share/games/pioneers/Mini_another_swimming_pool_in_the_wall.game +share/games/pioneers/archipel_gold.game +share/games/pioneers/canyon.game +share/games/pioneers/coeur.game +share/games/pioneers/computer_names +share/games/pioneers/conquest+ports.game +share/games/pioneers/conquest.game +share/games/pioneers/crane_island.game +share/games/pioneers/default.game +share/games/pioneers/four-islands.game +share/games/pioneers/henjes.game +share/games/pioneers/iles.game +share/games/pioneers/lobby.game +share/games/pioneers/lorindol.game +share/games/pioneers/pond.game +share/games/pioneers/seafarers-gold.game +share/games/pioneers/seafarers.game +share/games/pioneers/small.game +share/games/pioneers/square.game +share/games/pioneers/star.game +share/games/pioneers/themes/FreeCIV-like/board.png +share/games/pioneers/themes/FreeCIV-like/desert.png +share/games/pioneers/themes/FreeCIV-like/field.png +share/games/pioneers/themes/FreeCIV-like/forest.png +share/games/pioneers/themes/FreeCIV-like/hill.png +share/games/pioneers/themes/FreeCIV-like/mountain.png +share/games/pioneers/themes/FreeCIV-like/pasture.png +share/games/pioneers/themes/FreeCIV-like/sea.png +share/games/pioneers/themes/FreeCIV-like/theme.cfg +share/games/pioneers/themes/Iceland/desert.png +share/games/pioneers/themes/Iceland/field_grain.png +share/games/pioneers/themes/Iceland/forest_lumber.png +share/games/pioneers/themes/Iceland/gold.png +share/games/pioneers/themes/Iceland/hill_brick.png +share/games/pioneers/themes/Iceland/mountain_ore.png +share/games/pioneers/themes/Iceland/pasture_wool.png +share/games/pioneers/themes/Iceland/theme.cfg +share/games/pioneers/themes/Tiny/board.png +share/games/pioneers/themes/Tiny/brick-lorindol.png +share/games/pioneers/themes/Tiny/brick-port.png +share/games/pioneers/themes/Tiny/desert-lorindol.png +share/games/pioneers/themes/Tiny/gold-lorindol.png +share/games/pioneers/themes/Tiny/grain-lorindol.png +share/games/pioneers/themes/Tiny/grain-port.png +share/games/pioneers/themes/Tiny/lumber-lorindol.png +share/games/pioneers/themes/Tiny/lumber-port.png +share/games/pioneers/themes/Tiny/ore-lorindol.png +share/games/pioneers/themes/Tiny/ore-port.png +share/games/pioneers/themes/Tiny/sea-lorindol.png +share/games/pioneers/themes/Tiny/theme.cfg +share/games/pioneers/themes/Tiny/wool-lorindol.png +share/games/pioneers/themes/Tiny/wool-port.png +share/games/pioneers/themes/Wesnoth-like/board.png +share/games/pioneers/themes/Wesnoth-like/desert.png +share/games/pioneers/themes/Wesnoth-like/field.png +share/games/pioneers/themes/Wesnoth-like/forest.png +share/games/pioneers/themes/Wesnoth-like/gold.png +share/games/pioneers/themes/Wesnoth-like/hill.png +share/games/pioneers/themes/Wesnoth-like/mountain.png +share/games/pioneers/themes/Wesnoth-like/pasture.png +share/games/pioneers/themes/Wesnoth-like/sea.png +share/games/pioneers/themes/Wesnoth-like/theme.cfg +share/games/pioneers/themes/board.png +share/games/pioneers/themes/desert.png +share/games/pioneers/themes/field.png +share/games/pioneers/themes/forest.png +share/games/pioneers/themes/gold.png +share/games/pioneers/themes/hill.png +share/games/pioneers/themes/mountain.png +share/games/pioneers/themes/pasture.png +share/games/pioneers/themes/plain.png +share/games/pioneers/themes/sea.png +share/games/pioneers/x.game +share/gnome/help/pioneers/C/images/actions.png +share/gnome/help/pioneers/C/images/chat.png +share/gnome/help/pioneers/C/images/client.png +share/gnome/help/pioneers/C/images/connect-dialog.png +share/gnome/help/pioneers/C/images/desert.png +share/gnome/help/pioneers/C/images/develop-cards.png +share/gnome/help/pioneers/C/images/discard-dialog.png +share/gnome/help/pioneers/C/images/discards.png +share/gnome/help/pioneers/C/images/field.png +share/gnome/help/pioneers/C/images/forest.png +share/gnome/help/pioneers/C/images/gameover-dialog.png +share/gnome/help/pioneers/C/images/hill.png +share/gnome/help/pioneers/C/images/identity.png +share/gnome/help/pioneers/C/images/join-private-dialog.png +share/gnome/help/pioneers/C/images/legend-dialog.png +share/gnome/help/pioneers/C/images/map.png +share/gnome/help/pioneers/C/images/messages.png +share/gnome/help/pioneers/C/images/monopoly-dialog.png +share/gnome/help/pioneers/C/images/mountain.png +share/gnome/help/pioneers/C/images/pasture.png +share/gnome/help/pioneers/C/images/place-robber.png +share/gnome/help/pioneers/C/images/player-summary.png +share/gnome/help/pioneers/C/images/plenty-dialog.png +share/gnome/help/pioneers/C/images/quote.png +share/gnome/help/pioneers/C/images/resources.png +share/gnome/help/pioneers/C/images/sea.png +share/gnome/help/pioneers/C/images/server-create.png +share/gnome/help/pioneers/C/images/servers-dialog.png +share/gnome/help/pioneers/C/images/status.png +share/gnome/help/pioneers/C/images/steal-from.png +share/gnome/help/pioneers/C/images/trade.png +share/gnome/help/pioneers/C/legal.xml +share/gnome/help/pioneers/C/pioneers.xml +share/omf/pioneers/pioneers-C.omf +share/pixmaps/pioneers-editor.png +share/pixmaps/pioneers-server.png +share/pixmaps/pioneers.png +share/pixmaps/pioneers/brick.png +share/pixmaps/pioneers/bridge.png +share/pixmaps/pioneers/city.png +share/pixmaps/pioneers/develop.png +share/pixmaps/pioneers/dice.png +share/pixmaps/pioneers/finish.png +share/pixmaps/pioneers/grain.png +share/pixmaps/pioneers/lumber.png +share/pixmaps/pioneers/ore.png +share/pixmaps/pioneers/road.png +share/pixmaps/pioneers/settlement.png +share/pixmaps/pioneers/ship.png +share/pixmaps/pioneers/ship_move.png +share/pixmaps/pioneers/splash.png +share/pixmaps/pioneers/trade.png +share/pixmaps/pioneers/wool.png +share/locale/de/LC_MESSAGES/pioneers.mo +share/locale/es/LC_MESSAGES/pioneers.mo +share/locale/fr/LC_MESSAGES/pioneers.mo +share/locale/hu/LC_MESSAGES/pioneers.mo +share/locale/it/LC_MESSAGES/pioneers.mo +share/locale/nl/LC_MESSAGES/pioneers.mo +share/locale/sv/LC_MESSAGES/pioneers.mo +@dirrm share/games/pioneers/themes/FreeCIV-like +@dirrm share/games/pioneers/themes/Iceland +@dirrm share/games/pioneers/themes/Tiny +@dirrm share/games/pioneers/themes/Wesnoth-like +@dirrm share/games/pioneers/themes +@dirrm share/games/pioneers +@dirrm share/gnome/help/pioneers/C/images +@dirrm share/gnome/help/pioneers/C +@dirrm share/gnome/help/pioneers +@dirrm share/omf/pioneers +@dirrm share/pixmaps/pioneers diff --git a/games/teg/Makefile b/games/teg/Makefile new file mode 100644 index 000000000..a98f0b80e --- /dev/null +++ b/games/teg/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: teg +# Date created: 31 October 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= teg +PORTVERSION= 0.11.2 +PORTREVISION= 1 +CATEGORIES= games gnome +MASTER_SITES= SF + +MAINTAINER= ports@FreeBSD.org +COMMENT= A turn-based strategy game for GNOME + +USE_GNOME= gnomehack gnomeprefix gnometarget intlhack libgnomeui +USE_GMAKE= yes +USE_AUTOTOOLS= libtool:15 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-ggz + +GCONF_SCHEMAS= teg.schemas + +post-patch: + @${GREP} -lR " LIST_NEXT" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ + 's| LIST_NEXT| TEG_LIST_NEXT|g' + @${REINPLACE_CMD} -e '/^SUBDIRS/s|pl||g' \ + ${WRKSRC}/docs/gnome-help/Makefile.in + +.include <bsd.port.mk> diff --git a/games/teg/distinfo b/games/teg/distinfo new file mode 100644 index 000000000..6f6cce844 --- /dev/null +++ b/games/teg/distinfo @@ -0,0 +1,3 @@ +MD5 (teg-0.11.2.tar.gz) = 1ec1ac9bd023b329b1e4a32bb48c9132 +SHA256 (teg-0.11.2.tar.gz) = 9a0135870c01ff70b63a95f7224556fdf70f21d977c369085ef3c2cf7697ddf9 +SIZE (teg-0.11.2.tar.gz) = 5790172 diff --git a/games/teg/pkg-descr b/games/teg/pkg-descr new file mode 100644 index 000000000..75453b782 --- /dev/null +++ b/games/teg/pkg-descr @@ -0,0 +1,5 @@ +Tenes Emapandas Graciela (TEG) is a clone of 'Plan Táctico y Estratégico +de la Guerra', which is a pseudo-clone of Risk, a turn-based strategy game. +Some rules are different. + +WWW: http://teg.sourceforge.net/ diff --git a/games/teg/pkg-plist b/games/teg/pkg-plist new file mode 100644 index 000000000..e346c2c41 --- /dev/null +++ b/games/teg/pkg-plist @@ -0,0 +1,248 @@ +bin/tegclient +bin/tegrobot +bin/tegserver +share/gnome/apps/Games/teg.desktop +share/gnome/help/teg/C/figures/connect.jpg +share/gnome/help/teg/C/figures/dices.jpg +share/gnome/help/teg/C/figures/mission.jpg +share/gnome/help/teg/C/figures/selectcolor.jpg +share/gnome/help/teg/C/figures/server.jpg +share/gnome/help/teg/C/figures/toolbar_start.jpg +share/gnome/help/teg/C/teg.sgml +share/gnome/help/teg/C/topic.dat +share/pixmaps/teg_icono.png +share/pixmaps/teg_pix/color_player_black.png +share/pixmaps/teg_pix/color_player_blue.png +share/pixmaps/teg_pix/color_player_green.png +share/pixmaps/teg_pix/color_player_pink.png +share/pixmaps/teg_pix/color_player_red.png +share/pixmaps/teg_pix/color_player_yellow.png +share/pixmaps/teg_pix/disc_black.png +share/pixmaps/teg_pix/disc_blue.png +share/pixmaps/teg_pix/disc_green.png +share/pixmaps/teg_pix/disc_grey.png +share/pixmaps/teg_pix/disc_over.png +share/pixmaps/teg_pix/disc_pink.png +share/pixmaps/teg_pix/disc_red.png +share/pixmaps/teg_pix/disc_yellow.png +share/pixmaps/teg_pix/objetivo.png +share/pixmaps/teg_pix/teg_icono.png +share/pixmaps/teg_pix/teg_icono.xpm +share/pixmaps/teg_pix/themes/draco/10.png +share/pixmaps/teg_pix/themes/draco/13.png +share/pixmaps/teg_pix/themes/draco/14.png +share/pixmaps/teg_pix/themes/draco/15.png +share/pixmaps/teg_pix/themes/draco/16.png +share/pixmaps/teg_pix/themes/draco/17.png +share/pixmaps/teg_pix/themes/draco/18.png +share/pixmaps/teg_pix/themes/draco/19.png +share/pixmaps/teg_pix/themes/draco/20.png +share/pixmaps/teg_pix/themes/draco/21.png +share/pixmaps/teg_pix/themes/draco/22.png +share/pixmaps/teg_pix/themes/draco/23.png +share/pixmaps/teg_pix/themes/draco/24.png +share/pixmaps/teg_pix/themes/draco/25.png +share/pixmaps/teg_pix/themes/draco/26.png +share/pixmaps/teg_pix/themes/draco/28.png +share/pixmaps/teg_pix/themes/draco/29.png +share/pixmaps/teg_pix/themes/draco/30.png +share/pixmaps/teg_pix/themes/draco/31.png +share/pixmaps/teg_pix/themes/draco/32.png +share/pixmaps/teg_pix/themes/draco/33.png +share/pixmaps/teg_pix/themes/draco/34.png +share/pixmaps/teg_pix/themes/draco/35.png +share/pixmaps/teg_pix/themes/draco/36.png +share/pixmaps/teg_pix/themes/draco/37.png +share/pixmaps/teg_pix/themes/draco/38.png +share/pixmaps/teg_pix/themes/draco/39.png +share/pixmaps/teg_pix/themes/draco/40.png +share/pixmaps/teg_pix/themes/draco/41.png +share/pixmaps/teg_pix/themes/draco/42.png +share/pixmaps/teg_pix/themes/draco/43.png +share/pixmaps/teg_pix/themes/draco/44.png +share/pixmaps/teg_pix/themes/draco/45.png +share/pixmaps/teg_pix/themes/draco/46.png +share/pixmaps/teg_pix/themes/draco/47.png +share/pixmaps/teg_pix/themes/draco/48.png +share/pixmaps/teg_pix/themes/draco/49.png +share/pixmaps/teg_pix/themes/draco/50.png +share/pixmaps/teg_pix/themes/draco/51.png +share/pixmaps/teg_pix/themes/draco/52.png +share/pixmaps/teg_pix/themes/draco/53.png +share/pixmaps/teg_pix/themes/draco/54.png +share/pixmaps/teg_pix/themes/draco/55.png +share/pixmaps/teg_pix/themes/draco/56.png +share/pixmaps/teg_pix/themes/draco/57.png +share/pixmaps/teg_pix/themes/draco/58.png +share/pixmaps/teg_pix/themes/draco/59.png +share/pixmaps/teg_pix/themes/draco/60.png +share/pixmaps/teg_pix/themes/draco/8.png +share/pixmaps/teg_pix/themes/draco/9.png +share/pixmaps/teg_pix/themes/draco/board.jpg +share/pixmaps/teg_pix/themes/draco/dice-1.png +share/pixmaps/teg_pix/themes/draco/dice-2.png +share/pixmaps/teg_pix/themes/draco/dice-3.png +share/pixmaps/teg_pix/themes/draco/dice-4.png +share/pixmaps/teg_pix/themes/draco/dice-5.png +share/pixmaps/teg_pix/themes/draco/dice-6.png +share/pixmaps/teg_pix/themes/draco/infobar.png +share/pixmaps/teg_pix/themes/draco/mini_shot.png +share/pixmaps/teg_pix/themes/draco/tar_cannon.png +share/pixmaps/teg_pix/themes/draco/tar_horse.png +share/pixmaps/teg_pix/themes/draco/tar_infantry.png +share/pixmaps/teg_pix/themes/draco/tar_jocker.png +share/pixmaps/teg_pix/themes/draco/teg_theme.xml +share/pixmaps/teg_pix/themes/draco/wizard_black.png +share/pixmaps/teg_pix/themes/draco/wizard_blue.png +share/pixmaps/teg_pix/themes/draco/wizard_green.png +share/pixmaps/teg_pix/themes/draco/wizard_pink.png +share/pixmaps/teg_pix/themes/draco/wizard_red.png +share/pixmaps/teg_pix/themes/draco/wizard_yellow.png +share/pixmaps/teg_pix/themes/m2/Africa-Egipto +share/pixmaps/teg_pix/themes/m2/Africa-Etiopia +share/pixmaps/teg_pix/themes/m2/Africa-Madagascar +share/pixmaps/teg_pix/themes/m2/Africa-Sahara +share/pixmaps/teg_pix/themes/m2/Africa-Sudafrica +share/pixmaps/teg_pix/themes/m2/Africa-Zaire +share/pixmaps/teg_pix/themes/m2/America-Alaska +share/pixmaps/teg_pix/themes/m2/America-California +share/pixmaps/teg_pix/themes/m2/America-Canada +share/pixmaps/teg_pix/themes/m2/America-Groenlandia +share/pixmaps/teg_pix/themes/m2/America-Labrador +share/pixmaps/teg_pix/themes/m2/America-Mexico +share/pixmaps/teg_pix/themes/m2/America-Nuevayork +share/pixmaps/teg_pix/themes/m2/America-Oregon +share/pixmaps/teg_pix/themes/m2/America-Terranova +share/pixmaps/teg_pix/themes/m2/America-Yukon +share/pixmaps/teg_pix/themes/m2/Asia-Arabia +share/pixmaps/teg_pix/themes/m2/Asia-Aral +share/pixmaps/teg_pix/themes/m2/Asia-China +share/pixmaps/teg_pix/themes/m2/Asia-Gobi +share/pixmaps/teg_pix/themes/m2/Asia-India +share/pixmaps/teg_pix/themes/m2/Asia-Iran +share/pixmaps/teg_pix/themes/m2/Asia-Israel +share/pixmaps/teg_pix/themes/m2/Asia-Japon +share/pixmaps/teg_pix/themes/m2/Asia-Katchatka +share/pixmaps/teg_pix/themes/m2/Asia-Malaysia +share/pixmaps/teg_pix/themes/m2/Asia-Mongolia +share/pixmaps/teg_pix/themes/m2/Asia-Siberia +share/pixmaps/teg_pix/themes/m2/Asia-Taimir +share/pixmaps/teg_pix/themes/m2/Asia-Tartaria +share/pixmaps/teg_pix/themes/m2/Asia-Turquia +share/pixmaps/teg_pix/themes/m2/Australia-Australia +share/pixmaps/teg_pix/themes/m2/Australia-Borneo +share/pixmaps/teg_pix/themes/m2/Australia-Java +share/pixmaps/teg_pix/themes/m2/Australia-Sumatra +share/pixmaps/teg_pix/themes/m2/Europe-Alemania +share/pixmaps/teg_pix/themes/m2/Europe-Espania +share/pixmaps/teg_pix/themes/m2/Europe-Francia +share/pixmaps/teg_pix/themes/m2/Europe-Grand_Bretania +share/pixmaps/teg_pix/themes/m2/Europe-Islandia +share/pixmaps/teg_pix/themes/m2/Europe-Italia +share/pixmaps/teg_pix/themes/m2/Europe-Polonia +share/pixmaps/teg_pix/themes/m2/Europe-Rusia +share/pixmaps/teg_pix/themes/m2/Europe-Suecia +share/pixmaps/teg_pix/themes/m2/Southamerica-Argentinia +share/pixmaps/teg_pix/themes/m2/Southamerica-Brasil +share/pixmaps/teg_pix/themes/m2/Southamerica-Chile +share/pixmaps/teg_pix/themes/m2/Southamerica-Colombia +share/pixmaps/teg_pix/themes/m2/Southamerica-Peru +share/pixmaps/teg_pix/themes/m2/Southamerica-Uruguay +share/pixmaps/teg_pix/themes/m2/board.jpg +share/pixmaps/teg_pix/themes/m2/dice-1.png +share/pixmaps/teg_pix/themes/m2/dice-2.png +share/pixmaps/teg_pix/themes/m2/dice-3.png +share/pixmaps/teg_pix/themes/m2/dice-4.png +share/pixmaps/teg_pix/themes/m2/dice-5.png +share/pixmaps/teg_pix/themes/m2/dice-6.png +share/pixmaps/teg_pix/themes/m2/infobar.png +share/pixmaps/teg_pix/themes/m2/mini_shot.png +share/pixmaps/teg_pix/themes/m2/tar_cannon.png +share/pixmaps/teg_pix/themes/m2/tar_horse.png +share/pixmaps/teg_pix/themes/m2/tar_infantry.png +share/pixmaps/teg_pix/themes/m2/tar_jocker.png +share/pixmaps/teg_pix/themes/m2/teg_theme.xml +share/pixmaps/teg_pix/themes/sentimental/Africa-Egipto +share/pixmaps/teg_pix/themes/sentimental/Africa-Etiopia +share/pixmaps/teg_pix/themes/sentimental/Africa-Madagascar +share/pixmaps/teg_pix/themes/sentimental/Africa-Sahara +share/pixmaps/teg_pix/themes/sentimental/Africa-Sudafrica +share/pixmaps/teg_pix/themes/sentimental/Africa-Zaire +share/pixmaps/teg_pix/themes/sentimental/America-Alaska +share/pixmaps/teg_pix/themes/sentimental/America-California +share/pixmaps/teg_pix/themes/sentimental/America-Canada +share/pixmaps/teg_pix/themes/sentimental/America-Groenlandia +share/pixmaps/teg_pix/themes/sentimental/America-Labrador +share/pixmaps/teg_pix/themes/sentimental/America-Mexico +share/pixmaps/teg_pix/themes/sentimental/America-Nuevayork +share/pixmaps/teg_pix/themes/sentimental/America-Oregon +share/pixmaps/teg_pix/themes/sentimental/America-Terranova +share/pixmaps/teg_pix/themes/sentimental/America-Yukon +share/pixmaps/teg_pix/themes/sentimental/Asia-Arabia +share/pixmaps/teg_pix/themes/sentimental/Asia-Aral +share/pixmaps/teg_pix/themes/sentimental/Asia-China +share/pixmaps/teg_pix/themes/sentimental/Asia-Gobi +share/pixmaps/teg_pix/themes/sentimental/Asia-India +share/pixmaps/teg_pix/themes/sentimental/Asia-Israel +share/pixmaps/teg_pix/themes/sentimental/Asia-Malaysia +share/pixmaps/teg_pix/themes/sentimental/Asia-Mongolia +share/pixmaps/teg_pix/themes/sentimental/Asia-Siberia +share/pixmaps/teg_pix/themes/sentimental/Asia-Taimir +share/pixmaps/teg_pix/themes/sentimental/Asia-Tartaria +share/pixmaps/teg_pix/themes/sentimental/Asia-Turquia +share/pixmaps/teg_pix/themes/sentimental/Asia-iran +share/pixmaps/teg_pix/themes/sentimental/Asia-japon +share/pixmaps/teg_pix/themes/sentimental/Asia-katchatka +share/pixmaps/teg_pix/themes/sentimental/Australia-Australia +share/pixmaps/teg_pix/themes/sentimental/Australia-Sumatra +share/pixmaps/teg_pix/themes/sentimental/Australia_Borneo +share/pixmaps/teg_pix/themes/sentimental/Australia_Java +share/pixmaps/teg_pix/themes/sentimental/Europe-Alemania +share/pixmaps/teg_pix/themes/sentimental/Europe-Espania +share/pixmaps/teg_pix/themes/sentimental/Europe-Francia +share/pixmaps/teg_pix/themes/sentimental/Europe-Grand_Bretania +share/pixmaps/teg_pix/themes/sentimental/Europe-Islandia +share/pixmaps/teg_pix/themes/sentimental/Europe-Italia +share/pixmaps/teg_pix/themes/sentimental/Europe-Polonia +share/pixmaps/teg_pix/themes/sentimental/Europe-Rusia +share/pixmaps/teg_pix/themes/sentimental/Europe-Suecia +share/pixmaps/teg_pix/themes/sentimental/Infobar.png +share/pixmaps/teg_pix/themes/sentimental/Southamerica-Argentinia +share/pixmaps/teg_pix/themes/sentimental/Southamerica-Brasil +share/pixmaps/teg_pix/themes/sentimental/Southamerica-Chile +share/pixmaps/teg_pix/themes/sentimental/Southamerica-Colombia +share/pixmaps/teg_pix/themes/sentimental/Southamerica-Peru +share/pixmaps/teg_pix/themes/sentimental/Southamerica-Uruguay +share/pixmaps/teg_pix/themes/sentimental/board.jpg +share/pixmaps/teg_pix/themes/sentimental/cannon.png +share/pixmaps/teg_pix/themes/sentimental/dice-1.png +share/pixmaps/teg_pix/themes/sentimental/dice-2.png +share/pixmaps/teg_pix/themes/sentimental/dice-3.png +share/pixmaps/teg_pix/themes/sentimental/dice-4.png +share/pixmaps/teg_pix/themes/sentimental/dice-5.png +share/pixmaps/teg_pix/themes/sentimental/dice-6.png +share/pixmaps/teg_pix/themes/sentimental/horse.png +share/pixmaps/teg_pix/themes/sentimental/infantry.png +share/pixmaps/teg_pix/themes/sentimental/jocker.png +share/pixmaps/teg_pix/themes/sentimental/mini_shot.png +share/pixmaps/teg_pix/themes/sentimental/teg_theme.xml +share/locale/de/LC_MESSAGES/teg.mo +share/locale/es/LC_MESSAGES/teg.mo +share/locale/fr/LC_MESSAGES/teg.mo +share/locale/gl/LC_MESSAGES/teg.mo +share/locale/hu_HU/LC_MESSAGES/teg.mo +share/locale/it/LC_MESSAGES/teg.mo +share/locale/pl/LC_MESSAGES/teg.mo +share/locale/pt/LC_MESSAGES/teg.mo +share/locale/pt_BR/LC_MESSAGES/teg.mo +@dirrm share/pixmaps/teg_pix/themes/sentimental +@dirrm share/pixmaps/teg_pix/themes/m2 +@dirrm share/pixmaps/teg_pix/themes/draco +@dirrm share/pixmaps/teg_pix/themes +@dirrm share/pixmaps/teg_pix +@dirrm share/gnome/help/teg/C/stylesheet-images +@dirrm share/gnome/help/teg/C/figures +@dirrm share/gnome/help/teg/C +@dirrm share/gnome/help/teg +@dirrmtry share/locale/hu_HU/LC_MESSAGES +@dirrmtry share/locale/hu_HU diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile new file mode 100644 index 000000000..1b591b3e0 --- /dev/null +++ b/games/wesnoth/Makefile @@ -0,0 +1,115 @@ +# New ports collection makefile for: wesnoth +# Date created: 22 December 2003 +# Whom: Mezz <mezz7@cox.net> +# +# $FreeBSD$ +# + +PORTNAME= wesnoth +PORTVERSION= 1.2.5 +PORTREVISION= 1 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://www.wesnoth.org/files/ +MASTER_SITE_SUBDIR= wesnoth + +MAINTAINER= philip@FreeBSD.org +COMMENT= A fantasy turn-based strategy game + +USE_GCC= 3.4+ +USE_SDL= image mixer net +USE_GNOME= gnometarget +USE_GMAKE= yes +WANT_GNOME= yes +USE_GETTEXT= yes +USE_BZIP2= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --localstatedir=/var \ + --with-libiconv-prefix=${LOCALBASE} \ + --with-libintl-prefix=${LOCALBASE} \ + --with-freetype-prefix=${LOCALBASE} \ + --with-localedir=${PREFIX}/share/locale +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + CXXFLAGS="-I${LOCALBASE}/include ${CXXFLAGS} -ftemplate-depth-45" \ + LDFLAGS="-L${LOCALBASE}/lib -lintl" + +MAN6= wesnoth.6 +MANLANG= "" cs de en_GB fr it ja nl pt_BR ru sk sv + +.if defined(WITH_CAMPAIGN) || defined(PACKAGE_BUILDING) +CONFIGURE_ARGS+= --enable-campaign-server +PLIST_SUB+= CAMPAIGN:="" +.else +PLIST_SUB+= CAMPAIGN:="@comment " +.endif + +.if defined(WITH_DEBUG) +CONFIGURE_ARGS+= --enable-debug +.endif + +.if defined(WITH_ZIPIOS) +CONFIGURE_ARGS+= --with-zipios +LIB_DEPENDS+= zipios.0:${PORTSDIR}/archivers/zipios++ +.endif + +.if defined(WITH_EDITOR) || defined(PACKAGE_BUILDING) +CONFIGURE_ARGS+= --enable-editor +MAN6+= wesnoth_editor.6 +PLIST_SUB+= EDITOR:="" +.else +PLIST_SUB+= EDITOR:="@comment " +.endif + +.if defined(WITH_SERVER) || defined(PACKAGE_BUILDING) +CONFIGURE_ARGS+= --enable-server +MAN6+= wesnothd.6 +PLIST_SUB+= SERVER:="" +.else +PLIST_SUB+= SERVER:="@comment " +.endif + +.if defined(WITH_TOOLS) || defined(PACKAGE_BUILDING) +CONFIGURE_ARGS+= --enable-tools +PLIST_SUB+= TOOLS:="" +.else +PLIST_SUB+= TOOLS:="@comment " +.endif + +.include <bsd.port.pre.mk> + +.if ${HAVE_GNOME:Mgnomehier}!="" +CONFIGURE_ARGS+= --with-gnome +PLIST_SUB+= GNOME:="" +.else +PLIST_SUB+= GNOME:="@comment " +.endif + +.if exists(${LOCALBASE}/bin/kde-config) +CONFIGURE_ARGS+= --with-kde +PLIST_SUB+= KDE:="" +.else +PLIST_SUB+= KDE:="@comment " +.endif + +pre-everything:: +.if !defined(WITH_CAMPAIGN) || !defined(WITH_DEBUG) || !defined(WITH_EDITOR) || !defined(WITH_SERVER) || !defined(WITH_TOOLS) + @${ECHO_MSG} "You may specify the following on the command line:" + @${ECHO_MSG} " " +.endif +.if !defined(WITH_CAMPAIGN) + @${ECHO_MSG} "WITH_CAMPAIGN=yes to enable compilation of campaign server." +.endif +.if !defined(WITH_DEBUG) + @${ECHO_MSG} "WITH_DEBUG=yes to enable debugging in Wesnoth." +.endif +.if !defined(WITH_EDITOR) + @${ECHO_MSG} "WITH_EDITOR=yes to enable compilation of map editor." +.endif +.if !defined(WITH_SERVER) + @${ECHO_MSG} "WITH_SERVER=yes to enable compilation of server." +.endif +.if !defined(WITH_TOOLS) + @${ECHO_MSG} "WITH_TOOLS=yes to enable compilation of tools for translators and artists." +.endif + +.include <bsd.port.post.mk> diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo new file mode 100644 index 000000000..aa06cd927 --- /dev/null +++ b/games/wesnoth/distinfo @@ -0,0 +1,3 @@ +MD5 (wesnoth-1.2.5.tar.bz2) = 40e00ac97680fb69499191c30f130774 +SHA256 (wesnoth-1.2.5.tar.bz2) = 8e1bcab7165bd5eaf8c1d2eef0fce03a8c81daf885983dc0fda68998100e8cd0 +SIZE (wesnoth-1.2.5.tar.bz2) = 68758427 diff --git a/games/wesnoth/files/patch-fix_freebsd4_build_towupper b/games/wesnoth/files/patch-fix_freebsd4_build_towupper new file mode 100644 index 000000000..91b9d3bc7 --- /dev/null +++ b/games/wesnoth/files/patch-fix_freebsd4_build_towupper @@ -0,0 +1,29 @@ +--- src/serialization/string_utils.cpp.orig Sun Dec 24 19:41:45 2006 ++++ src/serialization/string_utils.cpp Sun Dec 24 19:42:29 2006 +@@ -609,7 +609,7 @@ + { + if(s.size() > 0) { + utf8_iterator itor(s); +-#if defined(__APPLE__) || defined(__AMIGAOS4__) ++#if __FreeBSD__ < 5 + // FIXME: Should we support towupper on recent OSX platforms? + wchar_t uchar = *itor; + if(uchar >= 0 && uchar < 0x100) +@@ -631,7 +631,7 @@ + std::string res; + + for(;itor != utf8_iterator::end(s); ++itor) { +-#if defined(__APPLE__) || defined(__AMIGAOS4__) ++#if __FreeBSD__ < 5 + // FIXME: Should we support towupper on recent OSX platforms? + wchar_t uchar = *itor; + if(uchar >= 0 && uchar < 0x100) +@@ -654,7 +654,7 @@ + std::string res; + + for(;itor != utf8_iterator::end(s); ++itor) { +-#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__AMIGAOS4__) ++#if __FreeBSD__ < 5 + // FIXME: Should we support towupper on recent OSX platforms? + wchar_t uchar = *itor; + if(uchar >= 0 && uchar < 0x100) diff --git a/games/wesnoth/files/patch-src::help.cpp b/games/wesnoth/files/patch-src::help.cpp new file mode 100644 index 000000000..926ac47fe --- /dev/null +++ b/games/wesnoth/files/patch-src::help.cpp @@ -0,0 +1,11 @@ +--- src/help.cpp.orig Tue Jun 7 19:34:15 2005 ++++ src/help.cpp Tue Jun 7 19:34:22 2005 +@@ -41,7 +41,7 @@ + #include <algorithm> + #include <iostream> + #include <list> +-#include <locale> ++#include <locale.h> + #include <map> + #include <queue> + #include <set> diff --git a/games/wesnoth/files/patch-src::language.cpp b/games/wesnoth/files/patch-src::language.cpp new file mode 100644 index 000000000..7f06454db --- /dev/null +++ b/games/wesnoth/files/patch-src::language.cpp @@ -0,0 +1,15 @@ +--- src/language.cpp.orig Mon Jul 25 13:44:10 2005 ++++ src/language.cpp Mon Jul 25 13:45:47 2005 +@@ -133,12 +133,10 @@ + unsetenv ("LANGUAGE"); // void so no return value to check + #endif + +-#ifdef __BEOS__ + if(setenv ("LANG", locale, 1) == -1) + std::cerr << "setenv LANG failed: " << strerror(errno); + if(setenv ("LC_ALL", locale, 1) == -1) + std::cerr << "setenv LC_ALL failed: " << strerror(errno); +-#endif + #ifdef __APPLE__ + if(setenv ("LANGUAGE", locale, 1) == -1) + std::cerr << "setenv LANGUAGE failed: " << strerror(errno); diff --git a/games/wesnoth/pkg-descr b/games/wesnoth/pkg-descr new file mode 100644 index 000000000..18c50cb64 --- /dev/null +++ b/games/wesnoth/pkg-descr @@ -0,0 +1,7 @@ +Battle for Wesnoth is a fantasy turn-based strategy game. Battle for control of +villages, using variety of units which have advantages and disadvantages in +different types of terrains and against different types of attacks. Units gain +experience and advance levels, and are carried over from one scenario to the +next campaign. + +WWW: http://www.wesnoth.org/ diff --git a/games/wesnoth/pkg-plist b/games/wesnoth/pkg-plist new file mode 100644 index 000000000..d5054a347 --- /dev/null +++ b/games/wesnoth/pkg-plist @@ -0,0 +1,6022 @@ +%%CAMPAIGN:%%bin/campaignd +%%TOOLS:%%bin/cutter +%%TOOLS:%%bin/exploder +bin/wesnoth +%%EDITOR:%%bin/wesnoth_editor +%%SERVER:%%bin/wesnothd +share/locale/af/LC_MESSAGES/wesnoth-editor.mo +share/locale/af/LC_MESSAGES/wesnoth-ei.mo +share/locale/af/LC_MESSAGES/wesnoth-httt.mo +share/locale/af/LC_MESSAGES/wesnoth-lib.mo +share/locale/af/LC_MESSAGES/wesnoth-tb.mo +share/locale/af/LC_MESSAGES/wesnoth-trow.mo +share/locale/af/LC_MESSAGES/wesnoth-tsg.mo +share/locale/af/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/af/LC_MESSAGES/wesnoth-utbs.mo +share/locale/af/LC_MESSAGES/wesnoth.mo +share/locale/bg/LC_MESSAGES/wesnoth-editor.mo +share/locale/bg/LC_MESSAGES/wesnoth-ei.mo +share/locale/bg/LC_MESSAGES/wesnoth-httt.mo +share/locale/bg/LC_MESSAGES/wesnoth-lib.mo +share/locale/bg/LC_MESSAGES/wesnoth-tb.mo +share/locale/bg/LC_MESSAGES/wesnoth-trow.mo +share/locale/bg/LC_MESSAGES/wesnoth-tsg.mo +share/locale/bg/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/bg/LC_MESSAGES/wesnoth-utbs.mo +share/locale/bg/LC_MESSAGES/wesnoth.mo +share/locale/ca/LC_MESSAGES/wesnoth-editor.mo +share/locale/ca/LC_MESSAGES/wesnoth-ei.mo +share/locale/ca/LC_MESSAGES/wesnoth-httt.mo +share/locale/ca/LC_MESSAGES/wesnoth-lib.mo +share/locale/ca/LC_MESSAGES/wesnoth-tb.mo +share/locale/ca/LC_MESSAGES/wesnoth-trow.mo +share/locale/ca/LC_MESSAGES/wesnoth-tsg.mo +share/locale/ca/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ca/LC_MESSAGES/wesnoth-utbs.mo +share/locale/ca/LC_MESSAGES/wesnoth.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tb.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-trow.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tsg.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-utbs.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth.mo +share/locale/cs/LC_MESSAGES/wesnoth-editor.mo +share/locale/cs/LC_MESSAGES/wesnoth-ei.mo +share/locale/cs/LC_MESSAGES/wesnoth-httt.mo +share/locale/cs/LC_MESSAGES/wesnoth-lib.mo +share/locale/cs/LC_MESSAGES/wesnoth-tb.mo +share/locale/cs/LC_MESSAGES/wesnoth-trow.mo +share/locale/cs/LC_MESSAGES/wesnoth-tsg.mo +share/locale/cs/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/cs/LC_MESSAGES/wesnoth-utbs.mo +share/locale/cs/LC_MESSAGES/wesnoth.mo +share/locale/da/LC_MESSAGES/wesnoth-editor.mo +share/locale/da/LC_MESSAGES/wesnoth-ei.mo +share/locale/da/LC_MESSAGES/wesnoth-httt.mo +share/locale/da/LC_MESSAGES/wesnoth-lib.mo +share/locale/da/LC_MESSAGES/wesnoth-tb.mo +share/locale/da/LC_MESSAGES/wesnoth-trow.mo +share/locale/da/LC_MESSAGES/wesnoth-tsg.mo +share/locale/da/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/da/LC_MESSAGES/wesnoth-utbs.mo +share/locale/da/LC_MESSAGES/wesnoth.mo +share/locale/de/LC_MESSAGES/wesnoth-editor.mo +share/locale/de/LC_MESSAGES/wesnoth-ei.mo +share/locale/de/LC_MESSAGES/wesnoth-httt.mo +share/locale/de/LC_MESSAGES/wesnoth-lib.mo +share/locale/de/LC_MESSAGES/wesnoth-tb.mo +share/locale/de/LC_MESSAGES/wesnoth-trow.mo +share/locale/de/LC_MESSAGES/wesnoth-tsg.mo +share/locale/de/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/de/LC_MESSAGES/wesnoth-utbs.mo +share/locale/de/LC_MESSAGES/wesnoth.mo +share/locale/el/LC_MESSAGES/wesnoth-editor.mo +share/locale/el/LC_MESSAGES/wesnoth-ei.mo +share/locale/el/LC_MESSAGES/wesnoth-httt.mo +share/locale/el/LC_MESSAGES/wesnoth-lib.mo +share/locale/el/LC_MESSAGES/wesnoth-tb.mo +share/locale/el/LC_MESSAGES/wesnoth-trow.mo +share/locale/el/LC_MESSAGES/wesnoth-tsg.mo +share/locale/el/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/el/LC_MESSAGES/wesnoth-utbs.mo +share/locale/el/LC_MESSAGES/wesnoth.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-tb.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-trow.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-tsg.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-utbs.mo +share/locale/en_GB/LC_MESSAGES/wesnoth.mo +share/locale/eo/LC_MESSAGES/wesnoth-editor.mo +share/locale/eo/LC_MESSAGES/wesnoth-ei.mo +share/locale/eo/LC_MESSAGES/wesnoth-httt.mo +share/locale/eo/LC_MESSAGES/wesnoth-lib.mo +share/locale/eo/LC_MESSAGES/wesnoth-tb.mo +share/locale/eo/LC_MESSAGES/wesnoth-trow.mo +share/locale/eo/LC_MESSAGES/wesnoth-tsg.mo +share/locale/eo/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/eo/LC_MESSAGES/wesnoth-utbs.mo +share/locale/eo/LC_MESSAGES/wesnoth.mo +share/locale/es/LC_MESSAGES/wesnoth-editor.mo +share/locale/es/LC_MESSAGES/wesnoth-ei.mo +share/locale/es/LC_MESSAGES/wesnoth-httt.mo +share/locale/es/LC_MESSAGES/wesnoth-lib.mo +share/locale/es/LC_MESSAGES/wesnoth-tb.mo +share/locale/es/LC_MESSAGES/wesnoth-trow.mo +share/locale/es/LC_MESSAGES/wesnoth-tsg.mo +share/locale/es/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/es/LC_MESSAGES/wesnoth-utbs.mo +share/locale/es/LC_MESSAGES/wesnoth.mo +share/locale/et/LC_MESSAGES/wesnoth-editor.mo +share/locale/et/LC_MESSAGES/wesnoth-ei.mo +share/locale/et/LC_MESSAGES/wesnoth-httt.mo +share/locale/et/LC_MESSAGES/wesnoth-lib.mo +share/locale/et/LC_MESSAGES/wesnoth-tb.mo +share/locale/et/LC_MESSAGES/wesnoth-trow.mo +share/locale/et/LC_MESSAGES/wesnoth-tsg.mo +share/locale/et/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/et/LC_MESSAGES/wesnoth-utbs.mo +share/locale/et/LC_MESSAGES/wesnoth.mo +share/locale/eu/LC_MESSAGES/wesnoth-editor.mo +share/locale/eu/LC_MESSAGES/wesnoth-ei.mo +share/locale/eu/LC_MESSAGES/wesnoth-httt.mo +share/locale/eu/LC_MESSAGES/wesnoth-lib.mo +share/locale/eu/LC_MESSAGES/wesnoth-tb.mo +share/locale/eu/LC_MESSAGES/wesnoth-trow.mo +share/locale/eu/LC_MESSAGES/wesnoth-tsg.mo +share/locale/eu/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/eu/LC_MESSAGES/wesnoth-utbs.mo +share/locale/eu/LC_MESSAGES/wesnoth.mo +share/locale/fi/LC_MESSAGES/wesnoth-editor.mo +share/locale/fi/LC_MESSAGES/wesnoth-ei.mo +share/locale/fi/LC_MESSAGES/wesnoth-httt.mo +share/locale/fi/LC_MESSAGES/wesnoth-lib.mo +share/locale/fi/LC_MESSAGES/wesnoth-tb.mo +share/locale/fi/LC_MESSAGES/wesnoth-trow.mo +share/locale/fi/LC_MESSAGES/wesnoth-tsg.mo +share/locale/fi/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/fi/LC_MESSAGES/wesnoth-utbs.mo +share/locale/fi/LC_MESSAGES/wesnoth.mo +share/locale/fr/LC_MESSAGES/wesnoth-editor.mo +share/locale/fr/LC_MESSAGES/wesnoth-ei.mo +share/locale/fr/LC_MESSAGES/wesnoth-httt.mo +share/locale/fr/LC_MESSAGES/wesnoth-lib.mo +share/locale/fr/LC_MESSAGES/wesnoth-tb.mo +share/locale/fr/LC_MESSAGES/wesnoth-trow.mo +share/locale/fr/LC_MESSAGES/wesnoth-tsg.mo +share/locale/fr/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/fr/LC_MESSAGES/wesnoth-utbs.mo +share/locale/fr/LC_MESSAGES/wesnoth.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-editor.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-ei.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-httt.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-lib.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-tb.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-trow.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-tsg.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-utbs.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth.mo +share/locale/he/LC_MESSAGES/wesnoth-editor.mo +share/locale/he/LC_MESSAGES/wesnoth-ei.mo +share/locale/he/LC_MESSAGES/wesnoth-httt.mo +share/locale/he/LC_MESSAGES/wesnoth-lib.mo +share/locale/he/LC_MESSAGES/wesnoth-tb.mo +share/locale/he/LC_MESSAGES/wesnoth-trow.mo +share/locale/he/LC_MESSAGES/wesnoth-tsg.mo +share/locale/he/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/he/LC_MESSAGES/wesnoth-utbs.mo +share/locale/he/LC_MESSAGES/wesnoth.mo +share/locale/hu/LC_MESSAGES/wesnoth-editor.mo +share/locale/hu/LC_MESSAGES/wesnoth-ei.mo +share/locale/hu/LC_MESSAGES/wesnoth-httt.mo +share/locale/hu/LC_MESSAGES/wesnoth-lib.mo +share/locale/hu/LC_MESSAGES/wesnoth-tb.mo +share/locale/hu/LC_MESSAGES/wesnoth-trow.mo +share/locale/hu/LC_MESSAGES/wesnoth-tsg.mo +share/locale/hu/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/hu/LC_MESSAGES/wesnoth-utbs.mo +share/locale/hu/LC_MESSAGES/wesnoth.mo +share/locale/id/LC_MESSAGES/wesnoth.mo +share/locale/id/LC_MESSAGES/wesnoth-editor.mo +share/locale/id/LC_MESSAGES/wesnoth-lib.mo +share/locale/id/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/id/LC_MESSAGES/wesnoth-httt.mo +share/locale/id/LC_MESSAGES/wesnoth-ei.mo +share/locale/id/LC_MESSAGES/wesnoth-trow.mo +share/locale/id/LC_MESSAGES/wesnoth-tb.mo +share/locale/id/LC_MESSAGES/wesnoth-tsg.mo +share/locale/id/LC_MESSAGES/wesnoth-utbs.mo +share/locale/it/LC_MESSAGES/wesnoth-editor.mo +share/locale/it/LC_MESSAGES/wesnoth-ei.mo +share/locale/it/LC_MESSAGES/wesnoth-httt.mo +share/locale/it/LC_MESSAGES/wesnoth-lib.mo +share/locale/it/LC_MESSAGES/wesnoth-tb.mo +share/locale/it/LC_MESSAGES/wesnoth-trow.mo +share/locale/it/LC_MESSAGES/wesnoth-tsg.mo +share/locale/it/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/it/LC_MESSAGES/wesnoth-utbs.mo +share/locale/it/LC_MESSAGES/wesnoth.mo +share/locale/ja/LC_MESSAGES/wesnoth-editor.mo +share/locale/ja/LC_MESSAGES/wesnoth-ei.mo +share/locale/ja/LC_MESSAGES/wesnoth-httt.mo +share/locale/ja/LC_MESSAGES/wesnoth-lib.mo +share/locale/ja/LC_MESSAGES/wesnoth-tb.mo +share/locale/ja/LC_MESSAGES/wesnoth-trow.mo +share/locale/ja/LC_MESSAGES/wesnoth-tsg.mo +share/locale/ja/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ja/LC_MESSAGES/wesnoth-utbs.mo +share/locale/ja/LC_MESSAGES/wesnoth.mo +share/locale/ko/LC_MESSAGES/wesnoth-editor.mo +share/locale/ko/LC_MESSAGES/wesnoth-ei.mo +share/locale/ko/LC_MESSAGES/wesnoth-httt.mo +share/locale/ko/LC_MESSAGES/wesnoth-lib.mo +share/locale/ko/LC_MESSAGES/wesnoth-tb.mo +share/locale/ko/LC_MESSAGES/wesnoth-trow.mo +share/locale/ko/LC_MESSAGES/wesnoth-tsg.mo +share/locale/ko/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ko/LC_MESSAGES/wesnoth-utbs.mo +share/locale/ko/LC_MESSAGES/wesnoth.mo +share/locale/la/LC_MESSAGES/wesnoth-editor.mo +share/locale/la/LC_MESSAGES/wesnoth-ei.mo +share/locale/la/LC_MESSAGES/wesnoth-httt.mo +share/locale/la/LC_MESSAGES/wesnoth-lib.mo +share/locale/la/LC_MESSAGES/wesnoth-tb.mo +share/locale/la/LC_MESSAGES/wesnoth-trow.mo +share/locale/la/LC_MESSAGES/wesnoth-tsg.mo +share/locale/la/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/la/LC_MESSAGES/wesnoth-utbs.mo +share/locale/la/LC_MESSAGES/wesnoth.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-tb.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-trow.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-tsg.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-utbs.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth.mo +share/locale/nl/LC_MESSAGES/wesnoth-editor.mo +share/locale/nl/LC_MESSAGES/wesnoth-ei.mo +share/locale/nl/LC_MESSAGES/wesnoth-httt.mo +share/locale/nl/LC_MESSAGES/wesnoth-lib.mo +share/locale/nl/LC_MESSAGES/wesnoth-tb.mo +share/locale/nl/LC_MESSAGES/wesnoth-trow.mo +share/locale/nl/LC_MESSAGES/wesnoth-tsg.mo +share/locale/nl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/nl/LC_MESSAGES/wesnoth-utbs.mo +share/locale/nl/LC_MESSAGES/wesnoth.mo +share/locale/pl/LC_MESSAGES/wesnoth-editor.mo +share/locale/pl/LC_MESSAGES/wesnoth-ei.mo +share/locale/pl/LC_MESSAGES/wesnoth-httt.mo +share/locale/pl/LC_MESSAGES/wesnoth-lib.mo +share/locale/pl/LC_MESSAGES/wesnoth-tb.mo +share/locale/pl/LC_MESSAGES/wesnoth-trow.mo +share/locale/pl/LC_MESSAGES/wesnoth-tsg.mo +share/locale/pl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/pl/LC_MESSAGES/wesnoth-utbs.mo +share/locale/pl/LC_MESSAGES/wesnoth.mo +share/locale/pt/LC_MESSAGES/wesnoth-editor.mo +share/locale/pt/LC_MESSAGES/wesnoth-ei.mo +share/locale/pt/LC_MESSAGES/wesnoth-httt.mo +share/locale/pt/LC_MESSAGES/wesnoth-lib.mo +share/locale/pt/LC_MESSAGES/wesnoth-tb.mo +share/locale/pt/LC_MESSAGES/wesnoth-trow.mo +share/locale/pt/LC_MESSAGES/wesnoth-tsg.mo +share/locale/pt/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/pt/LC_MESSAGES/wesnoth-utbs.mo +share/locale/pt/LC_MESSAGES/wesnoth.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-tb.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-tsg.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-utbs.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth.mo +share/locale/ro/LC_MESSAGES/wesnoth-editor.mo +share/locale/ro/LC_MESSAGES/wesnoth-ei.mo +share/locale/ro/LC_MESSAGES/wesnoth-httt.mo +share/locale/ro/LC_MESSAGES/wesnoth-lib.mo +share/locale/ro/LC_MESSAGES/wesnoth-tb.mo +share/locale/ro/LC_MESSAGES/wesnoth-trow.mo +share/locale/ro/LC_MESSAGES/wesnoth-tsg.mo +share/locale/ro/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ro/LC_MESSAGES/wesnoth-utbs.mo +share/locale/ro/LC_MESSAGES/wesnoth.mo +share/locale/ru/LC_MESSAGES/wesnoth-editor.mo +share/locale/ru/LC_MESSAGES/wesnoth-ei.mo +share/locale/ru/LC_MESSAGES/wesnoth-httt.mo +share/locale/ru/LC_MESSAGES/wesnoth-lib.mo +share/locale/ru/LC_MESSAGES/wesnoth-tb.mo +share/locale/ru/LC_MESSAGES/wesnoth-trow.mo +share/locale/ru/LC_MESSAGES/wesnoth-tsg.mo +share/locale/ru/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ru/LC_MESSAGES/wesnoth-utbs.mo +share/locale/ru/LC_MESSAGES/wesnoth.mo +share/locale/sk/LC_MESSAGES/wesnoth-editor.mo +share/locale/sk/LC_MESSAGES/wesnoth-ei.mo +share/locale/sk/LC_MESSAGES/wesnoth-httt.mo +share/locale/sk/LC_MESSAGES/wesnoth-lib.mo +share/locale/sk/LC_MESSAGES/wesnoth-tb.mo +share/locale/sk/LC_MESSAGES/wesnoth-trow.mo +share/locale/sk/LC_MESSAGES/wesnoth-tsg.mo +share/locale/sk/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sk/LC_MESSAGES/wesnoth-utbs.mo +share/locale/sk/LC_MESSAGES/wesnoth.mo +share/locale/sl/LC_MESSAGES/wesnoth-editor.mo +share/locale/sl/LC_MESSAGES/wesnoth-ei.mo +share/locale/sl/LC_MESSAGES/wesnoth-httt.mo +share/locale/sl/LC_MESSAGES/wesnoth-lib.mo +share/locale/sl/LC_MESSAGES/wesnoth-tb.mo +share/locale/sl/LC_MESSAGES/wesnoth-trow.mo +share/locale/sl/LC_MESSAGES/wesnoth-tsg.mo +share/locale/sl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sl/LC_MESSAGES/wesnoth-utbs.mo +share/locale/sl/LC_MESSAGES/wesnoth.mo +share/locale/sr/LC_MESSAGES/wesnoth-editor.mo +share/locale/sr/LC_MESSAGES/wesnoth-ei.mo +share/locale/sr/LC_MESSAGES/wesnoth-httt.mo +share/locale/sr/LC_MESSAGES/wesnoth-lib.mo +share/locale/sr/LC_MESSAGES/wesnoth-tb.mo +share/locale/sr/LC_MESSAGES/wesnoth-trow.mo +share/locale/sr/LC_MESSAGES/wesnoth-tsg.mo +share/locale/sr/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo +share/locale/sr/LC_MESSAGES/wesnoth.mo +share/locale/sv/LC_MESSAGES/wesnoth-editor.mo +share/locale/sv/LC_MESSAGES/wesnoth-ei.mo +share/locale/sv/LC_MESSAGES/wesnoth-httt.mo +share/locale/sv/LC_MESSAGES/wesnoth-lib.mo +share/locale/sv/LC_MESSAGES/wesnoth-tb.mo +share/locale/sv/LC_MESSAGES/wesnoth-trow.mo +share/locale/sv/LC_MESSAGES/wesnoth-tsg.mo +share/locale/sv/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sv/LC_MESSAGES/wesnoth-utbs.mo +share/locale/sv/LC_MESSAGES/wesnoth.mo +share/locale/tl/LC_MESSAGES/wesnoth-editor.mo +share/locale/tl/LC_MESSAGES/wesnoth-ei.mo +share/locale/tl/LC_MESSAGES/wesnoth-httt.mo +share/locale/tl/LC_MESSAGES/wesnoth-lib.mo +share/locale/tl/LC_MESSAGES/wesnoth-tb.mo +share/locale/tl/LC_MESSAGES/wesnoth-trow.mo +share/locale/tl/LC_MESSAGES/wesnoth-tsg.mo +share/locale/tl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/tl/LC_MESSAGES/wesnoth-utbs.mo +share/locale/tl/LC_MESSAGES/wesnoth.mo +share/locale/tr/LC_MESSAGES/wesnoth-editor.mo +share/locale/tr/LC_MESSAGES/wesnoth-ei.mo +share/locale/tr/LC_MESSAGES/wesnoth-httt.mo +share/locale/tr/LC_MESSAGES/wesnoth-lib.mo +share/locale/tr/LC_MESSAGES/wesnoth-tb.mo +share/locale/tr/LC_MESSAGES/wesnoth-trow.mo +share/locale/tr/LC_MESSAGES/wesnoth-tsg.mo +share/locale/tr/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo +share/locale/tr/LC_MESSAGES/wesnoth.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-tb.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-trow.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-tsg.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-utbs.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth.mo +%%DATADIR%%/data/COPYING.txt +%%DATADIR%%/data/abilities.cfg +%%DATADIR%%/data/about.cfg +%%DATADIR%%/data/ais/parse.py +%%DATADIR%%/data/ais/safe.py +%%DATADIR%%/data/ais/sample.py +%%DATADIR%%/data/amla.cfg +%%DATADIR%%/data/animation-utils.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/external_binary_data/images/EI_campaign_image.png +%%DATADIR%%/data/campaigns/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/images/units/skeletal-dragon-attack-claws1.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-claws2.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-claws3.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-jaw1.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-jaw2.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-defend.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/An_Elven_Alliance +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/An_Unexpected_Appearance +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Approaching_Weldyn +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Captured +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Drowned_Plains +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Evacuation +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Lake_Vrug +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Mal-Ravanals_Capital +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Northern_Outpost +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Arena +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Crossing +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Escape_Tunnel +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Outpost +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Undead_Border_Patrol +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Throne_Room +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Training_the_Ogres +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Tribal_Warfare +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Two_Paths +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Undead_Crossing +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Weldyn_Besieged +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Weldyn_under_Attack +%%DATADIR%%/data/campaigns/Eastern_Invasion/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/units/Horse_Lord.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/units/Mounted_Fighter.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/units/Mounted_Warrior.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/units/Skeletal_Dragon.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/utils/deaths.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/utils/intro.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data/images/HttT_campaign_icon.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data/images/HttT_campaign_image.png +%%DATADIR%%/data/campaigns/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/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/cockatrice-attack01.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack02.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack03.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack04.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack05.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack06.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack07.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack08.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack09.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack10.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack11.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack12.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack13.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-ranged1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-ranged2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-ranged3.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-melee1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-melee2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-attack-sword-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-attack-sword-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-defend2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-magic.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord-magic.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord-melee.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/gryphon-sleeping.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-3.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-4.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-5.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-die-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-die-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-leading.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-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess.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.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.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-young-attack.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-young-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-young.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/parandra.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter-3.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-sword.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/sea-orc-attack.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/sea-orc-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/sea-orc.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-attack.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-die-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-die-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-moving.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/A_Choice_Must_Be_Made +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Battle_for_Wesnoth +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Bay_of_Pearls +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Blackwater_Port +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Crossroads +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Dwarven_Doors +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Elves_Besieged +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Ford_of_Abez +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Gryphon_Mountain +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Hasty_Alliance +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Home_Clan +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Home_North_Elves +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Isle_of_Anduin +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Isle_of_the_Damned +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Mountain_Pass +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Muff_Malal_Peninsula +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Northern_Winter +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Plunging_Into_the_Darkness +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Princess_of_Wesnoth +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Return_to_Wesnoth +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Sceptre +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Snow_Plains +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Swamp_Of_Dread +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/The_Lost_General +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/The_Siege_of_Elensefar +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Valley_of_Death +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Valley_of_Statues +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/01_Elves_Besieged.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/02_Blackwater_Port.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/03_Isle_of_Anduin.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/04_Bay_of_Pearls.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/05a_Muff_Malal_Peninsula.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/05b_Isle_of_the_Damned.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/06_Siege_of_Elensefar.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/07_Crossroads.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/08_Princess_of_Wesnoth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/09_Valley_of_Death.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/11_Ford_of_Abez.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/12_Northern_Winter.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/13_Mountain_Pass.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/14_Dwarven_Doors.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/15_Plunging_Into_the_Darkness.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/16_Lost_General.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/17_Hasty_Alliance.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/18_Scepter_of_Fire.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/19_A_Choice_Must_Be_Made.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/20a_Snow_Plains.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/20b_Swamp_Of_Dread.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/21_Home_North_Elves.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/22_Elven_Council.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/23_Valley_of_Statues.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/24_Return_to_Wesnoth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/25_Test_of_the_Clans.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/26_Battle_for_Wesnoth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/27_Epilogue.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Battle_Princess.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Chocobone.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Cockatrice.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Commander.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Dark_Queen.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elder_Mage.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elvish_High_Lord.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elvish_Lady.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elvish_Lord.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Fighter.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Lord.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Princess.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Sea_Orc.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Sleeping_Gryphon.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Youth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/bigmap.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/deaths.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/httt_utils.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/intro.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_campaign_icon.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_campaign_image.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_difficulty_easy.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_difficulty_hard.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_difficulty_normal.png +%%DATADIR%%/data/campaigns/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.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/isomithir.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jessica.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jevyan.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/knight.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/lady_outlaw.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/lich.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/logalmier.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/rithrandil.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png +%%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/the_duel.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/the_great_continent.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/the_green_isle.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/trow-logo.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/west.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-bite1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-bite2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-bite3.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-breath.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-tail.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/kilan_elvish_champion.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-sling1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-sling2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-staff1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-staff2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-defend-1-1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-defend-1-2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-attack-sling1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-attack-sling2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-attack-staff1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-attack-staff2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-defend-1-1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-defend-1-2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-leading.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-ranged1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-ranged2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-ranged3.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-sword.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-bow.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.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter-attack.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter-attack2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-ranged1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-ranged2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-ranged3.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-sword.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-bow.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.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth-attack.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth-attack2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-attack.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-die-1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-die-2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-moving.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady-attack.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady-range.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/warrior-king-attack1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/warrior-king-attack2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/warrior-king-defend.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/warrior-king-leading.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/warrior-king.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 +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Final_Spring +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Harrowing_Escape +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_New_Land +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Summer_of_Storms +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Clearwater_Port +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Cursed_Isle +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Elf_Lords +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Fallen_Lich_Point +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Peoples_in_Decline +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Return_of_the_Fleet +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Rise_of_Wesnoth +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Rough_Landing +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Sewer +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Southbay_in_Winter +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Temple_in_the_Deep +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Dragon +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Fall +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Midlands +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Oldwood +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Plan +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_River_Road +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Vanguard +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Troll_Hole +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/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/Chocobone.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Fire_Dragon.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Fireball.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Commander.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Fighter.cfg +%%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/Outlaw_Princess.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Outlaw_Queen.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Vampire_Lady.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Warrior_King.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Wose_Sapling.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-deaths.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-intro.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-macros.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-nlmsg.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-nohome.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-noisle.cfg +%%DATADIR%%/data/campaigns/The_South_Guard.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data/images/TSG_campaign_icon.png +%%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data/images/TSG_campaign_image.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/attacks/rectangular_shield.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/attacks/shield.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-attack.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-defend.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-die-1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-die-2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-moving.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone.png +%%DATADIR%%/data/campaigns/The_South_Guard/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/flag/SGflag-1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SGflag-2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SGflag-3.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-attack-shield.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-attack.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-defend.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-leading.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-attack-shield.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-attack.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-defend.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-leading.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-attack.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-defend.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-die-1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-die-2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-ranged1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-ranged2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/misc/cross.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/misc/dot.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/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/lich.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/sir-gerrick.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/urza-afalas-masked.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/urza-afalas.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/urza-mathin.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/story/bigmap.jpg +%%DATADIR%%/data/campaigns/The_South_Guard/images/story/fall.jpg +%%DATADIR%%/data/campaigns/The_South_Guard/images/story/summer.jpg +%%DATADIR%%/data/campaigns/The_South_Guard/images/story/westin.jpg +%%DATADIR%%/data/campaigns/The_South_Guard/images/story/winter.jpg +%%DATADIR%%/data/campaigns/The_South_Guard/maps/1_Born_To_The_Banner +%%DATADIR%%/data/campaigns/The_South_Guard/maps/2_Proven_By_The_Sword +%%DATADIR%%/data/campaigns/The_South_Guard/maps/3_A_Desperate_Errand +%%DATADIR%%/data/campaigns/The_South_Guard/maps/4_Vale_of_Tears +%%DATADIR%%/data/campaigns/The_South_Guard/maps/5_Choice_In_The_Fog +%%DATADIR%%/data/campaigns/The_South_Guard/maps/6a_Tidings_Good_And_Ill +%%DATADIR%%/data/campaigns/The_South_Guard/maps/6b_The_Long_March +%%DATADIR%%/data/campaigns/The_South_Guard/maps/7a_Into_The_Depths +%%DATADIR%%/data/campaigns/The_South_Guard/maps/7b_Pebbles_In_The_Flood +%%DATADIR%%/data/campaigns/The_South_Guard/maps/8a_Vengeance +%%DATADIR%%/data/campaigns/The_South_Guard/maps/8b_The_Tides_of_War +%%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused/A_Snowy_Mountain +%%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused/Between_Fire_And_Sword +%%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused/Finding_The_Elves +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/1.Born_To_The_Banner.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/2.Proven_By_The_Sword.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/3.A_Desparate_Errand.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/4.Vale_of_Tears.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/5.Choice_In_The_Fog.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/6a.Tidings_Good_And_Ill.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/6b.The_Long_March.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/7a.Into_The_Depths.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/7b.Pebbles_In_The_Flood.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/8a.Vengeance.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/8b.The_Tides_of_War.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/9a.Elf_Epilogue.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/9b.Bandit_Epilogue.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/1.Junior_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/2.Horseman_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/3.Dismounted_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/4.Infantry_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/5.Assault_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Chocobone.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Demilich.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Invisible.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_deaths.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_help.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_story.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_unit_utils.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_utils.cfg +%%DATADIR%%/data/campaigns/Two_Brothers.cfg +%%DATADIR%%/data/campaigns/Two_Brothers/external_binary_data/images/TB_campaign_image.png +%%DATADIR%%/data/campaigns/Two_Brothers/images/arne.png +%%DATADIR%%/data/campaigns/Two_Brothers/images/bjarn.png +%%DATADIR%%/data/campaigns/Two_Brothers/images/terrain/gate1.png +%%DATADIR%%/data/campaigns/Two_Brothers/images/terrain/gate2.png +%%DATADIR%%/data/campaigns/Two_Brothers/images/terrain/gate3.png +%%DATADIR%%/data/campaigns/Two_Brothers/maps/1_Rooting_Out_A_Mage +%%DATADIR%%/data/campaigns/Two_Brothers/maps/2_The_Chase +%%DATADIR%%/data/campaigns/Two_Brothers/maps/3_Guarded_Castle +%%DATADIR%%/data/campaigns/Two_Brothers/maps/4_Return_to_the_Village +%%DATADIR%%/data/campaigns/Two_Brothers/scenarios/1_Rooting_Out_A_Mage.cfg +%%DATADIR%%/data/campaigns/Two_Brothers/scenarios/2_The_Chase.cfg +%%DATADIR%%/data/campaigns/Two_Brothers/scenarios/3_Guarded_Castle.cfg +%%DATADIR%%/data/campaigns/Two_Brothers/scenarios/4_Return_to_the_Village.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_campaign_icon.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_campaign_image.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_difficulty_challenging.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_difficulty_hard.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_difficulty_normal.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-core-compact.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-core-compact2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-melee1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-melee2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-spire-bottom.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-spire-top.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/ant-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/ant-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/ant.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/bolas.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/blank.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/corrupted-elf-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/corrupted-elf-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/corrupted-elf.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dawarf-growl.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dawarf-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dawarf-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dawarf.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon-attack-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon-attack-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/eloh.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/flesh-golem.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/bones.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/bonestack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/burial.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/cage.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/coffin2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/desert-elvish-druid-statue.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/desert-elvish-shyde-statue.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/dragonstatue-old.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/firesword.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/galleon-elf.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/galleon-human.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/kaleh-dead.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-n.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-ne.png +%%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/rock-cairn.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune-lightblue-small.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune-violet2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune2-burning.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune3-burning.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune4-burning.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/wreck.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/keratur.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/UTBSshot.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/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/naga-guardian.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-moving-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-moving-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-moving-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-defend-both.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-defend-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-sentinel.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-warden.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-corrupted-elf-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-corrupted-elf-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-corrupted-elf.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-leading.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing8.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-en-guarde.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-leading.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-melee1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-melee2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal8.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal9.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ftouch-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ftouch-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ftouch-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing10.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing11.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing12.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing8.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing9.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-leading.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-defend-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-defend-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/cloaked.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/eloh.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/eloh_rage.png +%%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-hunter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/nym.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/rogrimir.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/uncloaked.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/zhul.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/bola-n.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/bola-ne.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/spider-lich.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/abyss2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/abyssbridge2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/coast.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/dark_tile1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/dark_tile2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/dark_tile3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/desert_crater.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/new_sand_rubble.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/troll-shaman.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dreadbat-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dreadbat-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dreadbat.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-defence.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-staff1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-staff2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/10Fish2 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/11Island5 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/12Final4 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/13Epilogue +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/1MorningAfter5 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/2HarshSands12 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/3Night4 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/4OrcishFoothills9 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/5StruggleNew5 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/6_1TrollMission5 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/6_2DwarfMission3 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/7_1DwarfInterlude2 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/7_2TrollInterlude +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/8Frying8 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/9Water5 +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/10_Fish.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/11_Island.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/12_Final.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/13_Epilogue.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/1_Morning_After.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/2_Harsh_Sands.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/3_Long_Night.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/4_Orcish_Foothills.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/5_Struggle.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/6_1_Hunting_Trolls.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/6_2_Hunting_Dwarves.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/7_1_DwarfInterlude.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/7_2_TrollInterlude.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/8_Frying_Pan.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/9_Water.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body2.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body3.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Minion.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Spire.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ant.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Blank.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Cave_Spider2.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/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/Deep_One.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Archer.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Avenger.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Captain.cfg +%%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/Dread_Bat.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dwarvish_Explorer.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dwarvish_Pathfinder.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dwarvish_Scout.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Arch_Mage.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Great_Mage.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Red_Mage.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Silver_Mage.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Ghost.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Nightgaunt.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Shadow.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Spectre.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Wraith.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Flesh_Golem.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Garak_Captain.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Garak_Marshal.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Haunt.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Human_Commander.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ixthala_Demon.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Captain.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Champion.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Fighter.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Hero.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Marshal.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/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/Necromancer2.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Nym_Hunter.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Nym_Prowler.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Nym_Sentinel.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Small_Mudcrawler.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Spider_Lich.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Troll_Shaman.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Troll_Zombie.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Undead_Horseman.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Zhul_Druid.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Zhul_Shyde.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Zhul_Star.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/adjacent_custom.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths2.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths3.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/macros.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/terrain.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/terrain_graphics.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/time.cfg +%%DATADIR%%/data/convert.pl +%%DATADIR%%/data/english.cfg +%%DATADIR%%/data/factions/alliance_of_darkness.cfg +%%DATADIR%%/data/factions/alliance_of_light.cfg +%%DATADIR%%/data/factions/drakes-aoh.cfg +%%DATADIR%%/data/factions/drakes-default.cfg +%%DATADIR%%/data/factions/knalgans-aoh.cfg +%%DATADIR%%/data/factions/knalgans-default.cfg +%%DATADIR%%/data/factions/loyalists-aoh.cfg +%%DATADIR%%/data/factions/loyalists-default.cfg +%%DATADIR%%/data/factions/northerners-aoh.cfg +%%DATADIR%%/data/factions/northerners-default.cfg +%%DATADIR%%/data/factions/rebels-aoh.cfg +%%DATADIR%%/data/factions/rebels-default.cfg +%%DATADIR%%/data/factions/undead-aoh.cfg +%%DATADIR%%/data/factions/undead-default.cfg +%%DATADIR%%/data/fonts.cfg +%%DATADIR%%/data/game.cfg +%%DATADIR%%/data/help.cfg +%%DATADIR%%/data/hotkeys.cfg +%%DATADIR%%/data/items.cfg +%%DATADIR%%/data/language.cfg +%%DATADIR%%/data/languages/C.cfg +%%DATADIR%%/data/languages/af_ZA.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/gl_ES.cfg +%%DATADIR%%/data/languages/he_IL.cfg +%%DATADIR%%/data/languages/hu_HU.cfg +%%DATADIR%%/data/languages/id_ID.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/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/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_CS.cfg +%%DATADIR%%/data/languages/sv_SE.cfg +%%DATADIR%%/data/languages/tl_PH.cfg +%%DATADIR%%/data/languages/tr_TR.cfg +%%DATADIR%%/data/languages/zh_CN.cfg +%%DATADIR%%/data/maps/multiplayer/2p_Blitz +%%DATADIR%%/data/maps/multiplayer/2p_Caves_of_the_Basilisk +%%DATADIR%%/data/maps/multiplayer/2p_Charge +%%DATADIR%%/data/maps/multiplayer/2p_Cynsaun_Battlefield +%%DATADIR%%/data/maps/multiplayer/2p_Den_of_Onis +%%DATADIR%%/data/maps/multiplayer/2p_Hamlets +%%DATADIR%%/data/maps/multiplayer/2p_Hornshark_Island +%%DATADIR%%/data/maps/multiplayer/2p_Meteor_Lake +%%DATADIR%%/data/maps/multiplayer/2p_Sablestone_Delta +%%DATADIR%%/data/maps/multiplayer/2p_Silverhead_Crossing +%%DATADIR%%/data/maps/multiplayer/2p_Sullas_Ruins +%%DATADIR%%/data/maps/multiplayer/2p_Wesbowl +%%DATADIR%%/data/maps/multiplayer/3p_Island_of_the_Horatii +%%DATADIR%%/data/maps/multiplayer/3p_Morituri +%%DATADIR%%/data/maps/multiplayer/3p_Triple_Blitz +%%DATADIR%%/data/maps/multiplayer/4p_Blue_Water_Province +%%DATADIR%%/data/maps/multiplayer/4p_Castle_Hopping_Isle +%%DATADIR%%/data/maps/multiplayer/4p_Clash +%%DATADIR%%/data/maps/multiplayer/4p_Hamlets +%%DATADIR%%/data/maps/multiplayer/4p_Isars_Cross +%%DATADIR%%/data/maps/multiplayer/4p_King_of_the_Hill +%%DATADIR%%/data/maps/multiplayer/4p_Lagoon +%%DATADIR%%/data/maps/multiplayer/4p_Loris_River +%%DATADIR%%/data/maps/multiplayer/4p_Morituri +%%DATADIR%%/data/maps/multiplayer/4p_Paths_of_Daggers +%%DATADIR%%/data/maps/multiplayer/4p_Siege_Castles +%%DATADIR%%/data/maps/multiplayer/4p_The_Wilderlands +%%DATADIR%%/data/maps/multiplayer/5p_Forest_of_Fear +%%DATADIR%%/data/maps/multiplayer/6p_Amohsad_Caldera +%%DATADIR%%/data/maps/multiplayer/6p_Crusaders_Field +%%DATADIR%%/data/maps/multiplayer/6p_Hexcake +%%DATADIR%%/data/maps/multiplayer/6p_The_Manzivan_Traps +%%DATADIR%%/data/maps/multiplayer/6p_Waterloo_Sunset +%%DATADIR%%/data/maps/multiplayer/8p_Morituri +%%DATADIR%%/data/maps/multiplayer/9p_Merkwuerdigliebe +%%DATADIR%%/data/multiplayer.cfg +%%DATADIR%%/data/names.cfg +%%DATADIR%%/data/scenario-test.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Blitz.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Caves_of_the_Basilisk.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Charge.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Cynsaun_Battlefield.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Den_of_Onis.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Hamlets.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Hornshark_Island.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Meteor_Lake.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Sablestone_Delta.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Silverhead_Crossing.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Sullas_Ruins.cfg +%%DATADIR%%/data/scenarios/multiplayer/2p_Wesbowl.cfg +%%DATADIR%%/data/scenarios/multiplayer/3p_Island_of_the_Horatii.cfg +%%DATADIR%%/data/scenarios/multiplayer/3p_Morituri.cfg +%%DATADIR%%/data/scenarios/multiplayer/3p_Triple_Blitz.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Blue_Water_Province.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Castle_Hopping_Isle.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Clash.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Hamlets.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Isars_Cross.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_King_of_the_Hill.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Lagoon.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Loris_River.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Morituri.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Paths_of_Daggers.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_Siege_Castles.cfg +%%DATADIR%%/data/scenarios/multiplayer/4p_The_Wilderlands.cfg +%%DATADIR%%/data/scenarios/multiplayer/5p_Forest_of_Fear.cfg +%%DATADIR%%/data/scenarios/multiplayer/6p_Amohsad_Caldera.cfg +%%DATADIR%%/data/scenarios/multiplayer/6p_Crusaders_Field.cfg +%%DATADIR%%/data/scenarios/multiplayer/6p_Hexcake.cfg +%%DATADIR%%/data/scenarios/multiplayer/6p_The_Manzivan_Traps.cfg +%%DATADIR%%/data/scenarios/multiplayer/6p_Waterloo_Sunset.cfg +%%DATADIR%%/data/scenarios/multiplayer/8p_Morituri.cfg +%%DATADIR%%/data/scenarios/multiplayer/9p_Merkwuerdigliebe.cfg +%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario.cfg +%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario_Desert.cfg +%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario_Marsh.cfg +%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario_Winter.cfg +%%DATADIR%%/data/scenarios/multiplayer/Wesbench_AI.cfg +%%DATADIR%%/data/scenarios/multiplayer/Wesbench_Scroll.cfg +%%DATADIR%%/data/scenarios/multiplayer/Wesbench_Shroud_Walk.cfg +%%DATADIR%%/data/schedules.cfg +%%DATADIR%%/data/sound-utils.cfg +%%DATADIR%%/data/special-notes.cfg +%%DATADIR%%/data/team-colors.cfg +%%DATADIR%%/data/terrain-graphics.cfg +%%DATADIR%%/data/terrain-graphics/adjacent.cfg +%%DATADIR%%/data/terrain-graphics/base.cfg +%%DATADIR%%/data/terrain-graphics/bridges.cfg +%%DATADIR%%/data/terrain-graphics/buildings.cfg +%%DATADIR%%/data/terrain-graphics/canyon.cfg +%%DATADIR%%/data/terrain-graphics/castle-transitions.cfg +%%DATADIR%%/data/terrain-graphics/castles.cfg +%%DATADIR%%/data/terrain-graphics/caves.cfg +%%DATADIR%%/data/terrain-graphics/forestcastle.cfg +%%DATADIR%%/data/terrain-graphics/forests.cfg +%%DATADIR%%/data/terrain-graphics/mountains.cfg +%%DATADIR%%/data/terrain-graphics/util.cfg +%%DATADIR%%/data/terrain.cfg +%%DATADIR%%/data/themes/default.cfg +%%DATADIR%%/data/themes/dfool.cfg +%%DATADIR%%/data/themes/editor.cfg +%%DATADIR%%/data/themes/experimental.cfg +%%DATADIR%%/data/themes/macros.cfg +%%DATADIR%%/data/tips.cfg +%%DATADIR%%/data/tools/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/traits.cfg +%%DATADIR%%/data/tutorial/images/portraits/delfador.png +%%DATADIR%%/data/tutorial/images/portraits/konrad.png +%%DATADIR%%/data/tutorial/images/portraits/lisar.png +%%DATADIR%%/data/tutorial/images/units/elder-mage-defend.png +%%DATADIR%%/data/tutorial/images/units/elder-mage.png +%%DATADIR%%/data/tutorial/images/units/elder-mage-ranged1.png +%%DATADIR%%/data/tutorial/images/units/elder-mage-ranged2.png +%%DATADIR%%/data/tutorial/images/units/elder-mage-ranged3.png +%%DATADIR%%/data/tutorial/images/units/human-princess-defend.png +%%DATADIR%%/data/tutorial/images/units/elder-mage-melee1.png +%%DATADIR%%/data/tutorial/images/units/elder-mage-melee2.png +%%DATADIR%%/data/tutorial/images/units/human-princess-attack-1.png +%%DATADIR%%/data/tutorial/images/units/human-princess-attack-2.png +%%DATADIR%%/data/tutorial/images/units/human-princess-attack-3.png +%%DATADIR%%/data/tutorial/images/units/human-princess-attack-4.png +%%DATADIR%%/data/tutorial/images/units/human-princess.png +%%DATADIR%%/data/tutorial/images/units/konrad-fighter-attack-1.png +%%DATADIR%%/data/tutorial/images/units/konrad-fighter-attack-2.png +%%DATADIR%%/data/tutorial/images/units/konrad-fighter-defend.png +%%DATADIR%%/data/tutorial/images/units/konrad-fighter.png +%%DATADIR%%/data/tutorial/images/units/quintain-attack1.png +%%DATADIR%%/data/tutorial/images/units/quintain-attack2.png +%%DATADIR%%/data/tutorial/images/units/quintain.png +%%DATADIR%%/data/tutorial/maps/2_Tutorial +%%DATADIR%%/data/tutorial/scenarios/1_Tutorial.cfg +%%DATADIR%%/data/tutorial/scenarios/2_Speaking.cfg +%%DATADIR%%/data/tutorial/scenarios/2_Tutorial.cfg +%%DATADIR%%/data/tutorial/scenarios/utils.cfg +%%DATADIR%%/data/tutorial/units/Elder_Mage.cfg +%%DATADIR%%/data/tutorial/units/Fighter.cfg +%%DATADIR%%/data/tutorial/units/Fighteress.cfg +%%DATADIR%%/data/tutorial/units/Quintain.cfg +%%DATADIR%%/data/units.cfg +%%DATADIR%%/data/units/Boat_Galleon.cfg +%%DATADIR%%/data/units/Boat_Pirate_Galleon.cfg +%%DATADIR%%/data/units/Boat_Transport_Galleon.cfg +%%DATADIR%%/data/units/Drake_Blademaster.cfg +%%DATADIR%%/data/units/Drake_Burner.cfg +%%DATADIR%%/data/units/Drake_Clasher.cfg +%%DATADIR%%/data/units/Drake_Enforcer.cfg +%%DATADIR%%/data/units/Drake_Fighter.cfg +%%DATADIR%%/data/units/Drake_Fire.cfg +%%DATADIR%%/data/units/Drake_Flameheart.cfg +%%DATADIR%%/data/units/Drake_Flare.cfg +%%DATADIR%%/data/units/Drake_Gladiator.cfg +%%DATADIR%%/data/units/Drake_Glider.cfg +%%DATADIR%%/data/units/Drake_Hurricane.cfg +%%DATADIR%%/data/units/Drake_Inferno.cfg +%%DATADIR%%/data/units/Drake_Sky.cfg +%%DATADIR%%/data/units/Drake_Slasher.cfg +%%DATADIR%%/data/units/Drake_Warden.cfg +%%DATADIR%%/data/units/Drake_Warrior.cfg +%%DATADIR%%/data/units/Dwarvish_Berserker.cfg +%%DATADIR%%/data/units/Dwarvish_Dragonguard.cfg +%%DATADIR%%/data/units/Dwarvish_Fighter.cfg +%%DATADIR%%/data/units/Dwarvish_Guardsman.cfg +%%DATADIR%%/data/units/Dwarvish_Lord.cfg +%%DATADIR%%/data/units/Dwarvish_Runemaster.cfg +%%DATADIR%%/data/units/Dwarvish_Sentinel.cfg +%%DATADIR%%/data/units/Dwarvish_Stalwart.cfg +%%DATADIR%%/data/units/Dwarvish_Steelclad.cfg +%%DATADIR%%/data/units/Dwarvish_Thunderer.cfg +%%DATADIR%%/data/units/Dwarvish_Thunderguard.cfg +%%DATADIR%%/data/units/Dwarvish_Ulfserker.cfg +%%DATADIR%%/data/units/Elvish_Archer.cfg +%%DATADIR%%/data/units/Elvish_Avenger.cfg +%%DATADIR%%/data/units/Elvish_Captain.cfg +%%DATADIR%%/data/units/Elvish_Champion.cfg +%%DATADIR%%/data/units/Elvish_Druid.cfg +%%DATADIR%%/data/units/Elvish_Enchantress.cfg +%%DATADIR%%/data/units/Elvish_Fighter.cfg +%%DATADIR%%/data/units/Elvish_Hero.cfg +%%DATADIR%%/data/units/Elvish_Marksman.cfg +%%DATADIR%%/data/units/Elvish_Marshal.cfg +%%DATADIR%%/data/units/Elvish_Outrider.cfg +%%DATADIR%%/data/units/Elvish_Ranger.cfg +%%DATADIR%%/data/units/Elvish_Rider.cfg +%%DATADIR%%/data/units/Elvish_Scout.cfg +%%DATADIR%%/data/units/Elvish_Shaman.cfg +%%DATADIR%%/data/units/Elvish_Sharpshooter.cfg +%%DATADIR%%/data/units/Elvish_Shyde.cfg +%%DATADIR%%/data/units/Elvish_Sorceress.cfg +%%DATADIR%%/data/units/Elvish_Sylph.cfg +%%DATADIR%%/data/units/Goblin_Direwolf_Rider.cfg +%%DATADIR%%/data/units/Goblin_Impaler.cfg +%%DATADIR%%/data/units/Goblin_Knight.cfg +%%DATADIR%%/data/units/Goblin_Pillager.cfg +%%DATADIR%%/data/units/Goblin_Rouser.cfg +%%DATADIR%%/data/units/Goblin_Spearman.cfg +%%DATADIR%%/data/units/Goblin_Wolf_Rider.cfg +%%DATADIR%%/data/units/Gryphon.cfg +%%DATADIR%%/data/units/Gryphon_Master.cfg +%%DATADIR%%/data/units/Gryphon_Rider.cfg +%%DATADIR%%/data/units/Human_Horse_Grand_Knight.cfg +%%DATADIR%%/data/units/Human_Horse_Knight.cfg +%%DATADIR%%/data/units/Human_Horse_Lancer.cfg +%%DATADIR%%/data/units/Human_Horse_Paladin.cfg +%%DATADIR%%/data/units/Human_Horseman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Bowman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Cavalier.cfg +%%DATADIR%%/data/units/Human_Loyalist_Cavalryman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Dragoon.cfg +%%DATADIR%%/data/units/Human_Loyalist_Duelist.cfg +%%DATADIR%%/data/units/Human_Loyalist_Fencer.cfg +%%DATADIR%%/data/units/Human_Loyalist_General.cfg +%%DATADIR%%/data/units/Human_Loyalist_Grand_Marshal.cfg +%%DATADIR%%/data/units/Human_Loyalist_Halberdier.cfg +%%DATADIR%%/data/units/Human_Loyalist_Heavy_Infantryman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Iron_Mauler.cfg +%%DATADIR%%/data/units/Human_Loyalist_Javelineer.cfg +%%DATADIR%%/data/units/Human_Loyalist_Lieutenant.cfg +%%DATADIR%%/data/units/Human_Loyalist_Longbowman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Master_Bowman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Master_at_Arms.cfg +%%DATADIR%%/data/units/Human_Loyalist_Pikeman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Royal_Guard.cfg +%%DATADIR%%/data/units/Human_Loyalist_Sergeant.cfg +%%DATADIR%%/data/units/Human_Loyalist_Shock_Trooper.cfg +%%DATADIR%%/data/units/Human_Loyalist_Spearman.cfg +%%DATADIR%%/data/units/Human_Loyalist_Swordsman.cfg +%%DATADIR%%/data/units/Human_Mage.cfg +%%DATADIR%%/data/units/Human_Mage_Arch.cfg +%%DATADIR%%/data/units/Human_Mage_Great.cfg +%%DATADIR%%/data/units/Human_Mage_Red.cfg +%%DATADIR%%/data/units/Human_Mage_Silver.cfg +%%DATADIR%%/data/units/Human_Mage_White.cfg +%%DATADIR%%/data/units/Human_Mage_of_Light.cfg +%%DATADIR%%/data/units/Human_Outlaw.cfg +%%DATADIR%%/data/units/Human_Outlaw_Assassin.cfg +%%DATADIR%%/data/units/Human_Outlaw_Bandit.cfg +%%DATADIR%%/data/units/Human_Outlaw_Footpad.cfg +%%DATADIR%%/data/units/Human_Outlaw_Poacher.cfg +%%DATADIR%%/data/units/Human_Outlaw_Rogue.cfg +%%DATADIR%%/data/units/Human_Outlaw_Thief.cfg +%%DATADIR%%/data/units/Human_Outlaw_Thug.cfg +%%DATADIR%%/data/units/Human_Outlaw_Trapper.cfg +%%DATADIR%%/data/units/Human_Peasant.cfg +%%DATADIR%%/data/units/Mermaid_Diviner.cfg +%%DATADIR%%/data/units/Mermaid_Enchantress.cfg +%%DATADIR%%/data/units/Mermaid_Initiate.cfg +%%DATADIR%%/data/units/Mermaid_Priestess.cfg +%%DATADIR%%/data/units/Mermaid_Siren.cfg +%%DATADIR%%/data/units/Merman_Entangler.cfg +%%DATADIR%%/data/units/Merman_Fighter.cfg +%%DATADIR%%/data/units/Merman_Hoplite.cfg +%%DATADIR%%/data/units/Merman_Hunter.cfg +%%DATADIR%%/data/units/Merman_Javelineer.cfg +%%DATADIR%%/data/units/Merman_Netcaster.cfg +%%DATADIR%%/data/units/Merman_Spearman.cfg +%%DATADIR%%/data/units/Merman_Triton.cfg +%%DATADIR%%/data/units/Merman_Warrior.cfg +%%DATADIR%%/data/units/Monster_Cave_Spider.cfg +%%DATADIR%%/data/units/Monster_Cuttle_Fish.cfg +%%DATADIR%%/data/units/Monster_Giant_Mudcrawler.cfg +%%DATADIR%%/data/units/Monster_Giant_Scorpion.cfg +%%DATADIR%%/data/units/Monster_Mudcrawler.cfg +%%DATADIR%%/data/units/Monster_Sea_Serpent.cfg +%%DATADIR%%/data/units/Monster_Tentacle.cfg +%%DATADIR%%/data/units/Monster_Yeti.cfg +%%DATADIR%%/data/units/Naga_Fighter.cfg +%%DATADIR%%/data/units/Naga_Myrmidon.cfg +%%DATADIR%%/data/units/Naga_Warrior.cfg +%%DATADIR%%/data/units/Ogre.cfg +%%DATADIR%%/data/units/Ogre_Young.cfg +%%DATADIR%%/data/units/Orcish_Archer.cfg +%%DATADIR%%/data/units/Orcish_Assassin.cfg +%%DATADIR%%/data/units/Orcish_Crossbowman.cfg +%%DATADIR%%/data/units/Orcish_Grunt.cfg +%%DATADIR%%/data/units/Orcish_Leader.cfg +%%DATADIR%%/data/units/Orcish_Ruler.cfg +%%DATADIR%%/data/units/Orcish_Slayer.cfg +%%DATADIR%%/data/units/Orcish_Slurbow.cfg +%%DATADIR%%/data/units/Orcish_Sovereign.cfg +%%DATADIR%%/data/units/Orcish_Warlord.cfg +%%DATADIR%%/data/units/Orcish_Warrior.cfg +%%DATADIR%%/data/units/Saurian_Ambusher.cfg +%%DATADIR%%/data/units/Saurian_Augur.cfg +%%DATADIR%%/data/units/Saurian_Flanker.cfg +%%DATADIR%%/data/units/Saurian_Oracle.cfg +%%DATADIR%%/data/units/Saurian_Skirmisher.cfg +%%DATADIR%%/data/units/Saurian_Soothsayer.cfg +%%DATADIR%%/data/units/Troll.cfg +%%DATADIR%%/data/units/Troll_Great.cfg +%%DATADIR%%/data/units/Troll_Hero.cfg +%%DATADIR%%/data/units/Troll_Rocklobber.cfg +%%DATADIR%%/data/units/Troll_Warrior.cfg +%%DATADIR%%/data/units/Troll_Whelp.cfg +%%DATADIR%%/data/units/Undead_Bat_Blood.cfg +%%DATADIR%%/data/units/Undead_Bat_Vampire.cfg +%%DATADIR%%/data/units/Undead_Corpse_Ghoul.cfg +%%DATADIR%%/data/units/Undead_Corpse_Necrophage.cfg +%%DATADIR%%/data/units/Undead_Corpse_Soulless.cfg +%%DATADIR%%/data/units/Undead_Corpse_Walking.cfg +%%DATADIR%%/data/units/Undead_Necro_Ancient_Lich.cfg +%%DATADIR%%/data/units/Undead_Necro_Dark_Adept.cfg +%%DATADIR%%/data/units/Undead_Necro_Dark_Sorcerer.cfg +%%DATADIR%%/data/units/Undead_Necro_Lich.cfg +%%DATADIR%%/data/units/Undead_Necromancer.cfg +%%DATADIR%%/data/units/Undead_Skele_Bone_Shooter.cfg +%%DATADIR%%/data/units/Undead_Skele_Death_Knight.cfg +%%DATADIR%%/data/units/Undead_Skele_Deathblade.cfg +%%DATADIR%%/data/units/Undead_Skele_Draug.cfg +%%DATADIR%%/data/units/Undead_Skele_Revenant.cfg +%%DATADIR%%/data/units/Undead_Skele_Soul_Shooter.cfg +%%DATADIR%%/data/units/Undead_Skeleton.cfg +%%DATADIR%%/data/units/Undead_Skeleton_Archer.cfg +%%DATADIR%%/data/units/Undead_Spirit_Ghost.cfg +%%DATADIR%%/data/units/Undead_Spirit_Nightgaunt.cfg +%%DATADIR%%/data/units/Undead_Spirit_Shadow.cfg +%%DATADIR%%/data/units/Undead_Spirit_Spectre.cfg +%%DATADIR%%/data/units/Undead_Spirit_Wraith.cfg +%%DATADIR%%/data/units/Wose.cfg +%%DATADIR%%/data/units/Wose_Ancient.cfg +%%DATADIR%%/data/units/Wose_Elder.cfg +%%DATADIR%%/data/utils.cfg +%%DATADIR%%/fonts/COPYING +%%DATADIR%%/fonts/DejaVuSans.ttf +%%DATADIR%%/fonts/FreeSans.ttf +%%DATADIR%%/images/attacks/axe.png +%%DATADIR%%/images/attacks/axe-deathblade.png +%%DATADIR%%/images/attacks/axe-undead.png +%%DATADIR%%/images/attacks/ballista.png +%%DATADIR%%/images/attacks/baneblade.png +%%DATADIR%%/images/attacks/battleaxe.png +%%DATADIR%%/images/attacks/battleaxe-undead.png +%%DATADIR%%/images/attacks/beak.png +%%DATADIR%%/images/attacks/blank.png +%%DATADIR%%/images/attacks/bow-elven-magic.png +%%DATADIR%%/images/attacks/bow-elven.png +%%DATADIR%%/images/attacks/bow-orcish.png +%%DATADIR%%/images/attacks/bow.png +%%DATADIR%%/images/attacks/chakram.png +%%DATADIR%%/images/attacks/claws-animal.png +%%DATADIR%%/images/attacks/claws-drake.png +%%DATADIR%%/images/attacks/claws-flaming.png +%%DATADIR%%/images/attacks/claws-undead.png +%%DATADIR%%/images/attacks/claws.png +%%DATADIR%%/images/attacks/cleaver.png +%%DATADIR%%/images/attacks/club.png +%%DATADIR%%/images/attacks/crossbow-human.png +%%DATADIR%%/images/attacks/crossbow-orcish.png +%%DATADIR%%/images/attacks/crossbow-undead.png +%%DATADIR%%/images/attacks/crush-wose.png +%%DATADIR%%/images/attacks/curse.png +%%DATADIR%%/images/attacks/dagger-human.png +%%DATADIR%%/images/attacks/dagger-orcish.png +%%DATADIR%%/images/attacks/dagger-thrown-human.png +%%DATADIR%%/images/attacks/dagger-thrown-poison-human.png +%%DATADIR%%/images/attacks/dagger-thrown-poison-orcish.png +%%DATADIR%%/images/attacks/dagger-undead.png +%%DATADIR%%/images/attacks/dark-missile.png +%%DATADIR%%/images/attacks/dragonstaff.png +%%DATADIR%%/images/attacks/druidstaff.png +%%DATADIR%%/images/attacks/entangle.png +%%DATADIR%%/images/attacks/faerie-fire.png +%%DATADIR%%/images/attacks/fangs-animal.png +%%DATADIR%%/images/attacks/fangs-spider.png +%%DATADIR%%/images/attacks/fangs.png +%%DATADIR%%/images/attacks/fire-breath-drake.png +%%DATADIR%%/images/attacks/fireball.png +%%DATADIR%%/images/attacks/fist-human.png +%%DATADIR%%/images/attacks/fist-skeletal.png +%%DATADIR%%/images/attacks/fist-troll.png +%%DATADIR%%/images/attacks/fist-yeti.png +%%DATADIR%%/images/attacks/fist.png +%%DATADIR%%/images/attacks/frenzy.png +%%DATADIR%%/images/attacks/gaze.png +%%DATADIR%%/images/attacks/glaive.png +%%DATADIR%%/images/attacks/greatsword-human.png +%%DATADIR%%/images/attacks/greatsword-orcish.png +%%DATADIR%%/images/attacks/halberd.png +%%DATADIR%%/images/attacks/hammer-troll.png +%%DATADIR%%/images/attacks/hammer.png +%%DATADIR%%/images/attacks/hatchet.png +%%DATADIR%%/images/attacks/iceball.png +%%DATADIR%%/images/attacks/ink.png +%%DATADIR%%/images/attacks/javelin-human.png +%%DATADIR%%/images/attacks/javelin-orcish.png +%%DATADIR%%/images/attacks/lance.png +%%DATADIR%%/images/attacks/lightbeam.png +%%DATADIR%%/images/attacks/lightning.png +%%DATADIR%%/images/attacks/mace.png +%%DATADIR%%/images/attacks/magic-missile.png +%%DATADIR%%/images/attacks/morning-star.png +%%DATADIR%%/images/attacks/mud-glob.png +%%DATADIR%%/images/attacks/net.png +%%DATADIR%%/images/attacks/pick-axe.png +%%DATADIR%%/images/attacks/pike.png +%%DATADIR%%/images/attacks/pincers.png +%%DATADIR%%/images/attacks/pitchfork.png +%%DATADIR%%/images/attacks/quarterstaff.png +%%DATADIR%%/images/attacks/rectangular-shield.png +%%DATADIR%%/images/attacks/sabre-human.png +%%DATADIR%%/images/attacks/scimitar.png +%%DATADIR%%/images/attacks/slam-drake.png +%%DATADIR%%/images/attacks/sling.png +%%DATADIR%%/images/attacks/spear-orcish.png +%%DATADIR%%/images/attacks/spear.png +%%DATADIR%%/images/attacks/staff-elven.png +%%DATADIR%%/images/attacks/staff-magic.png +%%DATADIR%%/images/attacks/staff-necromantic.png +%%DATADIR%%/images/attacks/staff-plague.png +%%DATADIR%%/images/attacks/sting.png +%%DATADIR%%/images/attacks/sword-elven.png +%%DATADIR%%/images/attacks/sword-flaming.png +%%DATADIR%%/images/attacks/sword-holy.png +%%DATADIR%%/images/attacks/sword-human.png +%%DATADIR%%/images/attacks/sword-orcish.png +%%DATADIR%%/images/attacks/tentacle.png +%%DATADIR%%/images/attacks/thorns.png +%%DATADIR%%/images/attacks/thunderstick.png +%%DATADIR%%/images/attacks/torch.png +%%DATADIR%%/images/attacks/touch-faerie.png +%%DATADIR%%/images/attacks/touch-undead.png +%%DATADIR%%/images/attacks/touch-zombie.png +%%DATADIR%%/images/attacks/trident.png +%%DATADIR%%/images/attacks/wail.png +%%DATADIR%%/images/attacks/waterspray.png +%%DATADIR%%/images/attacks/web.png +%%DATADIR%%/images/attacks/whip.png +%%DATADIR%%/images/attacks/woodensword.png +%%DATADIR%%/images/buttons/action-button-active.png +%%DATADIR%%/images/buttons/action-button-pressed.png +%%DATADIR%%/images/buttons/action-button.png +%%DATADIR%%/images/buttons/button-active.png +%%DATADIR%%/images/buttons/button-pressed.png +%%DATADIR%%/images/buttons/button.png +%%DATADIR%%/images/buttons/checkbox-active-pressed.png +%%DATADIR%%/images/buttons/checkbox-active.png +%%DATADIR%%/images/buttons/checkbox-pressed.png +%%DATADIR%%/images/buttons/checkbox.png +%%DATADIR%%/images/buttons/downarrow-button-active.png +%%DATADIR%%/images/buttons/downarrow-button-pressed.png +%%DATADIR%%/images/buttons/downarrow-button.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.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/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_button_editor-active.png +%%DATADIR%%/images/buttons/resize_button_editor-pressed.png +%%DATADIR%%/images/buttons/resize_button_editor.png +%%DATADIR%%/images/buttons/scrollbottom-active.png +%%DATADIR%%/images/buttons/scrollbottom.png +%%DATADIR%%/images/buttons/scrollgroove-bottom.png +%%DATADIR%%/images/buttons/scrollgroove-mid.png +%%DATADIR%%/images/buttons/scrollgroove-top.png +%%DATADIR%%/images/buttons/scrollmid-active.png +%%DATADIR%%/images/buttons/scrollmid.png +%%DATADIR%%/images/buttons/scrolltop-active.png +%%DATADIR%%/images/buttons/scrolltop.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-pressed.png +%%DATADIR%%/images/buttons/uparrow-button.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/move.png +%%DATADIR%%/images/cursors-bw/normal.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/move.png +%%DATADIR%%/images/cursors/normal.png +%%DATADIR%%/images/cursors/select.png +%%DATADIR%%/images/cursors/wait-alt.png +%%DATADIR%%/images/cursors/wait.png +%%DATADIR%%/images/editor/brush-1-active.png +%%DATADIR%%/images/editor/brush-1-pressed.png +%%DATADIR%%/images/editor/brush-1.png +%%DATADIR%%/images/editor/brush-2-active.png +%%DATADIR%%/images/editor/brush-2-pressed.png +%%DATADIR%%/images/editor/brush-2.png +%%DATADIR%%/images/editor/brush-3-active.png +%%DATADIR%%/images/editor/brush-3-pressed.png +%%DATADIR%%/images/editor/brush-3.png +%%DATADIR%%/images/halo/elder-mage-halo.png +%%DATADIR%%/images/halo/elder-mage-halo1.png +%%DATADIR%%/images/halo/elder-mage-halo2.png +%%DATADIR%%/images/halo/elder-mage-halo3.png +%%DATADIR%%/images/halo/elder-mage-halo4.png +%%DATADIR%%/images/halo/elder-mage-halo5.png +%%DATADIR%%/images/halo/elder-mage-halo6.png +%%DATADIR%%/images/halo/elven/druid-healing1.png +%%DATADIR%%/images/halo/elven/druid-healing2.png +%%DATADIR%%/images/halo/elven/druid-healing3.png +%%DATADIR%%/images/halo/elven/druid-healing4.png +%%DATADIR%%/images/halo/elven/druid-healing5.png +%%DATADIR%%/images/halo/elven/druid-healing6.png +%%DATADIR%%/images/halo/elven/druid-healing7.png +%%DATADIR%%/images/halo/elven/druid-healing8.png +%%DATADIR%%/images/halo/elven/elven-shield-halo-100pct.png +%%DATADIR%%/images/halo/elven/elven-shield-halo-20pct.png +%%DATADIR%%/images/halo/elven/elven-shield-halo-40pct.png +%%DATADIR%%/images/halo/elven/elven-shield-halo-60pct.png +%%DATADIR%%/images/halo/elven/elven-shield-halo-80pct.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo1.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo2.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo3.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo4.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo5.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo6.png +%%DATADIR%%/images/halo/elven/faerie-fire-halo7.png +%%DATADIR%%/images/halo/elven/ice-halo1.png +%%DATADIR%%/images/halo/elven/ice-halo2.png +%%DATADIR%%/images/halo/elven/ice-halo3.png +%%DATADIR%%/images/halo/elven/ice-halo4.png +%%DATADIR%%/images/halo/elven/ice-halo5.png +%%DATADIR%%/images/halo/elven/ice-halo6.png +%%DATADIR%%/images/halo/elven/ice-halo7.png +%%DATADIR%%/images/halo/elven/ice-halo8.png +%%DATADIR%%/images/halo/elven/ice-halo9.png +%%DATADIR%%/images/halo/elven/nature-halo1.png +%%DATADIR%%/images/halo/elven/nature-halo2.png +%%DATADIR%%/images/halo/elven/nature-halo3.png +%%DATADIR%%/images/halo/elven/nature-halo4.png +%%DATADIR%%/images/halo/elven/nature-halo5.png +%%DATADIR%%/images/halo/elven/nature-halo6.png +%%DATADIR%%/images/halo/elven/nature-halo7.png +%%DATADIR%%/images/halo/elven/nature-halo8.png +%%DATADIR%%/images/halo/elven/shyde-stationary-halo1.png +%%DATADIR%%/images/halo/elven/shyde-stationary-halo2.png +%%DATADIR%%/images/halo/elven/shyde-stationary-halo3.png +%%DATADIR%%/images/halo/elven/shyde-stationary-halo4.png +%%DATADIR%%/images/halo/elven/shyde-stationary-halo5.png +%%DATADIR%%/images/halo/elven/shyde-stationary-halo6.png +%%DATADIR%%/images/halo/holy/halo1.png +%%DATADIR%%/images/halo/holy/halo2.png +%%DATADIR%%/images/halo/holy/halo3.png +%%DATADIR%%/images/halo/holy/halo4.png +%%DATADIR%%/images/halo/holy/halo5.png +%%DATADIR%%/images/halo/holy/halo6.png +%%DATADIR%%/images/halo/holy/white-cleric-aura.png +%%DATADIR%%/images/halo/holy/white-mage-halo1.png +%%DATADIR%%/images/halo/holy/white-mage-halo2.png +%%DATADIR%%/images/halo/holy/white-mage-halo3.png +%%DATADIR%%/images/halo/holy/white-mage-halo4.png +%%DATADIR%%/images/halo/lighthouse-aura.png +%%DATADIR%%/images/halo/lightning-bolt-1-1.png +%%DATADIR%%/images/halo/lightning-bolt-1-2.png +%%DATADIR%%/images/halo/lightning-bolt-1-3.png +%%DATADIR%%/images/halo/lightning-bolt-1-4.png +%%DATADIR%%/images/halo/lightning-bolt-2-1.png +%%DATADIR%%/images/halo/lightning-bolt-2-2.png +%%DATADIR%%/images/halo/lightning-bolt-2-3.png +%%DATADIR%%/images/halo/lightning-bolt-2-4.png +%%DATADIR%%/images/halo/lightning-bolt-3-1.png +%%DATADIR%%/images/halo/lightning-bolt-3-2.png +%%DATADIR%%/images/halo/lightning-bolt-3-3.png +%%DATADIR%%/images/halo/lightning-bolt-3-4.png +%%DATADIR%%/images/halo/mage-halo1.png +%%DATADIR%%/images/halo/mage-halo2-big.png +%%DATADIR%%/images/halo/mage-halo2.png +%%DATADIR%%/images/halo/mage-halo3-big.png +%%DATADIR%%/images/halo/mage-halo3.png +%%DATADIR%%/images/halo/mage-halo4-big.png +%%DATADIR%%/images/halo/mage-halo4.png +%%DATADIR%%/images/halo/mage-halo5-big.png +%%DATADIR%%/images/halo/mage-halo5.png +%%DATADIR%%/images/halo/mage-halo6-big.png +%%DATADIR%%/images/halo/mage-preparation-halo1.png +%%DATADIR%%/images/halo/mage-preparation-halo2.png +%%DATADIR%%/images/halo/mage-preparation-halo3.png +%%DATADIR%%/images/halo/mage-preparation-halo4.png +%%DATADIR%%/images/halo/mage-preparation-halo5.png +%%DATADIR%%/images/halo/mage-preparation-halo6.png +%%DATADIR%%/images/halo/mage-preparation-halo7.png +%%DATADIR%%/images/halo/saurian-magic-halo.png +%%DATADIR%%/images/halo/siren-naia-touch-halo.png +%%DATADIR%%/images/halo/white-cleric-aura.png +%%DATADIR%%/images/halo/white-mage-halo1.png +%%DATADIR%%/images/halo/white-mage-halo2.png +%%DATADIR%%/images/halo/white-mage-halo3.png +%%DATADIR%%/images/halo/white-mage-halo4.png +%%DATADIR%%/images/help/closed_section.png +%%DATADIR%%/images/help/hp-bars.png +%%DATADIR%%/images/help/hpxp.png +%%DATADIR%%/images/help/moving1.png +%%DATADIR%%/images/help/moving2.png +%%DATADIR%%/images/help/open_section.png +%%DATADIR%%/images/help/orb-blue.png +%%DATADIR%%/images/help/orb-green.png +%%DATADIR%%/images/help/orb-none.png +%%DATADIR%%/images/help/orb-red.png +%%DATADIR%%/images/help/orb-yellow.png +%%DATADIR%%/images/help/recruit.png +%%DATADIR%%/images/help/tooltip.png +%%DATADIR%%/images/help/topic.png +%%DATADIR%%/images/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/items/altar.png +%%DATADIR%%/images/items/ankh-necklace.png +%%DATADIR%%/images/items/armor.png +%%DATADIR%%/images/items/ball-blue.png +%%DATADIR%%/images/items/ball-green.png +%%DATADIR%%/images/items/ball.png +%%DATADIR%%/images/items/barrel.png +%%DATADIR%%/images/items/bones.png +%%DATADIR%%/images/items/book1.png +%%DATADIR%%/images/items/book2.png +%%DATADIR%%/images/items/book3.png +%%DATADIR%%/images/items/book4.png +%%DATADIR%%/images/items/book5.png +%%DATADIR%%/images/items/box.png +%%DATADIR%%/images/items/cage.png +%%DATADIR%%/images/items/castle-ruins.png +%%DATADIR%%/images/items/chest-plain-closed.png +%%DATADIR%%/images/items/chest-plain-open.png +%%DATADIR%%/images/items/chest.png +%%DATADIR%%/images/items/dragonstatue.png +%%DATADIR%%/images/items/dummy.png +%%DATADIR%%/images/items/fire.png +%%DATADIR%%/images/items/fire2.png +%%DATADIR%%/images/items/fire3.png +%%DATADIR%%/images/items/fire4.png +%%DATADIR%%/images/items/flame-sword.png +%%DATADIR%%/images/items/flower1.png +%%DATADIR%%/images/items/flower2.png +%%DATADIR%%/images/items/flower3.png +%%DATADIR%%/images/items/flower4.png +%%DATADIR%%/images/items/gohere.png +%%DATADIR%%/images/items/holy-water.png +%%DATADIR%%/images/items/leanto.png +%%DATADIR%%/images/items/lighthouse.png +%%DATADIR%%/images/items/monolith1.png +%%DATADIR%%/images/items/monolith2.png +%%DATADIR%%/images/items/monolith3.png +%%DATADIR%%/images/items/monolith4.png +%%DATADIR%%/images/items/orcish-flag.png +%%DATADIR%%/images/items/ornate1.png +%%DATADIR%%/images/items/ornate2.png +%%DATADIR%%/images/items/pine1.png +%%DATADIR%%/images/items/pine2.png +%%DATADIR%%/images/items/potion-blue.png +%%DATADIR%%/images/items/potion-grey.png +%%DATADIR%%/images/items/potion-red.png +%%DATADIR%%/images/items/potion-yellow.png +%%DATADIR%%/images/items/ring1.png +%%DATADIR%%/images/items/ring2.png +%%DATADIR%%/images/items/rock1.png +%%DATADIR%%/images/items/rock2.png +%%DATADIR%%/images/items/rock3.png +%%DATADIR%%/images/items/rock4.png +%%DATADIR%%/images/items/sceptre-of-fire.png +%%DATADIR%%/images/items/signpost.png +%%DATADIR%%/images/items/slab.png +%%DATADIR%%/images/items/staff.png +%%DATADIR%%/images/items/storm-trident.png +%%DATADIR%%/images/items/trapdoor.png +%%DATADIR%%/images/items/well.png +%%DATADIR%%/images/maps/northlands.jpg +%%DATADIR%%/images/maps/wesnoth-httt.jpg +%%DATADIR%%/images/maps/wesnoth.png +%%DATADIR%%/images/misc/ball-ally.png +%%DATADIR%%/images/misc/ball-enemy.png +%%DATADIR%%/images/misc/ball-moved.png +%%DATADIR%%/images/misc/ball-partmoved.png +%%DATADIR%%/images/misc/ball-unmoved.png +%%DATADIR%%/images/misc/bar-energy-ally.png +%%DATADIR%%/images/misc/bar-energy-enemy.png +%%DATADIR%%/images/misc/bar-energy-moved.png +%%DATADIR%%/images/misc/bar-energy-partmoved.png +%%DATADIR%%/images/misc/bar-energy-unmoved.png +%%DATADIR%%/images/misc/bar-energy.png +%%DATADIR%%/images/misc/blank-hex.png +%%DATADIR%%/images/misc/blank.png +%%DATADIR%%/images/misc/botleft-corner.png +%%DATADIR%%/images/misc/botright-corner.png +%%DATADIR%%/images/misc/character-box.png +%%DATADIR%%/images/misc/compass-north.png +%%DATADIR%%/images/misc/compass-south.png +%%DATADIR%%/images/misc/cross.png +%%DATADIR%%/images/misc/disk.png +%%DATADIR%%/images/misc/dot.png +%%DATADIR%%/images/misc/dwarven-doors.png +%%DATADIR%%/images/misc/ellipse-1.png +%%DATADIR%%/images/misc/ellipse-bottom.png +%%DATADIR%%/images/misc/ellipse-hero-bottom.png +%%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/experimental-rightside.png +%%DATADIR%%/images/misc/eye.png +%%DATADIR%%/images/misc/folder-icon.png +%%DATADIR%%/images/misc/font8x8.png +%%DATADIR%%/images/misc/foot-left-n-slow.png +%%DATADIR%%/images/misc/foot-left-n.png +%%DATADIR%%/images/misc/foot-left-nw-slow.png +%%DATADIR%%/images/misc/foot-left-nw.png +%%DATADIR%%/images/misc/foot-right-n-slow.png +%%DATADIR%%/images/misc/foot-right-n.png +%%DATADIR%%/images/misc/foot-right-nw-slow.png +%%DATADIR%%/images/misc/foot-right-nw.png +%%DATADIR%%/images/misc/gold.png +%%DATADIR%%/images/misc/hero-icon.png +%%DATADIR%%/images/misc/icon-advance.png +%%DATADIR%%/images/misc/icon-amla-fullheal.png +%%DATADIR%%/images/misc/icon-amla-tough-3.png +%%DATADIR%%/images/misc/icon-amla-tough.png +%%DATADIR%%/images/misc/icon-ellipsis.png +%%DATADIR%%/images/misc/income.png +%%DATADIR%%/images/misc/invisible.png +%%DATADIR%%/images/misc/leader-crown.png +%%DATADIR%%/images/misc/lobby.png +%%DATADIR%%/images/misc/logo.png +%%DATADIR%%/images/misc/mainmenu-background.png +%%DATADIR%%/images/misc/mainmenu-border-botleft.png +%%DATADIR%%/images/misc/mainmenu-border-botright.png +%%DATADIR%%/images/misc/mainmenu-border-bottom.png +%%DATADIR%%/images/misc/mainmenu-border-left.png +%%DATADIR%%/images/misc/mainmenu-border-right.png +%%DATADIR%%/images/misc/mainmenu-border-top.png +%%DATADIR%%/images/misc/mainmenu-border-topleft.png +%%DATADIR%%/images/misc/mainmenu-border-topright.png +%%DATADIR%%/images/misc/menu-background.png +%%DATADIR%%/images/misc/menu-border-botleft.png +%%DATADIR%%/images/misc/menu-border-botright.png +%%DATADIR%%/images/misc/menu-border-bottom.png +%%DATADIR%%/images/misc/menu-border-left.png +%%DATADIR%%/images/misc/menu-border-right.png +%%DATADIR%%/images/misc/menu-border-top.png +%%DATADIR%%/images/misc/menu-border-topleft.png +%%DATADIR%%/images/misc/menu-border-topright.png +%%DATADIR%%/images/misc/menu2-background.png +%%DATADIR%%/images/misc/menu2-border-botleft.png +%%DATADIR%%/images/misc/menu2-border-botright.png +%%DATADIR%%/images/misc/menu2-border-bottom.png +%%DATADIR%%/images/misc/menu2-border-left.png +%%DATADIR%%/images/misc/menu2-border-right.png +%%DATADIR%%/images/misc/menu2-border-top.png +%%DATADIR%%/images/misc/menu2-border-topleft.png +%%DATADIR%%/images/misc/menu2-border-topright.png +%%DATADIR%%/images/misc/mine.png +%%DATADIR%%/images/misc/minimap.png +%%DATADIR%%/images/misc/nest-empty.png +%%DATADIR%%/images/misc/nest-full.png +%%DATADIR%%/images/misc/poisoned.png +%%DATADIR%%/images/misc/rightside-bg.png +%%DATADIR%%/images/misc/rightside-bottom.png +%%DATADIR%%/images/misc/rightside-editor.png +%%DATADIR%%/images/misc/rightside.png +%%DATADIR%%/images/misc/rocks.png +%%DATADIR%%/images/misc/sand-clock.png +%%DATADIR%%/images/misc/schedule-afternoon.png +%%DATADIR%%/images/misc/schedule-dawn.png +%%DATADIR%%/images/misc/schedule-dusk.png +%%DATADIR%%/images/misc/schedule-firstwatch.png +%%DATADIR%%/images/misc/schedule-morning.png +%%DATADIR%%/images/misc/schedule-secondwatch.png +%%DATADIR%%/images/misc/schedule-underground-illum.png +%%DATADIR%%/images/misc/schedule-underground.png +%%DATADIR%%/images/misc/selection-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/slowed.png +%%DATADIR%%/images/misc/snowbits.png +%%DATADIR%%/images/misc/sort-arrow-reverse.png +%%DATADIR%%/images/misc/sort-arrow.png +%%DATADIR%%/images/misc/status-bg.png +%%DATADIR%%/images/misc/stone.png +%%DATADIR%%/images/misc/temple.png +%%DATADIR%%/images/misc/timeofday.png +%%DATADIR%%/images/misc/tod-bright.png +%%DATADIR%%/images/misc/top-bg.png +%%DATADIR%%/images/misc/topleft-corner.png +%%DATADIR%%/images/misc/topright-corner.png +%%DATADIR%%/images/misc/trash.png +%%DATADIR%%/images/misc/unit.png +%%DATADIR%%/images/misc/units.png +%%DATADIR%%/images/misc/upkeep.png +%%DATADIR%%/images/misc/villages.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-burner.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-clasher.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-fighter.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-glider.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/elvish-shaman.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/ghoul.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/mermaid-initiate.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/merman-fighter.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/merman-hunter.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/naga-fighter.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/nagini-fighter.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/orcish-assassin.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/saurian-augur.png +%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/saurian-skirmisher.png +%%DATADIR%%/images/portraits/James_Woo/assassin.png +%%DATADIR%%/images/portraits/James_Woo/dwarf-guard.png +%%DATADIR%%/images/portraits/James_Woo/orc-warlord.png +%%DATADIR%%/images/portraits/James_Woo/orc-warlord2.png +%%DATADIR%%/images/portraits/James_Woo/orc-warlord3.png +%%DATADIR%%/images/portraits/James_Woo/orc-warlord4.png +%%DATADIR%%/images/portraits/James_Woo/orc-warlord5.png +%%DATADIR%%/images/portraits/James_Woo/troll.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-bandit.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-grand-knight.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-halberdier.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-highwayman.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-horseman.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-javelineer.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-knight.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-lancer.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-paladin.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-peasant.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-pikeman.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-royalguard.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-spearman.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-swordsman.png +%%DATADIR%%/images/portraits/Jason_Lutes/human-thug.png +%%DATADIR%%/images/portraits/Neoriceisgood/dwarvish_berzerker.png +%%DATADIR%%/images/portraits/Neoriceisgood/orcish_grunt.png +%%DATADIR%%/images/portraits/Neoriceisgood/orcish_leader.png +%%DATADIR%%/images/portraits/Neoriceisgood/orcish_shaman_old.png +%%DATADIR%%/images/portraits/Nicholas_Kerpan/human-poacher.png +%%DATADIR%%/images/portraits/Nicholas_Kerpan/human-thief.png +%%DATADIR%%/images/portraits/Other/scorpion.png +%%DATADIR%%/images/portraits/Other/silver_mage.png +%%DATADIR%%/images/portraits/Pekka_Aikio/human-bowman.png +%%DATADIR%%/images/portraits/Pekka_Aikio/human-longbowman.png +%%DATADIR%%/images/portraits/Tristan_Millner/dwarven-fighter.png +%%DATADIR%%/images/projectiles/bone-n.png +%%DATADIR%%/images/projectiles/bone-ne.png +%%DATADIR%%/images/projectiles/bullet.png +%%DATADIR%%/images/projectiles/chakram.png +%%DATADIR%%/images/projectiles/dagger-n.png +%%DATADIR%%/images/projectiles/dagger-ne.png +%%DATADIR%%/images/projectiles/darkmissile-n.png +%%DATADIR%%/images/projectiles/darkmissile-ne.png +%%DATADIR%%/images/projectiles/entangle.png +%%DATADIR%%/images/projectiles/fire-breath-n-1.png +%%DATADIR%%/images/projectiles/fire-breath-n-2.png +%%DATADIR%%/images/projectiles/fire-breath-n-3.png +%%DATADIR%%/images/projectiles/fire-breath-n-4.png +%%DATADIR%%/images/projectiles/fire-breath-n-5.png +%%DATADIR%%/images/projectiles/fire-breath-ne-1.png +%%DATADIR%%/images/projectiles/fire-breath-ne-2.png +%%DATADIR%%/images/projectiles/fire-breath-ne-3.png +%%DATADIR%%/images/projectiles/fire-breath-ne-4.png +%%DATADIR%%/images/projectiles/fire-breath-ne-5.png +%%DATADIR%%/images/projectiles/fire-breath-s-1.png +%%DATADIR%%/images/projectiles/fire-breath-s-2.png +%%DATADIR%%/images/projectiles/fire-breath-s-3.png +%%DATADIR%%/images/projectiles/fire-breath-s-4.png +%%DATADIR%%/images/projectiles/fire-breath-s-5.png +%%DATADIR%%/images/projectiles/fire-breath-se-1.png +%%DATADIR%%/images/projectiles/fire-breath-se-2.png +%%DATADIR%%/images/projectiles/fire-breath-se-3.png +%%DATADIR%%/images/projectiles/fire-breath-se-4.png +%%DATADIR%%/images/projectiles/fire-breath-se-5.png +%%DATADIR%%/images/projectiles/fireball-n-2.png +%%DATADIR%%/images/projectiles/fireball-n.png +%%DATADIR%%/images/projectiles/fireball-nw-2.png +%%DATADIR%%/images/projectiles/fireball-nw.png +%%DATADIR%%/images/projectiles/gaze.png +%%DATADIR%%/images/projectiles/hatchet-n.png +%%DATADIR%%/images/projectiles/hatchet-ne.png +%%DATADIR%%/images/projectiles/icemissile-n-1.png +%%DATADIR%%/images/projectiles/icemissile-n-2.png +%%DATADIR%%/images/projectiles/icemissile-n-3.png +%%DATADIR%%/images/projectiles/icemissile-n-4.png +%%DATADIR%%/images/projectiles/icemissile-n-5.png +%%DATADIR%%/images/projectiles/icemissile-n-6.png +%%DATADIR%%/images/projectiles/icemissile-n-7.png +%%DATADIR%%/images/projectiles/icemissile-n.png +%%DATADIR%%/images/projectiles/icemissile-ne-1.png +%%DATADIR%%/images/projectiles/icemissile-ne-2.png +%%DATADIR%%/images/projectiles/icemissile-ne-3.png +%%DATADIR%%/images/projectiles/icemissile-ne-4.png +%%DATADIR%%/images/projectiles/icemissile-ne-5.png +%%DATADIR%%/images/projectiles/icemissile-ne-6.png +%%DATADIR%%/images/projectiles/icemissile-ne-7.png +%%DATADIR%%/images/projectiles/icemissile-ne.png +%%DATADIR%%/images/projectiles/ink.png +%%DATADIR%%/images/projectiles/lightning-bolt.png +%%DATADIR%%/images/projectiles/lightning-n.png +%%DATADIR%%/images/projectiles/lightning-ne.png +%%DATADIR%%/images/projectiles/magicmissile-n.png +%%DATADIR%%/images/projectiles/magicmissile-ne.png +%%DATADIR%%/images/projectiles/missile-fire-n.png +%%DATADIR%%/images/projectiles/missile-fire-ne.png +%%DATADIR%%/images/projectiles/missile-n.png +%%DATADIR%%/images/projectiles/missile-ne.png +%%DATADIR%%/images/projectiles/missile.png +%%DATADIR%%/images/projectiles/mud-glob.png +%%DATADIR%%/images/projectiles/pitchfork-n.png +%%DATADIR%%/images/projectiles/pitchfork-ne.png +%%DATADIR%%/images/projectiles/spear-n.png +%%DATADIR%%/images/projectiles/spear-ne.png +%%DATADIR%%/images/projectiles/stone.png +%%DATADIR%%/images/projectiles/thorns-ne.png +%%DATADIR%%/images/projectiles/thorns.png +%%DATADIR%%/images/projectiles/wailprojectile-n-1.png +%%DATADIR%%/images/projectiles/wailprojectile-n-2.png +%%DATADIR%%/images/projectiles/wailprojectile-n-3.png +%%DATADIR%%/images/projectiles/wailprojectile-n-4.png +%%DATADIR%%/images/projectiles/wailprojectile-n-5.png +%%DATADIR%%/images/projectiles/wailprojectile-n-6.png +%%DATADIR%%/images/projectiles/wailprojectile-ne-1.png +%%DATADIR%%/images/projectiles/wailprojectile-ne-2.png +%%DATADIR%%/images/projectiles/wailprojectile-ne-3.png +%%DATADIR%%/images/projectiles/wailprojectile-ne-4.png +%%DATADIR%%/images/projectiles/wailprojectile-ne-5.png +%%DATADIR%%/images/projectiles/wailprojectile-ne-6.png +%%DATADIR%%/images/projectiles/wailprojectile-s-1.png +%%DATADIR%%/images/projectiles/wailprojectile-s-2.png +%%DATADIR%%/images/projectiles/wailprojectile-s-3.png +%%DATADIR%%/images/projectiles/wailprojectile-s-4.png +%%DATADIR%%/images/projectiles/wailprojectile-s-5.png +%%DATADIR%%/images/projectiles/wailprojectile-s-6.png +%%DATADIR%%/images/projectiles/wailprojectile-se-1.png +%%DATADIR%%/images/projectiles/wailprojectile-se-2.png +%%DATADIR%%/images/projectiles/wailprojectile-se-3.png +%%DATADIR%%/images/projectiles/wailprojectile-se-4.png +%%DATADIR%%/images/projectiles/wailprojectile-se-5.png +%%DATADIR%%/images/projectiles/wailprojectile-se-6.png +%%DATADIR%%/images/projectiles/water-spray.png +%%DATADIR%%/images/projectiles/web.png +%%DATADIR%%/images/projectiles/whitemissile-n.png +%%DATADIR%%/images/projectiles/whitemissile-ne.png +%%DATADIR%%/images/terrain/alpha.png +%%DATADIR%%/images/terrain/alphamask.png +%%DATADIR%%/images/terrain/bridge-joint-n-se-sw.png +%%DATADIR%%/images/terrain/bridge-joint-n-se.png +%%DATADIR%%/images/terrain/bridge-joint-n-sw.png +%%DATADIR%%/images/terrain/bridge-joint-ne-nw.png +%%DATADIR%%/images/terrain/bridge-joint-ne-s-nw.png +%%DATADIR%%/images/terrain/bridge-joint-ne-s.png +%%DATADIR%%/images/terrain/bridge-joint-s-nw.png +%%DATADIR%%/images/terrain/bridge-joint-se-sw.png +%%DATADIR%%/images/terrain/bridge-n-end.png +%%DATADIR%%/images/terrain/bridge-n-s-tile.png +%%DATADIR%%/images/terrain/bridge-n-s.png +%%DATADIR%%/images/terrain/bridge-n.png +%%DATADIR%%/images/terrain/bridge-ne-end.png +%%DATADIR%%/images/terrain/bridge-ne-sw-tile.png +%%DATADIR%%/images/terrain/bridge-ne-sw.png +%%DATADIR%%/images/terrain/bridge-ne.png +%%DATADIR%%/images/terrain/bridge-nw-end.png +%%DATADIR%%/images/terrain/bridge-nw.png +%%DATADIR%%/images/terrain/bridge-s-end.png +%%DATADIR%%/images/terrain/bridge-s.png +%%DATADIR%%/images/terrain/bridge-se-end.png +%%DATADIR%%/images/terrain/bridge-se-nw-tile.png +%%DATADIR%%/images/terrain/bridge-se-nw.png +%%DATADIR%%/images/terrain/bridge-se.png +%%DATADIR%%/images/terrain/bridge-sw-end.png +%%DATADIR%%/images/terrain/bridge-sw.png +%%DATADIR%%/images/terrain/castle-concave-e.png +%%DATADIR%%/images/terrain/castle-concave-ne.png +%%DATADIR%%/images/terrain/castle-concave-nw.png +%%DATADIR%%/images/terrain/castle-concave-se.png +%%DATADIR%%/images/terrain/castle-concave-sw.png +%%DATADIR%%/images/terrain/castle-concave-w.png +%%DATADIR%%/images/terrain/castle-convex-e.png +%%DATADIR%%/images/terrain/castle-convex-ne.png +%%DATADIR%%/images/terrain/castle-convex-nw.png +%%DATADIR%%/images/terrain/castle-convex-se.png +%%DATADIR%%/images/terrain/castle-convex-sw.png +%%DATADIR%%/images/terrain/castle-convex-w.png +%%DATADIR%%/images/terrain/castle-ruin-tile.png +%%DATADIR%%/images/terrain/castle-sunken-ruin-tile.png +%%DATADIR%%/images/terrain/castle-swamp-ruin-tile.png +%%DATADIR%%/images/terrain/castle-tile.png +%%DATADIR%%/images/terrain/castle-to-ice-n.png +%%DATADIR%%/images/terrain/castle-to-ice-ne.png +%%DATADIR%%/images/terrain/castle-to-ice-nw.png +%%DATADIR%%/images/terrain/castle-to-water-n.png +%%DATADIR%%/images/terrain/castle-to-water-ne.png +%%DATADIR%%/images/terrain/castle-to-water-nw.png +%%DATADIR%%/images/terrain/castle-walls.tmpl +%%DATADIR%%/images/terrain/castle.png +%%DATADIR%%/images/terrain/cave-beam-tile.png +%%DATADIR%%/images/terrain/cave-beam1.png +%%DATADIR%%/images/terrain/cave-beam2.png +%%DATADIR%%/images/terrain/cave-beam3.png +%%DATADIR%%/images/terrain/cave-floor-n-ne-se-s.png +%%DATADIR%%/images/terrain/cave-floor-n-ne-se.png +%%DATADIR%%/images/terrain/cave-floor-n-ne.png +%%DATADIR%%/images/terrain/cave-floor-n.png +%%DATADIR%%/images/terrain/cave-floor-ne-se-s.png +%%DATADIR%%/images/terrain/cave-floor-ne-se.png +%%DATADIR%%/images/terrain/cave-floor-ne.png +%%DATADIR%%/images/terrain/cave-floor-nw-n-ne.png +%%DATADIR%%/images/terrain/cave-floor-nw-n.png +%%DATADIR%%/images/terrain/cave-floor-nw.png +%%DATADIR%%/images/terrain/cave-floor-s-sw-nw-n.png +%%DATADIR%%/images/terrain/cave-floor-s-sw-nw.png +%%DATADIR%%/images/terrain/cave-floor-s-sw.png +%%DATADIR%%/images/terrain/cave-floor-s.png +%%DATADIR%%/images/terrain/cave-floor-se-s-sw.png +%%DATADIR%%/images/terrain/cave-floor-se-s.png +%%DATADIR%%/images/terrain/cave-floor-se.png +%%DATADIR%%/images/terrain/cave-floor-sw-nw-n.png +%%DATADIR%%/images/terrain/cave-floor-sw-nw.png +%%DATADIR%%/images/terrain/cave-floor-sw.png +%%DATADIR%%/images/terrain/cave-floor.png +%%DATADIR%%/images/terrain/cave-floor1.png +%%DATADIR%%/images/terrain/cave-floor2.png +%%DATADIR%%/images/terrain/cave-floor3.png +%%DATADIR%%/images/terrain/cave-floor4.png +%%DATADIR%%/images/terrain/cave-hills-n.png +%%DATADIR%%/images/terrain/cave-hills-ne.png +%%DATADIR%%/images/terrain/cave-hills-nw.png +%%DATADIR%%/images/terrain/cave-hills-s.png +%%DATADIR%%/images/terrain/cave-hills-se.png +%%DATADIR%%/images/terrain/cave-hills-sw.png +%%DATADIR%%/images/terrain/cave-hills-variation1.png +%%DATADIR%%/images/terrain/cave-hills-variation2.png +%%DATADIR%%/images/terrain/cave-hills-variation3.png +%%DATADIR%%/images/terrain/cavewall-concave-e.png +%%DATADIR%%/images/terrain/cavewall-concave-ne.png +%%DATADIR%%/images/terrain/cavewall-concave-nw.png +%%DATADIR%%/images/terrain/cavewall-concave-se.png +%%DATADIR%%/images/terrain/cavewall-concave-sw.png +%%DATADIR%%/images/terrain/cavewall-concave-w.png +%%DATADIR%%/images/terrain/cavewall-convex-e.png +%%DATADIR%%/images/terrain/cavewall-convex-ne.png +%%DATADIR%%/images/terrain/cavewall-convex-nw.png +%%DATADIR%%/images/terrain/cavewall-convex-se.png +%%DATADIR%%/images/terrain/cavewall-convex-sw.png +%%DATADIR%%/images/terrain/cavewall-convex-w.png +%%DATADIR%%/images/terrain/cavewall.png +%%DATADIR%%/images/terrain/chasm-concave-e.png +%%DATADIR%%/images/terrain/chasm-concave-ne.png +%%DATADIR%%/images/terrain/chasm-concave-nw.png +%%DATADIR%%/images/terrain/chasm-concave-se.png +%%DATADIR%%/images/terrain/chasm-concave-sw.png +%%DATADIR%%/images/terrain/chasm-concave-w.png +%%DATADIR%%/images/terrain/chasm-convex-e.png +%%DATADIR%%/images/terrain/chasm-convex-ne.png +%%DATADIR%%/images/terrain/chasm-convex-nw.png +%%DATADIR%%/images/terrain/chasm-convex-se.png +%%DATADIR%%/images/terrain/chasm-convex-sw.png +%%DATADIR%%/images/terrain/chasm-convex-w.png +%%DATADIR%%/images/terrain/chasm-dcastle-ccw-e.png +%%DATADIR%%/images/terrain/chasm-dcastle-ccw-ne.png +%%DATADIR%%/images/terrain/chasm-dcastle-ccw-nw.png +%%DATADIR%%/images/terrain/chasm-dcastle-ccw-se.png +%%DATADIR%%/images/terrain/chasm-dcastle-ccw-sw.png +%%DATADIR%%/images/terrain/chasm-dcastle-ccw-w.png +%%DATADIR%%/images/terrain/chasm-dcastle-concave-e.png +%%DATADIR%%/images/terrain/chasm-dcastle-concave-ne.png +%%DATADIR%%/images/terrain/chasm-dcastle-concave-nw.png +%%DATADIR%%/images/terrain/chasm-dcastle-concave-se.png +%%DATADIR%%/images/terrain/chasm-dcastle-concave-sw.png +%%DATADIR%%/images/terrain/chasm-dcastle-concave-w.png +%%DATADIR%%/images/terrain/chasm-dcastle-convex-e.png +%%DATADIR%%/images/terrain/chasm-dcastle-convex-ne.png +%%DATADIR%%/images/terrain/chasm-dcastle-convex-nw.png +%%DATADIR%%/images/terrain/chasm-dcastle-convex-se.png +%%DATADIR%%/images/terrain/chasm-dcastle-convex-sw.png +%%DATADIR%%/images/terrain/chasm-dcastle-convex-w.png +%%DATADIR%%/images/terrain/chasm-dcastle-cw-e.png +%%DATADIR%%/images/terrain/chasm-dcastle-cw-ne.png +%%DATADIR%%/images/terrain/chasm-dcastle-cw-nw.png +%%DATADIR%%/images/terrain/chasm-dcastle-cw-se.png +%%DATADIR%%/images/terrain/chasm-dcastle-cw-sw.png +%%DATADIR%%/images/terrain/chasm-dcastle-cw-w.png +%%DATADIR%%/images/terrain/chasm-tile.png +%%DATADIR%%/images/terrain/chasm.png +%%DATADIR%%/images/terrain/cloud-tile.png +%%DATADIR%%/images/terrain/cloud1_1.png +%%DATADIR%%/images/terrain/cloud1_2.png +%%DATADIR%%/images/terrain/cloud1_3.png +%%DATADIR%%/images/terrain/cloud2_2.png +%%DATADIR%%/images/terrain/cloud3_2.png +%%DATADIR%%/images/terrain/coast-n.png +%%DATADIR%%/images/terrain/coast-ne.png +%%DATADIR%%/images/terrain/coast-nw.png +%%DATADIR%%/images/terrain/coast-s.png +%%DATADIR%%/images/terrain/coast-se.png +%%DATADIR%%/images/terrain/coast-sw.png +%%DATADIR%%/images/terrain/coast.png +%%DATADIR%%/images/terrain/coast2.png +%%DATADIR%%/images/terrain/coast3.png +%%DATADIR%%/images/terrain/dawn.png +%%DATADIR%%/images/terrain/desert-hills-n-ne.png +%%DATADIR%%/images/terrain/desert-hills-n.png +%%DATADIR%%/images/terrain/desert-hills-ne.png +%%DATADIR%%/images/terrain/desert-hills-nw.png +%%DATADIR%%/images/terrain/desert-hills-s-sw.png +%%DATADIR%%/images/terrain/desert-hills-s.png +%%DATADIR%%/images/terrain/desert-hills-se.png +%%DATADIR%%/images/terrain/desert-hills-sw.png +%%DATADIR%%/images/terrain/desert-hills.png +%%DATADIR%%/images/terrain/desert-hills2.png +%%DATADIR%%/images/terrain/desert-hills3.png +%%DATADIR%%/images/terrain/desert-mountain-peak1.png +%%DATADIR%%/images/terrain/desert-mountain-peak2.png +%%DATADIR%%/images/terrain/desert-mountain-peak3.png +%%DATADIR%%/images/terrain/desert-mountains-n.png +%%DATADIR%%/images/terrain/desert-mountains-ne.png +%%DATADIR%%/images/terrain/desert-mountains-nw.png +%%DATADIR%%/images/terrain/desert-mountains-s.png +%%DATADIR%%/images/terrain/desert-mountains-se.png +%%DATADIR%%/images/terrain/desert-mountains-sw.png +%%DATADIR%%/images/terrain/desert-mountains.png +%%DATADIR%%/images/terrain/desert-n-ne-se.png +%%DATADIR%%/images/terrain/desert-n-ne.png +%%DATADIR%%/images/terrain/desert-n.png +%%DATADIR%%/images/terrain/desert-ne-se-s.png +%%DATADIR%%/images/terrain/desert-ne-se.png +%%DATADIR%%/images/terrain/desert-ne.png +%%DATADIR%%/images/terrain/desert-nw-n-ne.png +%%DATADIR%%/images/terrain/desert-nw-n.png +%%DATADIR%%/images/terrain/desert-nw.png +%%DATADIR%%/images/terrain/desert-oasis.png +%%DATADIR%%/images/terrain/desert-plant.png +%%DATADIR%%/images/terrain/desert-plant2.png +%%DATADIR%%/images/terrain/desert-plant3.png +%%DATADIR%%/images/terrain/desert-road-n-ne-se.png +%%DATADIR%%/images/terrain/desert-road-n-ne.png +%%DATADIR%%/images/terrain/desert-road-n.png +%%DATADIR%%/images/terrain/desert-road-ne-se-s.png +%%DATADIR%%/images/terrain/desert-road-ne-se.png +%%DATADIR%%/images/terrain/desert-road-ne.png +%%DATADIR%%/images/terrain/desert-road-nw-n-ne.png +%%DATADIR%%/images/terrain/desert-road-nw-n.png +%%DATADIR%%/images/terrain/desert-road-nw.png +%%DATADIR%%/images/terrain/desert-road-s-sw-nw.png +%%DATADIR%%/images/terrain/desert-road-s-sw.png +%%DATADIR%%/images/terrain/desert-road-s.png +%%DATADIR%%/images/terrain/desert-road-se-s-sw.png +%%DATADIR%%/images/terrain/desert-road-se-s.png +%%DATADIR%%/images/terrain/desert-road-se.png +%%DATADIR%%/images/terrain/desert-road-sw-nw-n.png +%%DATADIR%%/images/terrain/desert-road-sw-nw.png +%%DATADIR%%/images/terrain/desert-road-sw.png +%%DATADIR%%/images/terrain/desert-road.png +%%DATADIR%%/images/terrain/desert-s-sw-nw.png +%%DATADIR%%/images/terrain/desert-s-sw.png +%%DATADIR%%/images/terrain/desert-s.png +%%DATADIR%%/images/terrain/desert-se-s-sw.png +%%DATADIR%%/images/terrain/desert-se-s.png +%%DATADIR%%/images/terrain/desert-se.png +%%DATADIR%%/images/terrain/desert-sw-nw-n.png +%%DATADIR%%/images/terrain/desert-sw-nw.png +%%DATADIR%%/images/terrain/desert-sw.png +%%DATADIR%%/images/terrain/desert.png +%%DATADIR%%/images/terrain/desert2.png +%%DATADIR%%/images/terrain/desert3.png +%%DATADIR%%/images/terrain/desert4.png +%%DATADIR%%/images/terrain/desert5.png +%%DATADIR%%/images/terrain/desert6.png +%%DATADIR%%/images/terrain/desert7.png +%%DATADIR%%/images/terrain/dirt-n-ne-se-s.png +%%DATADIR%%/images/terrain/dirt-n-ne-se.png +%%DATADIR%%/images/terrain/dirt-n-ne.png +%%DATADIR%%/images/terrain/dirt-n.png +%%DATADIR%%/images/terrain/dirt-ne-se-s.png +%%DATADIR%%/images/terrain/dirt-ne-se.png +%%DATADIR%%/images/terrain/dirt-ne.png +%%DATADIR%%/images/terrain/dirt-nw-n-ne.png +%%DATADIR%%/images/terrain/dirt-nw-n.png +%%DATADIR%%/images/terrain/dirt-nw.png +%%DATADIR%%/images/terrain/dirt-s-sw-nw-n.png +%%DATADIR%%/images/terrain/dirt-s-sw-nw.png +%%DATADIR%%/images/terrain/dirt-s-sw.png +%%DATADIR%%/images/terrain/dirt-s.png +%%DATADIR%%/images/terrain/dirt-se-s-sw.png +%%DATADIR%%/images/terrain/dirt-se-s.png +%%DATADIR%%/images/terrain/dirt-se.png +%%DATADIR%%/images/terrain/dirt-sw-nw-n.png +%%DATADIR%%/images/terrain/dirt-sw-nw.png +%%DATADIR%%/images/terrain/dirt-sw.png +%%DATADIR%%/images/terrain/dirt.png +%%DATADIR%%/images/terrain/dwarven-castle-concave-e.png +%%DATADIR%%/images/terrain/dwarven-castle-concave-ne.png +%%DATADIR%%/images/terrain/dwarven-castle-concave-nw.png +%%DATADIR%%/images/terrain/dwarven-castle-concave-se.png +%%DATADIR%%/images/terrain/dwarven-castle-concave-sw.png +%%DATADIR%%/images/terrain/dwarven-castle-concave-w.png +%%DATADIR%%/images/terrain/dwarven-castle-convex-e.png +%%DATADIR%%/images/terrain/dwarven-castle-convex-ne.png +%%DATADIR%%/images/terrain/dwarven-castle-convex-nw.png +%%DATADIR%%/images/terrain/dwarven-castle-convex-se.png +%%DATADIR%%/images/terrain/dwarven-castle-convex-sw.png +%%DATADIR%%/images/terrain/dwarven-castle-convex-w.png +%%DATADIR%%/images/terrain/dwarven-castle-floor.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-e.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-ne.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-nw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-se.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-sw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-w.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-e.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-ne.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-nw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-se.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-sw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-w.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-e.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-ne.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-nw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-se.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-sw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-w.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-e.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-ne.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-nw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-se.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-sw.png +%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-w.png +%%DATADIR%%/images/terrain/dwarven-keep-floor.png +%%DATADIR%%/images/terrain/dwarven-keep.png +%%DATADIR%%/images/terrain/dwarven_castle-tile.png +%%DATADIR%%/images/terrain/encampment-concave-e.png +%%DATADIR%%/images/terrain/encampment-concave-ne.png +%%DATADIR%%/images/terrain/encampment-concave-nw.png +%%DATADIR%%/images/terrain/encampment-concave-se.png +%%DATADIR%%/images/terrain/encampment-concave-sw.png +%%DATADIR%%/images/terrain/encampment-concave-w.png +%%DATADIR%%/images/terrain/encampment-convex-e.png +%%DATADIR%%/images/terrain/encampment-convex-ne.png +%%DATADIR%%/images/terrain/encampment-convex-nw.png +%%DATADIR%%/images/terrain/encampment-convex-se.png +%%DATADIR%%/images/terrain/encampment-convex-sw.png +%%DATADIR%%/images/terrain/encampment-convex-w.png +%%DATADIR%%/images/terrain/encampment-tile.png +%%DATADIR%%/images/terrain/flag-1.png +%%DATADIR%%/images/terrain/flag-2.png +%%DATADIR%%/images/terrain/flag-3.png +%%DATADIR%%/images/terrain/flag-4.png +%%DATADIR%%/images/terrain/flag-sotbe-1.png +%%DATADIR%%/images/terrain/flag-sotbe-2.png +%%DATADIR%%/images/terrain/flag-sotbe-3.png +%%DATADIR%%/images/terrain/fog-n-ne-se-s.png +%%DATADIR%%/images/terrain/fog-n-ne-se.png +%%DATADIR%%/images/terrain/fog-n-ne.png +%%DATADIR%%/images/terrain/fog-n.png +%%DATADIR%%/images/terrain/fog-ne-se-s.png +%%DATADIR%%/images/terrain/fog-ne-se.png +%%DATADIR%%/images/terrain/fog-ne.png +%%DATADIR%%/images/terrain/fog-nw-n-ne.png +%%DATADIR%%/images/terrain/fog-nw-n.png +%%DATADIR%%/images/terrain/fog-nw.png +%%DATADIR%%/images/terrain/fog-s-sw-nw-n.png +%%DATADIR%%/images/terrain/fog-s-sw-nw.png +%%DATADIR%%/images/terrain/fog-s-sw.png +%%DATADIR%%/images/terrain/fog-s.png +%%DATADIR%%/images/terrain/fog-se-s-sw.png +%%DATADIR%%/images/terrain/fog-se-s.png +%%DATADIR%%/images/terrain/fog-se.png +%%DATADIR%%/images/terrain/fog-sw-nw-n.png +%%DATADIR%%/images/terrain/fog-sw-nw.png +%%DATADIR%%/images/terrain/fog-sw.png +%%DATADIR%%/images/terrain/fog.png +%%DATADIR%%/images/terrain/ford-n.png +%%DATADIR%%/images/terrain/ford-ne.png +%%DATADIR%%/images/terrain/ford-nw.png +%%DATADIR%%/images/terrain/ford-s.png +%%DATADIR%%/images/terrain/ford-se.png +%%DATADIR%%/images/terrain/ford-sw.png +%%DATADIR%%/images/terrain/ford.png +%%DATADIR%%/images/terrain/ford2.png +%%DATADIR%%/images/terrain/forest-castle-n.png +%%DATADIR%%/images/terrain/forest-castle-ne.png +%%DATADIR%%/images/terrain/forest-castle-nw.png +%%DATADIR%%/images/terrain/forest-castle-s.png +%%DATADIR%%/images/terrain/forest-castle-se.png +%%DATADIR%%/images/terrain/forest-castle-sw.png +%%DATADIR%%/images/terrain/forest-castle.png +%%DATADIR%%/images/terrain/forest-tile.png +%%DATADIR%%/images/terrain/forest.png +%%DATADIR%%/images/terrain/forest2.png +%%DATADIR%%/images/terrain/forest2_small.png +%%DATADIR%%/images/terrain/forest3.png +%%DATADIR%%/images/terrain/forest4.png +%%DATADIR%%/images/terrain/forest_small.png +%%DATADIR%%/images/terrain/grassland-flowers1.png +%%DATADIR%%/images/terrain/grassland-flowers2.png +%%DATADIR%%/images/terrain/grassland-n-ne-se.png +%%DATADIR%%/images/terrain/grassland-n-ne.png +%%DATADIR%%/images/terrain/grassland-n.png +%%DATADIR%%/images/terrain/grassland-ne-se-s.png +%%DATADIR%%/images/terrain/grassland-ne-se.png +%%DATADIR%%/images/terrain/grassland-ne.png +%%DATADIR%%/images/terrain/grassland-nw-n-ne.png +%%DATADIR%%/images/terrain/grassland-nw-n.png +%%DATADIR%%/images/terrain/grassland-nw.png +%%DATADIR%%/images/terrain/grassland-r1.png +%%DATADIR%%/images/terrain/grassland-r2.png +%%DATADIR%%/images/terrain/grassland-r3.png +%%DATADIR%%/images/terrain/grassland-r4.png +%%DATADIR%%/images/terrain/grassland-r5.png +%%DATADIR%%/images/terrain/grassland-r6.png +%%DATADIR%%/images/terrain/grassland-r7.png +%%DATADIR%%/images/terrain/grassland-r8.png +%%DATADIR%%/images/terrain/grassland-rocks1.png +%%DATADIR%%/images/terrain/grassland-rocks2.png +%%DATADIR%%/images/terrain/grassland-s-sw-nw.png +%%DATADIR%%/images/terrain/grassland-s-sw.png +%%DATADIR%%/images/terrain/grassland-s.png +%%DATADIR%%/images/terrain/grassland-se-s-sw.png +%%DATADIR%%/images/terrain/grassland-se-s.png +%%DATADIR%%/images/terrain/grassland-se.png +%%DATADIR%%/images/terrain/grassland-sw-nw-n.png +%%DATADIR%%/images/terrain/grassland-sw-nw.png +%%DATADIR%%/images/terrain/grassland-sw.png +%%DATADIR%%/images/terrain/grassland-to-water-n-ne-se-s.png +%%DATADIR%%/images/terrain/grassland-to-water-n-ne-se.png +%%DATADIR%%/images/terrain/grassland-to-water-n-ne.png +%%DATADIR%%/images/terrain/grassland-to-water-n.png +%%DATADIR%%/images/terrain/grassland-to-water-ne-se-s-sw.png +%%DATADIR%%/images/terrain/grassland-to-water-ne-se-s.png +%%DATADIR%%/images/terrain/grassland-to-water-ne-se.png +%%DATADIR%%/images/terrain/grassland-to-water-ne.png +%%DATADIR%%/images/terrain/grassland-to-water-nw-n-ne-se.png +%%DATADIR%%/images/terrain/grassland-to-water-nw-n-ne.png +%%DATADIR%%/images/terrain/grassland-to-water-nw-n.png +%%DATADIR%%/images/terrain/grassland-to-water-nw.png +%%DATADIR%%/images/terrain/grassland-to-water-s-sw-nw-n.png +%%DATADIR%%/images/terrain/grassland-to-water-s-sw-nw.png +%%DATADIR%%/images/terrain/grassland-to-water-s-sw.png +%%DATADIR%%/images/terrain/grassland-to-water-s.png +%%DATADIR%%/images/terrain/grassland-to-water-se-s-sw-nw.png +%%DATADIR%%/images/terrain/grassland-to-water-se-s-sw.png +%%DATADIR%%/images/terrain/grassland-to-water-se-s.png +%%DATADIR%%/images/terrain/grassland-to-water-se.png +%%DATADIR%%/images/terrain/grassland-to-water-sw-nw-n-ne.png +%%DATADIR%%/images/terrain/grassland-to-water-sw-nw-n.png +%%DATADIR%%/images/terrain/grassland-to-water-sw-nw.png +%%DATADIR%%/images/terrain/grassland-to-water-sw.png +%%DATADIR%%/images/terrain/great-tree-tile.png +%%DATADIR%%/images/terrain/great-tree1.png +%%DATADIR%%/images/terrain/great-tree2.png +%%DATADIR%%/images/terrain/great-tree3.png +%%DATADIR%%/images/terrain/grid.png +%%DATADIR%%/images/terrain/hills-n-ne.png +%%DATADIR%%/images/terrain/hills-n.png +%%DATADIR%%/images/terrain/hills-ne.png +%%DATADIR%%/images/terrain/hills-nw.png +%%DATADIR%%/images/terrain/hills-s-sw.png +%%DATADIR%%/images/terrain/hills-s.png +%%DATADIR%%/images/terrain/hills-se.png +%%DATADIR%%/images/terrain/hills-sw.png +%%DATADIR%%/images/terrain/hills-variation1.png +%%DATADIR%%/images/terrain/hills-variation2.png +%%DATADIR%%/images/terrain/hills-variation3.png +%%DATADIR%%/images/terrain/ice-n-ne-se-s.png +%%DATADIR%%/images/terrain/ice-n-ne.png +%%DATADIR%%/images/terrain/ice-n.png +%%DATADIR%%/images/terrain/ice-ne-se.png +%%DATADIR%%/images/terrain/ice-ne.png +%%DATADIR%%/images/terrain/ice-nw-n-ne.png +%%DATADIR%%/images/terrain/ice-nw-n.png +%%DATADIR%%/images/terrain/ice-nw.png +%%DATADIR%%/images/terrain/ice-s-sw-nw-n.png +%%DATADIR%%/images/terrain/ice-s-sw.png +%%DATADIR%%/images/terrain/ice-s.png +%%DATADIR%%/images/terrain/ice-se-s-sw.png +%%DATADIR%%/images/terrain/ice-se-s.png +%%DATADIR%%/images/terrain/ice-se.png +%%DATADIR%%/images/terrain/ice-sw-nw.png +%%DATADIR%%/images/terrain/ice-sw.png +%%DATADIR%%/images/terrain/ice-to-water-n-ne-se-s.png +%%DATADIR%%/images/terrain/ice-to-water-n-ne.png +%%DATADIR%%/images/terrain/ice-to-water-n.png +%%DATADIR%%/images/terrain/ice-to-water-ne-se.png +%%DATADIR%%/images/terrain/ice-to-water-ne.png +%%DATADIR%%/images/terrain/ice-to-water-nw-n-ne.png +%%DATADIR%%/images/terrain/ice-to-water-nw-n.png +%%DATADIR%%/images/terrain/ice-to-water-nw.png +%%DATADIR%%/images/terrain/ice-to-water-s-sw-nw-n.png +%%DATADIR%%/images/terrain/ice-to-water-s-sw.png +%%DATADIR%%/images/terrain/ice-to-water-s.png +%%DATADIR%%/images/terrain/ice-to-water-se-s-sw.png +%%DATADIR%%/images/terrain/ice-to-water-se-s.png +%%DATADIR%%/images/terrain/ice-to-water-se.png +%%DATADIR%%/images/terrain/ice-to-water-sw-nw.png +%%DATADIR%%/images/terrain/ice-to-water-sw.png +%%DATADIR%%/images/terrain/ice.png +%%DATADIR%%/images/terrain/ice2.png +%%DATADIR%%/images/terrain/ice3.png +%%DATADIR%%/images/terrain/ice4.png +%%DATADIR%%/images/terrain/ice5.png +%%DATADIR%%/images/terrain/ice6.png +%%DATADIR%%/images/terrain/keep-inside-e.png +%%DATADIR%%/images/terrain/keep-inside-ne.png +%%DATADIR%%/images/terrain/keep-inside-nw.png +%%DATADIR%%/images/terrain/keep-inside-se.png +%%DATADIR%%/images/terrain/keep-inside-sw.png +%%DATADIR%%/images/terrain/keep-inside-w.png +%%DATADIR%%/images/terrain/keep-keep-e.png +%%DATADIR%%/images/terrain/keep-keep-ne.png +%%DATADIR%%/images/terrain/keep-keep-nw.png +%%DATADIR%%/images/terrain/keep-keep-se.png +%%DATADIR%%/images/terrain/keep-keep-sw.png +%%DATADIR%%/images/terrain/keep-keep-w.png +%%DATADIR%%/images/terrain/keep-tile.png +%%DATADIR%%/images/terrain/keep-wall-0-e.png +%%DATADIR%%/images/terrain/keep-wall-0-ne.png +%%DATADIR%%/images/terrain/keep-wall-0-nw.png +%%DATADIR%%/images/terrain/keep-wall-0-se.png +%%DATADIR%%/images/terrain/keep-wall-0-sw.png +%%DATADIR%%/images/terrain/keep-wall-0-w.png +%%DATADIR%%/images/terrain/keep-wall-1-e.png +%%DATADIR%%/images/terrain/keep-wall-1-ne.png +%%DATADIR%%/images/terrain/keep-wall-1-nw.png +%%DATADIR%%/images/terrain/keep-wall-1-se.png +%%DATADIR%%/images/terrain/keep-wall-1-sw.png +%%DATADIR%%/images/terrain/keep-wall-1-w.png +%%DATADIR%%/images/terrain/keep-wall-e.png +%%DATADIR%%/images/terrain/keep-wall-ne.png +%%DATADIR%%/images/terrain/keep-wall-nw.png +%%DATADIR%%/images/terrain/keep-wall-se.png +%%DATADIR%%/images/terrain/keep-wall-sw.png +%%DATADIR%%/images/terrain/keep-wall-w.png +%%DATADIR%%/images/terrain/keep.png +%%DATADIR%%/images/terrain/lava-chasm-ccw-e.png +%%DATADIR%%/images/terrain/lava-chasm-ccw-ne.png +%%DATADIR%%/images/terrain/lava-chasm-ccw-nw.png +%%DATADIR%%/images/terrain/lava-chasm-ccw-se.png +%%DATADIR%%/images/terrain/lava-chasm-ccw-sw.png +%%DATADIR%%/images/terrain/lava-chasm-ccw-w.png +%%DATADIR%%/images/terrain/lava-chasm-concave-e.png +%%DATADIR%%/images/terrain/lava-chasm-concave-ne.png +%%DATADIR%%/images/terrain/lava-chasm-concave-nw.png +%%DATADIR%%/images/terrain/lava-chasm-concave-se.png +%%DATADIR%%/images/terrain/lava-chasm-concave-sw.png +%%DATADIR%%/images/terrain/lava-chasm-concave-w.png +%%DATADIR%%/images/terrain/lava-chasm-convex-e.png +%%DATADIR%%/images/terrain/lava-chasm-convex-ne.png +%%DATADIR%%/images/terrain/lava-chasm-convex-nw.png +%%DATADIR%%/images/terrain/lava-chasm-convex-se.png +%%DATADIR%%/images/terrain/lava-chasm-convex-sw.png +%%DATADIR%%/images/terrain/lava-chasm-convex-w.png +%%DATADIR%%/images/terrain/lava-chasm-cw-e.png +%%DATADIR%%/images/terrain/lava-chasm-cw-ne.png +%%DATADIR%%/images/terrain/lava-chasm-cw-nw.png +%%DATADIR%%/images/terrain/lava-chasm-cw-se.png +%%DATADIR%%/images/terrain/lava-chasm-cw-sw.png +%%DATADIR%%/images/terrain/lava-chasm-cw-w.png +%%DATADIR%%/images/terrain/lava-concave-e.png +%%DATADIR%%/images/terrain/lava-concave-ne.png +%%DATADIR%%/images/terrain/lava-concave-nw.png +%%DATADIR%%/images/terrain/lava-concave-se.png +%%DATADIR%%/images/terrain/lava-concave-sw.png +%%DATADIR%%/images/terrain/lava-concave-w.png +%%DATADIR%%/images/terrain/lava-convex-e.png +%%DATADIR%%/images/terrain/lava-convex-ne.png +%%DATADIR%%/images/terrain/lava-convex-nw.png +%%DATADIR%%/images/terrain/lava-convex-se.png +%%DATADIR%%/images/terrain/lava-convex-sw.png +%%DATADIR%%/images/terrain/lava-convex-w.png +%%DATADIR%%/images/terrain/lava-dcastle-ccw-e.png +%%DATADIR%%/images/terrain/lava-dcastle-ccw-ne.png +%%DATADIR%%/images/terrain/lava-dcastle-ccw-nw.png +%%DATADIR%%/images/terrain/lava-dcastle-ccw-se.png +%%DATADIR%%/images/terrain/lava-dcastle-ccw-sw.png +%%DATADIR%%/images/terrain/lava-dcastle-ccw-w.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-e.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-ne.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-nw.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-se.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-sw.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-w.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-e.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-ne.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-nw.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-se.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-sw.png +%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-w.png +%%DATADIR%%/images/terrain/lava-dcastle-concave-e.png +%%DATADIR%%/images/terrain/lava-dcastle-concave-ne.png +%%DATADIR%%/images/terrain/lava-dcastle-concave-nw.png +%%DATADIR%%/images/terrain/lava-dcastle-concave-se.png +%%DATADIR%%/images/terrain/lava-dcastle-concave-sw.png +%%DATADIR%%/images/terrain/lava-dcastle-concave-w.png +%%DATADIR%%/images/terrain/lava-dcastle-convex-e.png +%%DATADIR%%/images/terrain/lava-dcastle-convex-ne.png +%%DATADIR%%/images/terrain/lava-dcastle-convex-nw.png +%%DATADIR%%/images/terrain/lava-dcastle-convex-se.png +%%DATADIR%%/images/terrain/lava-dcastle-convex-sw.png +%%DATADIR%%/images/terrain/lava-dcastle-convex-w.png +%%DATADIR%%/images/terrain/lava-dcastle-cw-e.png +%%DATADIR%%/images/terrain/lava-dcastle-cw-ne.png +%%DATADIR%%/images/terrain/lava-dcastle-cw-nw.png +%%DATADIR%%/images/terrain/lava-dcastle-cw-se.png +%%DATADIR%%/images/terrain/lava-dcastle-cw-sw.png +%%DATADIR%%/images/terrain/lava-dcastle-cw-w.png +%%DATADIR%%/images/terrain/lava-n-ne-nw-s.png +%%DATADIR%%/images/terrain/lava-n-ne-nw.png +%%DATADIR%%/images/terrain/lava-n-ne.png +%%DATADIR%%/images/terrain/lava-n.png +%%DATADIR%%/images/terrain/lava-ne-nw-s.png +%%DATADIR%%/images/terrain/lava-ne-se.png +%%DATADIR%%/images/terrain/lava-ne.png +%%DATADIR%%/images/terrain/lava-nw-n.png +%%DATADIR%%/images/terrain/lava-nw.png +%%DATADIR%%/images/terrain/lava-s-nw-ne-n.png +%%DATADIR%%/images/terrain/lava-s-sw-nw.png +%%DATADIR%%/images/terrain/lava-s-sw.png +%%DATADIR%%/images/terrain/lava-s.png +%%DATADIR%%/images/terrain/lava-se-s.png +%%DATADIR%%/images/terrain/lava-se.png +%%DATADIR%%/images/terrain/lava-sw-nw-n.png +%%DATADIR%%/images/terrain/lava-sw-nw.png +%%DATADIR%%/images/terrain/lava-sw.png +%%DATADIR%%/images/terrain/lava.png +%%DATADIR%%/images/terrain/lava2.png +%%DATADIR%%/images/terrain/lava3.png +%%DATADIR%%/images/terrain/mask.png +%%DATADIR%%/images/terrain/mountain-tile.png +%%DATADIR%%/images/terrain/mountain5_1.png +%%DATADIR%%/images/terrain/mountain5_2.png +%%DATADIR%%/images/terrain/mountain5_3.png +%%DATADIR%%/images/terrain/mountain6_1.png +%%DATADIR%%/images/terrain/mountain6_2.png +%%DATADIR%%/images/terrain/mountain6_3.png +%%DATADIR%%/images/terrain/mountain_range1_1.png +%%DATADIR%%/images/terrain/mountain_range1_2.png +%%DATADIR%%/images/terrain/mountain_range1_3.png +%%DATADIR%%/images/terrain/mountain_range2_1.png +%%DATADIR%%/images/terrain/mountain_range2_2.png +%%DATADIR%%/images/terrain/mountain_range2_3.png +%%DATADIR%%/images/terrain/mountain_range3_1.png +%%DATADIR%%/images/terrain/mountain_range3_2.png +%%DATADIR%%/images/terrain/mountain_range3_3.png +%%DATADIR%%/images/terrain/mountain_range3_4.png +%%DATADIR%%/images/terrain/mountain_range3_5.png +%%DATADIR%%/images/terrain/mountain_range4_1.png +%%DATADIR%%/images/terrain/mountain_range4_2.png +%%DATADIR%%/images/terrain/mountain_range4_3.png +%%DATADIR%%/images/terrain/mountain_range4_4.png +%%DATADIR%%/images/terrain/mountain_range4_5.png +%%DATADIR%%/images/terrain/mountains-castle-n-ne.png +%%DATADIR%%/images/terrain/mountains-castle-n.png +%%DATADIR%%/images/terrain/mountains-castle-ne.png +%%DATADIR%%/images/terrain/mountains-castle-nw-n.png +%%DATADIR%%/images/terrain/mountains-castle-nw.png +%%DATADIR%%/images/terrain/mountains-castle-s.png +%%DATADIR%%/images/terrain/mountains-castle-se.png +%%DATADIR%%/images/terrain/mountains-castle-sw-nw.png +%%DATADIR%%/images/terrain/mountains-castle-sw.png +%%DATADIR%%/images/terrain/mountains-n-ne.png +%%DATADIR%%/images/terrain/mountains-n.png +%%DATADIR%%/images/terrain/mountains-ne.png +%%DATADIR%%/images/terrain/mountains-nw-n.png +%%DATADIR%%/images/terrain/mountains-nw.png +%%DATADIR%%/images/terrain/mountains-small-n-ne.png +%%DATADIR%%/images/terrain/mountains-small-n.png +%%DATADIR%%/images/terrain/mountains-small-ne.png +%%DATADIR%%/images/terrain/mountains-small-nw-n.png +%%DATADIR%%/images/terrain/mountains-small-nw.png +%%DATADIR%%/images/terrain/mountains.png +%%DATADIR%%/images/terrain/mountains2.png +%%DATADIR%%/images/terrain/mountains3.png +%%DATADIR%%/images/terrain/mushrooms-castle-n.png +%%DATADIR%%/images/terrain/mushrooms-castle-ne.png +%%DATADIR%%/images/terrain/mushrooms-castle-nw.png +%%DATADIR%%/images/terrain/mushrooms-castle-s.png +%%DATADIR%%/images/terrain/mushrooms-castle-se.png +%%DATADIR%%/images/terrain/mushrooms-castle-sw.png +%%DATADIR%%/images/terrain/mushrooms-castle.png +%%DATADIR%%/images/terrain/mushrooms-tile.png +%%DATADIR%%/images/terrain/mushrooms.png +%%DATADIR%%/images/terrain/mushrooms2.png +%%DATADIR%%/images/terrain/mushrooms3.png +%%DATADIR%%/images/terrain/mushrooms4.png +%%DATADIR%%/images/terrain/mushrooms5.png +%%DATADIR%%/images/terrain/ocean-n.png +%%DATADIR%%/images/terrain/ocean-ne.png +%%DATADIR%%/images/terrain/ocean-nw.png +%%DATADIR%%/images/terrain/ocean-s.png +%%DATADIR%%/images/terrain/ocean-se.png +%%DATADIR%%/images/terrain/ocean-sw.png +%%DATADIR%%/images/terrain/ocean.png +%%DATADIR%%/images/terrain/ocean2.png +%%DATADIR%%/images/terrain/ocean3.png +%%DATADIR%%/images/terrain/out.png +%%DATADIR%%/images/terrain/reed-castle-n.png +%%DATADIR%%/images/terrain/reed-castle-ne.png +%%DATADIR%%/images/terrain/reed-castle-nw.png +%%DATADIR%%/images/terrain/reed-castle-s.png +%%DATADIR%%/images/terrain/reed-castle-se.png +%%DATADIR%%/images/terrain/reed-castle-sw.png +%%DATADIR%%/images/terrain/reed1-small.png +%%DATADIR%%/images/terrain/reed1.png +%%DATADIR%%/images/terrain/reed2-small.png +%%DATADIR%%/images/terrain/reed2.png +%%DATADIR%%/images/terrain/reed3-small.png +%%DATADIR%%/images/terrain/reed3.png +%%DATADIR%%/images/terrain/reed4-small.png +%%DATADIR%%/images/terrain/reed4.png +%%DATADIR%%/images/terrain/reed5.png +%%DATADIR%%/images/terrain/reed6.png +%%DATADIR%%/images/terrain/road-n-ne.png +%%DATADIR%%/images/terrain/road-n.png +%%DATADIR%%/images/terrain/road-ne-se.png +%%DATADIR%%/images/terrain/road-ne.png +%%DATADIR%%/images/terrain/road-nw-n.png +%%DATADIR%%/images/terrain/road-nw.png +%%DATADIR%%/images/terrain/road-s-sw.png +%%DATADIR%%/images/terrain/road-s.png +%%DATADIR%%/images/terrain/road-se-s.png +%%DATADIR%%/images/terrain/road-se.png +%%DATADIR%%/images/terrain/road-sw-nw.png +%%DATADIR%%/images/terrain/road-sw.png +%%DATADIR%%/images/terrain/road.png +%%DATADIR%%/images/terrain/road2.png +%%DATADIR%%/images/terrain/road3.png +%%DATADIR%%/images/terrain/ruin1-concave-e.png +%%DATADIR%%/images/terrain/ruin1-concave-ne.png +%%DATADIR%%/images/terrain/ruin1-concave-nw.png +%%DATADIR%%/images/terrain/ruin1-concave-se.png +%%DATADIR%%/images/terrain/ruin1-concave-sw.png +%%DATADIR%%/images/terrain/ruin1-concave-w.png +%%DATADIR%%/images/terrain/ruin1-convex-e.png +%%DATADIR%%/images/terrain/ruin1-convex-ne.png +%%DATADIR%%/images/terrain/ruin1-convex-nw.png +%%DATADIR%%/images/terrain/ruin1-convex-se.png +%%DATADIR%%/images/terrain/ruin1-convex-sw.png +%%DATADIR%%/images/terrain/ruin1-convex-w.png +%%DATADIR%%/images/terrain/ruin2-concave-e.png +%%DATADIR%%/images/terrain/ruin2-concave-ne.png +%%DATADIR%%/images/terrain/ruin2-concave-nw.png +%%DATADIR%%/images/terrain/ruin2-concave-se.png +%%DATADIR%%/images/terrain/ruin2-concave-sw.png +%%DATADIR%%/images/terrain/ruin2-concave-w.png +%%DATADIR%%/images/terrain/ruin2-convex-e.png +%%DATADIR%%/images/terrain/ruin2-convex-ne.png +%%DATADIR%%/images/terrain/ruin2-convex-nw.png +%%DATADIR%%/images/terrain/ruin2-convex-se.png +%%DATADIR%%/images/terrain/ruin2-convex-sw.png +%%DATADIR%%/images/terrain/ruin2-convex-w.png +%%DATADIR%%/images/terrain/ruin3-concave-e.png +%%DATADIR%%/images/terrain/ruin3-concave-ne.png +%%DATADIR%%/images/terrain/ruin3-concave-nw.png +%%DATADIR%%/images/terrain/ruin3-concave-se.png +%%DATADIR%%/images/terrain/ruin3-concave-sw.png +%%DATADIR%%/images/terrain/ruin3-concave-w.png +%%DATADIR%%/images/terrain/ruin3-convex-e.png +%%DATADIR%%/images/terrain/ruin3-convex-ne.png +%%DATADIR%%/images/terrain/ruin3-convex-nw.png +%%DATADIR%%/images/terrain/ruin3-convex-se.png +%%DATADIR%%/images/terrain/ruin3-convex-sw.png +%%DATADIR%%/images/terrain/ruin3-convex-w.png +%%DATADIR%%/images/terrain/ruin4-concave-e.png +%%DATADIR%%/images/terrain/ruin4-concave-ne.png +%%DATADIR%%/images/terrain/ruin4-concave-nw.png +%%DATADIR%%/images/terrain/ruin4-concave-se.png +%%DATADIR%%/images/terrain/ruin4-concave-sw.png +%%DATADIR%%/images/terrain/ruin4-concave-w.png +%%DATADIR%%/images/terrain/ruin4-convex-e.png +%%DATADIR%%/images/terrain/ruin4-convex-ne.png +%%DATADIR%%/images/terrain/ruin4-convex-nw.png +%%DATADIR%%/images/terrain/ruin4-convex-se.png +%%DATADIR%%/images/terrain/ruin4-convex-sw.png +%%DATADIR%%/images/terrain/ruin4-convex-w.png +%%DATADIR%%/images/terrain/ruin5-concave-e.png +%%DATADIR%%/images/terrain/ruin5-concave-ne.png +%%DATADIR%%/images/terrain/ruin5-concave-nw.png +%%DATADIR%%/images/terrain/ruin5-concave-se.png +%%DATADIR%%/images/terrain/ruin5-concave-sw.png +%%DATADIR%%/images/terrain/ruin5-concave-w.png +%%DATADIR%%/images/terrain/ruin5-convex-e.png +%%DATADIR%%/images/terrain/ruin5-convex-ne.png +%%DATADIR%%/images/terrain/ruin5-convex-nw.png +%%DATADIR%%/images/terrain/ruin5-convex-se.png +%%DATADIR%%/images/terrain/ruin5-convex-sw.png +%%DATADIR%%/images/terrain/ruin5-convex-w.png +%%DATADIR%%/images/terrain/ruinkeep.png +%%DATADIR%%/images/terrain/ruinkeep1-inside-e.png +%%DATADIR%%/images/terrain/ruinkeep1-inside-ne.png +%%DATADIR%%/images/terrain/ruinkeep1-inside-nw.png +%%DATADIR%%/images/terrain/ruinkeep1-inside-se.png +%%DATADIR%%/images/terrain/ruinkeep1-inside-sw.png +%%DATADIR%%/images/terrain/ruinkeep1-inside-w.png +%%DATADIR%%/images/terrain/ruinkeep1-keep-e.png +%%DATADIR%%/images/terrain/ruinkeep1-keep-ne.png +%%DATADIR%%/images/terrain/ruinkeep1-keep-nw.png +%%DATADIR%%/images/terrain/ruinkeep1-keep-se.png +%%DATADIR%%/images/terrain/ruinkeep1-keep-sw.png +%%DATADIR%%/images/terrain/ruinkeep1-keep-w.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-0-e.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-0-ne.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-0-nw.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-0-se.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-0-sw.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-0-w.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-1-e.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-1-ne.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-1-nw.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-1-se.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-1-sw.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-1-w.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-e.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-ne.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-nw.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-se.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-sw.png +%%DATADIR%%/images/terrain/ruinkeep1-wall-w.png +%%DATADIR%%/images/terrain/sand-n-ne-se.png +%%DATADIR%%/images/terrain/sand-n-ne.png +%%DATADIR%%/images/terrain/sand-n.png +%%DATADIR%%/images/terrain/sand-ne-se-s.png +%%DATADIR%%/images/terrain/sand-ne-se.png +%%DATADIR%%/images/terrain/sand-ne.png +%%DATADIR%%/images/terrain/sand-nw-n-ne.png +%%DATADIR%%/images/terrain/sand-nw-n.png +%%DATADIR%%/images/terrain/sand-nw.png +%%DATADIR%%/images/terrain/sand-rock1.png +%%DATADIR%%/images/terrain/sand-rock2.png +%%DATADIR%%/images/terrain/sand-rock3.png +%%DATADIR%%/images/terrain/sand-s-sw-nw.png +%%DATADIR%%/images/terrain/sand-s-sw.png +%%DATADIR%%/images/terrain/sand-s.png +%%DATADIR%%/images/terrain/sand-se-s-sw.png +%%DATADIR%%/images/terrain/sand-se-s.png +%%DATADIR%%/images/terrain/sand-se.png +%%DATADIR%%/images/terrain/sand-sw-nw-n.png +%%DATADIR%%/images/terrain/sand-sw-nw.png +%%DATADIR%%/images/terrain/sand-sw.png +%%DATADIR%%/images/terrain/sand.png +%%DATADIR%%/images/terrain/savanna-n-ne-se.png +%%DATADIR%%/images/terrain/savanna-n-ne.png +%%DATADIR%%/images/terrain/savanna-n.png +%%DATADIR%%/images/terrain/savanna-ne-se-s.png +%%DATADIR%%/images/terrain/savanna-ne-se.png +%%DATADIR%%/images/terrain/savanna-ne.png +%%DATADIR%%/images/terrain/savanna-nw-n-ne.png +%%DATADIR%%/images/terrain/savanna-nw-n.png +%%DATADIR%%/images/terrain/savanna-nw.png +%%DATADIR%%/images/terrain/savanna-s-sw-nw.png +%%DATADIR%%/images/terrain/savanna-s-sw.png +%%DATADIR%%/images/terrain/savanna-s.png +%%DATADIR%%/images/terrain/savanna-se-s-sw.png +%%DATADIR%%/images/terrain/savanna-se-s.png +%%DATADIR%%/images/terrain/savanna-se.png +%%DATADIR%%/images/terrain/savanna-sw-nw-n.png +%%DATADIR%%/images/terrain/savanna-sw-nw.png +%%DATADIR%%/images/terrain/savanna-sw.png +%%DATADIR%%/images/terrain/savanna-to-water-n-ne-se.png +%%DATADIR%%/images/terrain/savanna-to-water-n-ne.png +%%DATADIR%%/images/terrain/savanna-to-water-n.png +%%DATADIR%%/images/terrain/savanna-to-water-ne-se-s.png +%%DATADIR%%/images/terrain/savanna-to-water-ne-se.png +%%DATADIR%%/images/terrain/savanna-to-water-ne.png +%%DATADIR%%/images/terrain/savanna-to-water-nw-n-ne.png +%%DATADIR%%/images/terrain/savanna-to-water-nw-n.png +%%DATADIR%%/images/terrain/savanna-to-water-nw.png +%%DATADIR%%/images/terrain/savanna-to-water-s-sw-nw.png +%%DATADIR%%/images/terrain/savanna-to-water-s-sw.png +%%DATADIR%%/images/terrain/savanna-to-water-s.png +%%DATADIR%%/images/terrain/savanna-to-water-se-s-sw.png +%%DATADIR%%/images/terrain/savanna-to-water-se-s.png +%%DATADIR%%/images/terrain/savanna-to-water-se.png +%%DATADIR%%/images/terrain/savanna-to-water-sw-nw-n.png +%%DATADIR%%/images/terrain/savanna-to-water-sw-nw.png +%%DATADIR%%/images/terrain/savanna-to-water-sw.png +%%DATADIR%%/images/terrain/savanna.png +%%DATADIR%%/images/terrain/savanna2.png +%%DATADIR%%/images/terrain/savanna3.png +%%DATADIR%%/images/terrain/snow-forest-castle-n-ne.png +%%DATADIR%%/images/terrain/snow-forest-castle-n.png +%%DATADIR%%/images/terrain/snow-forest-castle-ne.png +%%DATADIR%%/images/terrain/snow-forest-castle-nw-n-ne.png +%%DATADIR%%/images/terrain/snow-forest-castle-nw-n.png +%%DATADIR%%/images/terrain/snow-forest-castle-nw.png +%%DATADIR%%/images/terrain/snow-forest-castle-s.png +%%DATADIR%%/images/terrain/snow-forest-castle-se.png +%%DATADIR%%/images/terrain/snow-forest-castle-sw-nw.png +%%DATADIR%%/images/terrain/snow-forest-castle-sw.png +%%DATADIR%%/images/terrain/snow-forest-castle.png +%%DATADIR%%/images/terrain/snow-forest-tile.png +%%DATADIR%%/images/terrain/snow-forest.png +%%DATADIR%%/images/terrain/snow-forest2.png +%%DATADIR%%/images/terrain/snow-forest3.png +%%DATADIR%%/images/terrain/snow-forest4.png +%%DATADIR%%/images/terrain/snow-forest_small.png +%%DATADIR%%/images/terrain/snow-hills-n-ne.png +%%DATADIR%%/images/terrain/snow-hills-n.png +%%DATADIR%%/images/terrain/snow-hills-ne.png +%%DATADIR%%/images/terrain/snow-hills-nw.png +%%DATADIR%%/images/terrain/snow-hills-s-sw.png +%%DATADIR%%/images/terrain/snow-hills-s.png +%%DATADIR%%/images/terrain/snow-hills-se.png +%%DATADIR%%/images/terrain/snow-hills-sw.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-n-ne.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-n.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-ne-se.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-ne.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-nw-n.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-nw.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-s-sw.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-s.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-se-s.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-se.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-sw-nw.png +%%DATADIR%%/images/terrain/snow-hills-to-hills-sw.png +%%DATADIR%%/images/terrain/snow-hills-to-water-n-ne.png +%%DATADIR%%/images/terrain/snow-hills-to-water-n.png +%%DATADIR%%/images/terrain/snow-hills-to-water-ne.png +%%DATADIR%%/images/terrain/snow-hills-to-water-nw-n.png +%%DATADIR%%/images/terrain/snow-hills-to-water-nw.png +%%DATADIR%%/images/terrain/snow-hills-to-water-s-sw.png +%%DATADIR%%/images/terrain/snow-hills-to-water-se-s.png +%%DATADIR%%/images/terrain/snow-hills-to-water-se.png +%%DATADIR%%/images/terrain/snow-hills-to-water-sw-nw.png +%%DATADIR%%/images/terrain/snow-hills-to-water-sw.png +%%DATADIR%%/images/terrain/snow-hills.png +%%DATADIR%%/images/terrain/snow-hills2.png +%%DATADIR%%/images/terrain/snow-hills3.png +%%DATADIR%%/images/terrain/snow-n-ne-se-s.png +%%DATADIR%%/images/terrain/snow-n-ne-se.png +%%DATADIR%%/images/terrain/snow-n-ne.png +%%DATADIR%%/images/terrain/snow-n.png +%%DATADIR%%/images/terrain/snow-ne-se-s-sw.png +%%DATADIR%%/images/terrain/snow-ne-se-s.png +%%DATADIR%%/images/terrain/snow-ne-se.png +%%DATADIR%%/images/terrain/snow-ne.png +%%DATADIR%%/images/terrain/snow-nw-n-ne-se.png +%%DATADIR%%/images/terrain/snow-nw-n-ne.png +%%DATADIR%%/images/terrain/snow-nw-n.png +%%DATADIR%%/images/terrain/snow-nw.png +%%DATADIR%%/images/terrain/snow-s-sw-nw-n.png +%%DATADIR%%/images/terrain/snow-s-sw-nw.png +%%DATADIR%%/images/terrain/snow-s-sw.png +%%DATADIR%%/images/terrain/snow-s.png +%%DATADIR%%/images/terrain/snow-se-s-sw-nw.png +%%DATADIR%%/images/terrain/snow-se-s-sw.png +%%DATADIR%%/images/terrain/snow-se-s.png +%%DATADIR%%/images/terrain/snow-se.png +%%DATADIR%%/images/terrain/snow-sw-nw-n-ne.png +%%DATADIR%%/images/terrain/snow-sw-nw-n.png +%%DATADIR%%/images/terrain/snow-sw-nw.png +%%DATADIR%%/images/terrain/snow-sw.png +%%DATADIR%%/images/terrain/snow-to-water-n-ne-se-s.png +%%DATADIR%%/images/terrain/snow-to-water-n-ne-se.png +%%DATADIR%%/images/terrain/snow-to-water-n-ne.png +%%DATADIR%%/images/terrain/snow-to-water-n.png +%%DATADIR%%/images/terrain/snow-to-water-ne-se-s-sw.png +%%DATADIR%%/images/terrain/snow-to-water-ne-se-s.png +%%DATADIR%%/images/terrain/snow-to-water-ne-se.png +%%DATADIR%%/images/terrain/snow-to-water-ne.png +%%DATADIR%%/images/terrain/snow-to-water-nw-n-ne-se.png +%%DATADIR%%/images/terrain/snow-to-water-nw-n-ne.png +%%DATADIR%%/images/terrain/snow-to-water-nw-n.png +%%DATADIR%%/images/terrain/snow-to-water-nw.png +%%DATADIR%%/images/terrain/snow-to-water-s-sw-nw-n.png +%%DATADIR%%/images/terrain/snow-to-water-s-sw-nw.png +%%DATADIR%%/images/terrain/snow-to-water-s-sw.png +%%DATADIR%%/images/terrain/snow-to-water-s.png +%%DATADIR%%/images/terrain/snow-to-water-se-s-sw-nw.png +%%DATADIR%%/images/terrain/snow-to-water-se-s-sw.png +%%DATADIR%%/images/terrain/snow-to-water-se-s.png +%%DATADIR%%/images/terrain/snow-to-water-se.png +%%DATADIR%%/images/terrain/snow-to-water-sw-nw-n-ne.png +%%DATADIR%%/images/terrain/snow-to-water-sw-nw-n.png +%%DATADIR%%/images/terrain/snow-to-water-sw-nw.png +%%DATADIR%%/images/terrain/snow-to-water-sw.png +%%DATADIR%%/images/terrain/snow.png +%%DATADIR%%/images/terrain/snow2.png +%%DATADIR%%/images/terrain/sunken-keep-coast.png +%%DATADIR%%/images/terrain/sunken-keep-ocean.png +%%DATADIR%%/images/terrain/sunken-ruin-concave-e.png +%%DATADIR%%/images/terrain/sunken-ruin-concave-ne.png +%%DATADIR%%/images/terrain/sunken-ruin-concave-nw.png +%%DATADIR%%/images/terrain/sunken-ruin-concave-se.png +%%DATADIR%%/images/terrain/sunken-ruin-concave-sw.png +%%DATADIR%%/images/terrain/sunken-ruin-concave-w.png +%%DATADIR%%/images/terrain/sunken-ruin-convex-e.png +%%DATADIR%%/images/terrain/sunken-ruin-convex-ne.png +%%DATADIR%%/images/terrain/sunken-ruin-convex-nw.png +%%DATADIR%%/images/terrain/sunken-ruin-convex-se.png +%%DATADIR%%/images/terrain/sunken-ruin-convex-sw.png +%%DATADIR%%/images/terrain/sunken-ruin-convex-w.png +%%DATADIR%%/images/terrain/sunken-ruin-n.png +%%DATADIR%%/images/terrain/sunken-ruin-ne.png +%%DATADIR%%/images/terrain/sunken-ruin-nw.png +%%DATADIR%%/images/terrain/sunken-ruin-s.png +%%DATADIR%%/images/terrain/sunken-ruin-se.png +%%DATADIR%%/images/terrain/sunken-ruin-sw.png +%%DATADIR%%/images/terrain/sunken-ruin.png +%%DATADIR%%/images/terrain/sunken-ruin1-concave-e.png +%%DATADIR%%/images/terrain/sunken-ruin1-concave-ne.png +%%DATADIR%%/images/terrain/sunken-ruin1-concave-nw.png +%%DATADIR%%/images/terrain/sunken-ruin1-concave-se.png +%%DATADIR%%/images/terrain/sunken-ruin1-concave-sw.png +%%DATADIR%%/images/terrain/sunken-ruin1-concave-w.png +%%DATADIR%%/images/terrain/sunken-ruin1-convex-e.png +%%DATADIR%%/images/terrain/sunken-ruin1-convex-ne.png +%%DATADIR%%/images/terrain/sunken-ruin1-convex-nw.png +%%DATADIR%%/images/terrain/sunken-ruin1-convex-se.png +%%DATADIR%%/images/terrain/sunken-ruin1-convex-sw.png +%%DATADIR%%/images/terrain/sunken-ruin1-convex-w.png +%%DATADIR%%/images/terrain/sunken-ruin2-concave-e.png +%%DATADIR%%/images/terrain/sunken-ruin2-concave-ne.png +%%DATADIR%%/images/terrain/sunken-ruin2-concave-nw.png +%%DATADIR%%/images/terrain/sunken-ruin2-concave-se.png +%%DATADIR%%/images/terrain/sunken-ruin2-concave-sw.png +%%DATADIR%%/images/terrain/sunken-ruin2-concave-w.png +%%DATADIR%%/images/terrain/sunken-ruin2-convex-e.png +%%DATADIR%%/images/terrain/sunken-ruin2-convex-ne.png +%%DATADIR%%/images/terrain/sunken-ruin2-convex-nw.png +%%DATADIR%%/images/terrain/sunken-ruin2-convex-se.png +%%DATADIR%%/images/terrain/sunken-ruin2-convex-sw.png +%%DATADIR%%/images/terrain/sunken-ruin2-convex-w.png +%%DATADIR%%/images/terrain/sunken-ruin3-concave-e.png +%%DATADIR%%/images/terrain/sunken-ruin3-concave-ne.png +%%DATADIR%%/images/terrain/sunken-ruin3-concave-nw.png +%%DATADIR%%/images/terrain/sunken-ruin3-concave-se.png +%%DATADIR%%/images/terrain/sunken-ruin3-concave-sw.png +%%DATADIR%%/images/terrain/sunken-ruin3-concave-w.png +%%DATADIR%%/images/terrain/sunken-ruin3-convex-e.png +%%DATADIR%%/images/terrain/sunken-ruin3-convex-ne.png +%%DATADIR%%/images/terrain/sunken-ruin3-convex-nw.png +%%DATADIR%%/images/terrain/sunken-ruin3-convex-se.png +%%DATADIR%%/images/terrain/sunken-ruin3-convex-sw.png +%%DATADIR%%/images/terrain/sunken-ruin3-convex-w.png +%%DATADIR%%/images/terrain/sunken-ruin4-concave-e.png +%%DATADIR%%/images/terrain/sunken-ruin4-concave-ne.png +%%DATADIR%%/images/terrain/sunken-ruin4-concave-nw.png +%%DATADIR%%/images/terrain/sunken-ruin4-concave-se.png +%%DATADIR%%/images/terrain/sunken-ruin4-concave-sw.png +%%DATADIR%%/images/terrain/sunken-ruin4-concave-w.png +%%DATADIR%%/images/terrain/sunken-ruin4-convex-e.png +%%DATADIR%%/images/terrain/sunken-ruin4-convex-ne.png +%%DATADIR%%/images/terrain/sunken-ruin4-convex-nw.png +%%DATADIR%%/images/terrain/sunken-ruin4-convex-se.png +%%DATADIR%%/images/terrain/sunken-ruin4-convex-sw.png +%%DATADIR%%/images/terrain/sunken-ruin4-convex-w.png +%%DATADIR%%/images/terrain/sunken-ruin5-concave-e.png +%%DATADIR%%/images/terrain/sunken-ruin5-concave-ne.png +%%DATADIR%%/images/terrain/sunken-ruin5-concave-nw.png +%%DATADIR%%/images/terrain/sunken-ruin5-concave-se.png +%%DATADIR%%/images/terrain/sunken-ruin5-concave-sw.png +%%DATADIR%%/images/terrain/sunken-ruin5-concave-w.png +%%DATADIR%%/images/terrain/sunken-ruin5-convex-e.png +%%DATADIR%%/images/terrain/sunken-ruin5-convex-ne.png +%%DATADIR%%/images/terrain/sunken-ruin5-convex-nw.png +%%DATADIR%%/images/terrain/sunken-ruin5-convex-se.png +%%DATADIR%%/images/terrain/sunken-ruin5-convex-sw.png +%%DATADIR%%/images/terrain/sunken-ruin5-convex-w.png +%%DATADIR%%/images/terrain/sunken-ruinkeep.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-e.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-ne.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-nw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-se.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-sw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-w.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-e.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-ne.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-nw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-se.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-sw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-w.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-e.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-ne.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-nw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-se.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-sw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-w.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-e.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-ne.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-nw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-se.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-sw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-w.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-e.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-ne.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-nw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-se.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-sw.png +%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-w.png +%%DATADIR%%/images/terrain/sunkenkeep-inside-e.png +%%DATADIR%%/images/terrain/sunkenkeep-inside-ne.png +%%DATADIR%%/images/terrain/sunkenkeep-inside-nw.png +%%DATADIR%%/images/terrain/sunkenkeep-inside-se.png +%%DATADIR%%/images/terrain/sunkenkeep-inside-sw.png +%%DATADIR%%/images/terrain/sunkenkeep-inside-w.png +%%DATADIR%%/images/terrain/sunkenkeep-keep-e.png +%%DATADIR%%/images/terrain/sunkenkeep-keep-ne.png +%%DATADIR%%/images/terrain/sunkenkeep-keep-nw.png +%%DATADIR%%/images/terrain/sunkenkeep-keep-se.png +%%DATADIR%%/images/terrain/sunkenkeep-keep-sw.png +%%DATADIR%%/images/terrain/sunkenkeep-keep-w.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-0-e.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-0-ne.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-0-nw.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-0-se.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-0-sw.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-0-w.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-1-e.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-1-ne.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-1-nw.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-1-se.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-1-sw.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-1-w.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-e.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-ne.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-nw.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-se.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-sw.png +%%DATADIR%%/images/terrain/sunkenkeep-wall-w.png +%%DATADIR%%/images/terrain/sunkenkeep.png +%%DATADIR%%/images/terrain/swampwater-flowers1.png +%%DATADIR%%/images/terrain/swampwater-flowers2.png +%%DATADIR%%/images/terrain/swampwater-n-ne-se.png +%%DATADIR%%/images/terrain/swampwater-n-ne.png +%%DATADIR%%/images/terrain/swampwater-n.png +%%DATADIR%%/images/terrain/swampwater-ne-se-s.png +%%DATADIR%%/images/terrain/swampwater-ne-se.png +%%DATADIR%%/images/terrain/swampwater-ne.png +%%DATADIR%%/images/terrain/swampwater-nw-n-ne.png +%%DATADIR%%/images/terrain/swampwater-nw-n.png +%%DATADIR%%/images/terrain/swampwater-nw.png +%%DATADIR%%/images/terrain/swampwater-plant1.png +%%DATADIR%%/images/terrain/swampwater-plant2.png +%%DATADIR%%/images/terrain/swampwater-s-sw-nw.png +%%DATADIR%%/images/terrain/swampwater-s-sw.png +%%DATADIR%%/images/terrain/swampwater-s.png +%%DATADIR%%/images/terrain/swampwater-se-s-sw.png +%%DATADIR%%/images/terrain/swampwater-se-s.png +%%DATADIR%%/images/terrain/swampwater-se.png +%%DATADIR%%/images/terrain/swampwater-sw-nw-n.png +%%DATADIR%%/images/terrain/swampwater-sw-nw.png +%%DATADIR%%/images/terrain/swampwater-sw.png +%%DATADIR%%/images/terrain/swampwater-tile.png +%%DATADIR%%/images/terrain/swampwater.png +%%DATADIR%%/images/terrain/swampwater2.png +%%DATADIR%%/images/terrain/swampwater3.png +%%DATADIR%%/images/terrain/tent.png +%%DATADIR%%/images/terrain/tent2.png +%%DATADIR%%/images/terrain/tropical-forest-castle-n.png +%%DATADIR%%/images/terrain/tropical-forest-castle-ne.png +%%DATADIR%%/images/terrain/tropical-forest-castle-nw.png +%%DATADIR%%/images/terrain/tropical-forest-castle.png +%%DATADIR%%/images/terrain/tropical-forest-tile.png +%%DATADIR%%/images/terrain/tropical-forest.png +%%DATADIR%%/images/terrain/tropical-forest2.png +%%DATADIR%%/images/terrain/tropical-forest3.png +%%DATADIR%%/images/terrain/tropical-forest4.png +%%DATADIR%%/images/terrain/village-cave-tile.png +%%DATADIR%%/images/terrain/village-cave.png +%%DATADIR%%/images/terrain/village-cave2.png +%%DATADIR%%/images/terrain/village-cave3.png +%%DATADIR%%/images/terrain/village-coast-tile.png +%%DATADIR%%/images/terrain/village-coast.png +%%DATADIR%%/images/terrain/village-desert-tile.png +%%DATADIR%%/images/terrain/village-desert.png +%%DATADIR%%/images/terrain/village-desert2-tile.png +%%DATADIR%%/images/terrain/village-desert2.png +%%DATADIR%%/images/terrain/village-dwarven-tile.png +%%DATADIR%%/images/terrain/village-dwarven.png +%%DATADIR%%/images/terrain/village-elven-snow-tile.png +%%DATADIR%%/images/terrain/village-elven-snow.png +%%DATADIR%%/images/terrain/village-elven-snow2.png +%%DATADIR%%/images/terrain/village-elven-snow3.png +%%DATADIR%%/images/terrain/village-elven-snow4.png +%%DATADIR%%/images/terrain/village-elven-tile.png +%%DATADIR%%/images/terrain/village-elven.png +%%DATADIR%%/images/terrain/village-elven2.png +%%DATADIR%%/images/terrain/village-elven3.png +%%DATADIR%%/images/terrain/village-elven4.png +%%DATADIR%%/images/terrain/village-human-hills-tile.png +%%DATADIR%%/images/terrain/village-human-mountain-tile.png +%%DATADIR%%/images/terrain/village-human-snow-hills-tile.png +%%DATADIR%%/images/terrain/village-human-snow.png +%%DATADIR%%/images/terrain/village-human-snow2.png +%%DATADIR%%/images/terrain/village-human-snow3.png +%%DATADIR%%/images/terrain/village-human-snow4.png +%%DATADIR%%/images/terrain/village-human-tile.png +%%DATADIR%%/images/terrain/village-human.png +%%DATADIR%%/images/terrain/village-human2.png +%%DATADIR%%/images/terrain/village-human3.png +%%DATADIR%%/images/terrain/village-human4.png +%%DATADIR%%/images/terrain/village-snow-tile.png +%%DATADIR%%/images/terrain/village-swampwater-tile.png +%%DATADIR%%/images/terrain/village-swampwater.png +%%DATADIR%%/images/terrain/village-swampwater2.png +%%DATADIR%%/images/terrain/village-tropical-forest.png +%%DATADIR%%/images/terrain/village-tropical-tile.png +%%DATADIR%%/images/terrain/void-n-ne-se-s.png +%%DATADIR%%/images/terrain/void-n-ne-se.png +%%DATADIR%%/images/terrain/void-n-ne.png +%%DATADIR%%/images/terrain/void-n.png +%%DATADIR%%/images/terrain/void-ne-se-s.png +%%DATADIR%%/images/terrain/void-ne-se.png +%%DATADIR%%/images/terrain/void-ne.png +%%DATADIR%%/images/terrain/void-nw-n-ne.png +%%DATADIR%%/images/terrain/void-nw-n.png +%%DATADIR%%/images/terrain/void-nw.png +%%DATADIR%%/images/terrain/void-s-sw-nw-n.png +%%DATADIR%%/images/terrain/void-s-sw-nw.png +%%DATADIR%%/images/terrain/void-s-sw.png +%%DATADIR%%/images/terrain/void-s.png +%%DATADIR%%/images/terrain/void-se-s-sw.png +%%DATADIR%%/images/terrain/void-se-s.png +%%DATADIR%%/images/terrain/void-se.png +%%DATADIR%%/images/terrain/void-sw-nw-n.png +%%DATADIR%%/images/terrain/void-sw-nw.png +%%DATADIR%%/images/terrain/void-sw.png +%%DATADIR%%/images/terrain/void.png +%%DATADIR%%/images/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/units/drakes/blademaster-attack-close1.png +%%DATADIR%%/images/units/drakes/blademaster-attack-close2.png +%%DATADIR%%/images/units/drakes/blademaster-attack-ranged.png +%%DATADIR%%/images/units/drakes/blademaster-defend.png +%%DATADIR%%/images/units/drakes/blademaster-die-1.png +%%DATADIR%%/images/units/drakes/blademaster-die-2.png +%%DATADIR%%/images/units/drakes/blademaster-die-3.png +%%DATADIR%%/images/units/drakes/blademaster-die-4.png +%%DATADIR%%/images/units/drakes/blademaster-die-5.png +%%DATADIR%%/images/units/drakes/blademaster-die-6.png +%%DATADIR%%/images/units/drakes/blademaster-die-7.png +%%DATADIR%%/images/units/drakes/blademaster-flying.png +%%DATADIR%%/images/units/drakes/blademaster.png +%%DATADIR%%/images/units/drakes/burner-attack-close.png +%%DATADIR%%/images/units/drakes/burner-attack-ranged1.png +%%DATADIR%%/images/units/drakes/burner-attack-ranged2.png +%%DATADIR%%/images/units/drakes/burner-defend.png +%%DATADIR%%/images/units/drakes/burner-die-1.png +%%DATADIR%%/images/units/drakes/burner-die-2.png +%%DATADIR%%/images/units/drakes/burner-die-3.png +%%DATADIR%%/images/units/drakes/burner-die-4.png +%%DATADIR%%/images/units/drakes/burner-die-5.png +%%DATADIR%%/images/units/drakes/burner-die-6.png +%%DATADIR%%/images/units/drakes/burner-flying.png +%%DATADIR%%/images/units/drakes/burner.png +%%DATADIR%%/images/units/drakes/clasher-attack-mace.png +%%DATADIR%%/images/units/drakes/clasher-attack-spear.png +%%DATADIR%%/images/units/drakes/clasher-attack-sword.png +%%DATADIR%%/images/units/drakes/clasher-defend.png +%%DATADIR%%/images/units/drakes/clasher-die-1.png +%%DATADIR%%/images/units/drakes/clasher-die-10.png +%%DATADIR%%/images/units/drakes/clasher-die-2.png +%%DATADIR%%/images/units/drakes/clasher-die-3.png +%%DATADIR%%/images/units/drakes/clasher-die-4.png +%%DATADIR%%/images/units/drakes/clasher-die-5.png +%%DATADIR%%/images/units/drakes/clasher-die-6.png +%%DATADIR%%/images/units/drakes/clasher-die-7.png +%%DATADIR%%/images/units/drakes/clasher-die-8.png +%%DATADIR%%/images/units/drakes/clasher-die-9.png +%%DATADIR%%/images/units/drakes/clasher-flying.png +%%DATADIR%%/images/units/drakes/clasher.png +%%DATADIR%%/images/units/drakes/enforcer-die-1.png +%%DATADIR%%/images/units/drakes/enforcer-die-2.png +%%DATADIR%%/images/units/drakes/enforcer-die-3.png +%%DATADIR%%/images/units/drakes/enforcer-die-4.png +%%DATADIR%%/images/units/drakes/enforcer-die-5.png +%%DATADIR%%/images/units/drakes/enforcer-die-6.png +%%DATADIR%%/images/units/drakes/enforcer-die-7.png +%%DATADIR%%/images/units/drakes/enforcer-die-8.png +%%DATADIR%%/images/units/drakes/enforcer.png +%%DATADIR%%/images/units/drakes/fighter-attack-close1.png +%%DATADIR%%/images/units/drakes/fighter-attack-close2.png +%%DATADIR%%/images/units/drakes/fighter-attack-ranged1.png +%%DATADIR%%/images/units/drakes/fighter-attack-ranged2.png +%%DATADIR%%/images/units/drakes/fighter-defend.png +%%DATADIR%%/images/units/drakes/fighter-die-1.png +%%DATADIR%%/images/units/drakes/fighter-die-2.png +%%DATADIR%%/images/units/drakes/fighter-die-3.png +%%DATADIR%%/images/units/drakes/fighter-die-4.png +%%DATADIR%%/images/units/drakes/fighter-die-5.png +%%DATADIR%%/images/units/drakes/fighter-die-6.png +%%DATADIR%%/images/units/drakes/fighter-die-7.png +%%DATADIR%%/images/units/drakes/fighter-die-8.png +%%DATADIR%%/images/units/drakes/fighter-flying.png +%%DATADIR%%/images/units/drakes/fighter.png +%%DATADIR%%/images/units/drakes/fire-attack-close.png +%%DATADIR%%/images/units/drakes/fire-attack-ranged.png +%%DATADIR%%/images/units/drakes/fire-defend.png +%%DATADIR%%/images/units/drakes/fire-die-1.png +%%DATADIR%%/images/units/drakes/fire-die-2.png +%%DATADIR%%/images/units/drakes/fire-die-3.png +%%DATADIR%%/images/units/drakes/fire-die-4.png +%%DATADIR%%/images/units/drakes/fire-die-5.png +%%DATADIR%%/images/units/drakes/fire-die-6.png +%%DATADIR%%/images/units/drakes/fire-die-7.png +%%DATADIR%%/images/units/drakes/fire-flying.png +%%DATADIR%%/images/units/drakes/fire.png +%%DATADIR%%/images/units/drakes/flameheart-attack-close1.png +%%DATADIR%%/images/units/drakes/flameheart-attack-close2.png +%%DATADIR%%/images/units/drakes/flameheart-attack-ranged.png +%%DATADIR%%/images/units/drakes/flameheart-defend.png +%%DATADIR%%/images/units/drakes/flameheart-die-1.png +%%DATADIR%%/images/units/drakes/flameheart-die-2.png +%%DATADIR%%/images/units/drakes/flameheart-die-3.png +%%DATADIR%%/images/units/drakes/flameheart-die-4.png +%%DATADIR%%/images/units/drakes/flameheart-die-5.png +%%DATADIR%%/images/units/drakes/flameheart-die-6.png +%%DATADIR%%/images/units/drakes/flameheart-die-7.png +%%DATADIR%%/images/units/drakes/flameheart-flying.png +%%DATADIR%%/images/units/drakes/flameheart-lead.png +%%DATADIR%%/images/units/drakes/flameheart.png +%%DATADIR%%/images/units/drakes/flare-attack-close.png +%%DATADIR%%/images/units/drakes/flare-attack-ranged.png +%%DATADIR%%/images/units/drakes/flare-defend.png +%%DATADIR%%/images/units/drakes/flare-die-1.png +%%DATADIR%%/images/units/drakes/flare-die-2.png +%%DATADIR%%/images/units/drakes/flare-die-3.png +%%DATADIR%%/images/units/drakes/flare-die-4.png +%%DATADIR%%/images/units/drakes/flare-die-5.png +%%DATADIR%%/images/units/drakes/flare-die-6.png +%%DATADIR%%/images/units/drakes/flare-die-7.png +%%DATADIR%%/images/units/drakes/flare-die-8.png +%%DATADIR%%/images/units/drakes/flare-flying.png +%%DATADIR%%/images/units/drakes/flare-lead.png +%%DATADIR%%/images/units/drakes/flare.png +%%DATADIR%%/images/units/drakes/gladiator-attack-mace.png +%%DATADIR%%/images/units/drakes/gladiator-attack-spear.png +%%DATADIR%%/images/units/drakes/gladiator-attack-sword.png +%%DATADIR%%/images/units/drakes/gladiator-defend.png +%%DATADIR%%/images/units/drakes/gladiator-die-1.png +%%DATADIR%%/images/units/drakes/gladiator-die-2.png +%%DATADIR%%/images/units/drakes/gladiator-die-3.png +%%DATADIR%%/images/units/drakes/gladiator-die-4.png +%%DATADIR%%/images/units/drakes/gladiator-die-5.png +%%DATADIR%%/images/units/drakes/gladiator-die-6.png +%%DATADIR%%/images/units/drakes/gladiator-die-7.png +%%DATADIR%%/images/units/drakes/gladiator-die-8.png +%%DATADIR%%/images/units/drakes/gladiator-flying.png +%%DATADIR%%/images/units/drakes/gladiator.png +%%DATADIR%%/images/units/drakes/glider-attack-close1.png +%%DATADIR%%/images/units/drakes/glider-attack-close2.png +%%DATADIR%%/images/units/drakes/glider-attack-ranged.png +%%DATADIR%%/images/units/drakes/glider-defend.png +%%DATADIR%%/images/units/drakes/glider-die-1.png +%%DATADIR%%/images/units/drakes/glider-die-2.png +%%DATADIR%%/images/units/drakes/glider-die-3.png +%%DATADIR%%/images/units/drakes/glider-die-4.png +%%DATADIR%%/images/units/drakes/glider-die-5.png +%%DATADIR%%/images/units/drakes/glider-die-6.png +%%DATADIR%%/images/units/drakes/glider-die-7.png +%%DATADIR%%/images/units/drakes/glider-die-8.png +%%DATADIR%%/images/units/drakes/glider-flying.png +%%DATADIR%%/images/units/drakes/glider.png +%%DATADIR%%/images/units/drakes/hurricane-attack-melee1.png +%%DATADIR%%/images/units/drakes/hurricane-attack-melee2.png +%%DATADIR%%/images/units/drakes/hurricane-attack-ranged-fire1.png +%%DATADIR%%/images/units/drakes/hurricane-attack-ranged-fire2.png +%%DATADIR%%/images/units/drakes/hurricane-die-1.png +%%DATADIR%%/images/units/drakes/hurricane-die-2.png +%%DATADIR%%/images/units/drakes/hurricane-die-3.png +%%DATADIR%%/images/units/drakes/hurricane-die-4.png +%%DATADIR%%/images/units/drakes/hurricane-die-5.png +%%DATADIR%%/images/units/drakes/hurricane-die-6.png +%%DATADIR%%/images/units/drakes/hurricane-die-7.png +%%DATADIR%%/images/units/drakes/hurricane-die-8.png +%%DATADIR%%/images/units/drakes/hurricane-flying.png +%%DATADIR%%/images/units/drakes/hurricane.png +%%DATADIR%%/images/units/drakes/inferno-attack-close.png +%%DATADIR%%/images/units/drakes/inferno-attack-ranged.png +%%DATADIR%%/images/units/drakes/inferno-defend.png +%%DATADIR%%/images/units/drakes/inferno-die-1.png +%%DATADIR%%/images/units/drakes/inferno-die-2.png +%%DATADIR%%/images/units/drakes/inferno-die-3.png +%%DATADIR%%/images/units/drakes/inferno-die-4.png +%%DATADIR%%/images/units/drakes/inferno-die-5.png +%%DATADIR%%/images/units/drakes/inferno-die-6.png +%%DATADIR%%/images/units/drakes/inferno-die-7.png +%%DATADIR%%/images/units/drakes/inferno-flying.png +%%DATADIR%%/images/units/drakes/inferno.png +%%DATADIR%%/images/units/drakes/sky-attack-melee1.png +%%DATADIR%%/images/units/drakes/sky-attack-melee2.png +%%DATADIR%%/images/units/drakes/sky-attack-ranged-fire.png +%%DATADIR%%/images/units/drakes/sky-attack-ranged-impact.png +%%DATADIR%%/images/units/drakes/sky-defend.png +%%DATADIR%%/images/units/drakes/sky-die-1.png +%%DATADIR%%/images/units/drakes/sky-die-2.png +%%DATADIR%%/images/units/drakes/sky-die-3.png +%%DATADIR%%/images/units/drakes/sky-die-4.png +%%DATADIR%%/images/units/drakes/sky-die-5.png +%%DATADIR%%/images/units/drakes/sky-die-6.png +%%DATADIR%%/images/units/drakes/sky-die-7.png +%%DATADIR%%/images/units/drakes/sky-die-8.png +%%DATADIR%%/images/units/drakes/sky.png +%%DATADIR%%/images/units/drakes/slasher-defend.png +%%DATADIR%%/images/units/drakes/slasher-die-1.png +%%DATADIR%%/images/units/drakes/slasher-die-2.png +%%DATADIR%%/images/units/drakes/slasher-die-3.png +%%DATADIR%%/images/units/drakes/slasher-die-4.png +%%DATADIR%%/images/units/drakes/slasher-die-5.png +%%DATADIR%%/images/units/drakes/slasher-die-6.png +%%DATADIR%%/images/units/drakes/slasher-die-7.png +%%DATADIR%%/images/units/drakes/slasher-die-8.png +%%DATADIR%%/images/units/drakes/slasher-flying.png +%%DATADIR%%/images/units/drakes/slasher-pierce.png +%%DATADIR%%/images/units/drakes/slasher-slash.png +%%DATADIR%%/images/units/drakes/slasher.png +%%DATADIR%%/images/units/drakes/warden-defend.png +%%DATADIR%%/images/units/drakes/warden-die-1.png +%%DATADIR%%/images/units/drakes/warden-die-2.png +%%DATADIR%%/images/units/drakes/warden-die-3.png +%%DATADIR%%/images/units/drakes/warden-die-4.png +%%DATADIR%%/images/units/drakes/warden-die-5.png +%%DATADIR%%/images/units/drakes/warden-die-6.png +%%DATADIR%%/images/units/drakes/warden-die-7.png +%%DATADIR%%/images/units/drakes/warden-die-8.png +%%DATADIR%%/images/units/drakes/warden-die-9.png +%%DATADIR%%/images/units/drakes/warden-flying.png +%%DATADIR%%/images/units/drakes/warden-pierce.png +%%DATADIR%%/images/units/drakes/warden-slash.png +%%DATADIR%%/images/units/drakes/warden.png +%%DATADIR%%/images/units/drakes/warrior-attack-close1.png +%%DATADIR%%/images/units/drakes/warrior-attack-close2.png +%%DATADIR%%/images/units/drakes/warrior-attack-ranged.png +%%DATADIR%%/images/units/drakes/warrior-defend.png +%%DATADIR%%/images/units/drakes/warrior-die-1.png +%%DATADIR%%/images/units/drakes/warrior-die-2.png +%%DATADIR%%/images/units/drakes/warrior-die-3.png +%%DATADIR%%/images/units/drakes/warrior-die-4.png +%%DATADIR%%/images/units/drakes/warrior-die-5.png +%%DATADIR%%/images/units/drakes/warrior-die-6.png +%%DATADIR%%/images/units/drakes/warrior-die-7.png +%%DATADIR%%/images/units/drakes/warrior-die-8.png +%%DATADIR%%/images/units/drakes/warrior-flying.png +%%DATADIR%%/images/units/drakes/warrior.png +%%DATADIR%%/images/units/dwarves/berserker-attack1.png +%%DATADIR%%/images/units/dwarves/berserker-attack2.png +%%DATADIR%%/images/units/dwarves/berserker-attack3.png +%%DATADIR%%/images/units/dwarves/berserker-defend.png +%%DATADIR%%/images/units/dwarves/berserker.png +%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-n.png +%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-ne.png +%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-s.png +%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-se.png +%%DATADIR%%/images/units/dwarves/dragonguard-defend.png +%%DATADIR%%/images/units/dwarves/dragonguard-melee1.png +%%DATADIR%%/images/units/dwarves/dragonguard-melee2.png +%%DATADIR%%/images/units/dwarves/dragonguard.png +%%DATADIR%%/images/units/dwarves/fighter-attack-mace.png +%%DATADIR%%/images/units/dwarves/fighter-attack.png +%%DATADIR%%/images/units/dwarves/fighter-defend.png +%%DATADIR%%/images/units/dwarves/fighter.png +%%DATADIR%%/images/units/dwarves/gryphon-master-attack.png +%%DATADIR%%/images/units/dwarves/gryphon-master-flying-1and3.png +%%DATADIR%%/images/units/dwarves/gryphon-master-flying-2.png +%%DATADIR%%/images/units/dwarves/gryphon-master-flying-4.png +%%DATADIR%%/images/units/dwarves/gryphon-master-flying-5and7.png +%%DATADIR%%/images/units/dwarves/gryphon-master-flying-6.png +%%DATADIR%%/images/units/dwarves/gryphon-master-flying-8.png +%%DATADIR%%/images/units/dwarves/gryphon-master.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-attack.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-1and3.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-2.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-4.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-5and7.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-6.png +%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-8.png +%%DATADIR%%/images/units/dwarves/gryphon-rider.png +%%DATADIR%%/images/units/dwarves/guard-attack.png +%%DATADIR%%/images/units/dwarves/guard-defend.png +%%DATADIR%%/images/units/dwarves/guard.png +%%DATADIR%%/images/units/dwarves/lord-attack-mace.png +%%DATADIR%%/images/units/dwarves/lord-attack.png +%%DATADIR%%/images/units/dwarves/lord-defend.png +%%DATADIR%%/images/units/dwarves/lord-ranged.png +%%DATADIR%%/images/units/dwarves/lord.png +%%DATADIR%%/images/units/dwarves/runemaster-attack1.png +%%DATADIR%%/images/units/dwarves/runemaster-attack2.png +%%DATADIR%%/images/units/dwarves/runemaster-attack3.png +%%DATADIR%%/images/units/dwarves/runemaster-defend.png +%%DATADIR%%/images/units/dwarves/runemaster.png +%%DATADIR%%/images/units/dwarves/sentinel-attack.png +%%DATADIR%%/images/units/dwarves/sentinel-defend.png +%%DATADIR%%/images/units/dwarves/sentinel.png +%%DATADIR%%/images/units/dwarves/stalwart-attack.png +%%DATADIR%%/images/units/dwarves/stalwart-defend.png +%%DATADIR%%/images/units/dwarves/stalwart.png +%%DATADIR%%/images/units/dwarves/thunderer-attack-n.png +%%DATADIR%%/images/units/dwarves/thunderer-attack-ne.png +%%DATADIR%%/images/units/dwarves/thunderer-attack-s.png +%%DATADIR%%/images/units/dwarves/thunderer-attack-se.png +%%DATADIR%%/images/units/dwarves/thunderer-defend.png +%%DATADIR%%/images/units/dwarves/thunderer-die1.png +%%DATADIR%%/images/units/dwarves/thunderer-die2.png +%%DATADIR%%/images/units/dwarves/thunderer-die3.png +%%DATADIR%%/images/units/dwarves/thunderer-melee1.png +%%DATADIR%%/images/units/dwarves/thunderer-melee2.png +%%DATADIR%%/images/units/dwarves/thunderer.png +%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-n.png +%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-ne.png +%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-s.png +%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-se.png +%%DATADIR%%/images/units/dwarves/thunderguard-attack1.png +%%DATADIR%%/images/units/dwarves/thunderguard-attack2.png +%%DATADIR%%/images/units/dwarves/thunderguard-defend.png +%%DATADIR%%/images/units/dwarves/thunderguard.png +%%DATADIR%%/images/units/dwarves/ulfserker-attack.png +%%DATADIR%%/images/units/dwarves/ulfserker-defend.png +%%DATADIR%%/images/units/dwarves/ulfserker.png +%%DATADIR%%/images/units/dwarves/warrior-attack-mace.png +%%DATADIR%%/images/units/dwarves/warrior-attack.png +%%DATADIR%%/images/units/dwarves/warrior-defend.png +%%DATADIR%%/images/units/dwarves/warrior.png +%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/archer+female-bow-defend.png +%%DATADIR%%/images/units/elves-wood/archer+female-bow.png +%%DATADIR%%/images/units/elves-wood/archer+female-defend.png +%%DATADIR%%/images/units/elves-wood/archer+female-die1.png +%%DATADIR%%/images/units/elves-wood/archer+female-die2.png +%%DATADIR%%/images/units/elves-wood/archer+female-die3.png +%%DATADIR%%/images/units/elves-wood/archer+female-die4.png +%%DATADIR%%/images/units/elves-wood/archer+female-melee-1.png +%%DATADIR%%/images/units/elves-wood/archer+female-melee-2.png +%%DATADIR%%/images/units/elves-wood/archer+female.png +%%DATADIR%%/images/units/elves-wood/archer-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/archer-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/archer-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/archer-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/archer-bow-defend.png +%%DATADIR%%/images/units/elves-wood/archer-bow.png +%%DATADIR%%/images/units/elves-wood/archer-defend.png +%%DATADIR%%/images/units/elves-wood/archer-die1.png +%%DATADIR%%/images/units/elves-wood/archer-die2.png +%%DATADIR%%/images/units/elves-wood/archer-die3.png +%%DATADIR%%/images/units/elves-wood/archer-die4.png +%%DATADIR%%/images/units/elves-wood/archer-melee-1.png +%%DATADIR%%/images/units/elves-wood/archer-melee-2.png +%%DATADIR%%/images/units/elves-wood/archer.png +%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/avenger+female-bow-defend.png +%%DATADIR%%/images/units/elves-wood/avenger+female-bow.png +%%DATADIR%%/images/units/elves-wood/avenger+female-defend.png +%%DATADIR%%/images/units/elves-wood/avenger+female-melee-1.png +%%DATADIR%%/images/units/elves-wood/avenger+female-melee-2.png +%%DATADIR%%/images/units/elves-wood/avenger+female.png +%%DATADIR%%/images/units/elves-wood/avenger-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/avenger-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/avenger-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/avenger-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/avenger-bow-defend.png +%%DATADIR%%/images/units/elves-wood/avenger-bow.png +%%DATADIR%%/images/units/elves-wood/avenger-defend.png +%%DATADIR%%/images/units/elves-wood/avenger-die1.png +%%DATADIR%%/images/units/elves-wood/avenger-die2.png +%%DATADIR%%/images/units/elves-wood/avenger-die3.png +%%DATADIR%%/images/units/elves-wood/avenger-die4.png +%%DATADIR%%/images/units/elves-wood/avenger-melee-1.png +%%DATADIR%%/images/units/elves-wood/avenger-melee-2.png +%%DATADIR%%/images/units/elves-wood/avenger.png +%%DATADIR%%/images/units/elves-wood/captain-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/captain-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/captain-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/captain-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/captain-bow-defend.png +%%DATADIR%%/images/units/elves-wood/captain-bow.png +%%DATADIR%%/images/units/elves-wood/captain-defend.png +%%DATADIR%%/images/units/elves-wood/captain-leading.png +%%DATADIR%%/images/units/elves-wood/captain-melee-1.png +%%DATADIR%%/images/units/elves-wood/captain-melee-2.png +%%DATADIR%%/images/units/elves-wood/captain.png +%%DATADIR%%/images/units/elves-wood/champion-attack-1.png +%%DATADIR%%/images/units/elves-wood/champion-attack-2.png +%%DATADIR%%/images/units/elves-wood/champion-attack-3.png +%%DATADIR%%/images/units/elves-wood/champion-attack-4.png +%%DATADIR%%/images/units/elves-wood/champion-attack-5.png +%%DATADIR%%/images/units/elves-wood/champion-attack-6.png +%%DATADIR%%/images/units/elves-wood/champion-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/champion-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/champion-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/champion-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/champion-bow-defend.png +%%DATADIR%%/images/units/elves-wood/champion-bow.png +%%DATADIR%%/images/units/elves-wood/champion-defend.png +%%DATADIR%%/images/units/elves-wood/champion.png +%%DATADIR%%/images/units/elves-wood/druid-attack.png +%%DATADIR%%/images/units/elves-wood/druid-defend-1.png +%%DATADIR%%/images/units/elves-wood/druid-defend-2.png +%%DATADIR%%/images/units/elves-wood/druid-magic-1.png +%%DATADIR%%/images/units/elves-wood/druid-magic-2.png +%%DATADIR%%/images/units/elves-wood/druid-magic-3.png +%%DATADIR%%/images/units/elves-wood/druid-magic-4.png +%%DATADIR%%/images/units/elves-wood/druid.png +%%DATADIR%%/images/units/elves-wood/enchantress-defend.png +%%DATADIR%%/images/units/elves-wood/enchantress-magic.png +%%DATADIR%%/images/units/elves-wood/enchantress-melee.png +%%DATADIR%%/images/units/elves-wood/enchantress.png +%%DATADIR%%/images/units/elves-wood/fighter-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/fighter-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/fighter-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/fighter-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/fighter-bow-defend.png +%%DATADIR%%/images/units/elves-wood/fighter-bow.png +%%DATADIR%%/images/units/elves-wood/fighter-defend.png +%%DATADIR%%/images/units/elves-wood/fighter-melee-1.png +%%DATADIR%%/images/units/elves-wood/fighter-melee-2.png +%%DATADIR%%/images/units/elves-wood/fighter.png +%%DATADIR%%/images/units/elves-wood/hero-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/hero-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/hero-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/hero-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/hero-bow-defend.png +%%DATADIR%%/images/units/elves-wood/hero-bow.png +%%DATADIR%%/images/units/elves-wood/hero-defend.png +%%DATADIR%%/images/units/elves-wood/hero-melee-1.png +%%DATADIR%%/images/units/elves-wood/hero-melee-2.png +%%DATADIR%%/images/units/elves-wood/hero-melee-3.png +%%DATADIR%%/images/units/elves-wood/hero-melee-4.png +%%DATADIR%%/images/units/elves-wood/hero.png +%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/marksman+female-bow-defend.png +%%DATADIR%%/images/units/elves-wood/marksman+female-bow.png +%%DATADIR%%/images/units/elves-wood/marksman+female-defend.png +%%DATADIR%%/images/units/elves-wood/marksman+female-die-1.png +%%DATADIR%%/images/units/elves-wood/marksman+female-die-2.png +%%DATADIR%%/images/units/elves-wood/marksman+female-die-3.png +%%DATADIR%%/images/units/elves-wood/marksman+female-melee-1.png +%%DATADIR%%/images/units/elves-wood/marksman+female-melee-2.png +%%DATADIR%%/images/units/elves-wood/marksman+female.png +%%DATADIR%%/images/units/elves-wood/marksman-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/marksman-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/marksman-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/marksman-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/marksman-bow-defend.png +%%DATADIR%%/images/units/elves-wood/marksman-bow.png +%%DATADIR%%/images/units/elves-wood/marksman-defend.png +%%DATADIR%%/images/units/elves-wood/marksman-die-1.png +%%DATADIR%%/images/units/elves-wood/marksman-die-2.png +%%DATADIR%%/images/units/elves-wood/marksman-die-3.png +%%DATADIR%%/images/units/elves-wood/marksman-die-4.png +%%DATADIR%%/images/units/elves-wood/marksman-die-5.png +%%DATADIR%%/images/units/elves-wood/marksman-melee-1.png +%%DATADIR%%/images/units/elves-wood/marksman-melee-2.png +%%DATADIR%%/images/units/elves-wood/marksman.png +%%DATADIR%%/images/units/elves-wood/marshal-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/marshal-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/marshal-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/marshal-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/marshal-bow-defend.png +%%DATADIR%%/images/units/elves-wood/marshal-bow.png +%%DATADIR%%/images/units/elves-wood/marshal-defend.png +%%DATADIR%%/images/units/elves-wood/marshal-leading.png +%%DATADIR%%/images/units/elves-wood/marshal-melee-1.png +%%DATADIR%%/images/units/elves-wood/marshal-melee-2.png +%%DATADIR%%/images/units/elves-wood/marshal.png +%%DATADIR%%/images/units/elves-wood/outrider-attack1.png +%%DATADIR%%/images/units/elves-wood/outrider-attack2.png +%%DATADIR%%/images/units/elves-wood/outrider-defend.png +%%DATADIR%%/images/units/elves-wood/outrider-melee-1.png +%%DATADIR%%/images/units/elves-wood/outrider-melee-2.png +%%DATADIR%%/images/units/elves-wood/outrider-moving.png +%%DATADIR%%/images/units/elves-wood/outrider.png +%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/ranger+female-bow-defend.png +%%DATADIR%%/images/units/elves-wood/ranger+female-bow.png +%%DATADIR%%/images/units/elves-wood/ranger+female-defend.png +%%DATADIR%%/images/units/elves-wood/ranger+female-melee-1.png +%%DATADIR%%/images/units/elves-wood/ranger+female-melee-2.png +%%DATADIR%%/images/units/elves-wood/ranger+female.png +%%DATADIR%%/images/units/elves-wood/ranger-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/ranger-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/ranger-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/ranger-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/ranger-bow-defend.png +%%DATADIR%%/images/units/elves-wood/ranger-bow.png +%%DATADIR%%/images/units/elves-wood/ranger-defend.png +%%DATADIR%%/images/units/elves-wood/ranger-die1.png +%%DATADIR%%/images/units/elves-wood/ranger-die2.png +%%DATADIR%%/images/units/elves-wood/ranger-die3.png +%%DATADIR%%/images/units/elves-wood/ranger-die4.png +%%DATADIR%%/images/units/elves-wood/ranger-melee-1.png +%%DATADIR%%/images/units/elves-wood/ranger-melee-2.png +%%DATADIR%%/images/units/elves-wood/ranger.png +%%DATADIR%%/images/units/elves-wood/rider-attack1.png +%%DATADIR%%/images/units/elves-wood/rider-attack2.png +%%DATADIR%%/images/units/elves-wood/rider-defend.png +%%DATADIR%%/images/units/elves-wood/rider-melee-1.png +%%DATADIR%%/images/units/elves-wood/rider-melee-2.png +%%DATADIR%%/images/units/elves-wood/rider-moving.png +%%DATADIR%%/images/units/elves-wood/rider.png +%%DATADIR%%/images/units/elves-wood/scout-attack.png +%%DATADIR%%/images/units/elves-wood/scout-attack1.png +%%DATADIR%%/images/units/elves-wood/scout-attack2.png +%%DATADIR%%/images/units/elves-wood/scout-defend.png +%%DATADIR%%/images/units/elves-wood/scout-moving.png +%%DATADIR%%/images/units/elves-wood/scout.png +%%DATADIR%%/images/units/elves-wood/shaman-attack.png +%%DATADIR%%/images/units/elves-wood/shaman-attack2.png +%%DATADIR%%/images/units/elves-wood/shaman-defend.png +%%DATADIR%%/images/units/elves-wood/shaman-heal1.png +%%DATADIR%%/images/units/elves-wood/shaman-heal2.png +%%DATADIR%%/images/units/elves-wood/shaman-heal3.png +%%DATADIR%%/images/units/elves-wood/shaman-heal4.png +%%DATADIR%%/images/units/elves-wood/shaman-heal5.png +%%DATADIR%%/images/units/elves-wood/shaman-heal6.png +%%DATADIR%%/images/units/elves-wood/shaman-heal7.png +%%DATADIR%%/images/units/elves-wood/shaman-heal8.png +%%DATADIR%%/images/units/elves-wood/shaman-heal9.png +%%DATADIR%%/images/units/elves-wood/shaman.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-defend.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-defend.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-melee-1.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female-melee-2.png +%%DATADIR%%/images/units/elves-wood/sharpshooter+female.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack1.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack2.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack3.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack4.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-defend.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-bow.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-defend.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-die1.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-die2.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-die3.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-die4.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-melee-1.png +%%DATADIR%%/images/units/elves-wood/sharpshooter-melee-2.png +%%DATADIR%%/images/units/elves-wood/sharpshooter.png +%%DATADIR%%/images/units/elves-wood/shyde-defend.png +%%DATADIR%%/images/units/elves-wood/shyde-ftouch-attack1.png +%%DATADIR%%/images/units/elves-wood/shyde-ftouch-attack2.png +%%DATADIR%%/images/units/elves-wood/shyde-ftouch-attack3.png +%%DATADIR%%/images/units/elves-wood/shyde-healing1.png +%%DATADIR%%/images/units/elves-wood/shyde-healing10.png +%%DATADIR%%/images/units/elves-wood/shyde-healing11.png +%%DATADIR%%/images/units/elves-wood/shyde-healing12.png +%%DATADIR%%/images/units/elves-wood/shyde-healing2.png +%%DATADIR%%/images/units/elves-wood/shyde-healing3.png +%%DATADIR%%/images/units/elves-wood/shyde-healing4.png +%%DATADIR%%/images/units/elves-wood/shyde-healing5.png +%%DATADIR%%/images/units/elves-wood/shyde-healing6.png +%%DATADIR%%/images/units/elves-wood/shyde-healing7.png +%%DATADIR%%/images/units/elves-wood/shyde-healing8.png +%%DATADIR%%/images/units/elves-wood/shyde-healing9.png +%%DATADIR%%/images/units/elves-wood/shyde.png +%%DATADIR%%/images/units/elves-wood/sorceress-defend.png +%%DATADIR%%/images/units/elves-wood/sorceress-magic.png +%%DATADIR%%/images/units/elves-wood/sorceress-melee.png +%%DATADIR%%/images/units/elves-wood/sorceress.png +%%DATADIR%%/images/units/elves-wood/sylph-defend.png +%%DATADIR%%/images/units/elves-wood/sylph-magic.png +%%DATADIR%%/images/units/elves-wood/sylph-melee.png +%%DATADIR%%/images/units/elves-wood/sylph.png +%%DATADIR%%/images/units/goblins/direwolver-attack.png +%%DATADIR%%/images/units/goblins/direwolver-defend.png +%%DATADIR%%/images/units/goblins/direwolver-moving.png +%%DATADIR%%/images/units/goblins/direwolver.png +%%DATADIR%%/images/units/goblins/impaler-attack-n.png +%%DATADIR%%/images/units/goblins/impaler-attack-ne.png +%%DATADIR%%/images/units/goblins/impaler-attack-ranged-s.png +%%DATADIR%%/images/units/goblins/impaler-attack-s.png +%%DATADIR%%/images/units/goblins/impaler-attack-se-1.png +%%DATADIR%%/images/units/goblins/impaler-attack-se-2.png +%%DATADIR%%/images/units/goblins/impaler-death-1.png +%%DATADIR%%/images/units/goblins/impaler-death-2.png +%%DATADIR%%/images/units/goblins/impaler-death-3.png +%%DATADIR%%/images/units/goblins/impaler-death-4.png +%%DATADIR%%/images/units/goblins/impaler-death-5.png +%%DATADIR%%/images/units/goblins/impaler-death-6.png +%%DATADIR%%/images/units/goblins/impaler-death-7.png +%%DATADIR%%/images/units/goblins/impaler-death-8.png +%%DATADIR%%/images/units/goblins/impaler-death-9.png +%%DATADIR%%/images/units/goblins/impaler-defend.png +%%DATADIR%%/images/units/goblins/impaler.png +%%DATADIR%%/images/units/goblins/knight-attack.png +%%DATADIR%%/images/units/goblins/knight-defend.png +%%DATADIR%%/images/units/goblins/knight-moving.png +%%DATADIR%%/images/units/goblins/knight.png +%%DATADIR%%/images/units/goblins/pillager-attack.png +%%DATADIR%%/images/units/goblins/pillager-attack2.png +%%DATADIR%%/images/units/goblins/pillager-defend.png +%%DATADIR%%/images/units/goblins/pillager-moving.png +%%DATADIR%%/images/units/goblins/pillager.png +%%DATADIR%%/images/units/goblins/rouser-attack-n.png +%%DATADIR%%/images/units/goblins/rouser-attack-ne.png +%%DATADIR%%/images/units/goblins/rouser-attack-s.png +%%DATADIR%%/images/units/goblins/rouser-attack-se.png +%%DATADIR%%/images/units/goblins/rouser-attack1.png +%%DATADIR%%/images/units/goblins/rouser-attack3.png +%%DATADIR%%/images/units/goblins/rouser-attack4.png +%%DATADIR%%/images/units/goblins/rouser-defend.png +%%DATADIR%%/images/units/goblins/rouser-leading.png +%%DATADIR%%/images/units/goblins/rouser.png +%%DATADIR%%/images/units/goblins/spearman-attack-n1.png +%%DATADIR%%/images/units/goblins/spearman-attack-n2.png +%%DATADIR%%/images/units/goblins/spearman-attack-ne1.png +%%DATADIR%%/images/units/goblins/spearman-attack-ne2.png +%%DATADIR%%/images/units/goblins/spearman-attack-s1.png +%%DATADIR%%/images/units/goblins/spearman-attack-s2.png +%%DATADIR%%/images/units/goblins/spearman-attack-se1.png +%%DATADIR%%/images/units/goblins/spearman-attack-se2.png +%%DATADIR%%/images/units/goblins/spearman-defend.png +%%DATADIR%%/images/units/goblins/spearman.png +%%DATADIR%%/images/units/goblins/wolf-rider-attack.png +%%DATADIR%%/images/units/goblins/wolf-rider-defend.png +%%DATADIR%%/images/units/goblins/wolf-rider-moving.png +%%DATADIR%%/images/units/goblins/wolf-rider.png +%%DATADIR%%/images/units/human-loyalists/bowman-attack-sword.png +%%DATADIR%%/images/units/human-loyalists/bowman-defend.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-1.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-2.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-3.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-4.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-5.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-6.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-7.png +%%DATADIR%%/images/units/human-loyalists/bowman-ranged-8.png +%%DATADIR%%/images/units/human-loyalists/bowman.png +%%DATADIR%%/images/units/human-loyalists/cavalier-attack.png +%%DATADIR%%/images/units/human-loyalists/cavalier-defend.png +%%DATADIR%%/images/units/human-loyalists/cavalier-moving.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-1.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-2.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-3.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-4.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-5.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-6.png +%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-7.png +%%DATADIR%%/images/units/human-loyalists/cavalier.png +%%DATADIR%%/images/units/human-loyalists/cavalryman-attack.png +%%DATADIR%%/images/units/human-loyalists/cavalryman-defend.png +%%DATADIR%%/images/units/human-loyalists/cavalryman-die-1.png +%%DATADIR%%/images/units/human-loyalists/cavalryman-die-2.png +%%DATADIR%%/images/units/human-loyalists/cavalryman-moving.png +%%DATADIR%%/images/units/human-loyalists/cavalryman.png +%%DATADIR%%/images/units/human-loyalists/dragoon-attack.png +%%DATADIR%%/images/units/human-loyalists/dragoon-defend.png +%%DATADIR%%/images/units/human-loyalists/dragoon-moving.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-1.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-2.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-3.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-4.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-5.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-6.png +%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-7.png +%%DATADIR%%/images/units/human-loyalists/dragoon.png +%%DATADIR%%/images/units/human-loyalists/duelist-attack.png +%%DATADIR%%/images/units/human-loyalists/duelist-defend.png +%%DATADIR%%/images/units/human-loyalists/duelist-die1.png +%%DATADIR%%/images/units/human-loyalists/duelist-die2.png +%%DATADIR%%/images/units/human-loyalists/duelist-die3.png +%%DATADIR%%/images/units/human-loyalists/duelist-die4.png +%%DATADIR%%/images/units/human-loyalists/duelist-die5.png +%%DATADIR%%/images/units/human-loyalists/duelist-die6.png +%%DATADIR%%/images/units/human-loyalists/duelist-die7.png +%%DATADIR%%/images/units/human-loyalists/duelist-die8.png +%%DATADIR%%/images/units/human-loyalists/duelist-ranged.png +%%DATADIR%%/images/units/human-loyalists/duelist-stand2.png +%%DATADIR%%/images/units/human-loyalists/duelist.png +%%DATADIR%%/images/units/human-loyalists/fencer-attack.png +%%DATADIR%%/images/units/human-loyalists/fencer-defend-1-1.png +%%DATADIR%%/images/units/human-loyalists/fencer-defend-1-2.png +%%DATADIR%%/images/units/human-loyalists/fencer-defend.png +%%DATADIR%%/images/units/human-loyalists/fencer-die1.png +%%DATADIR%%/images/units/human-loyalists/fencer-die2.png +%%DATADIR%%/images/units/human-loyalists/fencer-die3.png +%%DATADIR%%/images/units/human-loyalists/fencer-die4.png +%%DATADIR%%/images/units/human-loyalists/fencer-die5.png +%%DATADIR%%/images/units/human-loyalists/fencer.png +%%DATADIR%%/images/units/human-loyalists/general-attack-crossbow.png +%%DATADIR%%/images/units/human-loyalists/general-attack-sword1.png +%%DATADIR%%/images/units/human-loyalists/general-attack-sword2.png +%%DATADIR%%/images/units/human-loyalists/general-defend-crossbow.png +%%DATADIR%%/images/units/human-loyalists/general-defend.png +%%DATADIR%%/images/units/human-loyalists/general-leading.png +%%DATADIR%%/images/units/human-loyalists/general.png +%%DATADIR%%/images/units/human-loyalists/grand-knight-attack-sword.png +%%DATADIR%%/images/units/human-loyalists/grand-knight-defend.png +%%DATADIR%%/images/units/human-loyalists/grand-knight-moving.png +%%DATADIR%%/images/units/human-loyalists/grand-knight.png +%%DATADIR%%/images/units/human-loyalists/halberdier-defend.png +%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-n.png +%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-ne.png +%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-s.png +%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-se.png +%%DATADIR%%/images/units/human-loyalists/halberdier-slash-se-1.png +%%DATADIR%%/images/units/human-loyalists/halberdier-slash-se-2.png +%%DATADIR%%/images/units/human-loyalists/halberdier.png +%%DATADIR%%/images/units/human-loyalists/heavyinfantry-attack-1.png +%%DATADIR%%/images/units/human-loyalists/heavyinfantry-attack-2.png +%%DATADIR%%/images/units/human-loyalists/heavyinfantry-defend-1.png +%%DATADIR%%/images/units/human-loyalists/heavyinfantry-defend-2.png +%%DATADIR%%/images/units/human-loyalists/heavyinfantry.png +%%DATADIR%%/images/units/human-loyalists/horseman-attack.png +%%DATADIR%%/images/units/human-loyalists/horseman-defend.png +%%DATADIR%%/images/units/human-loyalists/horseman-moving.png +%%DATADIR%%/images/units/human-loyalists/horseman.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-melee-1.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-melee-2.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-melee-3.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-1.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-2.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-3.png +%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-4.png +%%DATADIR%%/images/units/human-loyalists/javelineer-defend.png +%%DATADIR%%/images/units/human-loyalists/javelineer.png +%%DATADIR%%/images/units/human-loyalists/knight-attack.png +%%DATADIR%%/images/units/human-loyalists/knight-defend.png +%%DATADIR%%/images/units/human-loyalists/knight-moving.png +%%DATADIR%%/images/units/human-loyalists/knight.png +%%DATADIR%%/images/units/human-loyalists/lancer-attack.png +%%DATADIR%%/images/units/human-loyalists/lancer-defend.png +%%DATADIR%%/images/units/human-loyalists/lancer-moving.png +%%DATADIR%%/images/units/human-loyalists/lancer.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-crossbow.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-sword-1.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-sword-2.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-sword-3.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-defend.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-1.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-2.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-3.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-4.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-5.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-6.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-7.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-8.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-die-9.png +%%DATADIR%%/images/units/human-loyalists/lieutenant-leading.png +%%DATADIR%%/images/units/human-loyalists/lieutenant.png +%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack1.png +%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack2.png +%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack3.png +%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack4.png +%%DATADIR%%/images/units/human-loyalists/longbowman-bow-defend.png +%%DATADIR%%/images/units/human-loyalists/longbowman-bow.png +%%DATADIR%%/images/units/human-loyalists/longbowman-defend.png +%%DATADIR%%/images/units/human-loyalists/longbowman-melee-1.png +%%DATADIR%%/images/units/human-loyalists/longbowman-melee-2.png +%%DATADIR%%/images/units/human-loyalists/longbowman.png +%%DATADIR%%/images/units/human-loyalists/marshal-attack-crossbow.png +%%DATADIR%%/images/units/human-loyalists/marshal-attack-sword1.png +%%DATADIR%%/images/units/human-loyalists/marshal-attack-sword2.png +%%DATADIR%%/images/units/human-loyalists/marshal-defend-crossbow.png +%%DATADIR%%/images/units/human-loyalists/marshal-defend.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-1.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-10.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-2.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-3.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-4.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-5.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-6.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-7.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-8.png +%%DATADIR%%/images/units/human-loyalists/marshal-die-9.png +%%DATADIR%%/images/units/human-loyalists/marshal-leading.png +%%DATADIR%%/images/units/human-loyalists/marshal.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-1-1.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-1-2.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-1-3.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-2-1.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-2-2.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-2-3.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-3-3.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-recover-1.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms-recover-2.png +%%DATADIR%%/images/units/human-loyalists/master-at-arms.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack1.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack2.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack3.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack4.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-defend.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-bow.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-melee-1.png +%%DATADIR%%/images/units/human-loyalists/masterbowman-melee-2.png +%%DATADIR%%/images/units/human-loyalists/masterbowman.png +%%DATADIR%%/images/units/human-loyalists/paladin-attack-sword.png +%%DATADIR%%/images/units/human-loyalists/paladin-defend.png +%%DATADIR%%/images/units/human-loyalists/paladin-healing.png +%%DATADIR%%/images/units/human-loyalists/paladin-moving.png +%%DATADIR%%/images/units/human-loyalists/paladin.png +%%DATADIR%%/images/units/human-loyalists/peasant-attack.png +%%DATADIR%%/images/units/human-loyalists/peasant-attack2.png +%%DATADIR%%/images/units/human-loyalists/peasant-defend.png +%%DATADIR%%/images/units/human-loyalists/peasant-ranged.png +%%DATADIR%%/images/units/human-loyalists/peasant.png +%%DATADIR%%/images/units/human-loyalists/pikeman-attack-n.png +%%DATADIR%%/images/units/human-loyalists/pikeman-attack-ne.png +%%DATADIR%%/images/units/human-loyalists/pikeman-attack-s.png +%%DATADIR%%/images/units/human-loyalists/pikeman-attack-se.png +%%DATADIR%%/images/units/human-loyalists/pikeman-defend.png +%%DATADIR%%/images/units/human-loyalists/pikeman-die-1.png +%%DATADIR%%/images/units/human-loyalists/pikeman-die-2.png +%%DATADIR%%/images/units/human-loyalists/pikeman-die-3.png +%%DATADIR%%/images/units/human-loyalists/pikeman-die-4.png +%%DATADIR%%/images/units/human-loyalists/pikeman-die-5.png +%%DATADIR%%/images/units/human-loyalists/pikeman.png +%%DATADIR%%/images/units/human-loyalists/royalguard-attack.png +%%DATADIR%%/images/units/human-loyalists/royalguard-attack2.png +%%DATADIR%%/images/units/human-loyalists/royalguard-defend.png +%%DATADIR%%/images/units/human-loyalists/royalguard.png +%%DATADIR%%/images/units/human-loyalists/sergeant-attack-crossbow.png +%%DATADIR%%/images/units/human-loyalists/sergeant-attack-sword-1.png +%%DATADIR%%/images/units/human-loyalists/sergeant-attack-sword-2.png +%%DATADIR%%/images/units/human-loyalists/sergeant-attack-sword-3.png +%%DATADIR%%/images/units/human-loyalists/sergeant-defend.png +%%DATADIR%%/images/units/human-loyalists/sergeant-leading.png +%%DATADIR%%/images/units/human-loyalists/sergeant.png +%%DATADIR%%/images/units/human-loyalists/shocktrooper-attack-1.png +%%DATADIR%%/images/units/human-loyalists/shocktrooper-attack-2.png +%%DATADIR%%/images/units/human-loyalists/shocktrooper-defend-1.png +%%DATADIR%%/images/units/human-loyalists/shocktrooper-defend-2.png +%%DATADIR%%/images/units/human-loyalists/shocktrooper.png +%%DATADIR%%/images/units/human-loyalists/siegetrooper-attack-1.png +%%DATADIR%%/images/units/human-loyalists/siegetrooper-attack-2.png +%%DATADIR%%/images/units/human-loyalists/siegetrooper-defend-1.png +%%DATADIR%%/images/units/human-loyalists/siegetrooper-defend-2.png +%%DATADIR%%/images/units/human-loyalists/siegetrooper.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack-n.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack-ne.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack-ranged.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack-ranged2.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack-s-1.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack-s-2.png +%%DATADIR%%/images/units/human-loyalists/spearman-attack.png +%%DATADIR%%/images/units/human-loyalists/spearman-death1.png +%%DATADIR%%/images/units/human-loyalists/spearman-death2.png +%%DATADIR%%/images/units/human-loyalists/spearman-death3.png +%%DATADIR%%/images/units/human-loyalists/spearman-death4.png +%%DATADIR%%/images/units/human-loyalists/spearman-defend-2.png +%%DATADIR%%/images/units/human-loyalists/spearman-defend.png +%%DATADIR%%/images/units/human-loyalists/spearman.png +%%DATADIR%%/images/units/human-loyalists/swordsman-attack-1.png +%%DATADIR%%/images/units/human-loyalists/swordsman-attack-2.png +%%DATADIR%%/images/units/human-loyalists/swordsman-attack-3.png +%%DATADIR%%/images/units/human-loyalists/swordsman-defend.png +%%DATADIR%%/images/units/human-loyalists/swordsman.png +%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-magic1.png +%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-magic2.png +%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-staff1.png +%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-staff2.png +%%DATADIR%%/images/units/human-magi/arch-mage+female-defend.png +%%DATADIR%%/images/units/human-magi/arch-mage+female.png +%%DATADIR%%/images/units/human-magi/arch-mage-attack-magic1.png +%%DATADIR%%/images/units/human-magi/arch-mage-attack-magic2.png +%%DATADIR%%/images/units/human-magi/arch-mage-attack-staff1.png +%%DATADIR%%/images/units/human-magi/arch-mage-attack-staff2.png +%%DATADIR%%/images/units/human-magi/arch-mage-defend.png +%%DATADIR%%/images/units/human-magi/arch-mage.png +%%DATADIR%%/images/units/human-magi/great-mage+female-attack-magic1.png +%%DATADIR%%/images/units/human-magi/great-mage+female-attack-magic2.png +%%DATADIR%%/images/units/human-magi/great-mage+female-attack-staff1.png +%%DATADIR%%/images/units/human-magi/great-mage+female-attack-staff2.png +%%DATADIR%%/images/units/human-magi/great-mage+female-defend.png +%%DATADIR%%/images/units/human-magi/great-mage+female.png +%%DATADIR%%/images/units/human-magi/great-mage-attack-magic1.png +%%DATADIR%%/images/units/human-magi/great-mage-attack-magic2.png +%%DATADIR%%/images/units/human-magi/great-mage-attack-staff1.png +%%DATADIR%%/images/units/human-magi/great-mage-attack-staff2.png +%%DATADIR%%/images/units/human-magi/great-mage-defend.png +%%DATADIR%%/images/units/human-magi/great-mage.png +%%DATADIR%%/images/units/human-magi/mage+female-attack-magic1.png +%%DATADIR%%/images/units/human-magi/mage+female-attack-magic2.png +%%DATADIR%%/images/units/human-magi/mage+female-attack-staff1.png +%%DATADIR%%/images/units/human-magi/mage+female-attack-staff2.png +%%DATADIR%%/images/units/human-magi/mage+female-defend.png +%%DATADIR%%/images/units/human-magi/mage+female-die-1.png +%%DATADIR%%/images/units/human-magi/mage+female-die-2.png +%%DATADIR%%/images/units/human-magi/mage+female-die-3.png +%%DATADIR%%/images/units/human-magi/mage+female-die-4.png +%%DATADIR%%/images/units/human-magi/mage+female.png +%%DATADIR%%/images/units/human-magi/mage-attack-magic1.png +%%DATADIR%%/images/units/human-magi/mage-attack-magic2.png +%%DATADIR%%/images/units/human-magi/mage-attack-staff1.png +%%DATADIR%%/images/units/human-magi/mage-attack-staff2.png +%%DATADIR%%/images/units/human-magi/mage-defend.png +%%DATADIR%%/images/units/human-magi/mage-die-1.png +%%DATADIR%%/images/units/human-magi/mage-die-2.png +%%DATADIR%%/images/units/human-magi/mage-die-3.png +%%DATADIR%%/images/units/human-magi/mage-die-4.png +%%DATADIR%%/images/units/human-magi/mage.png +%%DATADIR%%/images/units/human-magi/red-mage+female-attack-magic1.png +%%DATADIR%%/images/units/human-magi/red-mage+female-attack-magic2.png +%%DATADIR%%/images/units/human-magi/red-mage+female-attack-staff1.png +%%DATADIR%%/images/units/human-magi/red-mage+female-attack-staff2.png +%%DATADIR%%/images/units/human-magi/red-mage+female-defend.png +%%DATADIR%%/images/units/human-magi/red-mage+female-die-1.png +%%DATADIR%%/images/units/human-magi/red-mage+female-die-2.png +%%DATADIR%%/images/units/human-magi/red-mage+female-die-3.png +%%DATADIR%%/images/units/human-magi/red-mage+female-die-4.png +%%DATADIR%%/images/units/human-magi/red-mage+female.png +%%DATADIR%%/images/units/human-magi/red-mage-attack-magic1.png +%%DATADIR%%/images/units/human-magi/red-mage-attack-magic2.png +%%DATADIR%%/images/units/human-magi/red-mage-attack-staff1.png +%%DATADIR%%/images/units/human-magi/red-mage-attack-staff2.png +%%DATADIR%%/images/units/human-magi/red-mage-defend.png +%%DATADIR%%/images/units/human-magi/red-mage-die-1.png +%%DATADIR%%/images/units/human-magi/red-mage-die-2.png +%%DATADIR%%/images/units/human-magi/red-mage-die-3.png +%%DATADIR%%/images/units/human-magi/red-mage-die-4.png +%%DATADIR%%/images/units/human-magi/red-mage.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-magic1.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-magic2.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-staff1.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-staff2.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-defend.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport1.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport10.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport2.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport3.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport4.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport5.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport6.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport7.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport8.png +%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport9.png +%%DATADIR%%/images/units/human-magi/silver-mage+female.png +%%DATADIR%%/images/units/human-magi/silver-mage-attack-magic1.png +%%DATADIR%%/images/units/human-magi/silver-mage-attack-magic2.png +%%DATADIR%%/images/units/human-magi/silver-mage-attack-staff1.png +%%DATADIR%%/images/units/human-magi/silver-mage-attack-staff2.png +%%DATADIR%%/images/units/human-magi/silver-mage-defend.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport1.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport10.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport2.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport3.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport4.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport5.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport6.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport7.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport8.png +%%DATADIR%%/images/units/human-magi/silver-mage-teleport9.png +%%DATADIR%%/images/units/human-magi/silver-mage.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-1.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-2.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-3.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-4.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-magic-1.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-magic-2.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-magic-3.png +%%DATADIR%%/images/units/human-magi/white-cleric+female-defend.png +%%DATADIR%%/images/units/human-magi/white-cleric+female.png +%%DATADIR%%/images/units/human-magi/white-cleric-defend.png +%%DATADIR%%/images/units/human-magi/white-cleric-mace-1.png +%%DATADIR%%/images/units/human-magi/white-cleric-mace-2.png +%%DATADIR%%/images/units/human-magi/white-cleric-mace-3.png +%%DATADIR%%/images/units/human-magi/white-cleric-mace-4.png +%%DATADIR%%/images/units/human-magi/white-cleric-magic-1.png +%%DATADIR%%/images/units/human-magi/white-cleric-magic-2.png +%%DATADIR%%/images/units/human-magi/white-cleric-magic-3.png +%%DATADIR%%/images/units/human-magi/white-cleric.png +%%DATADIR%%/images/units/human-magi/white-mage+female-defend.png +%%DATADIR%%/images/units/human-magi/white-mage+female-die-1.png +%%DATADIR%%/images/units/human-magi/white-mage+female-die-2.png +%%DATADIR%%/images/units/human-magi/white-mage+female-die-3.png +%%DATADIR%%/images/units/human-magi/white-mage+female-die-4.png +%%DATADIR%%/images/units/human-magi/white-mage+female-magic-1.png +%%DATADIR%%/images/units/human-magi/white-mage+female-magic-2.png +%%DATADIR%%/images/units/human-magi/white-mage+female-magic-3.png +%%DATADIR%%/images/units/human-magi/white-mage+female-melee-1.png +%%DATADIR%%/images/units/human-magi/white-mage+female-melee-2.png +%%DATADIR%%/images/units/human-magi/white-mage+female-melee-3.png +%%DATADIR%%/images/units/human-magi/white-mage+female-melee-4.png +%%DATADIR%%/images/units/human-magi/white-mage+female-melee-5.png +%%DATADIR%%/images/units/human-magi/white-mage+female-melee-6.png +%%DATADIR%%/images/units/human-magi/white-mage+female.png +%%DATADIR%%/images/units/human-magi/white-mage-defend.png +%%DATADIR%%/images/units/human-magi/white-mage-die-1.png +%%DATADIR%%/images/units/human-magi/white-mage-die-2.png +%%DATADIR%%/images/units/human-magi/white-mage-die-3.png +%%DATADIR%%/images/units/human-magi/white-mage-die-4.png +%%DATADIR%%/images/units/human-magi/white-mage-magic-1.png +%%DATADIR%%/images/units/human-magi/white-mage-magic-2.png +%%DATADIR%%/images/units/human-magi/white-mage-magic-3.png +%%DATADIR%%/images/units/human-magi/white-mage-melee-1.png +%%DATADIR%%/images/units/human-magi/white-mage-melee-2.png +%%DATADIR%%/images/units/human-magi/white-mage-melee-3.png +%%DATADIR%%/images/units/human-magi/white-mage-melee-4.png +%%DATADIR%%/images/units/human-magi/white-mage-melee-5.png +%%DATADIR%%/images/units/human-magi/white-mage-melee-6.png +%%DATADIR%%/images/units/human-magi/white-mage.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-defend-1.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-defend-2.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-1-1.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-1-2.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-2-1.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-2-2.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-throwknife1.png +%%DATADIR%%/images/units/human-outlaws/assassin+female-throwknife2.png +%%DATADIR%%/images/units/human-outlaws/assassin+female.png +%%DATADIR%%/images/units/human-outlaws/assassin-defend-1.png +%%DATADIR%%/images/units/human-outlaws/assassin-defend-2.png +%%DATADIR%%/images/units/human-outlaws/assassin-melee-1-1.png +%%DATADIR%%/images/units/human-outlaws/assassin-melee-1-2.png +%%DATADIR%%/images/units/human-outlaws/assassin-melee-2-1.png +%%DATADIR%%/images/units/human-outlaws/assassin-melee-2-2.png +%%DATADIR%%/images/units/human-outlaws/assassin-throwknife1.png +%%DATADIR%%/images/units/human-outlaws/assassin-throwknife2.png +%%DATADIR%%/images/units/human-outlaws/assassin.png +%%DATADIR%%/images/units/human-outlaws/bandit-defend.png +%%DATADIR%%/images/units/human-outlaws/bandit-die-1.png +%%DATADIR%%/images/units/human-outlaws/bandit-die-2.png +%%DATADIR%%/images/units/human-outlaws/bandit-melee-1.png +%%DATADIR%%/images/units/human-outlaws/bandit-melee-2.png +%%DATADIR%%/images/units/human-outlaws/bandit-melee-3.png +%%DATADIR%%/images/units/human-outlaws/bandit.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-attack1.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-attack2.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-defend.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-1.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-2.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-3.png +%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-4.png +%%DATADIR%%/images/units/human-outlaws/footpad+female.png +%%DATADIR%%/images/units/human-outlaws/footpad-attack1.png +%%DATADIR%%/images/units/human-outlaws/footpad-attack2.png +%%DATADIR%%/images/units/human-outlaws/footpad-defend.png +%%DATADIR%%/images/units/human-outlaws/footpad-melee-1.png +%%DATADIR%%/images/units/human-outlaws/footpad-melee-2.png +%%DATADIR%%/images/units/human-outlaws/footpad-melee-3.png +%%DATADIR%%/images/units/human-outlaws/footpad-melee-4.png +%%DATADIR%%/images/units/human-outlaws/footpad.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female-attack1.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female-attack2.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female-defend.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female-melee-1.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female-melee-2.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female-melee-3.png +%%DATADIR%%/images/units/human-outlaws/outlaw+female.png +%%DATADIR%%/images/units/human-outlaws/outlaw-attack1.png +%%DATADIR%%/images/units/human-outlaws/outlaw-attack2.png +%%DATADIR%%/images/units/human-outlaws/outlaw-defend.png +%%DATADIR%%/images/units/human-outlaws/outlaw-melee-1.png +%%DATADIR%%/images/units/human-outlaws/outlaw-melee-2.png +%%DATADIR%%/images/units/human-outlaws/outlaw-melee-3.png +%%DATADIR%%/images/units/human-outlaws/outlaw.png +%%DATADIR%%/images/units/human-outlaws/poacher-attack.png +%%DATADIR%%/images/units/human-outlaws/poacher-attack1.png +%%DATADIR%%/images/units/human-outlaws/poacher-attack2.png +%%DATADIR%%/images/units/human-outlaws/poacher-attack3.png +%%DATADIR%%/images/units/human-outlaws/poacher-bow-defend.png +%%DATADIR%%/images/units/human-outlaws/poacher-defend.png +%%DATADIR%%/images/units/human-outlaws/poacher.png +%%DATADIR%%/images/units/human-outlaws/rogue+female-attack.png +%%DATADIR%%/images/units/human-outlaws/rogue+female-defend.png +%%DATADIR%%/images/units/human-outlaws/rogue+female-ranged.png +%%DATADIR%%/images/units/human-outlaws/rogue+female.png +%%DATADIR%%/images/units/human-outlaws/rogue-attack.png +%%DATADIR%%/images/units/human-outlaws/rogue-defend.png +%%DATADIR%%/images/units/human-outlaws/rogue-ranged.png +%%DATADIR%%/images/units/human-outlaws/rogue.png +%%DATADIR%%/images/units/human-outlaws/thief+female-attack.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend-1-1.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend-1-2.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend-2-1.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend-2-2.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend-3-1.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend-3-2.png +%%DATADIR%%/images/units/human-outlaws/thief+female-defend.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-1.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-2.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-3.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-4.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-5.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-6.png +%%DATADIR%%/images/units/human-outlaws/thief+female-die-7.png +%%DATADIR%%/images/units/human-outlaws/thief+female.png +%%DATADIR%%/images/units/human-outlaws/thief-attack.png +%%DATADIR%%/images/units/human-outlaws/thief-defend-1-1.png +%%DATADIR%%/images/units/human-outlaws/thief-defend-1-2.png +%%DATADIR%%/images/units/human-outlaws/thief-defend-2-1.png +%%DATADIR%%/images/units/human-outlaws/thief-defend-2-2.png +%%DATADIR%%/images/units/human-outlaws/thief-defend-3-1.png +%%DATADIR%%/images/units/human-outlaws/thief-defend-3-2.png +%%DATADIR%%/images/units/human-outlaws/thief-defend.png +%%DATADIR%%/images/units/human-outlaws/thief-die-1.png +%%DATADIR%%/images/units/human-outlaws/thief-die-2.png +%%DATADIR%%/images/units/human-outlaws/thief-die-3.png +%%DATADIR%%/images/units/human-outlaws/thief-die-4.png +%%DATADIR%%/images/units/human-outlaws/thief-die-5.png +%%DATADIR%%/images/units/human-outlaws/thief-die-6.png +%%DATADIR%%/images/units/human-outlaws/thief-die-7.png +%%DATADIR%%/images/units/human-outlaws/thief.png +%%DATADIR%%/images/units/human-outlaws/thug-attack.png +%%DATADIR%%/images/units/human-outlaws/thug-defend.png +%%DATADIR%%/images/units/human-outlaws/thug.png +%%DATADIR%%/images/units/human-outlaws/trapper-attack-melee-2.png +%%DATADIR%%/images/units/human-outlaws/trapper-attack-melee.png +%%DATADIR%%/images/units/human-outlaws/trapper-attack1.png +%%DATADIR%%/images/units/human-outlaws/trapper-attack2.png +%%DATADIR%%/images/units/human-outlaws/trapper-attack3.png +%%DATADIR%%/images/units/human-outlaws/trapper-bow-defend.png +%%DATADIR%%/images/units/human-outlaws/trapper-defend.png +%%DATADIR%%/images/units/human-outlaws/trapper.png +%%DATADIR%%/images/units/merfolk/diviner-defend.png +%%DATADIR%%/images/units/merfolk/diviner-magic1.png +%%DATADIR%%/images/units/merfolk/diviner-magic2.png +%%DATADIR%%/images/units/merfolk/diviner-magic3.png +%%DATADIR%%/images/units/merfolk/diviner-magic4.png +%%DATADIR%%/images/units/merfolk/diviner-magic5.png +%%DATADIR%%/images/units/merfolk/diviner-magic6.png +%%DATADIR%%/images/units/merfolk/diviner-staff-attack.png +%%DATADIR%%/images/units/merfolk/diviner.png +%%DATADIR%%/images/units/merfolk/enchantress-defend.png +%%DATADIR%%/images/units/merfolk/enchantress-staff-attack.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack1.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack2.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack3.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack4.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack5.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack6.png +%%DATADIR%%/images/units/merfolk/enchantress-water-attack7.png +%%DATADIR%%/images/units/merfolk/enchantress.png +%%DATADIR%%/images/units/merfolk/entangler.png +%%DATADIR%%/images/units/merfolk/fighter-attack.png +%%DATADIR%%/images/units/merfolk/fighter-defend.png +%%DATADIR%%/images/units/merfolk/fighter.png +%%DATADIR%%/images/units/merfolk/hoplite-attack.png +%%DATADIR%%/images/units/merfolk/hoplite-defend.png +%%DATADIR%%/images/units/merfolk/hoplite.png +%%DATADIR%%/images/units/merfolk/hunter-attack-n.png +%%DATADIR%%/images/units/merfolk/hunter-attack-ne.png +%%DATADIR%%/images/units/merfolk/hunter-attack-ranged.png +%%DATADIR%%/images/units/merfolk/hunter-attack-s.png +%%DATADIR%%/images/units/merfolk/hunter-attack-se.png +%%DATADIR%%/images/units/merfolk/hunter-defend.png +%%DATADIR%%/images/units/merfolk/hunter.png +%%DATADIR%%/images/units/merfolk/initiate-defend.png +%%DATADIR%%/images/units/merfolk/initiate-staff-attack.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack1.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack2.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack3.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack4.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack5.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack6.png +%%DATADIR%%/images/units/merfolk/initiate-water-attack7.png +%%DATADIR%%/images/units/merfolk/initiate.png +%%DATADIR%%/images/units/merfolk/javelineer-attack-n.png +%%DATADIR%%/images/units/merfolk/javelineer-attack-ne.png +%%DATADIR%%/images/units/merfolk/javelineer-attack-ranged.png +%%DATADIR%%/images/units/merfolk/javelineer-attack-s.png +%%DATADIR%%/images/units/merfolk/javelineer-attack-se.png +%%DATADIR%%/images/units/merfolk/javelineer-defend.png +%%DATADIR%%/images/units/merfolk/javelineer.png +%%DATADIR%%/images/units/merfolk/king-attack.png +%%DATADIR%%/images/units/merfolk/king-defend.png +%%DATADIR%%/images/units/merfolk/king.png +%%DATADIR%%/images/units/merfolk/netcaster.png +%%DATADIR%%/images/units/merfolk/priestess-defend.png +%%DATADIR%%/images/units/merfolk/priestess-magic1.png +%%DATADIR%%/images/units/merfolk/priestess-magic2.png +%%DATADIR%%/images/units/merfolk/priestess-magic3.png +%%DATADIR%%/images/units/merfolk/priestess-magic4.png +%%DATADIR%%/images/units/merfolk/priestess-magic5.png +%%DATADIR%%/images/units/merfolk/priestess-magic6.png +%%DATADIR%%/images/units/merfolk/priestess-staff-attack.png +%%DATADIR%%/images/units/merfolk/priestess.png +%%DATADIR%%/images/units/merfolk/siren-defend.png +%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack1.png +%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack2.png +%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack3.png +%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack4.png +%%DATADIR%%/images/units/merfolk/siren-water-attack1.png +%%DATADIR%%/images/units/merfolk/siren-water-attack2.png +%%DATADIR%%/images/units/merfolk/siren-water-attack3.png +%%DATADIR%%/images/units/merfolk/siren-water-attack4.png +%%DATADIR%%/images/units/merfolk/siren-water-attack5.png +%%DATADIR%%/images/units/merfolk/siren-water-attack6.png +%%DATADIR%%/images/units/merfolk/siren-water-attack7.png +%%DATADIR%%/images/units/merfolk/siren.png +%%DATADIR%%/images/units/merfolk/spearman-attack-n.png +%%DATADIR%%/images/units/merfolk/spearman-attack-ne.png +%%DATADIR%%/images/units/merfolk/spearman-attack-ranged.png +%%DATADIR%%/images/units/merfolk/spearman-attack-s.png +%%DATADIR%%/images/units/merfolk/spearman-attack-se.png +%%DATADIR%%/images/units/merfolk/spearman-defend.png +%%DATADIR%%/images/units/merfolk/spearman.png +%%DATADIR%%/images/units/merfolk/triton-attack-blade.png +%%DATADIR%%/images/units/merfolk/triton-attack-pierce.png +%%DATADIR%%/images/units/merfolk/triton-defend.png +%%DATADIR%%/images/units/merfolk/triton.png +%%DATADIR%%/images/units/merfolk/warrior-attack.png +%%DATADIR%%/images/units/merfolk/warrior-defend.png +%%DATADIR%%/images/units/merfolk/warrior.png +%%DATADIR%%/images/units/monsters/cavespider-attack-melee.png +%%DATADIR%%/images/units/monsters/cavespider-attack-ranged.png +%%DATADIR%%/images/units/monsters/cavespider-defend.png +%%DATADIR%%/images/units/monsters/cavespider-die-1.png +%%DATADIR%%/images/units/monsters/cavespider-die-2.png +%%DATADIR%%/images/units/monsters/cavespider.png +%%DATADIR%%/images/units/monsters/cuttlefish-attack-2.png +%%DATADIR%%/images/units/monsters/cuttlefish-attack-3.png +%%DATADIR%%/images/units/monsters/cuttlefish-attack-4.png +%%DATADIR%%/images/units/monsters/cuttlefish-attack-ink.png +%%DATADIR%%/images/units/monsters/cuttlefish-attack.png +%%DATADIR%%/images/units/monsters/cuttlefish-defend.png +%%DATADIR%%/images/units/monsters/cuttlefish-die-1.png +%%DATADIR%%/images/units/monsters/cuttlefish-die-2.png +%%DATADIR%%/images/units/monsters/cuttlefish.png +%%DATADIR%%/images/units/monsters/deep-tentacle-attack.png +%%DATADIR%%/images/units/monsters/deep-tentacle-defend.png +%%DATADIR%%/images/units/monsters/deep-tentacle-die-1.png +%%DATADIR%%/images/units/monsters/deep-tentacle-die-2.png +%%DATADIR%%/images/units/monsters/deep-tentacle-die-3.png +%%DATADIR%%/images/units/monsters/deep-tentacle-die-4.png +%%DATADIR%%/images/units/monsters/deep-tentacle-die-5.png +%%DATADIR%%/images/units/monsters/deep-tentacle-die-6.png +%%DATADIR%%/images/units/monsters/deep-tentacle.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-attack.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-attack1.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-attack2.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-death1.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-death2.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-death3.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-death4.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler-defend.png +%%DATADIR%%/images/units/monsters/giant-mudcrawler.png +%%DATADIR%%/images/units/monsters/gryphon-attack.png +%%DATADIR%%/images/units/monsters/gryphon-flying-1and3.png +%%DATADIR%%/images/units/monsters/gryphon-flying-2.png +%%DATADIR%%/images/units/monsters/gryphon-flying-4.png +%%DATADIR%%/images/units/monsters/gryphon-flying-5and7.png +%%DATADIR%%/images/units/monsters/gryphon-flying-6.png +%%DATADIR%%/images/units/monsters/gryphon-flying-8.png +%%DATADIR%%/images/units/monsters/gryphon.png +%%DATADIR%%/images/units/monsters/mudcrawler-attack.png +%%DATADIR%%/images/units/monsters/mudcrawler-death1.png +%%DATADIR%%/images/units/monsters/mudcrawler-death2.png +%%DATADIR%%/images/units/monsters/mudcrawler-death3.png +%%DATADIR%%/images/units/monsters/mudcrawler-death4.png +%%DATADIR%%/images/units/monsters/mudcrawler-defend.png +%%DATADIR%%/images/units/monsters/mudcrawler.png +%%DATADIR%%/images/units/monsters/scorpion-defend.png +%%DATADIR%%/images/units/monsters/scorpion-pincers-attack.png +%%DATADIR%%/images/units/monsters/scorpion-sting-attack.png +%%DATADIR%%/images/units/monsters/scorpion.png +%%DATADIR%%/images/units/monsters/seaserpent-attack.png +%%DATADIR%%/images/units/monsters/seaserpent-defend.png +%%DATADIR%%/images/units/monsters/seaserpent-die-1.png +%%DATADIR%%/images/units/monsters/seaserpent-die-2.png +%%DATADIR%%/images/units/monsters/seaserpent-die-3.png +%%DATADIR%%/images/units/monsters/seaserpent-die-4.png +%%DATADIR%%/images/units/monsters/seaserpent-die-5.png +%%DATADIR%%/images/units/monsters/seaserpent-die-6.png +%%DATADIR%%/images/units/monsters/seaserpent-die-7.png +%%DATADIR%%/images/units/monsters/seaserpent-die-8.png +%%DATADIR%%/images/units/monsters/seaserpent-die-9.png +%%DATADIR%%/images/units/monsters/seaserpent.png +%%DATADIR%%/images/units/monsters/yeti-attack1.png +%%DATADIR%%/images/units/monsters/yeti-attack2.png +%%DATADIR%%/images/units/monsters/yeti-attack3.png +%%DATADIR%%/images/units/monsters/yeti-defend.png +%%DATADIR%%/images/units/monsters/yeti-die1.png +%%DATADIR%%/images/units/monsters/yeti-die2.png +%%DATADIR%%/images/units/monsters/yeti-die3.png +%%DATADIR%%/images/units/monsters/yeti-die4.png +%%DATADIR%%/images/units/monsters/yeti-die5.png +%%DATADIR%%/images/units/monsters/yeti.png +%%DATADIR%%/images/units/nagas/fighter+female-attack.png +%%DATADIR%%/images/units/nagas/fighter+female-defend.png +%%DATADIR%%/images/units/nagas/fighter+female.png +%%DATADIR%%/images/units/nagas/fighter-attack.png +%%DATADIR%%/images/units/nagas/fighter-defend.png +%%DATADIR%%/images/units/nagas/fighter.png +%%DATADIR%%/images/units/nagas/myrmidon+female-attack.png +%%DATADIR%%/images/units/nagas/myrmidon+female-defend.png +%%DATADIR%%/images/units/nagas/myrmidon+female.png +%%DATADIR%%/images/units/nagas/myrmidon-attack.png +%%DATADIR%%/images/units/nagas/myrmidon-defend.png +%%DATADIR%%/images/units/nagas/myrmidon.png +%%DATADIR%%/images/units/nagas/warrior+female-attack.png +%%DATADIR%%/images/units/nagas/warrior+female-defend.png +%%DATADIR%%/images/units/nagas/warrior+female.png +%%DATADIR%%/images/units/nagas/warrior-attack.png +%%DATADIR%%/images/units/nagas/warrior-defend.png +%%DATADIR%%/images/units/nagas/warrior.png +%%DATADIR%%/images/units/ogres/ogre-attack1.png +%%DATADIR%%/images/units/ogres/ogre-attack2.png +%%DATADIR%%/images/units/ogres/ogre-attack3.png +%%DATADIR%%/images/units/ogres/ogre-attack4.png +%%DATADIR%%/images/units/ogres/ogre-attack5.png +%%DATADIR%%/images/units/ogres/ogre-defend.png +%%DATADIR%%/images/units/ogres/ogre.png +%%DATADIR%%/images/units/ogres/young-ogre-attack1.png +%%DATADIR%%/images/units/ogres/young-ogre-attack2.png +%%DATADIR%%/images/units/ogres/young-ogre-attack3.png +%%DATADIR%%/images/units/ogres/young-ogre-attack4.png +%%DATADIR%%/images/units/ogres/young-ogre-attack5.png +%%DATADIR%%/images/units/ogres/young-ogre-defend.png +%%DATADIR%%/images/units/ogres/young-ogre.png +%%DATADIR%%/images/units/orcs/archer-death-1.png +%%DATADIR%%/images/units/orcs/archer-death-2.png +%%DATADIR%%/images/units/orcs/archer-death-3.png +%%DATADIR%%/images/units/orcs/archer-death-4.png +%%DATADIR%%/images/units/orcs/archer-death-5.png +%%DATADIR%%/images/units/orcs/archer-death-6.png +%%DATADIR%%/images/units/orcs/archer-death-7.png +%%DATADIR%%/images/units/orcs/archer-death-8.png +%%DATADIR%%/images/units/orcs/archer-death-9.png +%%DATADIR%%/images/units/orcs/archer-defend.png +%%DATADIR%%/images/units/orcs/archer-melee-01.png +%%DATADIR%%/images/units/orcs/archer-melee-02.png +%%DATADIR%%/images/units/orcs/archer-melee-03.png +%%DATADIR%%/images/units/orcs/archer-melee-04.png +%%DATADIR%%/images/units/orcs/archer-melee-05.png +%%DATADIR%%/images/units/orcs/archer-melee-06.png +%%DATADIR%%/images/units/orcs/archer-melee-07.png +%%DATADIR%%/images/units/orcs/archer-melee-08.png +%%DATADIR%%/images/units/orcs/archer-melee-09.png +%%DATADIR%%/images/units/orcs/archer-melee-10.png +%%DATADIR%%/images/units/orcs/archer-melee-11.png +%%DATADIR%%/images/units/orcs/archer-melee-12.png +%%DATADIR%%/images/units/orcs/archer-melee-13.png +%%DATADIR%%/images/units/orcs/archer-melee-14.png +%%DATADIR%%/images/units/orcs/archer-melee-15.png +%%DATADIR%%/images/units/orcs/archer-melee-16.png +%%DATADIR%%/images/units/orcs/archer-melee-17.png +%%DATADIR%%/images/units/orcs/archer-ranged-1.png +%%DATADIR%%/images/units/orcs/archer-ranged-2.png +%%DATADIR%%/images/units/orcs/archer-ranged-3.png +%%DATADIR%%/images/units/orcs/archer-ranged-4.png +%%DATADIR%%/images/units/orcs/archer-ranged-5.png +%%DATADIR%%/images/units/orcs/archer-ranged-6.png +%%DATADIR%%/images/units/orcs/archer.png +%%DATADIR%%/images/units/orcs/assassin-attack1.png +%%DATADIR%%/images/units/orcs/assassin-attack2.png +%%DATADIR%%/images/units/orcs/assassin-defend.png +%%DATADIR%%/images/units/orcs/assassin-die-1.png +%%DATADIR%%/images/units/orcs/assassin-die-2.png +%%DATADIR%%/images/units/orcs/assassin-die-3.png +%%DATADIR%%/images/units/orcs/assassin-die-4.png +%%DATADIR%%/images/units/orcs/assassin-die-5.png +%%DATADIR%%/images/units/orcs/assassin-die-6.png +%%DATADIR%%/images/units/orcs/assassin-die-7.png +%%DATADIR%%/images/units/orcs/assassin-die-8.png +%%DATADIR%%/images/units/orcs/assassin-die-9.png +%%DATADIR%%/images/units/orcs/assassin-die-10.png +%%DATADIR%%/images/units/orcs/assassin-ranged1.png +%%DATADIR%%/images/units/orcs/assassin-ranged2.png +%%DATADIR%%/images/units/orcs/assassin.png +%%DATADIR%%/images/units/orcs/grunt-attack-w1.png +%%DATADIR%%/images/units/orcs/grunt-attack-w2.png +%%DATADIR%%/images/units/orcs/grunt-attack-w3.png +%%DATADIR%%/images/units/orcs/grunt-attack-w4.png +%%DATADIR%%/images/units/orcs/grunt-attack-w5.png +%%DATADIR%%/images/units/orcs/grunt-attack.png +%%DATADIR%%/images/units/orcs/grunt-defend.png +%%DATADIR%%/images/units/orcs/grunt-die-1.png +%%DATADIR%%/images/units/orcs/grunt-die-2.png +%%DATADIR%%/images/units/orcs/grunt-die-3.png +%%DATADIR%%/images/units/orcs/grunt-die-4.png +%%DATADIR%%/images/units/orcs/grunt-die-5.png +%%DATADIR%%/images/units/orcs/grunt-die-6.png +%%DATADIR%%/images/units/orcs/grunt-die-7.png +%%DATADIR%%/images/units/orcs/grunt-die-8.png +%%DATADIR%%/images/units/orcs/grunt.png +%%DATADIR%%/images/units/orcs/leader-attack.png +%%DATADIR%%/images/units/orcs/leader-defend.png +%%DATADIR%%/images/units/orcs/leader-ranged-1.png +%%DATADIR%%/images/units/orcs/leader-ranged-2.png +%%DATADIR%%/images/units/orcs/leader.png +%%DATADIR%%/images/units/orcs/ruler-attack.png +%%DATADIR%%/images/units/orcs/ruler-defend.png +%%DATADIR%%/images/units/orcs/ruler-ranged-1.png +%%DATADIR%%/images/units/orcs/ruler-ranged-2.png +%%DATADIR%%/images/units/orcs/ruler.png +%%DATADIR%%/images/units/orcs/slayer-attack1-s.png +%%DATADIR%%/images/units/orcs/slayer-attack1.png +%%DATADIR%%/images/units/orcs/slayer-attack2-s.png +%%DATADIR%%/images/units/orcs/slayer-attack2.png +%%DATADIR%%/images/units/orcs/slayer-defend.png +%%DATADIR%%/images/units/orcs/slayer-ranged1.png +%%DATADIR%%/images/units/orcs/slayer-ranged2.png +%%DATADIR%%/images/units/orcs/slayer.png +%%DATADIR%%/images/units/orcs/slurbow-attack-1.png +%%DATADIR%%/images/units/orcs/slurbow-attack-2.png +%%DATADIR%%/images/units/orcs/slurbow-attack-3.png +%%DATADIR%%/images/units/orcs/slurbow-attack-4.png +%%DATADIR%%/images/units/orcs/slurbow-attack-5.png +%%DATADIR%%/images/units/orcs/slurbow-attack-6.png +%%DATADIR%%/images/units/orcs/slurbow-attack-ranged.png +%%DATADIR%%/images/units/orcs/slurbow-defend.png +%%DATADIR%%/images/units/orcs/slurbow.png +%%DATADIR%%/images/units/orcs/sovereign-attack1.png +%%DATADIR%%/images/units/orcs/sovereign-attack2.png +%%DATADIR%%/images/units/orcs/sovereign-defend.png +%%DATADIR%%/images/units/orcs/sovereign-ranged-1.png +%%DATADIR%%/images/units/orcs/sovereign-ranged-2.png +%%DATADIR%%/images/units/orcs/sovereign.png +%%DATADIR%%/images/units/orcs/warlord-attack-sword-1.png +%%DATADIR%%/images/units/orcs/warlord-attack-sword-2.png +%%DATADIR%%/images/units/orcs/warlord-attack-sword-3.png +%%DATADIR%%/images/units/orcs/warlord-attack-sword-4.png +%%DATADIR%%/images/units/orcs/warlord-defend.png +%%DATADIR%%/images/units/orcs/warlord-ranged-1.png +%%DATADIR%%/images/units/orcs/warlord-ranged-2.png +%%DATADIR%%/images/units/orcs/warlord-ranged-3.png +%%DATADIR%%/images/units/orcs/warlord-ranged-4.png +%%DATADIR%%/images/units/orcs/warlord.png +%%DATADIR%%/images/units/orcs/warrior-attack-w1.png +%%DATADIR%%/images/units/orcs/warrior-attack-w2.png +%%DATADIR%%/images/units/orcs/warrior-attack-w3.png +%%DATADIR%%/images/units/orcs/warrior-attack-w4.png +%%DATADIR%%/images/units/orcs/warrior-attack-w5.png +%%DATADIR%%/images/units/orcs/warrior-defend.png +%%DATADIR%%/images/units/orcs/warrior.png +%%DATADIR%%/images/units/orcs/xbowman-attack.png +%%DATADIR%%/images/units/orcs/xbowman-defend.png +%%DATADIR%%/images/units/orcs/xbowman-ranged-1.png +%%DATADIR%%/images/units/orcs/xbowman-ranged-2.png +%%DATADIR%%/images/units/orcs/xbowman.png +%%DATADIR%%/images/units/random-enemy.png +%%DATADIR%%/images/units/saurians/ambusher-attack1.png +%%DATADIR%%/images/units/saurians/ambusher-attack2.png +%%DATADIR%%/images/units/saurians/ambusher-defend.png +%%DATADIR%%/images/units/saurians/ambusher-ranged-1.png +%%DATADIR%%/images/units/saurians/ambusher-ranged-2.png +%%DATADIR%%/images/units/saurians/ambusher-ranged-3.png +%%DATADIR%%/images/units/saurians/ambusher.png +%%DATADIR%%/images/units/saurians/augur-defend.png +%%DATADIR%%/images/units/saurians/augur-magic.png +%%DATADIR%%/images/units/saurians/augur-melee.png +%%DATADIR%%/images/units/saurians/augur.png +%%DATADIR%%/images/units/saurians/flanker-attack-ranged-1.png +%%DATADIR%%/images/units/saurians/flanker-attack-ranged-2.png +%%DATADIR%%/images/units/saurians/flanker-attack-ranged-3.png +%%DATADIR%%/images/units/saurians/flanker-attack-ranged-4.png +%%DATADIR%%/images/units/saurians/flanker-attack1.png +%%DATADIR%%/images/units/saurians/flanker-attack2.png +%%DATADIR%%/images/units/saurians/flanker-defend.png +%%DATADIR%%/images/units/saurians/flanker.png +%%DATADIR%%/images/units/saurians/oracle-defend.png +%%DATADIR%%/images/units/saurians/oracle-magic.png +%%DATADIR%%/images/units/saurians/oracle-melee.png +%%DATADIR%%/images/units/saurians/oracle.png +%%DATADIR%%/images/units/saurians/skirmisher-attack-ranged-1.png +%%DATADIR%%/images/units/saurians/skirmisher-attack-ranged-2.png +%%DATADIR%%/images/units/saurians/skirmisher-attack1.png +%%DATADIR%%/images/units/saurians/skirmisher-attack2.png +%%DATADIR%%/images/units/saurians/skirmisher-defend.png +%%DATADIR%%/images/units/saurians/skirmisher.png +%%DATADIR%%/images/units/saurians/soothsayer-defend.png +%%DATADIR%%/images/units/saurians/soothsayer-magic.png +%%DATADIR%%/images/units/saurians/soothsayer-melee.png +%%DATADIR%%/images/units/saurians/soothsayer.png +%%DATADIR%%/images/units/transport/galleon.png +%%DATADIR%%/images/units/transport/pirate-galleon.png +%%DATADIR%%/images/units/transport/transport-galleon.png +%%DATADIR%%/images/units/trolls/great-troll-attack-1.png +%%DATADIR%%/images/units/trolls/great-troll-attack-2.png +%%DATADIR%%/images/units/trolls/great-troll-attack-3.png +%%DATADIR%%/images/units/trolls/great-troll-attack-4.png +%%DATADIR%%/images/units/trolls/great-troll-attack-5.png +%%DATADIR%%/images/units/trolls/great-troll-attack.png +%%DATADIR%%/images/units/trolls/great-troll-defend.png +%%DATADIR%%/images/units/trolls/great-troll.png +%%DATADIR%%/images/units/trolls/grunt-attack-1.png +%%DATADIR%%/images/units/trolls/grunt-attack-2.png +%%DATADIR%%/images/units/trolls/grunt-attack-3.png +%%DATADIR%%/images/units/trolls/grunt-attack-4.png +%%DATADIR%%/images/units/trolls/grunt-defend.png +%%DATADIR%%/images/units/trolls/grunt.png +%%DATADIR%%/images/units/trolls/hero-attack-1.png +%%DATADIR%%/images/units/trolls/hero-attack-2.png +%%DATADIR%%/images/units/trolls/hero-attack-3.png +%%DATADIR%%/images/units/trolls/hero-attack-4.png +%%DATADIR%%/images/units/trolls/hero-defend.png +%%DATADIR%%/images/units/trolls/hero.png +%%DATADIR%%/images/units/trolls/lobber-attack-melee.png +%%DATADIR%%/images/units/trolls/lobber-attack-ranged1.png +%%DATADIR%%/images/units/trolls/lobber-attack-ranged2.png +%%DATADIR%%/images/units/trolls/lobber-defend.png +%%DATADIR%%/images/units/trolls/lobber.png +%%DATADIR%%/images/units/trolls/warrior-attack-1.png +%%DATADIR%%/images/units/trolls/warrior-attack-2.png +%%DATADIR%%/images/units/trolls/warrior-attack-3.png +%%DATADIR%%/images/units/trolls/warrior-attack-4.png +%%DATADIR%%/images/units/trolls/warrior-defend.png +%%DATADIR%%/images/units/trolls/warrior.png +%%DATADIR%%/images/units/trolls/whelp-attack-1.png +%%DATADIR%%/images/units/trolls/whelp-attack-2.png +%%DATADIR%%/images/units/trolls/whelp-attack-3.png +%%DATADIR%%/images/units/trolls/whelp-defend-2.png +%%DATADIR%%/images/units/trolls/whelp-defend.png +%%DATADIR%%/images/units/trolls/whelp-die-1.png +%%DATADIR%%/images/units/trolls/whelp-die-2.png +%%DATADIR%%/images/units/trolls/whelp-die-3.png +%%DATADIR%%/images/units/trolls/whelp-die-4.png +%%DATADIR%%/images/units/trolls/whelp-die-5.png +%%DATADIR%%/images/units/trolls/whelp-die-6.png +%%DATADIR%%/images/units/trolls/whelp-die-7.png +%%DATADIR%%/images/units/trolls/whelp-skeleton.png +%%DATADIR%%/images/units/trolls/whelp.png +%%DATADIR%%/images/units/undead-blackspell.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-defend.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-1.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-2.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-3.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-4.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-5.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-6.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-7.png +%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-8.png +%%DATADIR%%/images/units/undead-necromancers/adept+female.png +%%DATADIR%%/images/units/undead-necromancers/adept-defend.png +%%DATADIR%%/images/units/undead-necromancers/adept-die1.png +%%DATADIR%%/images/units/undead-necromancers/adept-die2.png +%%DATADIR%%/images/units/undead-necromancers/adept-die3.png +%%DATADIR%%/images/units/undead-necromancers/adept-die4.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-1.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-2.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-3.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-4.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-5.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-6.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-7.png +%%DATADIR%%/images/units/undead-necromancers/adept-ranged-8.png +%%DATADIR%%/images/units/undead-necromancers/adept.png +%%DATADIR%%/images/units/undead-necromancers/ancient-lich-defend.png +%%DATADIR%%/images/units/undead-necromancers/ancient-lich-magic-1.png +%%DATADIR%%/images/units/undead-necromancers/ancient-lich-magic-2.png +%%DATADIR%%/images/units/undead-necromancers/ancient-lich-magic-3.png +%%DATADIR%%/images/units/undead-necromancers/ancient-lich-melee.png +%%DATADIR%%/images/units/undead-necromancers/ancient-lich.png +%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-defend.png +%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-magic-1.png +%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-magic-2.png +%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-magic-3.png +%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-melee.png +%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer.png +%%DATADIR%%/images/units/undead-necromancers/lich-defend.png +%%DATADIR%%/images/units/undead-necromancers/lich-magic-1.png +%%DATADIR%%/images/units/undead-necromancers/lich-magic-2.png +%%DATADIR%%/images/units/undead-necromancers/lich-magic-3.png +%%DATADIR%%/images/units/undead-necromancers/lich-melee.png +%%DATADIR%%/images/units/undead-necromancers/lich.png +%%DATADIR%%/images/units/undead-necromancers/necromancer-defend.png +%%DATADIR%%/images/units/undead-necromancers/necromancer-magic-1.png +%%DATADIR%%/images/units/undead-necromancers/necromancer-magic-2.png +%%DATADIR%%/images/units/undead-necromancers/necromancer-magic-3.png +%%DATADIR%%/images/units/undead-necromancers/necromancer-melee.png +%%DATADIR%%/images/units/undead-necromancers/necromancer.png +%%DATADIR%%/images/units/undead-skeletal/archer-attack.png +%%DATADIR%%/images/units/undead-skeletal/archer-attack1.png +%%DATADIR%%/images/units/undead-skeletal/archer-attack2.png +%%DATADIR%%/images/units/undead-skeletal/archer-defend.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-1.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-10.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-11.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-12.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-13.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-2.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-3.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-4.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-5.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-6.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-7.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-8.png +%%DATADIR%%/images/units/undead-skeletal/archer-die-9.png +%%DATADIR%%/images/units/undead-skeletal/archer.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter-attack.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter-attack1.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter-attack2.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter-defend.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter-die-1.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter-die-2.png +%%DATADIR%%/images/units/undead-skeletal/boneshooter.png +%%DATADIR%%/images/units/undead-skeletal/deathblade-attack1.png +%%DATADIR%%/images/units/undead-skeletal/deathblade-attack2.png +%%DATADIR%%/images/units/undead-skeletal/deathblade-attack3.png +%%DATADIR%%/images/units/undead-skeletal/deathblade-defend.png +%%DATADIR%%/images/units/undead-skeletal/deathblade-die-1.png +%%DATADIR%%/images/units/undead-skeletal/deathblade-die-2.png +%%DATADIR%%/images/units/undead-skeletal/deathblade.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-1.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-2.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-3.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-4.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-crossbow-1.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-crossbow-2.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-defend.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-die-1.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-die-2.png +%%DATADIR%%/images/units/undead-skeletal/deathknight-leading.png +%%DATADIR%%/images/units/undead-skeletal/deathknight.png +%%DATADIR%%/images/units/undead-skeletal/draug-attack1.png +%%DATADIR%%/images/units/undead-skeletal/draug-attack2.png +%%DATADIR%%/images/units/undead-skeletal/draug-defend-1.png +%%DATADIR%%/images/units/undead-skeletal/draug-defend-2.png +%%DATADIR%%/images/units/undead-skeletal/draug.png +%%DATADIR%%/images/units/undead-skeletal/revenant-attack.png +%%DATADIR%%/images/units/undead-skeletal/revenant-defend.png +%%DATADIR%%/images/units/undead-skeletal/revenant.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-attack.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-attackb.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-defend.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-1.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-2.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-3.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-4.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-5.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-6.png +%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-7.png +%%DATADIR%%/images/units/undead-skeletal/skeleton.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-attack.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-defend.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged1.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged2.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged3.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged4.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged5.png +%%DATADIR%%/images/units/undead-skeletal/soulshooter.png +%%DATADIR%%/images/units/undead/bat-attack.png +%%DATADIR%%/images/units/undead/bat-defend.png +%%DATADIR%%/images/units/undead/bat-die-1.png +%%DATADIR%%/images/units/undead/bat-die-2.png +%%DATADIR%%/images/units/undead/bat-die-3.png +%%DATADIR%%/images/units/undead/bat-die-4.png +%%DATADIR%%/images/units/undead/bat-die-5.png +%%DATADIR%%/images/units/undead/bat-die-6.png +%%DATADIR%%/images/units/undead/bat-die-7.png +%%DATADIR%%/images/units/undead/bat.png +%%DATADIR%%/images/units/undead/bloodbat-attack.png +%%DATADIR%%/images/units/undead/bloodbat-defend.png +%%DATADIR%%/images/units/undead/bloodbat-die-1.png +%%DATADIR%%/images/units/undead/bloodbat-die-2.png +%%DATADIR%%/images/units/undead/bloodbat.png +%%DATADIR%%/images/units/undead/ghost-attack.png +%%DATADIR%%/images/units/undead/ghost-attack1.png +%%DATADIR%%/images/units/undead/ghost-defend.png +%%DATADIR%%/images/units/undead/ghost.png +%%DATADIR%%/images/units/undead/ghoul-attack-1.png +%%DATADIR%%/images/units/undead/ghoul-attack-2.png +%%DATADIR%%/images/units/undead/ghoul-defend.png +%%DATADIR%%/images/units/undead/ghoul-die-1.png +%%DATADIR%%/images/units/undead/ghoul-die-2.png +%%DATADIR%%/images/units/undead/ghoul-die-3.png +%%DATADIR%%/images/units/undead/ghoul-die-4.png +%%DATADIR%%/images/units/undead/ghoul-die-5.png +%%DATADIR%%/images/units/undead/ghoul-die-6.png +%%DATADIR%%/images/units/undead/ghoul-die-7.png +%%DATADIR%%/images/units/undead/ghoul.png +%%DATADIR%%/images/units/undead/necrophage-attack.png +%%DATADIR%%/images/units/undead/necrophage-defend.png +%%DATADIR%%/images/units/undead/necrophage.png +%%DATADIR%%/images/units/undead/nightgaunt-attack.png +%%DATADIR%%/images/units/undead/nightgaunt-attack2.png +%%DATADIR%%/images/units/undead/nightgaunt-defend.png +%%DATADIR%%/images/units/undead/nightgaunt-die-1.png +%%DATADIR%%/images/units/undead/nightgaunt-die-2.png +%%DATADIR%%/images/units/undead/nightgaunt-die-3.png +%%DATADIR%%/images/units/undead/nightgaunt-die-4.png +%%DATADIR%%/images/units/undead/nightgaunt-die-5.png +%%DATADIR%%/images/units/undead/nightgaunt.png +%%DATADIR%%/images/units/undead/shadow-attack.png +%%DATADIR%%/images/units/undead/shadow-defend.png +%%DATADIR%%/images/units/undead/shadow.png +%%DATADIR%%/images/units/undead/soulless-attack-n.png +%%DATADIR%%/images/units/undead/soulless-attack-s.png +%%DATADIR%%/images/units/undead/soulless-attack.png +%%DATADIR%%/images/units/undead/soulless-defend.png +%%DATADIR%%/images/units/undead/soulless-die-1.png +%%DATADIR%%/images/units/undead/soulless-die-2.png +%%DATADIR%%/images/units/undead/soulless-die-3.png +%%DATADIR%%/images/units/undead/soulless-drake-attack-n.png +%%DATADIR%%/images/units/undead/soulless-drake-attack-s.png +%%DATADIR%%/images/units/undead/soulless-drake-attack.png +%%DATADIR%%/images/units/undead/soulless-drake-die-1.png +%%DATADIR%%/images/units/undead/soulless-drake-die-2.png +%%DATADIR%%/images/units/undead/soulless-drake-die-3.png +%%DATADIR%%/images/units/undead/soulless-drake.png +%%DATADIR%%/images/units/undead/soulless-melee.png +%%DATADIR%%/images/units/undead/soulless-mounted-attack-n.png +%%DATADIR%%/images/units/undead/soulless-mounted-attack-s.png +%%DATADIR%%/images/units/undead/soulless-mounted-attack.png +%%DATADIR%%/images/units/undead/soulless-mounted-die-1.png +%%DATADIR%%/images/units/undead/soulless-mounted-die-2.png +%%DATADIR%%/images/units/undead/soulless-mounted-die-3.png +%%DATADIR%%/images/units/undead/soulless-mounted.png +%%DATADIR%%/images/units/undead/soulless-saurian-attack-n.png +%%DATADIR%%/images/units/undead/soulless-saurian-attack-s.png +%%DATADIR%%/images/units/undead/soulless-saurian-attack.png +%%DATADIR%%/images/units/undead/soulless-saurian-die-1.png +%%DATADIR%%/images/units/undead/soulless-saurian-die-2.png +%%DATADIR%%/images/units/undead/soulless-saurian-die-3.png +%%DATADIR%%/images/units/undead/soulless-saurian.png +%%DATADIR%%/images/units/undead/soulless-swimmer-attack-n.png +%%DATADIR%%/images/units/undead/soulless-swimmer-attack-s.png +%%DATADIR%%/images/units/undead/soulless-swimmer-attack.png +%%DATADIR%%/images/units/undead/soulless-swimmer-die-1.png +%%DATADIR%%/images/units/undead/soulless-swimmer-die-2.png +%%DATADIR%%/images/units/undead/soulless-swimmer-die-3.png +%%DATADIR%%/images/units/undead/soulless-swimmer.png +%%DATADIR%%/images/units/undead/soulless-troll-attack-n.png +%%DATADIR%%/images/units/undead/soulless-troll-attack-s.png +%%DATADIR%%/images/units/undead/soulless-troll-attack.png +%%DATADIR%%/images/units/undead/soulless-troll-die-1.png +%%DATADIR%%/images/units/undead/soulless-troll-die-2.png +%%DATADIR%%/images/units/undead/soulless-troll-die-3.png +%%DATADIR%%/images/units/undead/soulless-troll.png +%%DATADIR%%/images/units/undead/soulless-wose-attack-n.png +%%DATADIR%%/images/units/undead/soulless-wose-attack-s.png +%%DATADIR%%/images/units/undead/soulless-wose-attack.png +%%DATADIR%%/images/units/undead/soulless-wose-die-1.png +%%DATADIR%%/images/units/undead/soulless-wose-die-2.png +%%DATADIR%%/images/units/undead/soulless-wose-die-3.png +%%DATADIR%%/images/units/undead/soulless-wose.png +%%DATADIR%%/images/units/undead/soulless.png +%%DATADIR%%/images/units/undead/spectre-attack.png +%%DATADIR%%/images/units/undead/spectre-attack1.png +%%DATADIR%%/images/units/undead/spectre-defend.png +%%DATADIR%%/images/units/undead/spectre-die-1.png +%%DATADIR%%/images/units/undead/spectre-die-2.png +%%DATADIR%%/images/units/undead/spectre-die-3.png +%%DATADIR%%/images/units/undead/spectre-die-4.png +%%DATADIR%%/images/units/undead/spectre.png +%%DATADIR%%/images/units/undead/wraith-attack.png +%%DATADIR%%/images/units/undead/wraith-attack1.png +%%DATADIR%%/images/units/undead/wraith-defend.png +%%DATADIR%%/images/units/undead/wraith.png +%%DATADIR%%/images/units/undead/zombie-attack-n.png +%%DATADIR%%/images/units/undead/zombie-attack-s.png +%%DATADIR%%/images/units/undead/zombie-attack.png +%%DATADIR%%/images/units/undead/zombie-defend.png +%%DATADIR%%/images/units/undead/zombie-drake-attack-n.png +%%DATADIR%%/images/units/undead/zombie-drake-attack-s.png +%%DATADIR%%/images/units/undead/zombie-drake-attack.png +%%DATADIR%%/images/units/undead/zombie-drake-defend.png +%%DATADIR%%/images/units/undead/zombie-drake.png +%%DATADIR%%/images/units/undead/zombie-mounted-attack-n.png +%%DATADIR%%/images/units/undead/zombie-mounted-attack-s.png +%%DATADIR%%/images/units/undead/zombie-mounted-attack.png +%%DATADIR%%/images/units/undead/zombie-mounted-defend.png +%%DATADIR%%/images/units/undead/zombie-mounted.png +%%DATADIR%%/images/units/undead/zombie-saurian-attack-n.png +%%DATADIR%%/images/units/undead/zombie-saurian-attack-s.png +%%DATADIR%%/images/units/undead/zombie-saurian-attack.png +%%DATADIR%%/images/units/undead/zombie-saurian-defend.png +%%DATADIR%%/images/units/undead/zombie-saurian.png +%%DATADIR%%/images/units/undead/zombie-swimmer-attack-n.png +%%DATADIR%%/images/units/undead/zombie-swimmer-attack-s.png +%%DATADIR%%/images/units/undead/zombie-swimmer-attack.png +%%DATADIR%%/images/units/undead/zombie-swimmer-defend.png +%%DATADIR%%/images/units/undead/zombie-swimmer.png +%%DATADIR%%/images/units/undead/zombie-troll-attack-n.png +%%DATADIR%%/images/units/undead/zombie-troll-attack-s.png +%%DATADIR%%/images/units/undead/zombie-troll-attack.png +%%DATADIR%%/images/units/undead/zombie-troll-defend.png +%%DATADIR%%/images/units/undead/zombie-troll.png +%%DATADIR%%/images/units/undead/zombie-wose-attack-n.png +%%DATADIR%%/images/units/undead/zombie-wose-attack-s.png +%%DATADIR%%/images/units/undead/zombie-wose-attack.png +%%DATADIR%%/images/units/undead/zombie-wose-defend.png +%%DATADIR%%/images/units/undead/zombie-wose-die-1.png +%%DATADIR%%/images/units/undead/zombie-wose-die-2.png +%%DATADIR%%/images/units/undead/zombie-wose-die-3.png +%%DATADIR%%/images/units/undead/zombie-wose.png +%%DATADIR%%/images/units/undead/zombie.png +%%DATADIR%%/images/units/woses/wose-ancient-attack-1.png +%%DATADIR%%/images/units/woses/wose-ancient-attack-2.png +%%DATADIR%%/images/units/woses/wose-ancient-defend.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-1.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-2.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-3.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-4.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-5.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-6.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-7.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-8.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-9.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-10.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-11.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-12.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-13.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-14.png +%%DATADIR%%/images/units/woses/wose-ancient-die-fall-15.png +%%DATADIR%%/images/units/woses/wose-ancient.png +%%DATADIR%%/images/units/woses/wose-attack-1.png +%%DATADIR%%/images/units/woses/wose-attack-2.png +%%DATADIR%%/images/units/woses/wose-defend.png +%%DATADIR%%/images/units/woses/wose-die-decay-1.png +%%DATADIR%%/images/units/woses/wose-die-decay-2.png +%%DATADIR%%/images/units/woses/wose-die-decay-3.png +%%DATADIR%%/images/units/woses/wose-die-decay-4.png +%%DATADIR%%/images/units/woses/wose-die-decay-5.png +%%DATADIR%%/images/units/woses/wose-die-decay-6.png +%%DATADIR%%/images/units/woses/wose-die-decay-7.png +%%DATADIR%%/images/units/woses/wose-die-decay-8.png +%%DATADIR%%/images/units/woses/wose-die-decay-9.png +%%DATADIR%%/images/units/woses/wose-die-fall-1.png +%%DATADIR%%/images/units/woses/wose-die-fall-2.png +%%DATADIR%%/images/units/woses/wose-die-fall-3.png +%%DATADIR%%/images/units/woses/wose-die-fall-4.png +%%DATADIR%%/images/units/woses/wose-die-fall-5.png +%%DATADIR%%/images/units/woses/wose-die-fall-6.png +%%DATADIR%%/images/units/woses/wose-die-fall-7.png +%%DATADIR%%/images/units/woses/wose-die-fall-8.png +%%DATADIR%%/images/units/woses/wose-die-fall-9.png +%%DATADIR%%/images/units/woses/wose-die-fall-10.png +%%DATADIR%%/images/units/woses/wose-die-fall-11.png +%%DATADIR%%/images/units/woses/wose-die-fall-12.png +%%DATADIR%%/images/units/woses/wose-die-fall-13.png +%%DATADIR%%/images/units/woses/wose-die-fall-14.png +%%DATADIR%%/images/units/woses/wose-die-fall-15.png +%%DATADIR%%/images/units/woses/wose-elder-attack-1.png +%%DATADIR%%/images/units/woses/wose-elder-attack-2.png +%%DATADIR%%/images/units/woses/wose-elder-defend.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-1.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-2.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-3.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-4.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-5.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-6.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-7.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-8.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-9.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-10.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-11.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-12.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-13.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-14.png +%%DATADIR%%/images/units/woses/wose-elder-die-fall-15.png +%%DATADIR%%/images/units/woses/wose-elder.png +%%DATADIR%%/images/units/woses/wose.png +%%DATADIR%%/images/wesnoth-icon.png +%%DATADIR%%/music/defeat.ogg +%%DATADIR%%/music/elf-land.ogg +%%DATADIR%%/music/frantic.ogg +%%DATADIR%%/music/gameplay01.ogg +%%DATADIR%%/music/gameplay02.ogg +%%DATADIR%%/music/gameplay03.ogg +%%DATADIR%%/music/main_menu.ogg +%%DATADIR%%/music/main_menu_new.ogg +%%DATADIR%%/music/underground.ogg +%%DATADIR%%/music/victory.ogg +%%DATADIR%%/music/wesnoth-1.ogg +%%DATADIR%%/music/wesnoth-2.ogg +%%DATADIR%%/music/wesnoth-5.ogg +%%DATADIR%%/sounds/arrive.wav +%%DATADIR%%/sounds/axe.ogg +%%DATADIR%%/sounds/bat-flapping.wav +%%DATADIR%%/sounds/bell.wav +%%DATADIR%%/sounds/bite-small.ogg +%%DATADIR%%/sounds/bite.ogg +%%DATADIR%%/sounds/bow-miss.ogg +%%DATADIR%%/sounds/bow-puny-fire-miss.ogg +%%DATADIR%%/sounds/bow-puny-fire.ogg +%%DATADIR%%/sounds/bow-puny-miss.ogg +%%DATADIR%%/sounds/bow-puny.ogg +%%DATADIR%%/sounds/bow.ogg +%%DATADIR%%/sounds/claws.ogg +%%DATADIR%%/sounds/club.ogg +%%DATADIR%%/sounds/crossbow-fire-miss.ogg +%%DATADIR%%/sounds/crossbow-fire.ogg +%%DATADIR%%/sounds/crossbow-miss.ogg +%%DATADIR%%/sounds/crossbow.ogg +%%DATADIR%%/sounds/dagger-swish.wav +%%DATADIR%%/sounds/dart.wav +%%DATADIR%%/sounds/dragonstick-miss.ogg +%%DATADIR%%/sounds/dragonstick.ogg +%%DATADIR%%/sounds/drake-die.ogg +%%DATADIR%%/sounds/drake-hit-1.ogg +%%DATADIR%%/sounds/drake-hit-2.ogg +%%DATADIR%%/sounds/drake-hit-3.ogg +%%DATADIR%%/sounds/dwarf-die-1.ogg +%%DATADIR%%/sounds/dwarf-die-2.ogg +%%DATADIR%%/sounds/dwarf-hit-1.ogg +%%DATADIR%%/sounds/dwarf-hit-2.ogg +%%DATADIR%%/sounds/dwarf-hit-3.ogg +%%DATADIR%%/sounds/dwarf-hit-4.ogg +%%DATADIR%%/sounds/elf-female-hit-1.ogg +%%DATADIR%%/sounds/elf-female-hit-2.ogg +%%DATADIR%%/sounds/elf-female-hit-3.ogg +%%DATADIR%%/sounds/elf-female-hit-4.ogg +%%DATADIR%%/sounds/elf-female-hit-5.ogg +%%DATADIR%%/sounds/elf-hit-1.ogg +%%DATADIR%%/sounds/elf-hit-2.ogg +%%DATADIR%%/sounds/elf-hit-3.ogg +%%DATADIR%%/sounds/elf-hit-4.ogg +%%DATADIR%%/sounds/entangle.wav +%%DATADIR%%/sounds/fanfare-short.wav +%%DATADIR%%/sounds/female-hit.wav +%%DATADIR%%/sounds/female-strong-hit.wav +%%DATADIR%%/sounds/fire.wav +%%DATADIR%%/sounds/firearrow.wav +%%DATADIR%%/sounds/fist.ogg +%%DATADIR%%/sounds/flame-big-miss.ogg +%%DATADIR%%/sounds/flame-big.ogg +%%DATADIR%%/sounds/ghoul-hit.wav +%%DATADIR%%/sounds/ghoul-swish.wav +%%DATADIR%%/sounds/goblin-die-1.ogg +%%DATADIR%%/sounds/goblin-die-2.ogg +%%DATADIR%%/sounds/goblin-hit-1.ogg +%%DATADIR%%/sounds/goblin-hit-2.ogg +%%DATADIR%%/sounds/goblin-hit-3.ogg +%%DATADIR%%/sounds/gold.ogg +%%DATADIR%%/sounds/groan-strong.wav +%%DATADIR%%/sounds/groan.wav +%%DATADIR%%/sounds/gryphon-die-1.ogg +%%DATADIR%%/sounds/gryphon-die-2.ogg +%%DATADIR%%/sounds/gryphon-hit-1.ogg +%%DATADIR%%/sounds/gryphon-hit-2.ogg +%%DATADIR%%/sounds/gryphon-hit-3.ogg +%%DATADIR%%/sounds/gryphon-shriek-1.ogg +%%DATADIR%%/sounds/gryphon-shriek-2.ogg +%%DATADIR%%/sounds/gunshot.wav +%%DATADIR%%/sounds/hatchet.ogg +%%DATADIR%%/sounds/heal.wav +%%DATADIR%%/sounds/hiss-big.wav +%%DATADIR%%/sounds/hiss-die.wav +%%DATADIR%%/sounds/hiss-hit.wav +%%DATADIR%%/sounds/hiss.wav +%%DATADIR%%/sounds/horse-canter.wav +%%DATADIR%%/sounds/horse-die.ogg +%%DATADIR%%/sounds/horse-elf-canter.wav +%%DATADIR%%/sounds/horse-hit-1.ogg +%%DATADIR%%/sounds/horse-hit-2.ogg +%%DATADIR%%/sounds/horse-hit-3.ogg +%%DATADIR%%/sounds/human-die-1.ogg +%%DATADIR%%/sounds/human-die-2.ogg +%%DATADIR%%/sounds/human-die-3.ogg +%%DATADIR%%/sounds/human-female-die-1.ogg +%%DATADIR%%/sounds/human-female-die-2.ogg +%%DATADIR%%/sounds/human-female-die-3.ogg +%%DATADIR%%/sounds/human-female-hit-1.ogg +%%DATADIR%%/sounds/human-female-hit-2.ogg +%%DATADIR%%/sounds/human-female-hit-3.ogg +%%DATADIR%%/sounds/human-hit-1.ogg +%%DATADIR%%/sounds/human-hit-2.ogg +%%DATADIR%%/sounds/human-hit-3.ogg +%%DATADIR%%/sounds/human-hit-4.ogg +%%DATADIR%%/sounds/human-hit-5.ogg +%%DATADIR%%/sounds/human-old-die-1.ogg +%%DATADIR%%/sounds/human-old-die-2.ogg +%%DATADIR%%/sounds/human-old-die-3.ogg +%%DATADIR%%/sounds/human-old-hit-1.ogg +%%DATADIR%%/sounds/human-old-hit-2.ogg +%%DATADIR%%/sounds/human-old-hit-3.ogg +%%DATADIR%%/sounds/human-old-hit-4.ogg +%%DATADIR%%/sounds/leave.wav +%%DATADIR%%/sounds/lich-die.ogg +%%DATADIR%%/sounds/lich-hit-1.ogg +%%DATADIR%%/sounds/lich-hit-2.ogg +%%DATADIR%%/sounds/lightning-miss.ogg +%%DATADIR%%/sounds/lightning.ogg +%%DATADIR%%/sounds/mace.wav +%%DATADIR%%/sounds/magic-dark-big-miss.ogg +%%DATADIR%%/sounds/magic-dark-big.ogg +%%DATADIR%%/sounds/magic-dark-miss.ogg +%%DATADIR%%/sounds/magic-dark.ogg +%%DATADIR%%/sounds/magic-faeriefire-miss.ogg +%%DATADIR%%/sounds/magic-faeriefire.ogg +%%DATADIR%%/sounds/magic-holy-1.ogg +%%DATADIR%%/sounds/magic-holy-2.ogg +%%DATADIR%%/sounds/magic-holy-3.ogg +%%DATADIR%%/sounds/magic-holy-4.ogg +%%DATADIR%%/sounds/magic-holy-miss-1.ogg +%%DATADIR%%/sounds/magic-holy-miss-2.ogg +%%DATADIR%%/sounds/magic-holy-miss-3.ogg +%%DATADIR%%/sounds/magic-holy-miss-4.ogg +%%DATADIR%%/sounds/magic-missile-1-miss.ogg +%%DATADIR%%/sounds/magic-missile-1.ogg +%%DATADIR%%/sounds/magic-missile-2-miss.ogg +%%DATADIR%%/sounds/magic-missile-2.ogg +%%DATADIR%%/sounds/magic-missile-3-miss.ogg +%%DATADIR%%/sounds/magic-missile-3.ogg +%%DATADIR%%/sounds/magic-thorns-1.ogg +%%DATADIR%%/sounds/magic-thorns-2.ogg +%%DATADIR%%/sounds/magic-thorns-miss-1.ogg +%%DATADIR%%/sounds/magic-thorns-miss-2.ogg +%%DATADIR%%/sounds/magicmissile.wav +%%DATADIR%%/sounds/mermaid-die.ogg +%%DATADIR%%/sounds/mermaid-hit.ogg +%%DATADIR%%/sounds/mermen-die.ogg +%%DATADIR%%/sounds/mermen-hit.wav +%%DATADIR%%/sounds/miss-1.ogg +%%DATADIR%%/sounds/miss-2.ogg +%%DATADIR%%/sounds/miss-3.ogg +%%DATADIR%%/sounds/naga-die.ogg +%%DATADIR%%/sounds/naga-hit-1.ogg +%%DATADIR%%/sounds/naga-hit-2.ogg +%%DATADIR%%/sounds/naga-hit-3.ogg +%%DATADIR%%/sounds/net.wav +%%DATADIR%%/sounds/ogre-die.wav +%%DATADIR%%/sounds/ogre-hit.wav +%%DATADIR%%/sounds/open-chest.wav +%%DATADIR%%/sounds/orc-die-1.ogg +%%DATADIR%%/sounds/orc-die-2.ogg +%%DATADIR%%/sounds/orc-die-3.ogg +%%DATADIR%%/sounds/orc-hit-1.ogg +%%DATADIR%%/sounds/orc-hit-2.ogg +%%DATADIR%%/sounds/orc-hit-3.ogg +%%DATADIR%%/sounds/orc-hit-4.ogg +%%DATADIR%%/sounds/orc-small-die-1.ogg +%%DATADIR%%/sounds/orc-small-die-2.ogg +%%DATADIR%%/sounds/orc-small-hit-1.ogg +%%DATADIR%%/sounds/orc-small-hit-2.ogg +%%DATADIR%%/sounds/orc-small-hit-3.ogg +%%DATADIR%%/sounds/orc-small-hit-4.ogg +%%DATADIR%%/sounds/pincers.ogg +%%DATADIR%%/sounds/poison.ogg +%%DATADIR%%/sounds/receive.wav +%%DATADIR%%/sounds/rumble.ogg +%%DATADIR%%/sounds/skeleton-big-die.ogg +%%DATADIR%%/sounds/skeleton-big-hit.ogg +%%DATADIR%%/sounds/skeleton-die.ogg +%%DATADIR%%/sounds/skeleton-hit.wav +%%DATADIR%%/sounds/sling-big-miss.ogg +%%DATADIR%%/sounds/sling-big.ogg +%%DATADIR%%/sounds/sling-miss.ogg +%%DATADIR%%/sounds/sling.ogg +%%DATADIR%%/sounds/spear-miss.ogg +%%DATADIR%%/sounds/spear.ogg +%%DATADIR%%/sounds/spear.wav +%%DATADIR%%/sounds/squishy-hit.wav +%%DATADIR%%/sounds/squishy-miss.wav +%%DATADIR%%/sounds/squishy-strike.wav +%%DATADIR%%/sounds/staff.wav +%%DATADIR%%/sounds/stoned.ogg +%%DATADIR%%/sounds/sword-1.ogg +%%DATADIR%%/sounds/tail.ogg +%%DATADIR%%/sounds/throwing-knife-miss.ogg +%%DATADIR%%/sounds/throwing-knife.ogg +%%DATADIR%%/sounds/thunderstick-miss.ogg +%%DATADIR%%/sounds/thunderstick.ogg +%%DATADIR%%/sounds/torch-miss.ogg +%%DATADIR%%/sounds/torch.ogg +%%DATADIR%%/sounds/troll-big-die.wav +%%DATADIR%%/sounds/troll-big-hit.wav +%%DATADIR%%/sounds/troll-die.wav +%%DATADIR%%/sounds/troll-hit.wav +%%DATADIR%%/sounds/ugg.wav +%%DATADIR%%/sounds/wail-long.wav +%%DATADIR%%/sounds/wail-sml.wav +%%DATADIR%%/sounds/wail.wav +%%DATADIR%%/sounds/water-blast.wav +%%DATADIR%%/sounds/wolf-big-bite-miss.ogg +%%DATADIR%%/sounds/wolf-big-bite.ogg +%%DATADIR%%/sounds/wolf-bite-miss.ogg +%%DATADIR%%/sounds/wolf-bite.ogg +%%DATADIR%%/sounds/wolf-die.wav +%%DATADIR%%/sounds/wolf-hit.wav +%%DATADIR%%/sounds/wose-attack.ogg +%%DATADIR%%/sounds/wose-die.ogg +%%DATADIR%%/sounds/wose-hit.ogg +%%DATADIR%%/sounds/wose-miss.ogg +%%DATADIR%%/sounds/yeti-die.ogg +%%DATADIR%%/sounds/yeti-hit.ogg +%%DATADIR%%/sounds/zombie-attack.wav +%%DATADIR%%/sounds/zombie-hit-1.ogg +%%DATADIR%%/sounds/zombie-hit-2.ogg +%%DATADIR%%/sounds/zombie-hit-3.ogg +%%DATADIR%%/sounds/zombie-hit-4.ogg +%%DATADIR%%/sounds/zombie-hit-5.ogg +%%DATADIR%%/sounds/zombie-hit-6.ogg +@dirrm %%DATADIR%%/data/ais +@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/external_binary_data/images +@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/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/external_binary_data/images +@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story +@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units +@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/The_Rise_Of_Wesnoth/external_binary_data/images +@dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data +@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/external_binary_data/images +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/attacks +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/flag +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/lich +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/misc +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/story +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/maps +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/scenarios +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/units +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/utils +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/external_binary_data/images +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/images/terrain +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/images +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/maps +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/scenarios +@dirrm %%DATADIR%%/data/campaigns/Two_Brothers +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images +@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 +@dirrm %%DATADIR%%/data/factions +@dirrm %%DATADIR%%/data/languages +@dirrm %%DATADIR%%/data/maps/multiplayer +@dirrm %%DATADIR%%/data/maps +@dirrm %%DATADIR%%/data/scenarios/multiplayer +@dirrm %%DATADIR%%/data/scenarios +@dirrm %%DATADIR%%/data/terrain-graphics +@dirrm %%DATADIR%%/data/themes +@dirrm %%DATADIR%%/data/tools/exploder/models +@dirrm %%DATADIR%%/data/tools/exploder +@dirrm %%DATADIR%%/data/tools +@dirrm %%DATADIR%%/data/tutorial/images/portraits +@dirrm %%DATADIR%%/data/tutorial/images/units +@dirrm %%DATADIR%%/data/tutorial/images +@dirrm %%DATADIR%%/data/tutorial/maps +@dirrm %%DATADIR%%/data/tutorial/scenarios +@dirrm %%DATADIR%%/data/tutorial/units +@dirrm %%DATADIR%%/data/tutorial +@dirrm %%DATADIR%%/data/units +@dirrm %%DATADIR%%/data +@dirrm %%DATADIR%%/fonts +@dirrm %%DATADIR%%/images/attacks +@dirrm %%DATADIR%%/images/buttons +@dirrm %%DATADIR%%/images/cursors +@dirrm %%DATADIR%%/images/cursors-bw +@dirrm %%DATADIR%%/images/editor +@dirrm %%DATADIR%%/images/halo/elven +@dirrm %%DATADIR%%/images/halo/holy +@dirrm %%DATADIR%%/images/halo +@dirrm %%DATADIR%%/images/help +@dirrm %%DATADIR%%/images/icons +@dirrm %%DATADIR%%/images/items +@dirrm %%DATADIR%%/images/maps +@dirrm %%DATADIR%%/images/misc +@dirrm %%DATADIR%%/images/portraits/Alex_Jarocha-Ernst +@dirrm %%DATADIR%%/images/portraits/James_Woo +@dirrm %%DATADIR%%/images/portraits/Jason_Lutes +@dirrm %%DATADIR%%/images/portraits/Neoriceisgood +@dirrm %%DATADIR%%/images/portraits/Nicholas_Kerpan +@dirrm %%DATADIR%%/images/portraits/Other +@dirrm %%DATADIR%%/images/portraits/Pekka_Aikio +@dirrm %%DATADIR%%/images/portraits/Tristan_Millner +@dirrm %%DATADIR%%/images/portraits +@dirrm %%DATADIR%%/images/projectiles +@dirrm %%DATADIR%%/images/terrain +@dirrm %%DATADIR%%/images/tools/exploder +@dirrm %%DATADIR%%/images/tools +@dirrm %%DATADIR%%/images/units/drakes +@dirrm %%DATADIR%%/images/units/dwarves +@dirrm %%DATADIR%%/images/units/elves-wood +@dirrm %%DATADIR%%/images/units/goblins +@dirrm %%DATADIR%%/images/units/human-loyalists +@dirrm %%DATADIR%%/images/units/human-magi +@dirrm %%DATADIR%%/images/units/human-outlaws +@dirrm %%DATADIR%%/images/units/merfolk +@dirrm %%DATADIR%%/images/units/monsters +@dirrm %%DATADIR%%/images/units/nagas +@dirrm %%DATADIR%%/images/units/ogres +@dirrm %%DATADIR%%/images/units/orcs +@dirrm %%DATADIR%%/images/units/saurians +@dirrm %%DATADIR%%/images/units/transport +@dirrm %%DATADIR%%/images/units/trolls +@dirrm %%DATADIR%%/images/units/undead +@dirrm %%DATADIR%%/images/units/undead-necromancers +@dirrm %%DATADIR%%/images/units/undead-skeletal +@dirrm %%DATADIR%%/images/units/woses +@dirrm %%DATADIR%%/images/units +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%%/music +@dirrm %%DATADIR%%/sounds +@dirrm %%DATADIR%% +@dirrmtry man/cs/man6 +@dirrmtry man/cs +@dirrmtry man/de/man6 +@dirrmtry man/de +@dirrmtry man/en_GB/man6 +@dirrmtry man/en_GB +@dirrmtry man/fr/man6 +@dirrmtry man/fr +@dirrmtry man/nl/man6 +@dirrmtry man/nl +@dirrmtry man/pt_BR/man6 +@dirrmtry man/pt_BR +@dirrmtry man/sk/man6 +@dirrmtry man/sk +@dirrmtry man/sv/man6 +@dirrmtry man/sv +%%GNOME:%%@cwd %%LOCALBASE%% +%%GNOME:%%share/applications/wesnoth.desktop +%%GNOME:%%share/pixmaps/wesnoth-icon.png +%%KDE:%%@cwd %%LOCALBASE%% +%%KDE:%%share/applnk/Games/TacticStrategy/wesnoth.desktop +%%KDE:%%share/icons/wesnoth-icon.png +%%SERVER:%%@unexec rmdir /var/run/wesnothd 2>/dev/null || echo "If you are permanently removing this port, you should do a 'rm -rf /var/run/wesnothd' to remove it." | fmt +@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES +@dirrmtry share/locale/ca_ES@valencia +@dirrmtry share/locale/gl_ES/LC_MESSAGES +@dirrmtry share/locale/gl_ES +@dirrmtry share/locale/la/LC_MESSAGES +@dirrmtry share/locale/la +@dirrmtry share/locale/nb_NO/LC_MESSAGES +@dirrmtry share/locale/nb_NO +@dirrmtry share/locale/tl/LC_MESSAGES +@dirrmtry share/locale/tl |