From gnats@FreeBSD.org  Mon Feb 28 04:00:52 2011
Return-Path: <gnats@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 8DE681065674
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 28 Feb 2011 04:00:52 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28])
	by mx1.freebsd.org (Postfix) with ESMTP id 7C5968FC18
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 28 Feb 2011 04:00:52 +0000 (UTC)
Received: from freefall.freebsd.org (localhost [127.0.0.1])
	by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p1S40qYu015113
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 28 Feb 2011 04:00:52 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p1S40qSO015107;
	Mon, 28 Feb 2011 04:00:52 GMT
	(envelope-from gnats)
Message-Id: <201102280400.p1S40qSO015107@freefall.freebsd.org>
Date: Mon, 28 Feb 2011 04:00:52 GMT
From: Rusty Nejdl <rnejdl@ringofsaturn.com>
Reply-To: Rusty Nejdl <rnejdl@ringofsaturn.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: Create new megaglest port
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         155111
>Category:       ports
>Synopsis:       Create new megaglest port
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    beat
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 28 04:10:11 UTC 2011
>Closed-Date:    Thu Apr 07 05:18:25 UTC 2011
>Last-Modified:  Thu Apr  7 05:20:07 UTC 2011
>Originator:     Rusty Nejdl
>Release:        FreeBSD 8.2-STABLE amd64
>Organization:
none
>Environment:
System: FreeBSD tethys.ringofsaturn.com 8.2-STABLE FreeBSD 8.2-STABLE #1: Sun Feb 27 14:44:37 CST 2011 root@tethys.ringofsaturn.com:/usr/obj/usr/src/sys/SATURN amd64


>Description:
	Create new megaglest and megaglest-data port.
>How-To-Repeat:
	see attached code from Sven Moller.
>Fix:

--- megaglest.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	megaglest
#	megaglest/files
#	megaglest/files/glest-wrapper.in
#	megaglest/files/patch-CMakeLists.txt
#	megaglest/files/pkg-message.in
#	megaglest/Makefile
#	megaglest/distinfo
#	megaglest/pkg-descr
#	megaglest/pkg-plist
#
echo c - megaglest
mkdir -p megaglest > /dev/null 2>&1
echo c - megaglest/files
mkdir -p megaglest/files > /dev/null 2>&1
echo x - megaglest/files/glest-wrapper.in
sed 's/^X//' >megaglest/files/glest-wrapper.in << '5ea987f0fef152801e9f9dc56b8eddd3'
X#!/bin/sh
X
X# The executable needs to be run from its data directory, and needs to store
X# configuration in it. We therefore mirror the data directory hierarchy in
X# ~/.megaglest, and create symlinks to the data files.
X
Xif [ -d ~/.megaglest ]
Xthen
X        echo "Using existing ~/.megaglest directory."
Xelse
X        echo "Creating ~/.megaglest directory."
X        cd %%DATADIR%% || exit 1
X        find * -type d -exec mkdir -p ~/.megaglest/{} \;
X        find * -type f -exec ln -s %%DATADIR%%/{} ~/.megaglest/{} \; 2>/dev/null
X	mkdir -p ~/.megaglest/screens
X	mkdir -p ~/.megaglest/shaders/standard
X	touch ~/.megaglest/megaglest.log
X	rm ~/.megaglest/glest.ini ~/.megaglest/megaglest ~/.megaglest/servers.ini
X	cp -f %%DATADIR%%/glest.ini ~/.megaglest/
X	cp -f %%DATADIR%%/glestkeys.ini ~/.megaglest/
X	cp -f %%DATADIR%%/servers.ini ~/.megaglest/
X	chmod 640 ~/.megaglest/glest.ini ~/.megaglest/servers.ini
Xfi
X
Xcd ~/.megaglest || exit 1
Xecho "Please be patient while loading MegaGlest..."
Xexec %%DATADIR%%/glest.bin "$@"
5ea987f0fef152801e9f9dc56b8eddd3
echo x - megaglest/files/patch-CMakeLists.txt
sed 's/^X//' >megaglest/files/patch-CMakeLists.txt << '0cf48dcc35be4ea5b764a9c7d6d3f81c'
X*** CMakeLists.txt	2011-02-10 17:41:19.000000000 +0100
X--- CMakeLists.txt_FreeBSD	2011-02-10 17:41:56.000000000 +0100
X*************** IF(CMAKE_COMPILER_IS_GNUCXX OR MINGW)
X*** 59,76 ****
X- 	OPTION(WANT_SVN_STAMP "use svn stamp" ON)
X- 	IF(WANT_SVN_STAMP)
X- 		# The stuff below gets SVN Global Revision # but ONLY when calling cmake!
X- 		# the FindSubversion.cmake module is part of the standard distribution
X- 		include(FindSubversion)
X- 		# extract working copy information for SOURCE_DIR into MY_XXX variables
X- 		Subversion_WC_INFO(${PROJECT_SOURCE_DIR} MG)
X- 		#add_definitions(-DSVNVERSION="${MG_WC_REVISION}")
X- 	ENDIF()
X- 
X- 	SET(SVN_VERSION_CMD "-DSVNVERSION='\\\"${MG_WC_REVISION}\\\"'")
X- 
X- 	IF(UNIX AND NOT APPLE)
X- 		# We do some funky character escaping to get the right stuff written out to 
X- 		# the final Makefile so we get the SVN Global Revsion #
X- 		SET(SVN_VERSION_CMD "-DSVNVERSION='\\\"`svnversion -n ${PROJECT_SOURCE_DIR}`\\\"'")
X- 	ENDIF()
X- 
X--- 58 ----
0cf48dcc35be4ea5b764a9c7d6d3f81c
echo x - megaglest/files/pkg-message.in
sed 's/^X//' >megaglest/files/pkg-message.in << '4bd19d518555d813587371be8ff8d703'
X###############################################################################
X
XThe megaglest game was installed
X
X1) You can see the megaglest configuration files into your ~/.megaglest directory
X
X2) If you choose install megaglest map editor, you can run it using :
X
X   # glest_editor
X
X3) If you have problems to run megaglest, please you should remove your ~/.megaglest 
X   directory and try again
X
X4) Enjoy it ;)
X
X###############################################################################
4bd19d518555d813587371be8ff8d703
echo x - megaglest/Makefile
sed 's/^X//' >megaglest/Makefile << '22a96243364cc23145ffe096a51871a8'
X# New ports collection makefile for:	megaglest
X# Date created:				2011-02-10
X# Whom:					Sven Moeller <smoeller@nichthelfer.de>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	megaglest
XPORTVERSION=	3.4.0
XCATEGORIES=	games
XMASTER_SITES=	SF/${PORTNAME}/current_release/
XDISTNAME=	${PORTNAME}-source-${PORTVERSION}
XDIST_SUBDIR=	${PORTNAME}
XSUB_FILES=	glest-wrapper pkg-message
XSUB_DIRS=	mk/linux
X
XMAINTAINER=	smoeller@nichthelfer.de
XCOMMENT=	OpenSource 3d real-time customizable strategy game
X
XLIB_DEPENDS=	xerces-c.27:${PORTSDIR}/textproc/xerces-c2 \
X		vorbis.4:${PORTSDIR}/audio/libvorbis
XBUILD_DEPENDS=	cmake:${PORTSDIR}/devel/cmake
XRUN_DEPENDS=	${DATADIR}/tutorials/basic_tutorial/basic_tutorial.xml:${PORTSDIR}/games/megaglest-data
X
XPLIST=		${PORTSDIR}/games/${DIST_SUBDIR}/pkg-plist
X
XUSE_BZIP2=	yes
XUSE_OPENAL=	al alut
XUSE_DOS2UNIX=	yes
XUSE_LUA=	5.1
XUSE_SDL=	yes
XUSE_GL=		yes
X
XCMAKE_CMD=	${LOCALBASE}/bin/cmake
X
X# OPTIONS=      EDITOR "Install MegaGlest Editor" off
X
X.include <bsd.port.pre.mk>
X
Xpre-extract:
X	@${MKDIR} ${WRKDIR}/${DISTNAME}
X
Xpre-configure:
X	@cd ${WRKSRC} && ${CMAKE_CMD} .
X
Xdo-build:
X	@cd ${WRKSRC} && make
X
Xdo-install:
X	@cd ${WRKSRC} && strip ${WRKSRC}/${SUB_DIRS}/glest.bin
X	@${MKDIR} ${DATADIR}
X	@${MKDIR} ${DOCSDIR}
X	${INSTALL_PROGRAM} ${WRKSRC}/${SUB_DIRS}/glest.bin ${DATADIR}
X	${INSTALL_DATA} ${WRKSRC}/glest.ini ${DATADIR}
X	${INSTALL_DATA} ${WRKSRC}/servers.ini ${DATADIR}
X	${INSTALL_DATA} ${WRKSRC}/glestkeys.ini ${DATADIR}
X	${INSTALL_SCRIPT} ${WRKDIR}/glest-wrapper ${PREFIX}/bin/${PORTNAME}
X.       if !defined(NOPORTDOCS)
X		${INSTALL_DATA} ${WRKSRC}/code_license.txt ${DOCSDIR}
X.       endif
X.	if defined(WITH_EDITOR)
X		${INSTALL_PROGRAM} ${WRKSRC}/${SUB_DIRS}/glest_editor ${PREFIX}/bin/
X		#@${ECHO_CMD} "bin/glest_editor" >> ${PLIST}
X.	endif
X
Xpost-install:
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.post.mk>
22a96243364cc23145ffe096a51871a8
echo x - megaglest/distinfo
sed 's/^X//' >megaglest/distinfo << '8d22f86bfa255e10c286691ee713f418'
XMD5 (megaglest/megaglest-source-3.4.0.tar.bz2) = 904846c60369f7898c7f83d506624d5a
XSHA256 (megaglest/megaglest-source-3.4.0.tar.bz2) = da17c210fb6c3c366bf0e2b44e243740008c3a6ad62f27d631002e46f0210654
XSIZE (megaglest/megaglest-source-3.4.0.tar.bz2) = 899312
8d22f86bfa255e10c286691ee713f418
echo x - megaglest/pkg-descr
sed 's/^X//' >megaglest/pkg-descr << 'c7802852462edac5cdbbcd872b1ce15f'
XMegaGlest is a fork of Glest. It features:
X- more factions
X- stable Network code for crossplatfor online gaming
X- strong AI
XGlest is a project for making a free 3d real-time
Xcustomizable strategy game. Current version is fully
Xplayable, includes single player game against CPU
Xcontrolled players, two factions with their
Xcorresponding tech trees, units, buildings and some
Xmaps.
X
XWWW: http://megaglest.org/
c7802852462edac5cdbbcd872b1ce15f
echo x - megaglest/pkg-plist
sed 's/^X//' >megaglest/pkg-plist << '085de6f891c513877aab8b9a0d6e2726'
Xbin/megaglest
X%%DATADIR%%/glest.bin
X%%DATADIR%%/glest.ini
X%%DATADIR%%/glestkeys.ini
X%%DATADIR%%/servers.ini
X%%PORTDOCS%%@dirrmtry %%DOCSDIR%%
X@dirrmtry %%DATADIR%%
085de6f891c513877aab8b9a0d6e2726
exit
--- megaglest.shar ends here ---

--- megaglest-data.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	megaglest-data
#	megaglest-data/Makefile
#	megaglest-data/distinfo
#	megaglest-data/pkg-descr
#	megaglest-data/pkg-plist
#
echo c - megaglest-data
mkdir -p megaglest-data > /dev/null 2>&1
echo x - megaglest-data/Makefile
sed 's/^X//' >megaglest-data/Makefile << 'c60268649f466fc6d6290d043c1c1de1'
X# New ports collection makefile for:	megaglest-data
X# Date created:				2010-11-12
X# Whom:					Sven Moeller <smoeller@nichthelfer.de>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	data
XPORTVERSION=	3.4.0
XCATEGORIES=	games
XMASTER_SITES=	SF/megaglest/current_release/
XPKGNAMEPREFIX=	megaglest-
XDISTNAME=	${PKGNAMEPREFIX}fixed_${PORTNAME}-${PORTVERSION}
XDIST_SUBDIR=	megaglest
X
XMAINTAINER=	smoeller@nichthelfer.de
XCOMMENT=	MegaGlest data files
X
XEXTRACT_SUFX=	.7z
XEXTRACT_DEPENDS=7z:${PORTSDIR}/archivers/p7zip
XEXTRACT_CMD=	7z
XEXTRACT_BEFORE_ARGS=	-y x
XEXTRACT_AFTER_ARGS=	-o${WRKSRC}
XUSE_DOS2UNIX=	*.log *.ini *.html *.txt *.lng
XNO_BUILD=	yes
X
XPLIST=		${PORTSDIR}/games/${DIST_SUBDIR}-${PORTNAME}/pkg-plist
XWRKSRC=		${WRKDIR}/megaglest_game
X
X# DATADIR=	share/${PKGNAMEPREFIX:S/-//}
X# DOCSDIR=	share/doc/${PKGNAMEPREFIX:S/-//}
XDATADIR=	share/${DIST_SUBDIR:S/_//}
XDOCSDIR=	share/doc/${DIST_SUBDIR:S/_//}
XGLESTDATADIRE=	data maps scenarios techs tilesets tutorials
X
Xdo-extract:
X	@${MKDIR} ${WRKSRC}
X	@cd ${WRKSRC}
X	${LOCALBASE}/bin/7z -y x ${DISTDIR}/${DIST_SUBDIR}/${PKGNAMEPREFIX}fixed_${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -o${WRKSRC}
X
Xpre-install:
X	@${RM} -f ${PLIST}
X
X.	for FILE in megaglest.ico
X		@${ECHO_CMD} "%%DATADIR%%/${FILE}" >> ${PLIST}
X.	endfor
X
X.	for DIRE in ${GLESTDATADIRE}
X		@cd ${WRKSRC} && \
X			${FIND} ${DIRE} -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/|' >> ${PLIST} && \
X				${FIND} ${DIRE} -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm %%DATADIR%%/|' >> ${PLIST}
X.	endfor
X	@${ECHO_CMD} "@dirrmtry %%DATADIR%%" >> ${PLIST}
X
X.	if !defined(NOPORTDOCS)
X		@cd ${WRKSRC}/docs && \
X			${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%PORTDOCS%%%%DOCSDIR%%/|' >> ${PLIST} && \
X				${FIND} * -type d | ${SORT} -r | ${SED} -e 's|^|%%PORTDOCS%%@dirrm %%DOCSDIR%%/|' >> ${PLIST}
X	@${ECHO_CMD} "%%PORTDOCS%%@dirrmtry %%DOCSDIR%%" >> ${PLIST}
X.	endif
X
Xdo-install:
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${PREFIX}/${DOCSDIR}
X	@${MKDIR} ${PREFIX}/${DOCSDIR}/glest_factions
X	${INSTALL_DATA} ${WRKSRC}/docs/data_license.txt ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/data_license_readme.txt ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/README ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/AUTHORS ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/LICENSE ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/CHANGELOG ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/data_license.txt ${PREFIX}/${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/docs/data_license_readme.txt ${PREFIX}/${DOCSDIR}
X	${FIND} ${WRKSRC}/docs/glest_factions/ -type f -exec ${INSTALL_DATA} "{}" ${PREFIX}/${DOCSDIR}/glest_factions \;
X.endif
X	@${MKDIR} ${PREFIX}/${DATADIR}
X.for FILE in megaglest.ico
X	${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/${DATADIR}
X.endfor
X
X.for DIRE in ${GLESTDATADIRE}
X	@cd ${WRKSRC} && \
X		${FIND} ${DIRE} -type d -exec ${MKDIR} "${PREFIX}/${DATADIR}/{}" \; && \
X			${FIND} ${DIRE} -type f -exec ${INSTALL_DATA} "{}" "${PREFIX}/${DATADIR}/{}" \;
X.endfor
X
X.include <bsd.port.mk>
c60268649f466fc6d6290d043c1c1de1
echo x - megaglest-data/distinfo
sed 's/^X//' >megaglest-data/distinfo << '392edb33742b055303a65bde9cc7ec1e'
XMD5 (megaglest/megaglest-fixed_data-3.4.0.7z) = 830c418abc96a2ec8b5bc6210b17440e
XSHA256 (megaglest/megaglest-fixed_data-3.4.0.7z) = 3944c2549f03c64a75a1c33835b22aaed3748a2712c192b5705978d8caef1d45
XSIZE (megaglest/megaglest-fixed_data-3.4.0.7z) = 189268275
392edb33742b055303a65bde9cc7ec1e
echo x - megaglest-data/pkg-descr
sed 's/^X//' >megaglest-data/pkg-descr << 'f15a8f80ec1009269500b8e6a673d942'
XThe megaglest data files.
X
XThis port install the data files needed to run megaglest a free 3d real-time 
Xcustomizable strategy game
X
XWWW: http://megaglest.org/
f15a8f80ec1009269500b8e6a673d942
echo x - megaglest-data/pkg-plist
sed 's/^X//' >megaglest-data/pkg-plist << 'b024a41f0bd37a871ee1affd11ba731a'
X%%DATADIR%%/megaglest.ico
X%%DATADIR%%/data/core/faction_textures/faction0.tga
X%%DATADIR%%/data/core/faction_textures/faction1.tga
X%%DATADIR%%/data/core/faction_textures/faction2.tga
X%%DATADIR%%/data/core/faction_textures/faction3.tga
X%%DATADIR%%/data/core/faction_textures/faction4.tga
X%%DATADIR%%/data/core/faction_textures/faction5.tga
X%%DATADIR%%/data/core/faction_textures/faction6.tga
X%%DATADIR%%/data/core/faction_textures/faction7.tga
X%%DATADIR%%/data/core/menu/about_models/character0.g3d
X%%DATADIR%%/data/core/menu/about_models/character1.g3d
X%%DATADIR%%/data/core/menu/about_models/character2.g3d
X%%DATADIR%%/data/core/menu/about_models/character3.g3d
X%%DATADIR%%/data/core/menu/about_models/character4.g3d
X%%DATADIR%%/data/core/menu/about_models/texture_archer.tga
X%%DATADIR%%/data/core/menu/about_models/texture_armored_swordman.tga
X%%DATADIR%%/data/core/menu/about_models/texture_battle_mage.tga
X%%DATADIR%%/data/core/menu/about_models/texture_mage_worker.tga
X%%DATADIR%%/data/core/menu/about_models/texture_mapa #1.tga
X%%DATADIR%%/data/core/menu/about_models/texture_swordman.tga
X%%DATADIR%%/data/core/menu/about_models/texture_worker.tga
X%%DATADIR%%/data/core/menu/about_models/tree1.g3d
X%%DATADIR%%/data/core/menu/main_model/menu_main.g3d
X%%DATADIR%%/data/core/menu/main_model/texture_Map #10.tga
X%%DATADIR%%/data/core/menu/main_model/texture_airship.tga
X%%DATADIR%%/data/core/menu/main_model/texture_archmage_tower.tga
X%%DATADIR%%/data/core/menu/main_model/texture_big_stone.tga
X%%DATADIR%%/data/core/menu/main_model/texture_canopy_tree_1.tga
X%%DATADIR%%/data/core/menu/main_model/texture_canopy_tree_2.tga
X%%DATADIR%%/data/core/menu/main_model/texture_castle.tga
X%%DATADIR%%/data/core/menu/main_model/texture_grass.tga
X%%DATADIR%%/data/core/menu/main_model/texture_mage_tower.tga
X%%DATADIR%%/data/core/menu/main_model/texture_mapa #19.tga
X%%DATADIR%%/data/core/menu/main_model/texture_skull.tga
X%%DATADIR%%/data/core/menu/main_model/texture_sky.tga
X%%DATADIR%%/data/core/menu/main_model/texture_trunk.tga
X%%DATADIR%%/data/core/menu/menu.xml
X%%DATADIR%%/data/core/menu/music/intro_music.ogg
X%%DATADIR%%/data/core/menu/music/menu_music.ogg
X%%DATADIR%%/data/core/menu/sound/attention.wav
X%%DATADIR%%/data/core/menu/sound/click_a.wav
X%%DATADIR%%/data/core/menu/sound/click_b.wav
X%%DATADIR%%/data/core/menu/sound/click_c.wav
X%%DATADIR%%/data/core/menu/sound/click_d.wav
X%%DATADIR%%/data/core/menu/sound/highlight.wav
X%%DATADIR%%/data/core/menu/textures/back.tga
X%%DATADIR%%/data/core/menu/textures/button_big.tga
X%%DATADIR%%/data/core/menu/textures/button_small.tga
X%%DATADIR%%/data/core/menu/textures/checkbox.tga
X%%DATADIR%%/data/core/menu/textures/checkbox_checked.tga
X%%DATADIR%%/data/core/menu/textures/custom_texture.tga
X%%DATADIR%%/data/core/menu/textures/line_horizontal.tga
X%%DATADIR%%/data/core/menu/textures/line_vertical.tga
X%%DATADIR%%/data/core/menu/textures/logo.tga
X%%DATADIR%%/data/core/menu/textures/logo1.png
X%%DATADIR%%/data/core/menu/textures/logo2.png
X%%DATADIR%%/data/core/menu/textures/water.tga
X%%DATADIR%%/data/core/misc_textures/closed_node.bmp
X%%DATADIR%%/data/core/misc_textures/fire_particle.tga
X%%DATADIR%%/data/core/misc_textures/g00.bmp
X%%DATADIR%%/data/core/misc_textures/g01.bmp
X%%DATADIR%%/data/core/misc_textures/g02.bmp
X%%DATADIR%%/data/core/misc_textures/g03.bmp
X%%DATADIR%%/data/core/misc_textures/g04.bmp
X%%DATADIR%%/data/core/misc_textures/g05.bmp
X%%DATADIR%%/data/core/misc_textures/g06.bmp
X%%DATADIR%%/data/core/misc_textures/g07.bmp
X%%DATADIR%%/data/core/misc_textures/grid.bmp
X%%DATADIR%%/data/core/misc_textures/l00.bmp
X%%DATADIR%%/data/core/misc_textures/l01.bmp
X%%DATADIR%%/data/core/misc_textures/l02.bmp
X%%DATADIR%%/data/core/misc_textures/l03.bmp
X%%DATADIR%%/data/core/misc_textures/l04.bmp
X%%DATADIR%%/data/core/misc_textures/l05.bmp
X%%DATADIR%%/data/core/misc_textures/l06.bmp
X%%DATADIR%%/data/core/misc_textures/l07.bmp
X%%DATADIR%%/data/core/misc_textures/observer.jpg
X%%DATADIR%%/data/core/misc_textures/open_node.bmp
X%%DATADIR%%/data/core/misc_textures/path_dest.bmp
X%%DATADIR%%/data/core/misc_textures/path_node.bmp
X%%DATADIR%%/data/core/misc_textures/path_start.bmp
X%%DATADIR%%/data/core/misc_textures/random.jpg
X%%DATADIR%%/data/core/misc_textures/snow_particle.tga
X%%DATADIR%%/data/core/misc_textures/water_splash.tga
X%%DATADIR%%/data/core/water_sounds/water0.wav
X%%DATADIR%%/data/core/water_sounds/water1.wav
X%%DATADIR%%/data/core/water_sounds/water2.wav
X%%DATADIR%%/data/core/water_sounds/water3.wav
X%%DATADIR%%/data/core/water_sounds/water4.wav
X%%DATADIR%%/data/core/water_sounds/water5.wav
X%%DATADIR%%/data/lang/dansk.lng
X%%DATADIR%%/data/lang/deutsch.lng
X%%DATADIR%%/data/lang/english.lng
X%%DATADIR%%/data/lang/espaol.lng
X%%DATADIR%%/data/lang/francais.lng
X%%DATADIR%%/data/lang/galego.lng
X%%DATADIR%%/data/lang/galician.lng
X%%DATADIR%%/data/lang/italiano.lng
X%%DATADIR%%/data/lang/portugues.lng
X@dirrm %%DATADIR%%/data/lang
X@dirrm %%DATADIR%%/data/core/water_sounds
X@dirrm %%DATADIR%%/data/core/misc_textures
X@dirrm %%DATADIR%%/data/core/menu/textures
X@dirrm %%DATADIR%%/data/core/menu/sound
X@dirrm %%DATADIR%%/data/core/menu/music
X@dirrm %%DATADIR%%/data/core/menu/main_model
X@dirrm %%DATADIR%%/data/core/menu/about_models
X@dirrm %%DATADIR%%/data/core/menu
X@dirrm %%DATADIR%%/data/core/faction_textures
X@dirrm %%DATADIR%%/data/core
X@dirrm %%DATADIR%%/data
X%%DATADIR%%/maps/2rivers.mgm
X%%DATADIR%%/maps/4hills8kings.mgm
X%%DATADIR%%/maps/4kingdoms8kings.mgm
X%%DATADIR%%/maps/6isle.mgm
X%%DATADIR%%/maps/ally_resist.mgm
X%%DATADIR%%/maps/beat_the_enemy.mgm
X%%DATADIR%%/maps/cauldron.mgm
X%%DATADIR%%/maps/center_castle.mgm
X%%DATADIR%%/maps/conflict.gbm
X%%DATADIR%%/maps/coop6_big_river.mgm
X%%DATADIR%%/maps/domination_isles.gbm
X%%DATADIR%%/maps/eight_gradient.mgm
X%%DATADIR%%/maps/eight_rivers.mgm
X%%DATADIR%%/maps/end_times.gbm
X%%DATADIR%%/maps/forest_for_four.gbm
X%%DATADIR%%/maps/four_rivers.gbm
X%%DATADIR%%/maps/fracture.gbm
X%%DATADIR%%/maps/highlands.mgm
X%%DATADIR%%/maps/in_the_forest.gbm
X%%DATADIR%%/maps/island_siege.gbm
X%%DATADIR%%/maps/land_of_plenty2.mgm
X%%DATADIR%%/maps/lau_lagoon.gbm
X%%DATADIR%%/maps/megakill3vs1.gbm
X%%DATADIR%%/maps/mountains.gbm
X%%DATADIR%%/maps/one_on_one.gbm
X%%DATADIR%%/maps/overgrown_city.gbm
X%%DATADIR%%/maps/pot_hole.gbm
X%%DATADIR%%/maps/redoubt.gbm
X%%DATADIR%%/maps/river_crossing.gbm
X%%DATADIR%%/maps/river_raid2.mgm
X%%DATADIR%%/maps/six_swamp_of_sorrow.mgm
X%%DATADIR%%/maps/swamp_of_sorrow.gbm
X%%DATADIR%%/maps/team_island.mgm
X%%DATADIR%%/maps/tropical4v4.mgm
X%%DATADIR%%/maps/tropical_arena.gbm
X%%DATADIR%%/maps/tt_goldrush_v2.gbm
X%%DATADIR%%/maps/twisty_canyon.gbm
X%%DATADIR%%/maps/valley_of_death.gbm
X%%DATADIR%%/maps/wadi_nefud2.gbm
X%%DATADIR%%/maps/waterworld.gbm
X@dirrm %%DATADIR%%/maps
X%%DATADIR%%/scenarios/amazones/amazones.xml
X%%DATADIR%%/scenarios/amazones/amazones_english.lng
X%%DATADIR%%/scenarios/amazones/amazones_galician.lng
X%%DATADIR%%/scenarios/amazones/amazones_italiano.lng
X%%DATADIR%%/scenarios/amazones/loading_screen.jpg
X%%DATADIR%%/scenarios/amazones_light/amazones_light.xml
X%%DATADIR%%/scenarios/amazones_light/amazones_light_english.lng
X%%DATADIR%%/scenarios/amazones_light/amazones_light_galician.lng
X%%DATADIR%%/scenarios/amazones_light/amazones_light_italiano.lng
X%%DATADIR%%/scenarios/amazones_light/loading_screen.jpg
X%%DATADIR%%/scenarios/anarchy/anarchy.xml
X%%DATADIR%%/scenarios/anarchy/loading_screen.jpg
X%%DATADIR%%/scenarios/beehive_castle/beehive_castle.xml
X%%DATADIR%%/scenarios/beginner_1/beginner_1.xml
X%%DATADIR%%/scenarios/beginner_1/loading_screen.jpg
X%%DATADIR%%/scenarios/beginner_2/beginner_2.xml
X%%DATADIR%%/scenarios/beginner_3/beginner_3.xml
X%%DATADIR%%/scenarios/duel/duel.xml
X%%DATADIR%%/scenarios/duel/loading_screen.jpg
X%%DATADIR%%/scenarios/egypt_mayhem/egypt_mayhem.xml
X%%DATADIR%%/scenarios/egypt_mayhem/loading_screen.jpg
X%%DATADIR%%/scenarios/indian_attack/indian_attack.xml
X%%DATADIR%%/scenarios/kill_the_magic/kill_the_magic.xml
X%%DATADIR%%/scenarios/kill_the_magic/loading_screen.jpg
X%%DATADIR%%/scenarios/magic_can_do_it/loading_screen.jpg
X%%DATADIR%%/scenarios/magic_can_do_it/magic_can_do_it.xml
X%%DATADIR%%/scenarios/my_island/my_island.xml
X%%DATADIR%%/scenarios/norsemen_attack/loading_screen.jpg
X%%DATADIR%%/scenarios/norsemen_attack/norsemen_attack.xml
X%%DATADIR%%/scenarios/one_hope/one_hope.xml
X%%DATADIR%%/scenarios/siege_of_despair/siege_of_despair.xml
X%%DATADIR%%/scenarios/storming/loading_screen.jpg
X%%DATADIR%%/scenarios/storming/storming.xml
X%%DATADIR%%/scenarios/storming/storming_english.lng
X%%DATADIR%%/scenarios/storming/storming_espaol.lng
X%%DATADIR%%/scenarios/storming/storming_galego.lng
X%%DATADIR%%/scenarios/storming/storming_galician.lng
X%%DATADIR%%/scenarios/tech_and_magic/tech_and_magic.xml
X%%DATADIR%%/scenarios/tough_duel/tough_duel.xml
X%%DATADIR%%/scenarios/waterworld/waterworld.xml
X@dirrm %%DATADIR%%/scenarios/waterworld
X@dirrm %%DATADIR%%/scenarios/tough_duel
X@dirrm %%DATADIR%%/scenarios/tech_and_magic
X@dirrm %%DATADIR%%/scenarios/storming
X@dirrm %%DATADIR%%/scenarios/siege_of_despair
X@dirrm %%DATADIR%%/scenarios/one_hope
X@dirrm %%DATADIR%%/scenarios/norsemen_attack
X@dirrm %%DATADIR%%/scenarios/my_island
X@dirrm %%DATADIR%%/scenarios/magic_can_do_it
X@dirrm %%DATADIR%%/scenarios/kill_the_magic
X@dirrm %%DATADIR%%/scenarios/indian_attack
X@dirrm %%DATADIR%%/scenarios/egypt_mayhem
X@dirrm %%DATADIR%%/scenarios/duel
X@dirrm %%DATADIR%%/scenarios/beginner_3
X@dirrm %%DATADIR%%/scenarios/beginner_2
X@dirrm %%DATADIR%%/scenarios/beginner_1
X@dirrm %%DATADIR%%/scenarios/beehive_castle
X@dirrm %%DATADIR%%/scenarios/anarchy
X@dirrm %%DATADIR%%/scenarios/amazones_light
X@dirrm %%DATADIR%%/scenarios/amazones
X@dirrm %%DATADIR%%/scenarios
X%%DATADIR%%/techs/megapack/factions/egypt/egypt.xml
X%%DATADIR%%/techs/megapack/factions/egypt/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/egypt/music/asak-jadeflange.ogg
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/air_pyramid.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/images/air_pyramid.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/images/airpyramid_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/images/airpyramid_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/images/battlemage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/air_pyramid.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/air_pyramid.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/air_pyramid_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/air_pyramid_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/air_pyramid_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/airpyramid.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models/arrow.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/sounds/ab_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/sounds/ab_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/sounds/ab_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/sounds/ab_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/sounds/ab_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/anubis_warrior.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/images/anubis.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/images/anubis_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/models/anubis.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/models/anubis_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/models/anubis_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/models/anubis_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/models/anubis_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_ack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_attack9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_die4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds/warrior_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/chicken.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/images/chicken.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/images/pig.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/models/chicken.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/models/chicken_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/models/chicken_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/models/chicken_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_die4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_standing1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds/chicken_standing2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/desert_camp.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/images/barracks.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp_burned.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp_produce_black.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/desert_camp_produce_white.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/texture_spearthrower.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/farm.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/images/farm.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/models/chickenfarm.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/models/chickenfarm.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/models/chickenfarm_contruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/models/farm_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/models/texture_farm.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/farm/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/ibis.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/images/horseman.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/images/horseman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/images/ibis.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/images/ibis_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/models/ibis.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/models/ibis_attack.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/models/ibis_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/models/ibis_fly.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/models/ibis_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/dragon_hit1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/dragon_hit2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/dragon_hit3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/dragon_hit4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack10.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack14.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack15.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_ack9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack14.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_die4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select10.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_select9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_walk1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_walk2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds/horseman_walk3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/images/daemon.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/images/daemon_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/images/mummy_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/models/mummy_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/models/mummy_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/models/mummy_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/models/mummy_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/models/texture_mummy2.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/mummy.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/chicken_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_attack10.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_attack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_attack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_attack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_attack14.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_die4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds/mummy_select7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/images/obelisk.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/images/technodrome.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models/obelisk.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models/obelisk.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models/obelisk_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models/obelisk_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models/obelisk_dying_rett.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models/obelisk_producing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/obelisk.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/images/heal.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/images/priest.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/images/priest_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/pharao_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/pharao_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/pharao_healing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/pharao_producing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/pharao_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/pharao_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/priest.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack15.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack16.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack17.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack18.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack19.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack20.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack21.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack22.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack23.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack24.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_hit1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_hit2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_hit3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/archmage_hit4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/shaman_heal1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/summoner_summon1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/summoner_summon2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/summoner_summon3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/summoner_summon4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/swordman_select7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/technician_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/technician_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/technician_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds/technician_die4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/construction_models/barracks_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/construction_models/pyramid_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/construction_models/technodrome_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/construction_models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/barracks_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/blacksmith_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/defense_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/farm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/pyramid_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/technodrome_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/images/pyramid.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/models/pyramid.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/models/pyramid.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/models/pyramid_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/models/pyramid_rett.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/pyramid.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/images/scarab.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/images/scarab_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models/dungball.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models/scarab.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models/scarab_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models/scarab_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models/scarab_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models/scarab_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/scarab.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_ack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack15.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack16.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack17.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack18.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack19.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack20.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack21.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack22.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack23.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack24.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_hit1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_hit2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_hit3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_hit4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds/archmage_select5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/images/worker.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/images/worker_build_advanced.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/images/worker_build_basic.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/images/worker_harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/images/worker_mine.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/images/worker_repair.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_building.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_harvesting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_mining.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_stop_harvesting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_stop_mining.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_walking_gold.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/slave_walking_wood.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/slave.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/images/snake.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/images/snake_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake_attacking_org.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake_rett.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/models/snake_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/snake.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_ack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack15.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack16.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack17.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack18.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack19.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack20.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack21.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack22.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack23.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack24.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_hit1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_hit2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_hit3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_hit4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds/archmage_select5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/models/spearman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/models/spearman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/models/spearman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/models/spearman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org/spearman_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/spearman_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearman/spearman.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/images/archer.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/spear.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/spearthrower_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/spearthrower_dying.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/spearthrower_standing.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/spearthrower_walking.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack10.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack12.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack13.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack14.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack15.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_ack9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select10.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select11.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select8.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/archer_select9.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/spearthrower.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/damage2_particles.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/damage_particles.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images/sphinx.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images/sphinx_attack.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images/sphinx_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/models/sphinx.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/models/sphinx.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/models/sphinx_construction.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/models/sphinx_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/sounds/defense_tower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/sounds/defense_tower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/sphinx.xml
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/images/temple.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/models/temple.g3d
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/models/temple.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/models/temple_org.tga
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/egypt/units/temple/temple.xml
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/power_of_ra/images/ra.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/power_of_ra/power_of_ra.xml
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/spear_weapons/images/piercing.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/spear_weapons/images/upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/spear_weapons/spear_weapons.xml
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/speedup_priest_production/images/stables.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/speedup_priest_production/speedup_priest_production.xml
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_ibis/images/stables.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_ibis/summon_ibis.xml
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_scarab/images/stables.bmp
X%%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_scarab/summon_scarab.xml
X%%DATADIR%%/techs/megapack/factions/indian/indian.xml
X%%DATADIR%%/techs/megapack/factions/indian/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/indian/music/music_indian.ogg
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/archer.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/archer.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/models/archer_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/models/archer_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/models/archer_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/models/archer_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_ack7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_die5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/axe_indian.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/images/axe_indian.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/images/axe_indian_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/models/axe_indian_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/models/worker_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack10.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack11.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack12.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack13.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack14.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack15.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack16.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack8.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_attack9.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds/daemon_select7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/axe_thrower.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/images/axe_thrower.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/images/axe_thrower_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/images/axe_thrower_attack1.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/beil.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/beil.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/worker_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_attack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_attack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds/axe_thrower_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/beehive.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/images/defense_tower.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/images/defense_tower_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/images/defense_tower_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/beehive.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/beehive.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/beehive_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/beehive_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/beehive_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/beehive_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/bees.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/bees.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/models/defense_tower_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/sounds/bee1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/sounds/bee2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/sounds/bee3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/beehive/sounds/bee4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/bigtent.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/images/bigtent.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/models/tent_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/models/tent_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/models/tipi2_2.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/models/tipi_big.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/bigtent/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/bull.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/images/bull.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/images/bull_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/images/bull_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/models/bull_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/models/bull_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/models/bull_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/models/texture_cow.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds/bull_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/campfire.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/images/campfire.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/models/campfire.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/models/campfire.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/models/campfire_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/models/campfire_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/campfire/smoke_particles2.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/fire_archer.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/fire_archer.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models/archer_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models/archer_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models/archer_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models/archer_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_die5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select8.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/archer_select9.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/firearrowhit1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/firearrowhit2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/firearrowhit3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds/firearrowhit4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/firegolem.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/images/firegolem.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/images/firegolem_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/golem_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/golem_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/golem_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/golem_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/golem_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/texture_golem.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack10.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack11.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack8.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_ack9.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_hit1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_hit2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select10.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select11.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select8.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_select9.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_walk1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds/golem_walk2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/horsefarm.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/images/farm.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/models/horse.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/models/horsefarm.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/models/horsefarm_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/models/horsefarm_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/models/horsefarm_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/dirt_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/dirt_particles2.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/horseman.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/images/horseman.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/images/horseman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/models/horseman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/models/horseman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/models/horseman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/models/horseman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/models/texture_horseman.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/models/texture_horseman.xcf
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_walk1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_walk2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds/horseman_walk3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/construction_models/barracks_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/construction_models/castle_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/construction_models/technodrome_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/construction_models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/barracks_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/blacksmith_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/castle_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/defense_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/farm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/technodrome_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/images/mainteepee.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/mainteepee.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/models/maintipi.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/models/maintipi.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/models/maintipi_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/models/maintipi_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/models/maintipi_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/images/reed.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/models/reed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/models/reed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/models/reed_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/models/reed_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/models/reed_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/reed.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/reed/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/images/barracks.2bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/images/barracks2.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/images/roundtent.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/models/roundtent.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/models/roundtent.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/models/roundtent_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/models/roundtent_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/models/roundtent_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/roundtent.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/images/molotov.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/images/shaman.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/images/shaman_heal.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/images/shaman_mine.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/images/shaman_repair.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_healing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_mining.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_repairing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/shaman_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/models/texture_technician.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/shaman.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_attack.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_build1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_build2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_build3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_build4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_build5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_build6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_heal1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_hit1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_hit2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_prod1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_prod2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_prod3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds/shaman_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/images/spearman.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/images/spearman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/models/sh_texture.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/models/spear_shaman.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/models/spearman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/models/spearman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/models/spearman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/models/spearman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_ack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_attack7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds/stickfighter_select7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/spearman/spearman.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models/swordman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models/swordman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models/swordman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models/swordman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models/swordman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models/texture_swordman.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/indiattack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/indiattack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/indiattack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/indiattack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_ack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack10.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack11.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack12.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack8.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_attack9.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_die4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds/stickfighter_select7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/stickfighter.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/images/tent.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/models/tent.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/models/tent_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/models/tent_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/models/tent_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/models/tipi2_2.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/tent/tent.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/images/eagle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/images/eagle_attack.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/images/eagle_attack2.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/images/eagle_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/dragon_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/dragon_attacking.log
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/dragon_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/dragon_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/dragon_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/texture_battle_mage.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/texture_dragon.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_ack1P..wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_attack1.P.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_f44ly.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_fly.P.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_fly.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_fly2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_hit1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_hit2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_hit3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_hit4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/eagle_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/ground_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/ground_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/ground_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds/ground_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/thunderbird.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/initiate_particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/totem.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/tower_of_souls_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/tower_of_souls_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/towers_of_wouls_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/images/towers_of_wouls_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/technician.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/texture_skull.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/totem.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/totem.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/totem_construction.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/totem_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/totem_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/models/tower_of_souls_projectile.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_attack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_attack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_attack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_attack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_hit1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_hit2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds/tower_hit3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/totem/totem.xml
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/images/worker.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/images/worker_build_advanced.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/images/worker_build_basic.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/images/worker_harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/images/worker_mine.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/images/worker_repair.bmp
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_building.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_harversting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_mining.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_walking_gold.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/models/worker_walking_wood.g3d
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack1-backup1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack2-backup1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack3-backup1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack4-backup1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack7-backup1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/indian/units/worker/worker.xml
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/bullfood/bullfood.xml
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/bullfood/images/bullfood.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/iron/images/iron.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/iron/iron.xml
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/iron_advanced/images/iron_advanced.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/iron_advanced/iron_advanced.xml
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/petroleum/images/petroleum.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/petroleum/petroleum.xml
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/stables/images/stables.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/stables/images/tech_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/stables/stables.xml
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/training_field/images/training_field.bmp
X%%DATADIR%%/techs/megapack/factions/indian/upgrades/training_field/training_field.xml
X%%DATADIR%%/techs/megapack/factions/magic/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/magic/magic.xml
X%%DATADIR%%/techs/megapack/factions/magic/music/music_magic.ogg
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/archmage.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/fire_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/archmage.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/archmage_ice_nova.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/archmage_static_fire.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/magic_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/magic_hold.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/magic_move.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/images/magic_stop.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/models/archmage_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/models/archmage_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/models/archmage_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/models/archmage_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/models/texture_archmage.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/particle_proj2.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack12.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack13.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack15.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack16.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack17.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack18.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack19.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack20.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack21.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack22.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack23.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack24.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_attack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_hit4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds/archmage_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/archmage_tower.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/images/archmage_tower.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/models/archmage_tower.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/models/texture_archmage_tower.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_building_fall7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds/magic_click.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/battlemage.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/images/battlemage.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/images/battlemage_fire_bolt.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/images/battlemage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models/battlemage_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models/battlemage_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models/battlemage_morphing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models/battlemage_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models/battlemage_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models/texture_battle_mage.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_ack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_attack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_hit4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select12.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select13.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select14.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds/battlemage_select9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/behemoth.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/images/behemoth.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/images/behemoth_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/models/behemoth_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/models/behemoth_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/models/behemoth_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/models/behemoth_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/models/texture_daemon_giant.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1a.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1b.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1c.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1d.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1e.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1f.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1g.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_attack1h.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_die4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_walk1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds/behemoth_walk2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/daemon.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/images/daemon.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/images/daemon_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/models/daemon_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/models/daemon_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/models/daemon_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/models/daemon_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/models/texture_creature.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack12.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack13.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack14.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack15.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack16.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_attack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_die4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds/daemon_select7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/dragon.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/images/dragon.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/images/dragon_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/images/dragon_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/models/dragon_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/models/dragon_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/models/dragon_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/models/dragon_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/models/texture_dragon.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_hit4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds/dragon_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/drake_rider.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/images/drake_rider.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/images/fire_breath_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/images/flare_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models/drake_rider_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models/drake_rider_attacking2.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models/drake_rider_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models/drake_rider_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models/drake_rider_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models/texture_dragon_rider.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/particle_proj_air.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/particle_splash_air.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_attack.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_die4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_walk1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds/dr_walk2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/energy_source/energy_source.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/energy_source/images/energy_source.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/energy_source/models/energy_source.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/energy_source/models/texture_energy_source.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/evil_dragon.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/images/evil_dragon.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/images/evil_dragon_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/images/evil_dragon_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/dragon_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/dragon_attacking.log
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/dragon_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/dragon_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/dragon_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/rett_texture_dragon.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/texture_battle_mage.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models/texture_dragon.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_f44ly.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_fly.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_fly2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_hit4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds/evil_dragon_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/ghost_armor.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/images/ghost_armor.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/images/ghost_armor_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/models/ghost_armor_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/models/ghost_armor_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/models/ghost_armor_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/models/ghost_armor_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/models/texture_magic_armor.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_ack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_attack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_die4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_die5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds/ghost_armor_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/golem.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/images/golem.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/images/golem_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/golem_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/golem_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/golem_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/golem_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/golem_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/texture_golem.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_ack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_select9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_walk1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds/golem_walk2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/golem.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate_build.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate_harvest.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate_harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate_particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/images/initiate_repair.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/initiate.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_building.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_harvesting.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_morphing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_repairing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/initiate_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/texture_mage_worker.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_ack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_attack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_build1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_build2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_build3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_harvest1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_harvest2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_harvest3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_harvest4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_hit4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_work_start1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds/initiate_work_start2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/library/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/library/images/library.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/library/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/library/library.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/library/models/library.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/library/models/library_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/library/models/texture_library.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/library/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/library/smoke_particles_2.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/construction_models/archmage_tower_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/construction_models/energy_source_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/construction_models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/construction_models/tower_of_souls_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/archmage_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/energy_source_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/library_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/mage_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/summoner_guild_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/texture_ashes_magic.tga.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/wicker_behemoth_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models/wicker_daemon_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/images/mage_tower.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/mage_tower.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/models/mage_tower.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/models/mage_tower_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/models/texture_mage_tower.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/images/golem.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/images/golem_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/golem_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/golem_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/golem_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/golem_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/golem_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/texture_golem.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/power_golem.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_ack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_select9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_walk1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds/golem_walk2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_armor.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_armour.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_attack.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_daemon.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_dragon.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/images/summoner_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/models/summoner_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/models/summoner_dying.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/models/summoner_producing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/models/summoner_standing.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/models/summoner_walking.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/models/texture_elementalist.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack12.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_ack9.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_attack8.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_die1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_die2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_die3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_die4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_die5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_hit4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select10.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select11.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select14.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select15.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select16.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select17.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_select7.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_summon1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_summon2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_summon3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds/summoner_summon4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner/summoner.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/images/summoner_guild.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/models/summoner_guild.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/models/summoner_guild_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/models/texture_summoner_guild.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/smoke_particles_2.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/summoner_guild.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images/initiate_particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images/tower_of_souls.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images/tower_of_souls_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images/tower_of_souls_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images/towers_of_wouls_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images/towers_of_wouls_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/models/texture_skull.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/models/texture_tower_of_souls.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/models/tower_of_souls.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/models/tower_of_souls_projectile.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_attack3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_attack4.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_attack5.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_attack6.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_hit1.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_hit2.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds/tower_hit3.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/tower_of_souls.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/images/wicker_behemoth.bmp
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/models/texture_wicker_daemon.tga
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/models/wicker_behemoth.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/models/wicker_behemoth_construction.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/models/wicker_behemoth_morph.g3d
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/sounds/wicker_fire.wav
X%%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/wicker_behemoth.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/ancient_summoning/ancient_summoning.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/ancient_summoning/images/ancient_summoning.bmp
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/ancient_summoning/images/magic_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/dragon_call/dragon_call.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/dragon_call/images/dragon_call.bmp
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_compression/energy_compression.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_compression/images/energy_compression.bmp
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_sharpening/energy_sharpening.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_sharpening/images/energy_sharpening.bmp
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/golem_power/golem_power.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/golem_power/images/golem_power.bmp
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/hell_gate/hell_gate.xml
X%%DATADIR%%/techs/megapack/factions/magic/upgrades/hell_gate/images/hell_gate.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/norsemen/music/manolo_camp-medieval.ogg
X%%DATADIR%%/techs/megapack/factions/norsemen/norsemen.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/archer.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/archer.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/archer_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/archer_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/archer_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/archer_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/norse_archer_tex.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack12.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack13.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack14.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack15.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_ack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/archer_select9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/axe_thrower.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/images/axe_thrower.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/images/axe_thrower_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/axe_die.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/axe_unit.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/beil.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/beil.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/worker_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds/axe_thrower_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/battleaxe.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/images/axe_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/images/battleaxe.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models/axeman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models/axeman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models/axeman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models/axeman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models/axeman_tex.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models/axeman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds/daemon_select7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/battleaxe_berzerk.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/images/axe_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/images/battleaxe_berzerk.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_morphing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_tex.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models/axeman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds/daemon_select7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/blacksmith.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/fire_particles1.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/images/blacksmith.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/models/blacksmith.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/models/blacksmith_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/models/blacksmith_upgrading.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/models/texture_blacksmith.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/smoke_particles_2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/sounds/anvil1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/sounds/anvil2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/sounds/anvil3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/sounds/anvil4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/bone_tent.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/images/bone_tent.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/models/whalehouse.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/models/whalehouse.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/models/whalehouse_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/models/whalehouse_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/models/whalehouse_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/castle.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/construction_models/barracks_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/construction_models/castle_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/construction_models/technodrome_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/construction_models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/barracks_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/blacksmith_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/castle_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/defense_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/farm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/summoner_guild_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/technodrome_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/texture_ashes_magic.tga.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/images/castle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/models/castle.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/models/texture_castle.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/castle/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/cow.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/images/cow.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/models/cow_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/models/cow_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/models/cow_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/models/texture_cow.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds/cow_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/crossbow.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/images/catapult_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/images/crossbow.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/axe_unit.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/crossbow.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/crossbow_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/crossbow_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/crossbow_spear.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/crossbow_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models/crossbow_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_attack1b.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_walk1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_walk2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_walk3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_walk4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_walk5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds/catapult_walk6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/cudgel_lady.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/images/cudgel.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/images/cudgel_lady.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models/cudgel_lady_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models/cudgel_lady_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models/cudgel_lady_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models/cudgel_lady_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models/cudgel_lady_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models/fat.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_ack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/cudgel_select9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/technician_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/technician_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/technician_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/technician_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/technician_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds/technician_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/farm.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/images/farm.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/models/farm.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/models/farm_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/models/texture_farm.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/smoke_particles2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/farm/smoke_particles3.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/fly_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/fly_particles2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/flyingvalkyrie.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images/flyingvalkyrie.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images/flyingvalkyrie_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images/particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images/particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images/spark.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/flyingvalkyrie.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/flyingvalkyrie_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/flyingvalkyrie_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/flyingvalkyrie_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/flyingvalkyrie_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/texture_horse.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models/texture_horseman.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack13.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack14.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_walk1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_walk2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/horseman_walk3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/summoner_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/summoner_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/summoner_hit3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds/summoner_hit4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/house.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/images/housesmall.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/models/house.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/models/house.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/models/house2.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/models/house2.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/house/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/images/med_bar.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/med_bar.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models/fat.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models/med_bar.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models/med_bar_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models/med_bar_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models/sailboat.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models/sailboat_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/smoke_particles2.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/images/initiate_particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/images/mistletree.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/images/mistletree_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/images/mistletree_stop_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/mistletree.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/mistleball.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/mistletree.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/mistletree_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/mistletree_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/mistletree_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/tree.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models/tree_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/images/spearman.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/images/spearman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models/norse_spearman2.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models/spearman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models/spearman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models/spearman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models/spearman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models/spearman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/spearman.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/images/spearman.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/images/spearman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/norse_spearman2.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/spearman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/spearman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/spearman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/spearman_morphing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/spearman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models/spearman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/spearman_berzerk.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models/armored_swordman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models/armored_swordman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models/armored_swordman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models/armored_swordman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models/armored_swordman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models/norse_swordman_1.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_die5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_die6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds/swordman_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/swordman.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/armored_swordman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/armored_swordman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/armored_swordman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/armored_swordman_morphing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/armored_swordman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/armored_swordman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models/norse_swordman_1.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_die5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_die6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/swordman_berzerk.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/air_particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/air_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/archmage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/eagle_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/thor.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images/thor_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models/thor.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models/thor_airattacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models/thor_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models/thor_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models/thor_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models/thor_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_hit3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/air_hit4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_ack9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select10.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select11.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_select9.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_walk1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds/golem_walk2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thor/thor.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/images/defense_tower.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/images/thor_totem.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/models/rock.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/models/thor_construction.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/models/thor_statue.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/models/thor_statue_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/models/thor_statue_morph.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/sounds/defense_tower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/sounds/defense_tower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/thortotem.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/build_advanced.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/build_basic.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/mine.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/repair.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/thrull.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images/worker_repair.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/norse-thrull.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/norse-thrull_old.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_building.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_harversting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_mining.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_walking_gold.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models/worker_walking_wood.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/thrull.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/effect_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/images/spark.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/images/valhalla.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/models/walhalla.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/models/walhalla.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/models/walhalla_construction.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/models/walhalla_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/models/walhalla_destroyed.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/team_particles.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/valhalla.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/images/air_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/images/particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/images/particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/images/sword_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/images/valkyrie.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie_airattacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie_charging.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models/valkyrie_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack7.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_attack8.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_hit1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_hit2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_hit3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/summoner_hit4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_attack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_attack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_attack6.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds/valkyrie_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/valkyrie.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/images/pig_attack.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/images/pig_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/images/wild_sow.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/models/pig_dying.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/models/pig_standing.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/models/pig_walking.g3d
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/models/rett_texture_pig.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/models/texture_pig.tga
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_ack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_ack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_ack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_ack4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_ack5.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_attack1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_attack2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_attack3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_die1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_die2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_die3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_die4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_select1.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_select2.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_select3.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds/pig_select4.wav
X%%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/wild_sow.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/advanced_iron/advanced_iron.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/advanced_iron/images/advanced_architecture.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/advanced_iron/images/advanced_iron.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/advanced_iron/images/tech_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/arrow/arrow.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/arrow/images/arrow.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/holy_valkyrie/holy_valkyrie.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/holy_valkyrie/images/holy_valkyrie.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/iron/images/iron.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/iron/iron.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/med/images/med.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/med/med.xml
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/root/images/root.bmp
X%%DATADIR%%/techs/megapack/factions/norsemen/upgrades/root/root.xml
X%%DATADIR%%/techs/megapack/factions/persian/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/persian/music/aminos-together_together.ogg
X%%DATADIR%%/techs/megapack/factions/persian/persian.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/blacksmith.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/images/blacksmith.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models/blacksmith.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models/blacksmith_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models/blacksmith_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models/blacksmith_upgrading.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models/house.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/smoke_particles_2.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/sounds/anvil1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/sounds/anvil2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/sounds/anvil3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/sounds/anvil4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/dust_back_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/dust_front_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/elephant.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/images/elephant.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/images/elephant_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/elephant.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/elephant_attack.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/elephant_attack_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/elephant_die.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/elephant_idle.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/elephant_walk.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/ele1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/ele2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/ele3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/ele4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/ele5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/eleattack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/eleattack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/elewalk2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds/swordman_select7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/elephant_cage.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/images/barracks.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/images/elephant.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/models/ehouse.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/models/ehouse.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/models/ehouse_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/models/ehouse_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/models/elephant.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/fakir.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/images/fakir.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/images/fakir_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/images/fakir_p.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/models/fakir_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/models/fakir_charging.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/models/fakir_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/models/fakir_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/models/fakir_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack10.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack11.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack12.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack8.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_attack9.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_die4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds/stickfighter_select7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/farm.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/images/farm.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/models/farm.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/models/farm.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/models/farm_constructing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/models/farm_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/models/farm_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/farm/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/fly_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/fly_particles2.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/flying_carpet.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/images/fire.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/images/flying_carpet.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/bottle.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/carpet_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/carpet_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/carpet_flying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/carpet_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/tex.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models/texture_flying_machine.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/molotov_particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/molotov_particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_attack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_die4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_die5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_hit1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_hit2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_sel1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_sel2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/carpet_sel3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_fly.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_hit1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_hit2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_hit3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_hit4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_hit5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds/orni_standing.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/genie.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/battlemage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/fire.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/genie.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/models/genie.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/models/genie_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/models/genie_charging.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/models/genie_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/models/genie_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/models/genie_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_die4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds/genie_select8.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/house/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/house/house.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/house/images/house.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/house/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/house/models/house.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/house/models/house.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/house/models/house_constructing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/house/models/house_destroy.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/house/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/images/battlemage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/images/fire.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/images/heal.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/images/magician.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/magician.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/ball.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/magician_ambient.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/magician_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/magician_building.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/magician_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/magician_healing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/magician_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/models/tex.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/die4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/hit.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/shaman_heal1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds/throw2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/images/attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/images/attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/images/initiate_particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/images/minaret.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/minaret.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/models/defense_tower_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/models/minaret.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/models/minaret.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/models/minaret_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/models/texture_skull.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/models/tower_of_souls_projectile.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/sounds/minarett1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/sounds/minarett2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/sounds/minarett3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/sounds/minarett4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/minaret/sounds/minarett5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/construction_models/barracks_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/construction_models/castle_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/construction_models/technodrome_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/construction_models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/barracks_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/blacksmith_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/castle_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/defense_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/farm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/technodrome_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/images/castle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/images/palace.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/models/temple.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/models/temple.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/models/temple_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/models/temple_destroyed.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/palace/palace.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/images/princess.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/images/princess_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/dirk.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/indian_princess_tex.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/princess_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/princess_charging.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/princess_dirkattacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/princess_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/princess_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/models/princess_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/princess.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/knife1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/knife2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/knife3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/knife4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_ack7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_attack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_die4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds/princess_select7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/images/sheep.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/images/sheep_p.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/models/schaf.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/models/sheep_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/models/sheep_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/models/sheep_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sheep.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep10.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep8.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep9.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds/sheep_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images/battlemage_particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images/defense_tower.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images/fire_off.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images/fire_on.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/models/snake_basket.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/models/snake_basket.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/models/snake_basket_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/models/snake_basket_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/models/snake_basket_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/snake_basket.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/sounds/snake_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/sounds/snake_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/sounds/snake_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/sounds/snake_attack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/sounds/snake_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/images/stickfighter.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/images/stickfighter_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/images/stickfighter_p.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/swordman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/swordman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/swordman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/swordman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/swordman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/texture_swordman.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/texture_swordman.xcf
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models/texture_swordman1.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack10.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack11.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack12.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack8.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_attack9.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_die4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds/stickfighter_select7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/stickfighter.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/models/perser_tex.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/models/swordman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/models/swordman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/models/swordman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/models/swordman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/models/texture_swordman.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds/swordman_select7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/swordman/swordman.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/images/princess.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/images/temple.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/models/barracks.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/models/palace.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/models/palace.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/models/texture_barracks.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/temple/temple.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/ghost_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/images/flying_carpet.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/images/genie.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/images/magician.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/images/tent.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/magic_lvl1_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/magic_lvl1_particles2.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/magic_lvl2_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/magic_lvl2_particles2.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent2_burned.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent2_construction.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent2_produce.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent2_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent2_upgrade.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tent_burned.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/models/tex.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/sounds/anvil1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/sounds/anvil2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/sounds/anvil3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/sounds/anvil4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/tent/tent.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/stone_attack.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/worker.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/worker_build_basic.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/worker_harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/worker_mine.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/images/worker_repair.bmp
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/stone.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/texture_airship.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/texture_worker.xcf
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_building.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_harversting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_mining.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_walking_gold.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/models/worker_walking_wood.g3d
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/attack.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/attack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/attack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/hit.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/persian/units/worker/worker.xml
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/corn_and_wicker/corn_and_wicker.xml
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/corn_and_wicker/images/cornandwicker.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/corn_and_wicker/images/tech_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_1/images/magic1.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_1/magic_level_1.xml
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_2/images/magic2.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_2/magic_level_2.xml
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/nails/images/nails.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/nails/nails.xml
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/shield/images/shield1.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/shield/shield.xml
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/weapons/images/weapons.bmp
X%%DATADIR%%/techs/megapack/factions/persian/upgrades/weapons/weapons.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/romans_beta/music/romans.ogg
X%%DATADIR%%/techs/megapack/factions/romans_beta/romans_beta.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/archer.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/archer.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/archer_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/archer_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/archer_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/archer_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack15.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_ack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/archer_select9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/upgrade_particles.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/axe_man.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/images/axe_man.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/models/axe_man_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/models/axe_man_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/models/axe_man_idle.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/models/axe_man_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/models/speer_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/ballista.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/images/air_ballista.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/images/air_ballista_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/images/air_ballista_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/arrow.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/ballstac_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/ballstac_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/ballstac_sit.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/texture_air_ballista.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/wood_b.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models/wtm.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/sounds/ab_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/sounds/ab_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/sounds/ab_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/sounds/ab_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/sounds/ab_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/battering_ram.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/images/air_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/images/br.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/images/thor_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/b_ram.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/battering_ram_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/battering_ram_attack_air.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/battering_ram_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/battering_ram_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/battering_ram_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models/wtm.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_hit1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_hit2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_hit3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/air_hit4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_ack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_hit1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_hit2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_select9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_walk1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds/golem_walk2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/blacksmith_shop.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/images/blacksmith.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models/blacksmith.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models/blacksmith_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models/blacksmith_upgrade.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models/rome_stone_1.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models/temple_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models/texture_blacksmith.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/sounds/anvil1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/sounds/anvil2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/sounds/anvil3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/sounds/anvil4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/catapult.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/images/catapult.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/images/catapult_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/catapult_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/catapult_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/catapult_sit.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/catapult_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models/wtm.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_attack1b.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_hit1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_hit2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_walk1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_walk2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_walk3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_walk4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_walk5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds/catapult_walk6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/cavalry.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/images/horseman.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/images/horseman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models/calvary_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models/calvary_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models/calvary_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models/calvary_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models/speer_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models/texture_horseman.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack15.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_ack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_select9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_walk1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_walk2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds/horseman_walk3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/cow.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/images/cow.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/models/cow_dying.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/models/cow_standing.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/models/cow_walking.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/models/texture_cow.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds/cow_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/fire_archer.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/archer.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/archer_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/archer_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/archer_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/archer_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack15.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_ack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/archer_select9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/fire_particles1.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/fire_particles3.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/forum.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/images/castle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/fourm.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/fourm_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/fourm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/rome_stone_1.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/roof.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/texture_blacksmith.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/smoke_particles1.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/smoke_particles2.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/smoke_particles3.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/general.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/images/guard.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/models/comander.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/models/roman_soldier_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/models/roman_soldier_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/models/roman_soldier_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/models/roman_soldier_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/gladiator.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/images/gladiator.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/models/g_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/models/g_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/models/g_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/models/g_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/models/g_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/gladiator_school.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/images/barracks.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/g_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/rome_stone_1.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/school.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/school_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/school_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/school_pruduse.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/school_pruduse2.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/speer_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/guard.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/images/guard.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/models/guard.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/models/guard_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/models/guard_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/models/guard_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/models/guard_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/guard_tower.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/images/defense_tower.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/images/defense_tower_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/images/defense_tower_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/archmage_tower_construction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/archmage_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/defense_tower_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/guard_tower.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/rome_stone_1.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/roof.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/texture_ashes_magic.tga.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/texture_defense_tower.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/sounds/defense_tower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/sounds/defense_tower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/fire_particles.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/images/castle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/military_camp.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/comander.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/recruiting_camp.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/recruiting_camp_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/recruiting_camp_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/tent.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/tent_b.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models/wood_b.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images/worker.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images/worker_build_advanced.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images/worker_build_basic.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images/worker_harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images/worker_mine.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images/worker_repair.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_building.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_harversting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_mining.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_walking_gold.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models/worker_walking_wood.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/slave.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/lightning_sheald.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/r_spear.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/s_speer_man_attack_air.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/s_speer_man_attack_land.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/s_speer_man_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/s_speer_man_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/s_speer_man_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models/speer_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds/swordman_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/spearman.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/images/guard.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models/lightning_sheald.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models/sword_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models/sword_man_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models/sword_man_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models/sword_man_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models/sword_man_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/swordsman.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/barracks_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/blacksmith_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/castle_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/defense_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/farm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/technodrome_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/images/castle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/images/par.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/models/rome_stone_1.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/models/temple.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/models/temple_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/models/temple_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/temple.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/upgrade.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/fire_particles1.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/images/barracks.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/tent.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/tent_b.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/training_camp.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/training_camp_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/training_camp_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models/wood_b.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/training_camp.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/images/horseman.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/images/horseman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models/comander.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models/heavy_calvary_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models/heavy_calvary_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models/heavy_calvary_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models/heavy_calvary_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models/texture_horseman.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack15.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_ack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_select9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_walk1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_walk2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds/horseman_walk3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/tribune.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/images/guard.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/lightning_sheald.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/speer_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/sword_man.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/t_f_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/t_f_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/t_f_sit.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models/t_f_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/turtle_formation.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/images/guard.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/images/heal.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/images/molotov.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/archer.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/b_ram.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/ballstac_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/battering_ram_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/catapult_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/script.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_attack.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_build.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_die.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_heal.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_learn.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_stand.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wartime_mechanic_walk.g3d
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wood.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models/wtm.tga
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack10.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack11.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack12.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack13.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack14.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack15.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack16.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack17.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack18.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack19.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_ack9.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_attack.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_build1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_build2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_build3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_build4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_build5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_build6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_die4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_hit1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_hit2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_mine1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_mine2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_mine3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_mine4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/technician_select8.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/wartime_mechanic.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/advanced_architecture/advanced_architecture.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/advanced_architecture/images/advanced_architecture.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/advanced_architecture/images/tech_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/bless_of_minerva/bless_of_minerva.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/bless_of_minerva/images/bless.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/enlarge_shields/enlarge_shields.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/enlarge_shields/images/shield2.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/formations/formations.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/formations/images/f.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/formations/images/tech_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/jupiter/images/jupiter.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/jupiter/jupiter.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/reinforce_armor/images/shield1.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/reinforce_armor/reinforce_armor.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sharpen_points/images/piercing.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sharpen_points/sharpen_points.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sign_of_mars/images/marz.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sign_of_mars/sign_of_mars.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/strengthen_swords/images/blade.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/strengthen_swords/strengthen_swords.xml
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/training_field/images/training_field.bmp
X%%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/training_field/training_field.xml
X%%DATADIR%%/techs/megapack/factions/tech/loading_screen.jpg
X%%DATADIR%%/techs/megapack/factions/tech/music/music_tech.ogg
X%%DATADIR%%/techs/megapack/factions/tech/tech.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/aerodrome.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/images/aerodrome.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/models/aerodrome.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/models/aerodrome_airship.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/models/aerodrome_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/models/aerodrome_ornithopter.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/models/texture_map #0.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/air_ballista.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/images/air_ballista.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/images/air_ballista_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/images/air_ballista_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models/air_ballista_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models/air_ballista_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models/air_ballista_morphing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models/air_ballista_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models/arrow.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models/texture_air_ballista.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/sounds/ab_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/sounds/ab_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/sounds/ab_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/sounds/ab_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/sounds/ab_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/airship.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/images/airship.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/images/airship_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/models/airship_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/models/airship_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/models/airship_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/models/airship_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/models/rocket.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/models/texture_airship.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/motor_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/motor_particles2.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds/airship_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds/airship_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds/airship_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds/airship_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds/airship_fly.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds/airship_hit.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/archer.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/archer.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/archer_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/archer_particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/tech_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/tech_hold.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/tech_move.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/images/tech_stop.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/models/archer_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/models/archer_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/models/archer_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/models/archer_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/models/archer_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/models/texture_archer.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack13.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack14.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack15.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_ack9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_attack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_attack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_die4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/archer_select9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/arrow_hit1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/arrow_hit2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/arrow_hit3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/arrow_hit4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds/arrow_hit5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/barracks.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/images/barracks.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/images/meeting_point.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/models/barracks.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/models/texture_barracks.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_building_fall1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_building_fall2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_building_fall3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_building_fall4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_building_fall5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_building_fall6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds/tech_click.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/battle_machine.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/images/battle_machine.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/images/battle_machine_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/images/battle_machine_attack_arrow.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/images/battle_machine_particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_attacking2.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_charging.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/battle_machine_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models/texture_battle_machine.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_attack1b.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_attack1c.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_attack2b.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_attack2c.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_walk1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_walk2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_walk3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_walk4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds/machine_walk5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/blacksmith.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/fire_particles1.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/fire_particles2.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/images/blacksmith.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/models/blacksmith.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/models/blacksmith_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/models/blacksmith_upgrading.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/models/texture_blacksmith.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/smoke_particles_2.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/sounds/anvil1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/sounds/anvil2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/sounds/anvil3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/sounds/anvil4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/castle.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/construction_models/barracks_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/construction_models/castle_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/construction_models/technodrome_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/construction_models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/barracks_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/blacksmith_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/castle_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/defense_tower_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/farm_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/technodrome_destruction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models/texture_ashes_tech.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/images/castle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/models/castle.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/models/texture_castle.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/castle/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/catapult.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/images/catapult.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/images/catapult_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/images/catapult_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/images/catapult_particle_splash.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/catapult_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/catapult_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/catapult_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/catapult_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/stone_model.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/texture_catapult.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_attack1b.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_hit1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_hit2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_walk1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_walk2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_walk3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_walk4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_walk5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds/catapult_walk6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/cow.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/images/cow.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/models/cow_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/models/cow_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/models/cow_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/models/texture_cow.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_die4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds/cow_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/defense_tower.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/images/defense_tower.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/images/defense_tower_attack_off.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/images/defense_tower_attack_on.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/images/defense_tower_particle_proj.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/models/defense_tower.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/models/defense_tower_arrow.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/models/defense_tower_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/models/texture_defense_tower.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/sounds/defense_tower_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/sounds/defense_tower_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/farm.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/images/farm.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/models/farm.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/models/farm_construction.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/models/texture_farm.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/models/texture_stone_wood.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/farm/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/guard.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/images/guard.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/images/guard_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/models/guard_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/models/guard_charging.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/models/guard_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/models/guard_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/models/guard_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/models/texture_armored_swordman.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_ack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack13.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack14.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_attack9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_die4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds/guard_select5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/horseman.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/images/horseman.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/images/horseman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/models/horseman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/models/horseman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/models/horseman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/models/horseman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/models/texture_horseman.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack13.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack14.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack15.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_ack9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack13.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack14.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_die4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_select9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_walk1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_walk2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds/horseman_walk3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/arrow_particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/arrow_particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/images/fire_arrow.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/images/ornithopter.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models/bottle.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models/ornithopter_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models/ornithopter_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models/ornithopter_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models/ornithopter_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models/texture_flying_machine.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/molotov_particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/molotov_particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/ornithopter.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_attack.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_fly.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_hit1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_hit2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_hit3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_hit4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_hit5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds/orni_standing.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/images/pig.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/models/pig_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/models/pig_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/models/pig_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/models/texture_pig.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/pig.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_die4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds/pig_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/images/swordman.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/images/swordman_attack.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/models/swordman_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/models/swordman_charging.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/models/swordman_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/models/swordman_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/models/swordman_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/models/texture_swordman.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_ack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_ack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_attack9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds/swordman_select7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/swordman/swordman.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/images/molotov.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/images/technician.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/images/technician_heal.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/images/technician_mine.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/images/technician_repair.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/images/tehnician_repair.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_attacking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_healing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_mining.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_morphing_battle_machine.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_morphing_catapult.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_repairing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/technician_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/texture_battle_machine_catapult.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/models/texture_technician.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/particle_proj.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/particle_splash.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack10.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack11.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack12.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack13.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack14.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack15.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack16.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack17.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack18.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack19.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_ack9.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_attack.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_build1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_build2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_build3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_build4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_build5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_build6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_die4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_hit1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_hit2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_mine1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_mine2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_mine3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_mine4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds/technician_select8.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/technician/technician.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/glow_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/images/particle.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/images/technodrome.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/models/technodrome.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/models/texture_technodrome.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/smoke_particles.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/technodrome/technodrome.xml
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/images/worker.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/images/worker_build_advanced.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/images/worker_build_basic.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/images/worker_harvest_wood.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/images/worker_mine.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/images/worker_repair.bmp
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/texture_wood.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/texture_worker.tga
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_building.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_dying.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_harversting_wood.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_mining.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_standing.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_standing_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_standing_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_walking.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_walking_gold.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_walking_loaded.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_walking_loaded_wood.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/models/worker_walking_wood.g3d
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_ack7.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_build1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_build2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_build3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_build4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_die1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_die2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_die3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_harvest_wood1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_harvest_wood2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_harvest_wood3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_mine1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_mine2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_mine3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_mine4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_mine5.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_mine6.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_select1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_select2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_select3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_select4.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_work_end1.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_work_end2.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds/worker_work_end3.wav
X%%DATADIR%%/techs/megapack/factions/tech/units/worker/worker.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/advanced_architecture/advanced_architecture.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/advanced_architecture/images/advanced_architecture.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/advanced_architecture/images/tech_upgrade_cancel.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/blade_weapons/blade_weapons.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/blade_weapons/images/blade.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/piercing_weapons/images/piercing.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/piercing_weapons/piercing_weapons.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/robotics/images/robotics.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/robotics/robotics.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_1/images/shield1.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_1/shield_level_1.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_2/images/shield2.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_2/shield_level_2.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/stables/images/stables.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/stables/stables.xml
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/training_field/images/training_field.bmp
X%%DATADIR%%/techs/megapack/factions/tech/upgrades/training_field/training_field.xml
X%%DATADIR%%/techs/megapack/megapack.xml
X%%DATADIR%%/techs/megapack/resources/energy/energy.xml
X%%DATADIR%%/techs/megapack/resources/energy/images/energy.bmp
X%%DATADIR%%/techs/megapack/resources/food/food.xml
X%%DATADIR%%/techs/megapack/resources/food/images/food.bmp
X%%DATADIR%%/techs/megapack/resources/gold/gold.xml
X%%DATADIR%%/techs/megapack/resources/gold/images/gold.bmp
X%%DATADIR%%/techs/megapack/resources/gold/models/gold.g3d
X%%DATADIR%%/techs/megapack/resources/gold/models/texture_gold.tga
X%%DATADIR%%/techs/megapack/resources/housing/housing.xml
X%%DATADIR%%/techs/megapack/resources/housing/images/housing.bmp
X%%DATADIR%%/techs/megapack/resources/stone/images/stone.bmp
X%%DATADIR%%/techs/megapack/resources/stone/models/stone.g3d
X%%DATADIR%%/techs/megapack/resources/stone/models/texture_stone.tga
X%%DATADIR%%/techs/megapack/resources/stone/stone.xml
X%%DATADIR%%/techs/megapack/resources/wood/images/wood.bmp
X%%DATADIR%%/techs/megapack/resources/wood/wood.xml
X@dirrm %%DATADIR%%/techs/megapack/resources/wood/images
X@dirrm %%DATADIR%%/techs/megapack/resources/wood
X@dirrm %%DATADIR%%/techs/megapack/resources/stone/models
X@dirrm %%DATADIR%%/techs/megapack/resources/stone/images
X@dirrm %%DATADIR%%/techs/megapack/resources/stone
X@dirrm %%DATADIR%%/techs/megapack/resources/housing/images
X@dirrm %%DATADIR%%/techs/megapack/resources/housing
X@dirrm %%DATADIR%%/techs/megapack/resources/gold/models
X@dirrm %%DATADIR%%/techs/megapack/resources/gold/images
X@dirrm %%DATADIR%%/techs/megapack/resources/gold
X@dirrm %%DATADIR%%/techs/megapack/resources/food/images
X@dirrm %%DATADIR%%/techs/megapack/resources/food
X@dirrm %%DATADIR%%/techs/megapack/resources/energy/images
X@dirrm %%DATADIR%%/techs/megapack/resources/energy
X@dirrm %%DATADIR%%/techs/megapack/resources
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/training_field/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/training_field
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/stables/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/stables
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_2/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_2
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_1/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/shield_level_1
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/robotics/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/robotics
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/piercing_weapons/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/piercing_weapons
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/blade_weapons/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/blade_weapons
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/advanced_architecture/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades/advanced_architecture
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/worker/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/worker/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/worker/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/worker
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technodrome/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technodrome/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technodrome
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technician/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technician/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technician/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/technician
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/swordman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/swordman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/swordman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/swordman
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/pig/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/pig/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/pig/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/pig
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/ornithopter/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/ornithopter
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/horseman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/horseman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/horseman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/horseman
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/guard/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/guard/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/guard/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/guard
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/farm/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/farm/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/farm
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/defense_tower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/defense_tower
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/cow/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/cow/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/cow/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/cow
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/catapult/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/catapult/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/catapult/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/catapult
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/castle/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/castle/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/castle/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/castle/construction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/castle
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/blacksmith/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/blacksmith
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/battle_machine/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/battle_machine
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/barracks/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/barracks/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/barracks/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/barracks
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/archer/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/archer/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/archer/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/archer
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/airship/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/airship/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/airship/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/airship
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/air_ballista/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/air_ballista
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/models
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/aerodrome/images
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units/aerodrome
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/units
X@dirrm %%DATADIR%%/techs/megapack/factions/tech/music
X@dirrm %%DATADIR%%/techs/megapack/factions/tech
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/training_field/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/training_field
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/strengthen_swords/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/strengthen_swords
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sign_of_mars/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sign_of_mars
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sharpen_points/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/sharpen_points
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/reinforce_armor/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/reinforce_armor
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/jupiter/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/jupiter
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/formations/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/formations
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/enlarge_shields/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/enlarge_shields
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/bless_of_minerva/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/bless_of_minerva
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/advanced_architecture/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades/advanced_architecture
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/wartime_mechanic
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/turtle_formation
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/tribune
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/training_camp
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/temple/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/temple
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/swordsman
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/spearman
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/slave/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/slave
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/military_camp
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard_tower
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/guard
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator_school
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/gladiator
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/general/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/general/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/general/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/general
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/forum/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/forum
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/fire_archer
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cow/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cow
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/cavalry
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/catapult
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/blacksmith_shop
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/battering_ram
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/ballista
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/axe_man
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/models
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/archer/images
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units/archer
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/units
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta/music
X@dirrm %%DATADIR%%/techs/megapack/factions/romans_beta
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/weapons/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/weapons
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/shield/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/shield
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/nails/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/nails
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_2/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_2
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_1/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/magic_level_1
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/corn_and_wicker/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades/corn_and_wicker
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/worker/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/worker/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/worker/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/worker
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/tent/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/tent/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/tent/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/tent
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/temple/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/temple/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/temple/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/temple
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/swordman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/swordman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/swordman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/swordman
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/stickfighter/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/stickfighter
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/snake_basket/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/snake_basket
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/sheep/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/sheep/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/sheep/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/sheep
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/princess/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/princess/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/princess/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/princess
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/palace/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/palace/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/palace/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/palace/construction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/palace
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/minaret/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/minaret/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/minaret/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/minaret
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/magician/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/magician/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/magician/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/magician
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/house/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/house/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/house
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/genie/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/genie/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/genie/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/genie
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/flying_carpet
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/farm/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/farm/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/farm
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/fakir/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/fakir/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/fakir/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/fakir
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant_cage
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/elephant
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/models
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/blacksmith/images
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units/blacksmith
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/units
X@dirrm %%DATADIR%%/techs/megapack/factions/persian/music
X@dirrm %%DATADIR%%/techs/megapack/factions/persian
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/root/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/root
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/med/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/med
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/iron/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/iron
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/holy_valkyrie/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/holy_valkyrie
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/arrow/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/arrow
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/advanced_iron/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades/advanced_iron
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/wild_sow
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valkyrie
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/valhalla
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thrull/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thrull
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thortotem
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thor/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thor/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thor/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/thor
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman_berzerk
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/swordman
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman_berzerk
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/spearman
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/mistletree
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/med_bar
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/house/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/house/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/house
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/flyingvalkyrie
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/farm/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/farm/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/farm
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cudgel_lady
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/crossbow
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cow/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cow/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cow/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/cow
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/castle/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/castle/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/castle/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/castle/construction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/castle
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/bone_tent
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/blacksmith
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe_berzerk
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/battleaxe
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/axe_thrower
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/archer/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/archer/models
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/archer/images
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units/archer
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/units
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen/music
X@dirrm %%DATADIR%%/techs/megapack/factions/norsemen
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/hell_gate/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/hell_gate
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/golem_power/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/golem_power
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_sharpening/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_sharpening
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_compression/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/energy_compression
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/dragon_call/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/dragon_call
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/ancient_summoning/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades/ancient_summoning
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/wicker_behemoth
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/tower_of_souls
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner_guild
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/summoner
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/power_golem/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/power_golem/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/power_golem/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/power_golem
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/mage_tower/construction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/mage_tower
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/library/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/library/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/library
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/initiate/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/initiate/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/initiate/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/initiate
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/golem/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/golem/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/golem/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/golem
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/ghost_armor
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/evil_dragon
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/energy_source/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/energy_source/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/energy_source
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/drake_rider/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/drake_rider
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/dragon/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/dragon/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/dragon/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/dragon
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/daemon/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/daemon/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/daemon/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/daemon
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/behemoth/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/behemoth/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/behemoth/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/behemoth
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/battlemage/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/battlemage/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/battlemage/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/battlemage
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage_tower
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage/models
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage/images
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units/archmage
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/units
X@dirrm %%DATADIR%%/techs/megapack/factions/magic/music
X@dirrm %%DATADIR%%/techs/megapack/factions/magic
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/training_field/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/training_field
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/stables/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/stables
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/petroleum/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/petroleum
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/iron_advanced/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/iron_advanced
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/iron/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/iron
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/bullfood/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades/bullfood
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/worker/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/worker/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/worker/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/worker
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/totem/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/totem/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/totem/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/totem
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/thunderbird/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/thunderbird
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/tent/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/tent/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/tent
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/stickfighter/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/stickfighter
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/spearman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/spearman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/spearman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/spearman
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/shaman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/shaman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/shaman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/shaman
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/roundtent/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/roundtent/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/roundtent/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/roundtent
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/reed/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/reed/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/reed
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/mainteepee/construction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/mainteepee
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horseman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horseman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horseman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horseman
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horsefarm/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/horsefarm
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/firegolem/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/firegolem/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/firegolem/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/firegolem
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/fire_archer/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/fire_archer
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/campfire/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/campfire/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/campfire
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bull/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bull/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bull/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bull
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bigtent/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bigtent/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/bigtent
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/beehive/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/beehive/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/beehive/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/beehive
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_thrower
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_indian/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/axe_indian
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/archer/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/archer/models
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/archer/images
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units/archer
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/units
X@dirrm %%DATADIR%%/techs/megapack/factions/indian/music
X@dirrm %%DATADIR%%/techs/megapack/factions/indian
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_scarab/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_scarab
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_ibis/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/summon_ibis
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/speedup_priest_production/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/speedup_priest_production
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/spear_weapons/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/spear_weapons
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/power_of_ra/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades/power_of_ra
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/upgrades
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/temple/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/temple/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/temple/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/temple
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/sphinx/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/sphinx
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearthrower
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds/org
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearman/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearman/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearman/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/spearman
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/snake/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/snake/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/snake/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/snake
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/slave/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/slave/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/slave/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/slave
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/scarab/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/scarab/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/scarab/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/scarab
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/destruction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/pyramid/construction_models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/pyramid
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/priest/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/priest/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/priest/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/priest
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/obelisk/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/obelisk
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/mummy/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/mummy/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/mummy/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/mummy
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/ibis/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/ibis/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/ibis/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/ibis
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/farm/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/farm/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/farm
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/desert_camp
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/chicken/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/chicken/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/chicken/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/chicken
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/anubis_warrior
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/sounds
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/models
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid/images
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units/air_pyramid
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/units
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt/music
X@dirrm %%DATADIR%%/techs/megapack/factions/egypt
X@dirrm %%DATADIR%%/techs/megapack/factions
X@dirrm %%DATADIR%%/techs/megapack
X@dirrm %%DATADIR%%/techs
X%%DATADIR%%/tilesets/autumn/autumn.xml
X%%DATADIR%%/tilesets/autumn/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/autumn/models/baum1.tga
X%%DATADIR%%/tilesets/autumn/models/baum2.g3d
X%%DATADIR%%/tilesets/autumn/models/baum2.tga
X%%DATADIR%%/tilesets/autumn/models/baum2big.g3d
X%%DATADIR%%/tilesets/autumn/models/big_stone.g3d
X%%DATADIR%%/tilesets/autumn/models/big_stone2.g3d
X%%DATADIR%%/tilesets/autumn/models/big_stone3.g3d
X%%DATADIR%%/tilesets/autumn/models/birke.g3d
X%%DATADIR%%/tilesets/autumn/models/birke.tga
X%%DATADIR%%/tilesets/autumn/models/broken_statue.g3d
X%%DATADIR%%/tilesets/autumn/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/autumn/models/deathtree.g3d
X%%DATADIR%%/tilesets/autumn/models/deathtree.tga
X%%DATADIR%%/tilesets/autumn/models/deathtree_small.g3d
X%%DATADIR%%/tilesets/autumn/models/farn.g3d
X%%DATADIR%%/tilesets/autumn/models/flower.tga
X%%DATADIR%%/tilesets/autumn/models/grass.tga
X%%DATADIR%%/tilesets/autumn/models/hanged.g3d
X%%DATADIR%%/tilesets/autumn/models/impaled.g3d
X%%DATADIR%%/tilesets/autumn/models/nettle.tga
X%%DATADIR%%/tilesets/autumn/models/nettles.g3d
X%%DATADIR%%/tilesets/autumn/models/nettles1.g3d
X%%DATADIR%%/tilesets/autumn/models/nettles2.g3d
X%%DATADIR%%/tilesets/autumn/models/none.g3d
X%%DATADIR%%/tilesets/autumn/models/obelisk.g3d
X%%DATADIR%%/tilesets/autumn/models/palm2.g3d
X%%DATADIR%%/tilesets/autumn/models/reed.g3d
X%%DATADIR%%/tilesets/autumn/models/reed.tga
X%%DATADIR%%/tilesets/autumn/models/rock.tga
X%%DATADIR%%/tilesets/autumn/models/statue.g3d
X%%DATADIR%%/tilesets/autumn/models/stone1.g3d
X%%DATADIR%%/tilesets/autumn/models/stone2.g3d
X%%DATADIR%%/tilesets/autumn/models/stone3.g3d
X%%DATADIR%%/tilesets/autumn/models/stump.tga
X%%DATADIR%%/tilesets/autumn/models/stump2.g3d
X%%DATADIR%%/tilesets/autumn/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/autumn/models/tanne.g3d
X%%DATADIR%%/tilesets/autumn/models/tanne2.g3d
X%%DATADIR%%/tilesets/autumn/models/tanne_big.g3d
X%%DATADIR%%/tilesets/autumn/models/tanne_small.g3d
X%%DATADIR%%/tilesets/autumn/models/tannen.tga
X%%DATADIR%%/tilesets/autumn/models/technician_statue.g3d
X%%DATADIR%%/tilesets/autumn/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/autumn/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/autumn/models/texture_bush.tga
X%%DATADIR%%/tilesets/autumn/models/texture_bush2.tga
X%%DATADIR%%/tilesets/autumn/models/texture_custom5.tga
X%%DATADIR%%/tilesets/autumn/models/texture_flowers.tga
X%%DATADIR%%/tilesets/autumn/models/texture_grass.tga
X%%DATADIR%%/tilesets/autumn/models/texture_hanged.tga
X%%DATADIR%%/tilesets/autumn/models/texture_impaled.tga
X%%DATADIR%%/tilesets/autumn/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/autumn/models/texture_statue.tga
X%%DATADIR%%/tilesets/autumn/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/autumn/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/autumn/sounds/chicken.wav
X%%DATADIR%%/tilesets/autumn/sounds/day.ogg
X%%DATADIR%%/tilesets/autumn/sounds/night.ogg
X%%DATADIR%%/tilesets/autumn/sounds/rain.ogg
X%%DATADIR%%/tilesets/autumn/sounds/wolf.wav
X%%DATADIR%%/tilesets/autumn/textures/surface1a.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1b.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1c.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1d.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1e.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1f.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1g.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1h.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1i.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface1j.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface2a.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface2b.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface2c.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface2d.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface2e.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface2f.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface3a.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface3b.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface4a.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface4b.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface4c.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface4d.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface4e.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface5a.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface5b.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface5c.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface5d.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface5e.bmp
X%%DATADIR%%/tilesets/autumn/textures/surface5f.bmp
X%%DATADIR%%/tilesets/autumn/textures/water.tga
X%%DATADIR%%/tilesets/autumn/textures/water_001.tga
X%%DATADIR%%/tilesets/autumn/textures/water_002.tga
X%%DATADIR%%/tilesets/autumn/textures/water_003.tga
X%%DATADIR%%/tilesets/autumn/textures/water_004.tga
X%%DATADIR%%/tilesets/autumn/textures/water_005.tga
X%%DATADIR%%/tilesets/autumn/textures/water_006.tga
X%%DATADIR%%/tilesets/autumn/textures/water_007.tga
X%%DATADIR%%/tilesets/autumn/textures/water_008.tga
X%%DATADIR%%/tilesets/dark_forest/dark_forest.xml
X%%DATADIR%%/tilesets/dark_forest/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/dark_forest/models/big_stone.g3d
X%%DATADIR%%/tilesets/dark_forest/models/broken_statue.g3d
X%%DATADIR%%/tilesets/dark_forest/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/dark_forest/models/bush_1.g3d
X%%DATADIR%%/tilesets/dark_forest/models/bush_2.g3d
X%%DATADIR%%/tilesets/dark_forest/models/bush_3.g3d
X%%DATADIR%%/tilesets/dark_forest/models/bush_4.g3d
X%%DATADIR%%/tilesets/dark_forest/models/bush_5.g3d
X%%DATADIR%%/tilesets/dark_forest/models/dead_tree.g3d
X%%DATADIR%%/tilesets/dark_forest/models/grass.g3d
X%%DATADIR%%/tilesets/dark_forest/models/hanged.g3d
X%%DATADIR%%/tilesets/dark_forest/models/impaled.g3d
X%%DATADIR%%/tilesets/dark_forest/models/none.g3d
X%%DATADIR%%/tilesets/dark_forest/models/obelisk.g3d
X%%DATADIR%%/tilesets/dark_forest/models/riverside_object.g3d
X%%DATADIR%%/tilesets/dark_forest/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/dark_forest/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/dark_forest/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/dark_forest/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/dark_forest/models/statue.g3d
X%%DATADIR%%/tilesets/dark_forest/models/stone1.g3d
X%%DATADIR%%/tilesets/dark_forest/models/stone2.g3d
X%%DATADIR%%/tilesets/dark_forest/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/dark_forest/models/technician_statue.g3d
X%%DATADIR%%/tilesets/dark_forest/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_bush.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_bush2.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_canopy_tree_1.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_canopy_tree_2.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_canopy_tree_3.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_canopy_tree_4.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_canopy_tree_5.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_flowers.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_grass.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_grass_2.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_hanged.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_impaled.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_statue.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_stone.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_trunk.tga
X%%DATADIR%%/tilesets/dark_forest/models/texture_water_object.tga
X%%DATADIR%%/tilesets/dark_forest/models/tree_1.g3d
X%%DATADIR%%/tilesets/dark_forest/models/tree_2.g3d
X%%DATADIR%%/tilesets/dark_forest/models/tree_3.g3d
X%%DATADIR%%/tilesets/dark_forest/models/tree_4.g3d
X%%DATADIR%%/tilesets/dark_forest/models/tree_5.g3d
X%%DATADIR%%/tilesets/dark_forest/sounds/chicken.wav
X%%DATADIR%%/tilesets/dark_forest/sounds/day.ogg
X%%DATADIR%%/tilesets/dark_forest/sounds/night.ogg
X%%DATADIR%%/tilesets/dark_forest/sounds/rain.ogg
X%%DATADIR%%/tilesets/dark_forest/sounds/wolf.wav
X%%DATADIR%%/tilesets/dark_forest/textures/surface1a.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1b.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1c.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1d.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1e.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1f.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1g.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1h.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1i.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface1j.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface2a.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface2b.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface2c.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface2d.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface2e.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface2f.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface3a.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface3b.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface4a.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface5a.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface5b.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface5c.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface5d.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface5e.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/surface5f.bmp
X%%DATADIR%%/tilesets/dark_forest/textures/water_001.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_002.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_003.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_004.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_005.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_006.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_007.tga
X%%DATADIR%%/tilesets/dark_forest/textures/water_008.tga
X%%DATADIR%%/tilesets/desert2/desert2.xml
X%%DATADIR%%/tilesets/desert2/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/desert2/models/big_stone.g3d
X%%DATADIR%%/tilesets/desert2/models/big_stone2.g3d
X%%DATADIR%%/tilesets/desert2/models/big_stone3.g3d
X%%DATADIR%%/tilesets/desert2/models/big_tree1.g3d
X%%DATADIR%%/tilesets/desert2/models/big_tree2.g3d
X%%DATADIR%%/tilesets/desert2/models/broken_statue.g3d
X%%DATADIR%%/tilesets/desert2/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/desert2/models/bush.g3d
X%%DATADIR%%/tilesets/desert2/models/bush2.g3d
X%%DATADIR%%/tilesets/desert2/models/bush3.g3d
X%%DATADIR%%/tilesets/desert2/models/bush4.g3d
X%%DATADIR%%/tilesets/desert2/models/bush5.g3d
X%%DATADIR%%/tilesets/desert2/models/bushtree.g3d
X%%DATADIR%%/tilesets/desert2/models/bushtree.tga
X%%DATADIR%%/tilesets/desert2/models/deadtree.tga
X%%DATADIR%%/tilesets/desert2/models/grass.g3d
X%%DATADIR%%/tilesets/desert2/models/grass.tga
X%%DATADIR%%/tilesets/desert2/models/hanged.g3d
X%%DATADIR%%/tilesets/desert2/models/impaled.g3d
X%%DATADIR%%/tilesets/desert2/models/kaktus_deadtree.g3d
X%%DATADIR%%/tilesets/desert2/models/kaktusbusch.g3d
X%%DATADIR%%/tilesets/desert2/models/kaktusbusch.tga
X%%DATADIR%%/tilesets/desert2/models/kaktusbusch2.g3d
X%%DATADIR%%/tilesets/desert2/models/kaktusbusch3.g3d
X%%DATADIR%%/tilesets/desert2/models/katusgrund.tga
X%%DATADIR%%/tilesets/desert2/models/none.g3d
X%%DATADIR%%/tilesets/desert2/models/obelisk.g3d
X%%DATADIR%%/tilesets/desert2/models/palm.g3d
X%%DATADIR%%/tilesets/desert2/models/palm2.g3d
X%%DATADIR%%/tilesets/desert2/models/palm_deada.g3d
X%%DATADIR%%/tilesets/desert2/models/palm_deadb.g3d
X%%DATADIR%%/tilesets/desert2/models/palm_deadc.g3d
X%%DATADIR%%/tilesets/desert2/models/palmstump.tga
X%%DATADIR%%/tilesets/desert2/models/palmtexture.tga
X%%DATADIR%%/tilesets/desert2/models/palmtexture2.tga
X%%DATADIR%%/tilesets/desert2/models/riverside_object.g3d
X%%DATADIR%%/tilesets/desert2/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/desert2/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/desert2/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/desert2/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/desert2/models/statue.g3d
X%%DATADIR%%/tilesets/desert2/models/stone1.g3d
X%%DATADIR%%/tilesets/desert2/models/stone2.g3d
X%%DATADIR%%/tilesets/desert2/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/desert2/models/technician_statue.g3d
X%%DATADIR%%/tilesets/desert2/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/desert2/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/desert2/models/texture_bush.tga
X%%DATADIR%%/tilesets/desert2/models/texture_bush2.tga
X%%DATADIR%%/tilesets/desert2/models/texture_custom5.tga
X%%DATADIR%%/tilesets/desert2/models/texture_flowers.tga
X%%DATADIR%%/tilesets/desert2/models/texture_grass.tga
X%%DATADIR%%/tilesets/desert2/models/texture_hanged.tga
X%%DATADIR%%/tilesets/desert2/models/texture_impaled.tga
X%%DATADIR%%/tilesets/desert2/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/desert2/models/texture_statue.tga
X%%DATADIR%%/tilesets/desert2/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/desert2/models/texture_stone.tga
X%%DATADIR%%/tilesets/desert2/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/desert2/models/texture_tree3.tga
X%%DATADIR%%/tilesets/desert2/models/texture_tree4.tga
X%%DATADIR%%/tilesets/desert2/models/texture_water_object.tga
X%%DATADIR%%/tilesets/desert2/sounds/chicken.wav
X%%DATADIR%%/tilesets/desert2/sounds/day.ogg
X%%DATADIR%%/tilesets/desert2/sounds/night.ogg
X%%DATADIR%%/tilesets/desert2/sounds/rain.ogg
X%%DATADIR%%/tilesets/desert2/sounds/wolf.wav
X%%DATADIR%%/tilesets/desert2/textures/beach0.bmp
X%%DATADIR%%/tilesets/desert2/textures/beach1.bmp
X%%DATADIR%%/tilesets/desert2/textures/beach1b.bmp
X%%DATADIR%%/tilesets/desert2/textures/beach2.bmp
X%%DATADIR%%/tilesets/desert2/textures/beach3.bmp
X%%DATADIR%%/tilesets/desert2/textures/beach4.bmp
X%%DATADIR%%/tilesets/desert2/textures/beach5.bmp
X%%DATADIR%%/tilesets/desert2/textures/dark.bmp
X%%DATADIR%%/tilesets/desert2/textures/sand1.bmp
X%%DATADIR%%/tilesets/desert2/textures/sand2.bmp
X%%DATADIR%%/tilesets/desert2/textures/sand3.bmp
X%%DATADIR%%/tilesets/desert2/textures/sand4.bmp
X%%DATADIR%%/tilesets/desert2/textures/surface5a.bmp
X%%DATADIR%%/tilesets/desert2/textures/surface5b.bmp
X%%DATADIR%%/tilesets/desert2/textures/surface5c.bmp
X%%DATADIR%%/tilesets/desert2/textures/surface5d.bmp
X%%DATADIR%%/tilesets/desert2/textures/surface5e.bmp
X%%DATADIR%%/tilesets/desert2/textures/surface5f.bmp
X%%DATADIR%%/tilesets/desert2/textures/water_001.tga
X%%DATADIR%%/tilesets/desert2/textures/water_002.tga
X%%DATADIR%%/tilesets/desert2/textures/water_003.tga
X%%DATADIR%%/tilesets/desert2/textures/water_004.tga
X%%DATADIR%%/tilesets/desert2/textures/water_005.tga
X%%DATADIR%%/tilesets/desert2/textures/water_006.tga
X%%DATADIR%%/tilesets/desert2/textures/water_007.tga
X%%DATADIR%%/tilesets/desert2/textures/water_008.tga
X%%DATADIR%%/tilesets/desert2/textures/way1.bmp
X%%DATADIR%%/tilesets/desert2/textures/way2.bmp
X%%DATADIR%%/tilesets/desert2/textures/way3.bmp
X%%DATADIR%%/tilesets/evergreen/evergreen.xml
X%%DATADIR%%/tilesets/evergreen/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/evergreen/models/baum1.tga
X%%DATADIR%%/tilesets/evergreen/models/baum2.g3d
X%%DATADIR%%/tilesets/evergreen/models/baum2.tga
X%%DATADIR%%/tilesets/evergreen/models/baum2big.g3d
X%%DATADIR%%/tilesets/evergreen/models/big_stone.g3d
X%%DATADIR%%/tilesets/evergreen/models/big_stone2.g3d
X%%DATADIR%%/tilesets/evergreen/models/big_stone3.g3d
X%%DATADIR%%/tilesets/evergreen/models/birke.g3d
X%%DATADIR%%/tilesets/evergreen/models/birke.tga
X%%DATADIR%%/tilesets/evergreen/models/broken_statue.g3d
X%%DATADIR%%/tilesets/evergreen/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/evergreen/models/deathtree.g3d
X%%DATADIR%%/tilesets/evergreen/models/deathtree.tga
X%%DATADIR%%/tilesets/evergreen/models/deathtree_small.g3d
X%%DATADIR%%/tilesets/evergreen/models/farn.g3d
X%%DATADIR%%/tilesets/evergreen/models/flower.tga
X%%DATADIR%%/tilesets/evergreen/models/grass.tga
X%%DATADIR%%/tilesets/evergreen/models/hanged.g3d
X%%DATADIR%%/tilesets/evergreen/models/impaled.g3d
X%%DATADIR%%/tilesets/evergreen/models/nettle.tga
X%%DATADIR%%/tilesets/evergreen/models/nettles.g3d
X%%DATADIR%%/tilesets/evergreen/models/nettles1.g3d
X%%DATADIR%%/tilesets/evergreen/models/nettles2.g3d
X%%DATADIR%%/tilesets/evergreen/models/none.g3d
X%%DATADIR%%/tilesets/evergreen/models/obelisk.g3d
X%%DATADIR%%/tilesets/evergreen/models/palm2.g3d
X%%DATADIR%%/tilesets/evergreen/models/reed.g3d
X%%DATADIR%%/tilesets/evergreen/models/reed.tga
X%%DATADIR%%/tilesets/evergreen/models/rock.tga
X%%DATADIR%%/tilesets/evergreen/models/statue.g3d
X%%DATADIR%%/tilesets/evergreen/models/stone1.g3d
X%%DATADIR%%/tilesets/evergreen/models/stone2.g3d
X%%DATADIR%%/tilesets/evergreen/models/stone3.g3d
X%%DATADIR%%/tilesets/evergreen/models/stump.tga
X%%DATADIR%%/tilesets/evergreen/models/stump2.g3d
X%%DATADIR%%/tilesets/evergreen/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/evergreen/models/tanne.g3d
X%%DATADIR%%/tilesets/evergreen/models/tanne2.g3d
X%%DATADIR%%/tilesets/evergreen/models/tanne_big.g3d
X%%DATADIR%%/tilesets/evergreen/models/tanne_small.g3d
X%%DATADIR%%/tilesets/evergreen/models/tannen.tga
X%%DATADIR%%/tilesets/evergreen/models/technician_statue.g3d
X%%DATADIR%%/tilesets/evergreen/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_bush.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_bush2.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_custom5.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_flowers.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_grass.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_hanged.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_impaled.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_statue.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/evergreen/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/evergreen/sounds/chicken.wav
X%%DATADIR%%/tilesets/evergreen/sounds/day.ogg
X%%DATADIR%%/tilesets/evergreen/sounds/night.ogg
X%%DATADIR%%/tilesets/evergreen/sounds/rain.ogg
X%%DATADIR%%/tilesets/evergreen/sounds/wolf.wav
X%%DATADIR%%/tilesets/evergreen/textures/surface1a.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1b.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1c.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1d.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1e.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1f.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1g.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1h.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1i.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface1j.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface2a.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface2b.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface2c.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface2d.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface2e.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface2f.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface3a.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface3b.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface4a.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface5a.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface5b.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface5c.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface5d.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface5e.bmp
X%%DATADIR%%/tilesets/evergreen/textures/surface5f.bmp
X%%DATADIR%%/tilesets/evergreen/textures/water.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_001.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_002.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_003.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_004.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_005.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_006.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_007.tga
X%%DATADIR%%/tilesets/evergreen/textures/water_008.tga
X%%DATADIR%%/tilesets/fernland/fernland.xml
X%%DATADIR%%/tilesets/fernland/models/baum1.tga
X%%DATADIR%%/tilesets/fernland/models/big_stone.g3d
X%%DATADIR%%/tilesets/fernland/models/big_stone2.g3d
X%%DATADIR%%/tilesets/fernland/models/big_stone3.g3d
X%%DATADIR%%/tilesets/fernland/models/bigfern1.g3d
X%%DATADIR%%/tilesets/fernland/models/bigfern1.png
X%%DATADIR%%/tilesets/fernland/models/bigfern2.g3d
X%%DATADIR%%/tilesets/fernland/models/bigfern3.g3d
X%%DATADIR%%/tilesets/fernland/models/bigfern3.png
X%%DATADIR%%/tilesets/fernland/models/br1.g3d
X%%DATADIR%%/tilesets/fernland/models/br2.g3d
X%%DATADIR%%/tilesets/fernland/models/br3.g3d
X%%DATADIR%%/tilesets/fernland/models/calendar.g3d
X%%DATADIR%%/tilesets/fernland/models/calendar_aztec.png
X%%DATADIR%%/tilesets/fernland/models/deadfern1.g3d
X%%DATADIR%%/tilesets/fernland/models/deadfern2.g3d
X%%DATADIR%%/tilesets/fernland/models/deadfern3.g3d
X%%DATADIR%%/tilesets/fernland/models/deadfern4.g3d
X%%DATADIR%%/tilesets/fernland/models/deadfern5.g3d
X%%DATADIR%%/tilesets/fernland/models/farn.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree1.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree1.png
X%%DATADIR%%/tilesets/fernland/models/ferntree1a.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree2.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree2.png
X%%DATADIR%%/tilesets/fernland/models/ferntree2a.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree3.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree4.g3d
X%%DATADIR%%/tilesets/fernland/models/ferntree4.png
X%%DATADIR%%/tilesets/fernland/models/hanged.g3d
X%%DATADIR%%/tilesets/fernland/models/impaled.g3d
X%%DATADIR%%/tilesets/fernland/models/none.g3d
X%%DATADIR%%/tilesets/fernland/models/riverside_object.g3d
X%%DATADIR%%/tilesets/fernland/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/fernland/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/fernland/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/fernland/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/fernland/models/stone1.g3d
X%%DATADIR%%/tilesets/fernland/models/stone2.g3d
X%%DATADIR%%/tilesets/fernland/models/swamp_rock.jpg
X%%DATADIR%%/tilesets/fernland/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/fernland/models/texture_bush2.tga
X%%DATADIR%%/tilesets/fernland/models/texture_custom5.tga
X%%DATADIR%%/tilesets/fernland/models/texture_flowers.tga
X%%DATADIR%%/tilesets/fernland/models/texture_grass.tga
X%%DATADIR%%/tilesets/fernland/models/texture_hanged.tga
X%%DATADIR%%/tilesets/fernland/models/texture_impaled.tga
X%%DATADIR%%/tilesets/fernland/models/texture_stone.tga
X%%DATADIR%%/tilesets/fernland/models/texture_water_object.tga
X%%DATADIR%%/tilesets/fernland/models/totem1.g3d
X%%DATADIR%%/tilesets/fernland/models/totem1.png
X%%DATADIR%%/tilesets/fernland/models/totem1a.g3d
X%%DATADIR%%/tilesets/fernland/models/totem1a.png
X%%DATADIR%%/tilesets/fernland/models/totem2.g3d
X%%DATADIR%%/tilesets/fernland/models/totem2.png
X%%DATADIR%%/tilesets/fernland/models/totem3.g3d
X%%DATADIR%%/tilesets/fernland/models/totem_broken.g3d
X%%DATADIR%%/tilesets/fernland/sounds/chicken.wav
X%%DATADIR%%/tilesets/fernland/sounds/day.ogg
X%%DATADIR%%/tilesets/fernland/sounds/night.ogg
X%%DATADIR%%/tilesets/fernland/sounds/rain.ogg
X%%DATADIR%%/tilesets/fernland/sounds/wolf.wav
X%%DATADIR%%/tilesets/fernland/textures/cobbles1.bmp
X%%DATADIR%%/tilesets/fernland/textures/cobbles2.bmp
X%%DATADIR%%/tilesets/fernland/textures/cobbles3.bmp
X%%DATADIR%%/tilesets/fernland/textures/forest1.bmp
X%%DATADIR%%/tilesets/fernland/textures/forest2.bmp
X%%DATADIR%%/tilesets/fernland/textures/forest3.bmp
X%%DATADIR%%/tilesets/fernland/textures/forest4.bmp
X%%DATADIR%%/tilesets/fernland/textures/forest5.bmp
X%%DATADIR%%/tilesets/fernland/textures/meadow1.bmp
X%%DATADIR%%/tilesets/fernland/textures/meadow2.bmp
X%%DATADIR%%/tilesets/fernland/textures/meadow3.bmp
X%%DATADIR%%/tilesets/fernland/textures/meadow4.bmp
X%%DATADIR%%/tilesets/fernland/textures/meadow5.bmp
X%%DATADIR%%/tilesets/fernland/textures/surface5a.bmp
X%%DATADIR%%/tilesets/fernland/textures/surface5b.bmp
X%%DATADIR%%/tilesets/fernland/textures/surface5c.bmp
X%%DATADIR%%/tilesets/fernland/textures/surface5d.bmp
X%%DATADIR%%/tilesets/fernland/textures/surface5e.bmp
X%%DATADIR%%/tilesets/fernland/textures/surface5f.bmp
X%%DATADIR%%/tilesets/fernland/textures/water_001.tga
X%%DATADIR%%/tilesets/fernland/textures/water_002.tga
X%%DATADIR%%/tilesets/fernland/textures/water_003.tga
X%%DATADIR%%/tilesets/fernland/textures/water_004.tga
X%%DATADIR%%/tilesets/fernland/textures/water_005.tga
X%%DATADIR%%/tilesets/fernland/textures/water_006.tga
X%%DATADIR%%/tilesets/fernland/textures/water_007.tga
X%%DATADIR%%/tilesets/fernland/textures/water_008.tga
X%%DATADIR%%/tilesets/fernland/textures/way1.bmp
X%%DATADIR%%/tilesets/fernland/textures/way2.bmp
X%%DATADIR%%/tilesets/fernland/textures/way3.bmp
X%%DATADIR%%/tilesets/fernland/textures/way4.bmp
X%%DATADIR%%/tilesets/forest/forest.xml
X%%DATADIR%%/tilesets/forest/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/forest/models/big_stone.g3d
X%%DATADIR%%/tilesets/forest/models/big_stone2.g3d
X%%DATADIR%%/tilesets/forest/models/big_stone3.g3d
X%%DATADIR%%/tilesets/forest/models/big_tree1.g3d
X%%DATADIR%%/tilesets/forest/models/big_tree2.g3d
X%%DATADIR%%/tilesets/forest/models/broken_statue.g3d
X%%DATADIR%%/tilesets/forest/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/forest/models/bush.g3d
X%%DATADIR%%/tilesets/forest/models/bush2.g3d
X%%DATADIR%%/tilesets/forest/models/bush3.g3d
X%%DATADIR%%/tilesets/forest/models/bush4.g3d
X%%DATADIR%%/tilesets/forest/models/bush5.g3d
X%%DATADIR%%/tilesets/forest/models/dead_tree.g3d
X%%DATADIR%%/tilesets/forest/models/hanged.g3d
X%%DATADIR%%/tilesets/forest/models/impaled.g3d
X%%DATADIR%%/tilesets/forest/models/none.g3d
X%%DATADIR%%/tilesets/forest/models/obelisk.g3d
X%%DATADIR%%/tilesets/forest/models/riverside_object.g3d
X%%DATADIR%%/tilesets/forest/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/forest/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/forest/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/forest/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/forest/models/statue.g3d
X%%DATADIR%%/tilesets/forest/models/stone1.g3d
X%%DATADIR%%/tilesets/forest/models/stone2.g3d
X%%DATADIR%%/tilesets/forest/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/forest/models/technician_statue.g3d
X%%DATADIR%%/tilesets/forest/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/forest/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/forest/models/texture_bush.tga
X%%DATADIR%%/tilesets/forest/models/texture_bush2.tga
X%%DATADIR%%/tilesets/forest/models/texture_custom5.tga
X%%DATADIR%%/tilesets/forest/models/texture_dead_tree.tga
X%%DATADIR%%/tilesets/forest/models/texture_flowers.tga
X%%DATADIR%%/tilesets/forest/models/texture_grass.tga
X%%DATADIR%%/tilesets/forest/models/texture_hanged.tga
X%%DATADIR%%/tilesets/forest/models/texture_impaled.tga
X%%DATADIR%%/tilesets/forest/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/forest/models/texture_statue.tga
X%%DATADIR%%/tilesets/forest/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/forest/models/texture_stone.tga
X%%DATADIR%%/tilesets/forest/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree1.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree2.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree3.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree4.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree5.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree6.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree_3.tga
X%%DATADIR%%/tilesets/forest/models/texture_tree_4.tga
X%%DATADIR%%/tilesets/forest/models/texture_water_object.tga
X%%DATADIR%%/tilesets/forest/models/tree1.g3d
X%%DATADIR%%/tilesets/forest/models/tree10.g3d
X%%DATADIR%%/tilesets/forest/models/tree2.g3d
X%%DATADIR%%/tilesets/forest/models/tree3.g3d
X%%DATADIR%%/tilesets/forest/models/tree4.g3d
X%%DATADIR%%/tilesets/forest/models/tree5.g3d
X%%DATADIR%%/tilesets/forest/models/tree6.g3d
X%%DATADIR%%/tilesets/forest/models/tree7.g3d
X%%DATADIR%%/tilesets/forest/models/tree8.g3d
X%%DATADIR%%/tilesets/forest/models/tree9.g3d
X%%DATADIR%%/tilesets/forest/sounds/chicken.wav
X%%DATADIR%%/tilesets/forest/sounds/day.ogg
X%%DATADIR%%/tilesets/forest/sounds/night.ogg
X%%DATADIR%%/tilesets/forest/sounds/rain.ogg
X%%DATADIR%%/tilesets/forest/sounds/wolf.wav
X%%DATADIR%%/tilesets/forest/textures/surface1a.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1b.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1c.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1d.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1e.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1f.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1g.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1h.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1i.bmp
X%%DATADIR%%/tilesets/forest/textures/surface1j.bmp
X%%DATADIR%%/tilesets/forest/textures/surface2a.bmp
X%%DATADIR%%/tilesets/forest/textures/surface2b.bmp
X%%DATADIR%%/tilesets/forest/textures/surface2c.bmp
X%%DATADIR%%/tilesets/forest/textures/surface2d.bmp
X%%DATADIR%%/tilesets/forest/textures/surface2e.bmp
X%%DATADIR%%/tilesets/forest/textures/surface2f.bmp
X%%DATADIR%%/tilesets/forest/textures/surface3a.bmp
X%%DATADIR%%/tilesets/forest/textures/surface3b.bmp
X%%DATADIR%%/tilesets/forest/textures/surface4a.bmp
X%%DATADIR%%/tilesets/forest/textures/surface5a.bmp
X%%DATADIR%%/tilesets/forest/textures/surface5b.bmp
X%%DATADIR%%/tilesets/forest/textures/surface5c.bmp
X%%DATADIR%%/tilesets/forest/textures/surface5d.bmp
X%%DATADIR%%/tilesets/forest/textures/surface5e.bmp
X%%DATADIR%%/tilesets/forest/textures/surface5f.bmp
X%%DATADIR%%/tilesets/forest/textures/water_001.tga
X%%DATADIR%%/tilesets/forest/textures/water_002.tga
X%%DATADIR%%/tilesets/forest/textures/water_003.tga
X%%DATADIR%%/tilesets/forest/textures/water_004.tga
X%%DATADIR%%/tilesets/forest/textures/water_005.tga
X%%DATADIR%%/tilesets/forest/textures/water_006.tga
X%%DATADIR%%/tilesets/forest/textures/water_007.tga
X%%DATADIR%%/tilesets/forest/textures/water_008.tga
X%%DATADIR%%/tilesets/hell/hell.xml
X%%DATADIR%%/tilesets/hell/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/hell/models/big_stone2.g3d
X%%DATADIR%%/tilesets/hell/models/birke.g3d
X%%DATADIR%%/tilesets/hell/models/bodypart2.g3d
X%%DATADIR%%/tilesets/hell/models/bodypart3.g3d
X%%DATADIR%%/tilesets/hell/models/bodypart4.g3d
X%%DATADIR%%/tilesets/hell/models/bodypart5.g3d
X%%DATADIR%%/tilesets/hell/models/bone.tga
X%%DATADIR%%/tilesets/hell/models/bone2.g3d
X%%DATADIR%%/tilesets/hell/models/bone3.g3d
X%%DATADIR%%/tilesets/hell/models/bone5.g3d
X%%DATADIR%%/tilesets/hell/models/broken_statue.g3d
X%%DATADIR%%/tilesets/hell/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/hell/models/bushbone.g3d
X%%DATADIR%%/tilesets/hell/models/cross.tga
X%%DATADIR%%/tilesets/hell/models/crosses.g3d
X%%DATADIR%%/tilesets/hell/models/deadtree.g3d
X%%DATADIR%%/tilesets/hell/models/deadtree2.g3d
X%%DATADIR%%/tilesets/hell/models/deathtree.tga
X%%DATADIR%%/tilesets/hell/models/deathtree_small.g3d
X%%DATADIR%%/tilesets/hell/models/grab.g3d
X%%DATADIR%%/tilesets/hell/models/grab.tga
X%%DATADIR%%/tilesets/hell/models/hell1.g3d
X%%DATADIR%%/tilesets/hell/models/hell2.g3d
X%%DATADIR%%/tilesets/hell/models/hell3.g3d
X%%DATADIR%%/tilesets/hell/models/nettles.g3d
X%%DATADIR%%/tilesets/hell/models/none.g3d
X%%DATADIR%%/tilesets/hell/models/obelisk.g3d
X%%DATADIR%%/tilesets/hell/models/rock.tga
X%%DATADIR%%/tilesets/hell/models/sarg.tga
X%%DATADIR%%/tilesets/hell/models/sarg_holz.g3d
X%%DATADIR%%/tilesets/hell/models/sarg_stein.g3d
X%%DATADIR%%/tilesets/hell/models/skullbone.g3d
X%%DATADIR%%/tilesets/hell/models/skullbone2.g3d
X%%DATADIR%%/tilesets/hell/models/skullbone3.g3d
X%%DATADIR%%/tilesets/hell/models/statue.g3d
X%%DATADIR%%/tilesets/hell/models/stone1.g3d
X%%DATADIR%%/tilesets/hell/models/stone2.g3d
X%%DATADIR%%/tilesets/hell/models/stone3.g3d
X%%DATADIR%%/tilesets/hell/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/hell/models/tanne2.g3d
X%%DATADIR%%/tilesets/hell/models/technician_statue.g3d
X%%DATADIR%%/tilesets/hell/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/hell/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/hell/models/texture_bush.tga
X%%DATADIR%%/tilesets/hell/models/texture_bush2.tga
X%%DATADIR%%/tilesets/hell/models/texture_custom5.tga
X%%DATADIR%%/tilesets/hell/models/texture_flowers.tga
X%%DATADIR%%/tilesets/hell/models/texture_grass.tga
X%%DATADIR%%/tilesets/hell/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/hell/models/texture_statue.tga
X%%DATADIR%%/tilesets/hell/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/hell/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/hell/models/texture_worker.tga
X%%DATADIR%%/tilesets/hell/models/vertebra.g3d
X%%DATADIR%%/tilesets/hell/models/vulcano.g3d
X%%DATADIR%%/tilesets/hell/models/vulcano.tga
X%%DATADIR%%/tilesets/hell/models/vulcano1.g3d
X%%DATADIR%%/tilesets/hell/models/vulcano2.g3d
X%%DATADIR%%/tilesets/hell/sounds/chicken.wav
X%%DATADIR%%/tilesets/hell/sounds/good_morning.wav
X%%DATADIR%%/tilesets/hell/sounds/hell.ogg
X%%DATADIR%%/tilesets/hell/sounds/wolf.wav
X%%DATADIR%%/tilesets/hell/textures/surface1a.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1b.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1c.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1d.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1e.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1f.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1g.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1h.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1i.bmp
X%%DATADIR%%/tilesets/hell/textures/surface1j.bmp
X%%DATADIR%%/tilesets/hell/textures/surface2a.bmp
X%%DATADIR%%/tilesets/hell/textures/surface2b.bmp
X%%DATADIR%%/tilesets/hell/textures/surface2c.bmp
X%%DATADIR%%/tilesets/hell/textures/surface2d.bmp
X%%DATADIR%%/tilesets/hell/textures/surface2e.bmp
X%%DATADIR%%/tilesets/hell/textures/surface2f.bmp
X%%DATADIR%%/tilesets/hell/textures/surface3a.bmp
X%%DATADIR%%/tilesets/hell/textures/surface3b.bmp
X%%DATADIR%%/tilesets/hell/textures/surface4a.bmp
X%%DATADIR%%/tilesets/hell/textures/surface5a.bmp
X%%DATADIR%%/tilesets/hell/textures/surface5b.bmp
X%%DATADIR%%/tilesets/hell/textures/surface5c.bmp
X%%DATADIR%%/tilesets/hell/textures/surface5d.bmp
X%%DATADIR%%/tilesets/hell/textures/surface5e.bmp
X%%DATADIR%%/tilesets/hell/textures/surface5f.bmp
X%%DATADIR%%/tilesets/hell/textures/water.tga
X%%DATADIR%%/tilesets/hell/textures/water_001.tga
X%%DATADIR%%/tilesets/hell/textures/water_002.tga
X%%DATADIR%%/tilesets/hell/textures/water_003.tga
X%%DATADIR%%/tilesets/hell/textures/water_004.tga
X%%DATADIR%%/tilesets/hell/textures/water_005.tga
X%%DATADIR%%/tilesets/hell/textures/water_006.tga
X%%DATADIR%%/tilesets/hell/textures/water_007.tga
X%%DATADIR%%/tilesets/hell/textures/water_008.tga
X%%DATADIR%%/tilesets/jungle/jungle.xml
X%%DATADIR%%/tilesets/jungle/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/jungle/models/big_stone.g3d
X%%DATADIR%%/tilesets/jungle/models/big_stone2.g3d
X%%DATADIR%%/tilesets/jungle/models/big_stone3.g3d
X%%DATADIR%%/tilesets/jungle/models/big_tree1.g3d
X%%DATADIR%%/tilesets/jungle/models/big_tree2.g3d
X%%DATADIR%%/tilesets/jungle/models/broken_statue.g3d
X%%DATADIR%%/tilesets/jungle/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/jungle/models/bush.g3d
X%%DATADIR%%/tilesets/jungle/models/bush2.g3d
X%%DATADIR%%/tilesets/jungle/models/bush3.g3d
X%%DATADIR%%/tilesets/jungle/models/bush4.g3d
X%%DATADIR%%/tilesets/jungle/models/bush5.g3d
X%%DATADIR%%/tilesets/jungle/models/bushtree.g3d
X%%DATADIR%%/tilesets/jungle/models/bushtree.tga
X%%DATADIR%%/tilesets/jungle/models/deadtree.tga
X%%DATADIR%%/tilesets/jungle/models/grass.g3d
X%%DATADIR%%/tilesets/jungle/models/grass.tga
X%%DATADIR%%/tilesets/jungle/models/hanged.g3d
X%%DATADIR%%/tilesets/jungle/models/impaled.g3d
X%%DATADIR%%/tilesets/jungle/models/kaktus_deadtree.g3d
X%%DATADIR%%/tilesets/jungle/models/kaktusbusch.g3d
X%%DATADIR%%/tilesets/jungle/models/kaktusbusch.tga
X%%DATADIR%%/tilesets/jungle/models/kaktusbusch2.g3d
X%%DATADIR%%/tilesets/jungle/models/kaktusbusch3.g3d
X%%DATADIR%%/tilesets/jungle/models/katusgrund.tga
X%%DATADIR%%/tilesets/jungle/models/none.g3d
X%%DATADIR%%/tilesets/jungle/models/obelisk.g3d
X%%DATADIR%%/tilesets/jungle/models/palm.g3d
X%%DATADIR%%/tilesets/jungle/models/palm2.g3d
X%%DATADIR%%/tilesets/jungle/models/palmtexture.tga
X%%DATADIR%%/tilesets/jungle/models/palmtexture2.tga
X%%DATADIR%%/tilesets/jungle/models/riverside_object.g3d
X%%DATADIR%%/tilesets/jungle/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/jungle/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/jungle/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/jungle/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/jungle/models/statue.g3d
X%%DATADIR%%/tilesets/jungle/models/stone1.g3d
X%%DATADIR%%/tilesets/jungle/models/stone2.g3d
X%%DATADIR%%/tilesets/jungle/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/jungle/models/technician_statue.g3d
X%%DATADIR%%/tilesets/jungle/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/jungle/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/jungle/models/texture_bush.tga
X%%DATADIR%%/tilesets/jungle/models/texture_bush2.tga
X%%DATADIR%%/tilesets/jungle/models/texture_custom5.tga
X%%DATADIR%%/tilesets/jungle/models/texture_flowers.tga
X%%DATADIR%%/tilesets/jungle/models/texture_grass.tga
X%%DATADIR%%/tilesets/jungle/models/texture_hanged.tga
X%%DATADIR%%/tilesets/jungle/models/texture_impaled.tga
X%%DATADIR%%/tilesets/jungle/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/jungle/models/texture_statue.tga
X%%DATADIR%%/tilesets/jungle/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/jungle/models/texture_stone.tga
X%%DATADIR%%/tilesets/jungle/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/jungle/models/texture_tree3.tga
X%%DATADIR%%/tilesets/jungle/models/texture_tree4.tga
X%%DATADIR%%/tilesets/jungle/models/texture_water_object.tga
X%%DATADIR%%/tilesets/jungle/sounds/chicken.wav
X%%DATADIR%%/tilesets/jungle/sounds/day.ogg
X%%DATADIR%%/tilesets/jungle/sounds/night.ogg
X%%DATADIR%%/tilesets/jungle/sounds/rain.ogg
X%%DATADIR%%/tilesets/jungle/sounds/wolf.wav
X%%DATADIR%%/tilesets/jungle/textures/surface1a.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1b.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1c.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1d.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1e.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1f.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1g.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1h.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1i.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface1j.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface2a.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface2b.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface2c.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface2d.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface2e.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface2f.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface3a.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface3b.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface4a.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface5a.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface5b.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface5c.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface5d.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface5e.bmp
X%%DATADIR%%/tilesets/jungle/textures/surface5f.bmp
X%%DATADIR%%/tilesets/jungle/textures/water_001.tga
X%%DATADIR%%/tilesets/jungle/textures/water_002.tga
X%%DATADIR%%/tilesets/jungle/textures/water_003.tga
X%%DATADIR%%/tilesets/jungle/textures/water_004.tga
X%%DATADIR%%/tilesets/jungle/textures/water_005.tga
X%%DATADIR%%/tilesets/jungle/textures/water_006.tga
X%%DATADIR%%/tilesets/jungle/textures/water_007.tga
X%%DATADIR%%/tilesets/jungle/textures/water_008.tga
X%%DATADIR%%/tilesets/karningul/karningul.xml
X%%DATADIR%%/tilesets/karningul/models/atheleas.g3d
X%%DATADIR%%/tilesets/karningul/models/bark_texture.tga
X%%DATADIR%%/tilesets/karningul/models/big_stone.g3d
X%%DATADIR%%/tilesets/karningul/models/big_stone2.g3d
X%%DATADIR%%/tilesets/karningul/models/big_stone3.g3d
X%%DATADIR%%/tilesets/karningul/models/big_tree1.g3d
X%%DATADIR%%/tilesets/karningul/models/big_tree2.g3d
X%%DATADIR%%/tilesets/karningul/models/birdbath.g3d
X%%DATADIR%%/tilesets/karningul/models/brown_tree.g3d
X%%DATADIR%%/tilesets/karningul/models/bush5.g3d
X%%DATADIR%%/tilesets/karningul/models/bush_flower.g3d
X%%DATADIR%%/tilesets/karningul/models/dark_tree.g3d
X%%DATADIR%%/tilesets/karningul/models/dead_tree.g3d
X%%DATADIR%%/tilesets/karningul/models/e_sword.tga
X%%DATADIR%%/tilesets/karningul/models/elven_tree_texture.tga
X%%DATADIR%%/tilesets/karningul/models/fern.g3d
X%%DATADIR%%/tilesets/karningul/models/flower.g3d
X%%DATADIR%%/tilesets/karningul/models/hanging_garden.g3d
X%%DATADIR%%/tilesets/karningul/models/hanging_garden2.g3d
X%%DATADIR%%/tilesets/karningul/models/mallorn.g3d
X%%DATADIR%%/tilesets/karningul/models/none.g3d
X%%DATADIR%%/tilesets/karningul/models/prince_statue.g3d
X%%DATADIR%%/tilesets/karningul/models/riverside_object.g3d
X%%DATADIR%%/tilesets/karningul/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/karningul/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/karningul/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/karningul/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/karningul/models/silver_helm_statue.g3d
X%%DATADIR%%/tilesets/karningul/models/statue.g3d
X%%DATADIR%%/tilesets/karningul/models/stone1.g3d
X%%DATADIR%%/tilesets/karningul/models/stone2.g3d
X%%DATADIR%%/tilesets/karningul/models/stone_texture.tga
X%%DATADIR%%/tilesets/karningul/models/sword_holder_statue.g3d
X%%DATADIR%%/tilesets/karningul/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/karningul/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/karningul/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/karningul/models/texture_bird_bath.tga
X%%DATADIR%%/tilesets/karningul/models/texture_bricks.tga
X%%DATADIR%%/tilesets/karningul/models/texture_bush.tga
X%%DATADIR%%/tilesets/karningul/models/texture_bush2.tga
X%%DATADIR%%/tilesets/karningul/models/texture_custom5.tga
X%%DATADIR%%/tilesets/karningul/models/texture_dead_tree.tga
X%%DATADIR%%/tilesets/karningul/models/texture_elven_statue_prince.tga
X%%DATADIR%%/tilesets/karningul/models/texture_elven_statue_rider.tga
X%%DATADIR%%/tilesets/karningul/models/texture_flowers.tga
X%%DATADIR%%/tilesets/karningul/models/texture_grass.tga
X%%DATADIR%%/tilesets/karningul/models/texture_hanging_garden.tga
X%%DATADIR%%/tilesets/karningul/models/texture_mallorn.tga
X%%DATADIR%%/tilesets/karningul/models/texture_prince_statue_stuff.tga
X%%DATADIR%%/tilesets/karningul/models/texture_silver_lancer_statue.tga
X%%DATADIR%%/tilesets/karningul/models/texture_statue.tga
X%%DATADIR%%/tilesets/karningul/models/texture_stone.tga
X%%DATADIR%%/tilesets/karningul/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/karningul/models/texture_tree3.tga
X%%DATADIR%%/tilesets/karningul/models/texture_tree4.tga
X%%DATADIR%%/tilesets/karningul/models/texture_water_object.tga
X%%DATADIR%%/tilesets/karningul/models/texture_wise_elf_statue.tga
X%%DATADIR%%/tilesets/karningul/models/texture_wise_elf_statue_book.tga
X%%DATADIR%%/tilesets/karningul/models/tree1.g3d
X%%DATADIR%%/tilesets/karningul/models/tree2.g3d
X%%DATADIR%%/tilesets/karningul/models/tree3.g3d
X%%DATADIR%%/tilesets/karningul/models/tree4.g3d
X%%DATADIR%%/tilesets/karningul/models/tree5.g3d
X%%DATADIR%%/tilesets/karningul/models/tree6.g3d
X%%DATADIR%%/tilesets/karningul/models/tree7.g3d
X%%DATADIR%%/tilesets/karningul/models/tree_texure.tga
X%%DATADIR%%/tilesets/karningul/models/wise_elf_statue.g3d
X%%DATADIR%%/tilesets/karningul/sounds/chicken.wav
X%%DATADIR%%/tilesets/karningul/sounds/day.ogg
X%%DATADIR%%/tilesets/karningul/sounds/night.ogg
X%%DATADIR%%/tilesets/karningul/sounds/rain.ogg
X%%DATADIR%%/tilesets/karningul/sounds/wolf.wav
X%%DATADIR%%/tilesets/karningul/textures/surface1a.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1b.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1c.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1d.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1e.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1f.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1g.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1h.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1i.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface1j.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2a.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2b.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2c.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2d.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2e.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2f.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface2g.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface3a.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface3b.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface3c.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface3d.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface3e.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface3f.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface4a.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface4b.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface4c.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface4d.bmp
X%%DATADIR%%/tilesets/karningul/textures/surface5a.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/Copy of surface1g.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/copysurface3e.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/sand.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2a.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2b.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2c.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2d.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2e.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2f.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface2g.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/surface5a.bmp
X%%DATADIR%%/tilesets/karningul/textures/texture_stock/water_001.xcf
X%%DATADIR%%/tilesets/karningul/textures/water_001.tga
X%%DATADIR%%/tilesets/karningul/textures/water_002.tga
X%%DATADIR%%/tilesets/karningul/textures/water_003.tga
X%%DATADIR%%/tilesets/karningul/textures/water_004.tga
X%%DATADIR%%/tilesets/karningul/textures/water_005.tga
X%%DATADIR%%/tilesets/karningul/textures/water_006.tga
X%%DATADIR%%/tilesets/karningul/textures/water_007.tga
X%%DATADIR%%/tilesets/karningul/textures/water_008.tga
X%%DATADIR%%/tilesets/meadow/meadow.xml
X%%DATADIR%%/tilesets/meadow/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/meadow/models/baum1.tga
X%%DATADIR%%/tilesets/meadow/models/big_stone.g3d
X%%DATADIR%%/tilesets/meadow/models/big_stone2.g3d
X%%DATADIR%%/tilesets/meadow/models/broken_statue.g3d
X%%DATADIR%%/tilesets/meadow/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/meadow/models/bush_1.g3d
X%%DATADIR%%/tilesets/meadow/models/bush_2.g3d
X%%DATADIR%%/tilesets/meadow/models/bush_3.g3d
X%%DATADIR%%/tilesets/meadow/models/bush_4.g3d
X%%DATADIR%%/tilesets/meadow/models/bush_5.g3d
X%%DATADIR%%/tilesets/meadow/models/dead_tree.g3d
X%%DATADIR%%/tilesets/meadow/models/dead_tree_1.g3d
X%%DATADIR%%/tilesets/meadow/models/farn.g3d
X%%DATADIR%%/tilesets/meadow/models/grass.g3d
X%%DATADIR%%/tilesets/meadow/models/grass.tga
X%%DATADIR%%/tilesets/meadow/models/grass_2.g3d
X%%DATADIR%%/tilesets/meadow/models/hanged.g3d
X%%DATADIR%%/tilesets/meadow/models/impaled.g3d
X%%DATADIR%%/tilesets/meadow/models/none.g3d
X%%DATADIR%%/tilesets/meadow/models/obelisk.g3d
X%%DATADIR%%/tilesets/meadow/models/riverside_object.g3d
X%%DATADIR%%/tilesets/meadow/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/meadow/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/meadow/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/meadow/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/meadow/models/statue.g3d
X%%DATADIR%%/tilesets/meadow/models/stone1.g3d
X%%DATADIR%%/tilesets/meadow/models/stone2.g3d
X%%DATADIR%%/tilesets/meadow/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/meadow/models/tanne2.g3d
X%%DATADIR%%/tilesets/meadow/models/tanne_small.g3d
X%%DATADIR%%/tilesets/meadow/models/tannen.tga
X%%DATADIR%%/tilesets/meadow/models/technician_statue.g3d
X%%DATADIR%%/tilesets/meadow/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/meadow/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/meadow/models/texture_big_stone2.tga
X%%DATADIR%%/tilesets/meadow/models/texture_bush.tga
X%%DATADIR%%/tilesets/meadow/models/texture_bush2.tga
X%%DATADIR%%/tilesets/meadow/models/texture_canopy_tree_1.tga
X%%DATADIR%%/tilesets/meadow/models/texture_canopy_tree_2.tga
X%%DATADIR%%/tilesets/meadow/models/texture_canopy_tree_3.tga
X%%DATADIR%%/tilesets/meadow/models/texture_canopy_tree_4.tga
X%%DATADIR%%/tilesets/meadow/models/texture_canopy_tree_5.tga
X%%DATADIR%%/tilesets/meadow/models/texture_dead_tree.tga
X%%DATADIR%%/tilesets/meadow/models/texture_flowers.tga
X%%DATADIR%%/tilesets/meadow/models/texture_grass.tga
X%%DATADIR%%/tilesets/meadow/models/texture_grass_2.tga
X%%DATADIR%%/tilesets/meadow/models/texture_hanged.tga
X%%DATADIR%%/tilesets/meadow/models/texture_impaled.tga
X%%DATADIR%%/tilesets/meadow/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/meadow/models/texture_statue.tga
X%%DATADIR%%/tilesets/meadow/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/meadow/models/texture_stone.tga
X%%DATADIR%%/tilesets/meadow/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/meadow/models/texture_tree5.tga
X%%DATADIR%%/tilesets/meadow/models/texture_trunk.tga
X%%DATADIR%%/tilesets/meadow/models/texture_water_object.tga
X%%DATADIR%%/tilesets/meadow/models/tree10.g3d
X%%DATADIR%%/tilesets/meadow/models/tree_1.g3d
X%%DATADIR%%/tilesets/meadow/models/tree_2.g3d
X%%DATADIR%%/tilesets/meadow/models/tree_3.g3d
X%%DATADIR%%/tilesets/meadow/models/tree_4.g3d
X%%DATADIR%%/tilesets/meadow/models/tree_5.g3d
X%%DATADIR%%/tilesets/meadow/sounds/chicken.wav
X%%DATADIR%%/tilesets/meadow/sounds/day.ogg
X%%DATADIR%%/tilesets/meadow/sounds/night.ogg
X%%DATADIR%%/tilesets/meadow/sounds/rain.ogg
X%%DATADIR%%/tilesets/meadow/sounds/wolf.wav
X%%DATADIR%%/tilesets/meadow/textures/surface1a.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1b.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1c.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1d.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1e.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1f.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1g.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1h.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1i.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface1j.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface2a.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface2b.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface2c.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface2d.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface2e.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface2f.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface3a.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface3b.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface3c.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface3d.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface3e.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface4b.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface5a.bmp
X%%DATADIR%%/tilesets/meadow/textures/surface5b.bmp
X%%DATADIR%%/tilesets/meadow/textures/water_001.tga
X%%DATADIR%%/tilesets/meadow/textures/water_002.tga
X%%DATADIR%%/tilesets/meadow/textures/water_003.tga
X%%DATADIR%%/tilesets/meadow/textures/water_004.tga
X%%DATADIR%%/tilesets/meadow/textures/water_005.tga
X%%DATADIR%%/tilesets/meadow/textures/water_006.tga
X%%DATADIR%%/tilesets/meadow/textures/water_007.tga
X%%DATADIR%%/tilesets/meadow/textures/water_008.tga
X%%DATADIR%%/tilesets/mediterran/mediterran.xml
X%%DATADIR%%/tilesets/mediterran/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/mediterran/models/big_stone.g3d
X%%DATADIR%%/tilesets/mediterran/models/big_stone2.g3d
X%%DATADIR%%/tilesets/mediterran/models/big_stone3.g3d
X%%DATADIR%%/tilesets/mediterran/models/broken_statue.g3d
X%%DATADIR%%/tilesets/mediterran/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/mediterran/models/bush.g3d
X%%DATADIR%%/tilesets/mediterran/models/bush.tga
X%%DATADIR%%/tilesets/mediterran/models/bush2.g3d
X%%DATADIR%%/tilesets/mediterran/models/bush2.tga
X%%DATADIR%%/tilesets/mediterran/models/bush3.g3d
X%%DATADIR%%/tilesets/mediterran/models/cypress.tga
X%%DATADIR%%/tilesets/mediterran/models/cypress43.g3d
X%%DATADIR%%/tilesets/mediterran/models/cypress44.g3d
X%%DATADIR%%/tilesets/mediterran/models/grass.g3d
X%%DATADIR%%/tilesets/mediterran/models/grass.tga
X%%DATADIR%%/tilesets/mediterran/models/hanged.g3d
X%%DATADIR%%/tilesets/mediterran/models/impaled.g3d
X%%DATADIR%%/tilesets/mediterran/models/none.g3d
X%%DATADIR%%/tilesets/mediterran/models/obelisk.g3d
X%%DATADIR%%/tilesets/mediterran/models/palm2.blend1
X%%DATADIR%%/tilesets/mediterran/models/palm2.g3d
X%%DATADIR%%/tilesets/mediterran/models/palm2.tga
X%%DATADIR%%/tilesets/mediterran/models/palm21.g3d
X%%DATADIR%%/tilesets/mediterran/models/palm3.g3d
X%%DATADIR%%/tilesets/mediterran/models/palm3.tga
X%%DATADIR%%/tilesets/mediterran/models/palm31.g3d
X%%DATADIR%%/tilesets/mediterran/models/papyrus.g3d
X%%DATADIR%%/tilesets/mediterran/models/papyrus.tga
X%%DATADIR%%/tilesets/mediterran/models/phoenix.g3d
X%%DATADIR%%/tilesets/mediterran/models/phoenix2.g3d
X%%DATADIR%%/tilesets/mediterran/models/ppalm.tga
X%%DATADIR%%/tilesets/mediterran/models/rock.tga
X%%DATADIR%%/tilesets/mediterran/models/statue.g3d
X%%DATADIR%%/tilesets/mediterran/models/stone1.blend1
X%%DATADIR%%/tilesets/mediterran/models/stone1.g3d
X%%DATADIR%%/tilesets/mediterran/models/stone2.g3d
X%%DATADIR%%/tilesets/mediterran/models/stone3.g3d
X%%DATADIR%%/tilesets/mediterran/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/mediterran/models/technician_statue.g3d
X%%DATADIR%%/tilesets/mediterran/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_bush.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_bush2.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_custom5.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_flowers.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_grass.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_hanged.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_impaled.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_statue.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/mediterran/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/mediterran/models/tree.tga
X%%DATADIR%%/tilesets/mediterran/models/tree4.g3d
X%%DATADIR%%/tilesets/mediterran/models/tree5.g3d
X%%DATADIR%%/tilesets/mediterran/models/tree6.g3d
X%%DATADIR%%/tilesets/mediterran/models/tree_dead1.g3d
X%%DATADIR%%/tilesets/mediterran/sounds/chicken.wav
X%%DATADIR%%/tilesets/mediterran/sounds/desertday.ogg
X%%DATADIR%%/tilesets/mediterran/sounds/night.ogg
X%%DATADIR%%/tilesets/mediterran/sounds/rain.ogg
X%%DATADIR%%/tilesets/mediterran/sounds/wolf.wav
X%%DATADIR%%/tilesets/mediterran/textures/surface1a.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface1b.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface1c.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface1d.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface1e.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface1f.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface2a.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface2b.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface2c.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface2d.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface2e.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface2f.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface3a.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface3b.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface3c.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface3d.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface3e.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface4a.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface4b.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface4c.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface4d.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface4e.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface5a.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface5b.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface5c.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface5d.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface5e.bmp
X%%DATADIR%%/tilesets/mediterran/textures/surface5f.bmp
X%%DATADIR%%/tilesets/mediterran/textures/water.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_001.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_002.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_003.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_004.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_005.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_006.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_007.tga
X%%DATADIR%%/tilesets/mediterran/textures/water_008.tga
X%%DATADIR%%/tilesets/pine_peat/models/br1.g3d
X%%DATADIR%%/tilesets/pine_peat/models/br2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/br3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/burned1.g3d
X%%DATADIR%%/tilesets/pine_peat/models/burned2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/burned3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/burned_tree.tga
X%%DATADIR%%/tilesets/pine_peat/models/fir.g3d
X%%DATADIR%%/tilesets/pine_peat/models/fir.tga
X%%DATADIR%%/tilesets/pine_peat/models/fir2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/fir3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/flower.tga
X%%DATADIR%%/tilesets/pine_peat/models/mushroom.tga
X%%DATADIR%%/tilesets/pine_peat/models/none.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_bush.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_bush.tga
X%%DATADIR%%/tilesets/pine_peat/models/swamp_bush2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_bush3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_mushroom.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_mushroom_2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_mushroom_3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock.jpg
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock.tga
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_1.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_4.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_big.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_big2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_rock_big3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_ruin.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_ruin.tga
X%%DATADIR%%/tilesets/pine_peat/models/swamp_ruin2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_ruin3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_tree_dead.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_tree_dead.tga
X%%DATADIR%%/tilesets/pine_peat/models/swamp_tree_dead_2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_tree_dead_3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_tree_dead_4.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_water2.tga
X%%DATADIR%%/tilesets/pine_peat/models/swamp_water_1.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_water_2.g3d
X%%DATADIR%%/tilesets/pine_peat/models/swamp_water_3.g3d
X%%DATADIR%%/tilesets/pine_peat/models/texture_bush.tga
X%%DATADIR%%/tilesets/pine_peat/models/texture_flowers.tga
X%%DATADIR%%/tilesets/pine_peat/models/texture_tree3.tga
X%%DATADIR%%/tilesets/pine_peat/models/texture_tree4.tga
X%%DATADIR%%/tilesets/pine_peat/pine_peat.xml
X%%DATADIR%%/tilesets/pine_peat/sounds/day.ogg
X%%DATADIR%%/tilesets/pine_peat/sounds/mudchute_cow_1.ogg
X%%DATADIR%%/tilesets/pine_peat/sounds/night.ogg
X%%DATADIR%%/tilesets/pine_peat/sounds/rain.ogg
X%%DATADIR%%/tilesets/pine_peat/sounds/wolf.wav
X%%DATADIR%%/tilesets/pine_peat/textures/forest1.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/forest2.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/forest3.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/forest4.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/forest5.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/meadow1.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/meadow2.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/meadow3.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/meadow4.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/meadow5.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface2a.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface2b.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface2c.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface2d.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface4a.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface4b.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface5a.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface5b.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface5c.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface5d.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/surface5e.bmp
X%%DATADIR%%/tilesets/pine_peat/textures/water_001.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_002.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_003.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_004.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_005.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_006.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_007.tga
X%%DATADIR%%/tilesets/pine_peat/textures/water_008.tga
X%%DATADIR%%/tilesets/scrub_land/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/scrub_land/models/big_stone.g3d
X%%DATADIR%%/tilesets/scrub_land/models/big_stone2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/big_stone3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/big_tree1.g3d
X%%DATADIR%%/tilesets/scrub_land/models/big_tree2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/broken_statue.g3d
X%%DATADIR%%/tilesets/scrub_land/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush4.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush5.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush_1.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush_2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush_3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush_4.g3d
X%%DATADIR%%/tilesets/scrub_land/models/bush_5.g3d
X%%DATADIR%%/tilesets/scrub_land/models/dead_tree.g3d
X%%DATADIR%%/tilesets/scrub_land/models/grass.g3d
X%%DATADIR%%/tilesets/scrub_land/models/hanged.g3d
X%%DATADIR%%/tilesets/scrub_land/models/impaled.g3d
X%%DATADIR%%/tilesets/scrub_land/models/joshua_tree.tga
X%%DATADIR%%/tilesets/scrub_land/models/joshuatree1.g3d
X%%DATADIR%%/tilesets/scrub_land/models/joshuatree2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/joshuatree3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/joshuatree4.g3d
X%%DATADIR%%/tilesets/scrub_land/models/kaktusbusch.tga
X%%DATADIR%%/tilesets/scrub_land/models/none.g3d
X%%DATADIR%%/tilesets/scrub_land/models/obelisk.g3d
X%%DATADIR%%/tilesets/scrub_land/models/riverside_object.g3d
X%%DATADIR%%/tilesets/scrub_land/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/scrub_land/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/scrub_land/models/statue.g3d
X%%DATADIR%%/tilesets/scrub_land/models/stone1.g3d
X%%DATADIR%%/tilesets/scrub_land/models/stone2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/scrub_land/models/technician_statue.g3d
X%%DATADIR%%/tilesets/scrub_land/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_bush.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_bush2.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_canopy_tree_1.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_canopy_tree_2.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_canopy_tree_3.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_canopy_tree_4.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_canopy_tree_5.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_custom5.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_dead_tree.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_flowers.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_grass.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_grass_2.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_hanged.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_impaled.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_statue.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_stone.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree1.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree2.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree3.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree4.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree5.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree6.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree_3.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_tree_4.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_trunk.tga
X%%DATADIR%%/tilesets/scrub_land/models/texture_water_object.tga
X%%DATADIR%%/tilesets/scrub_land/models/tree1.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree10.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree4.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree5.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree6.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree7.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree8.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree9.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree_1.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree_2.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree_3.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree_4.g3d
X%%DATADIR%%/tilesets/scrub_land/models/tree_5.g3d
X%%DATADIR%%/tilesets/scrub_land/scrub_land.xml
X%%DATADIR%%/tilesets/scrub_land/sounds/chicken.wav
X%%DATADIR%%/tilesets/scrub_land/sounds/day.ogg
X%%DATADIR%%/tilesets/scrub_land/sounds/night.ogg
X%%DATADIR%%/tilesets/scrub_land/sounds/rain.ogg
X%%DATADIR%%/tilesets/scrub_land/sounds/wolf.wav
X%%DATADIR%%/tilesets/scrub_land/textures/surface1a.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1b.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1c.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1d.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1e.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1f.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1g.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1h.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1i.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface1j.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface2a.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface2b.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface2c.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface2d.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface2e.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface2f.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface3a.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface3b.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface4a.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface5a.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface5b.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface5c.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface5d.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface5e.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/surface5f.bmp
X%%DATADIR%%/tilesets/scrub_land/textures/water_001.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_002.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_003.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_004.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_005.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_006.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_007.tga
X%%DATADIR%%/tilesets/scrub_land/textures/water_008.tga
X%%DATADIR%%/tilesets/spring/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/spring/models/baum1.tga
X%%DATADIR%%/tilesets/spring/models/baum2.g3d
X%%DATADIR%%/tilesets/spring/models/baum2.tga
X%%DATADIR%%/tilesets/spring/models/baum2big.g3d
X%%DATADIR%%/tilesets/spring/models/big_stone.g3d
X%%DATADIR%%/tilesets/spring/models/big_stone2.g3d
X%%DATADIR%%/tilesets/spring/models/big_stone3.g3d
X%%DATADIR%%/tilesets/spring/models/birke.g3d
X%%DATADIR%%/tilesets/spring/models/birke.tga
X%%DATADIR%%/tilesets/spring/models/broken_statue.g3d
X%%DATADIR%%/tilesets/spring/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/spring/models/bush2.g3d
X%%DATADIR%%/tilesets/spring/models/deathtree.g3d
X%%DATADIR%%/tilesets/spring/models/deathtree.tga
X%%DATADIR%%/tilesets/spring/models/deathtree_small.g3d
X%%DATADIR%%/tilesets/spring/models/farn.g3d
X%%DATADIR%%/tilesets/spring/models/flower.tga
X%%DATADIR%%/tilesets/spring/models/flowers.g3d
X%%DATADIR%%/tilesets/spring/models/hanged.g3d
X%%DATADIR%%/tilesets/spring/models/impaled.g3d
X%%DATADIR%%/tilesets/spring/models/nettle.tga
X%%DATADIR%%/tilesets/spring/models/nettles.g3d
X%%DATADIR%%/tilesets/spring/models/nettles1.g3d
X%%DATADIR%%/tilesets/spring/models/nettles2.g3d
X%%DATADIR%%/tilesets/spring/models/none.g3d
X%%DATADIR%%/tilesets/spring/models/obelisk.g3d
X%%DATADIR%%/tilesets/spring/models/palm2.g3d
X%%DATADIR%%/tilesets/spring/models/reed.g3d
X%%DATADIR%%/tilesets/spring/models/reed.tga
X%%DATADIR%%/tilesets/spring/models/rock.tga
X%%DATADIR%%/tilesets/spring/models/statue.g3d
X%%DATADIR%%/tilesets/spring/models/stone1.g3d
X%%DATADIR%%/tilesets/spring/models/stone2.g3d
X%%DATADIR%%/tilesets/spring/models/stone3.g3d
X%%DATADIR%%/tilesets/spring/models/stump.tga
X%%DATADIR%%/tilesets/spring/models/stump2.g3d
X%%DATADIR%%/tilesets/spring/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/spring/models/tanne.g3d
X%%DATADIR%%/tilesets/spring/models/tanne2.g3d
X%%DATADIR%%/tilesets/spring/models/tanne_big.g3d
X%%DATADIR%%/tilesets/spring/models/tanne_small.g3d
X%%DATADIR%%/tilesets/spring/models/tannen.tga
X%%DATADIR%%/tilesets/spring/models/technician_statue.g3d
X%%DATADIR%%/tilesets/spring/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/spring/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/spring/models/texture_bush.tga
X%%DATADIR%%/tilesets/spring/models/texture_bush2.tga
X%%DATADIR%%/tilesets/spring/models/texture_custom5.tga
X%%DATADIR%%/tilesets/spring/models/texture_flowers.tga
X%%DATADIR%%/tilesets/spring/models/texture_grass.tga
X%%DATADIR%%/tilesets/spring/models/texture_hanged.tga
X%%DATADIR%%/tilesets/spring/models/texture_impaled.tga
X%%DATADIR%%/tilesets/spring/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/spring/models/texture_statue.tga
X%%DATADIR%%/tilesets/spring/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/spring/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/spring/sounds/chicken.wav
X%%DATADIR%%/tilesets/spring/sounds/day.ogg
X%%DATADIR%%/tilesets/spring/sounds/night.ogg
X%%DATADIR%%/tilesets/spring/sounds/rain.ogg
X%%DATADIR%%/tilesets/spring/sounds/wolf.wav
X%%DATADIR%%/tilesets/spring/spring.xml
X%%DATADIR%%/tilesets/spring/textures/surface1a.bmp
X%%DATADIR%%/tilesets/spring/textures/surface1b.bmp
X%%DATADIR%%/tilesets/spring/textures/surface1c.bmp
X%%DATADIR%%/tilesets/spring/textures/surface1d.bmp
X%%DATADIR%%/tilesets/spring/textures/surface1e.bmp
X%%DATADIR%%/tilesets/spring/textures/surface1f.bmp
X%%DATADIR%%/tilesets/spring/textures/surface1h.bmp
X%%DATADIR%%/tilesets/spring/textures/surface2a.bmp
X%%DATADIR%%/tilesets/spring/textures/surface2b.bmp
X%%DATADIR%%/tilesets/spring/textures/surface2c.bmp
X%%DATADIR%%/tilesets/spring/textures/surface2d.bmp
X%%DATADIR%%/tilesets/spring/textures/surface2e.bmp
X%%DATADIR%%/tilesets/spring/textures/surface2f.bmp
X%%DATADIR%%/tilesets/spring/textures/surface3a.bmp
X%%DATADIR%%/tilesets/spring/textures/surface3b.bmp
X%%DATADIR%%/tilesets/spring/textures/surface4a.bmp
X%%DATADIR%%/tilesets/spring/textures/surface5a.bmp
X%%DATADIR%%/tilesets/spring/textures/surface5b.bmp
X%%DATADIR%%/tilesets/spring/textures/surface5c.bmp
X%%DATADIR%%/tilesets/spring/textures/surface5d.bmp
X%%DATADIR%%/tilesets/spring/textures/surface5e.bmp
X%%DATADIR%%/tilesets/spring/textures/surface5f.bmp
X%%DATADIR%%/tilesets/spring/textures/water_001.tga
X%%DATADIR%%/tilesets/spring/textures/water_002.tga
X%%DATADIR%%/tilesets/spring/textures/water_003.tga
X%%DATADIR%%/tilesets/spring/textures/water_004.tga
X%%DATADIR%%/tilesets/spring/textures/water_005.tga
X%%DATADIR%%/tilesets/spring/textures/water_006.tga
X%%DATADIR%%/tilesets/spring/textures/water_007.tga
X%%DATADIR%%/tilesets/spring/textures/water_008.tga
X%%DATADIR%%/tilesets/winter/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/winter/models/baum1.tga
X%%DATADIR%%/tilesets/winter/models/baum2.g3d
X%%DATADIR%%/tilesets/winter/models/baum2.tga
X%%DATADIR%%/tilesets/winter/models/baum2big.g3d
X%%DATADIR%%/tilesets/winter/models/big_stone.g3d
X%%DATADIR%%/tilesets/winter/models/big_stone2.g3d
X%%DATADIR%%/tilesets/winter/models/big_stone3.g3d
X%%DATADIR%%/tilesets/winter/models/birke.g3d
X%%DATADIR%%/tilesets/winter/models/birke.tga
X%%DATADIR%%/tilesets/winter/models/broken_statue.g3d
X%%DATADIR%%/tilesets/winter/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/winter/models/deathtree.g3d
X%%DATADIR%%/tilesets/winter/models/deathtree.tga
X%%DATADIR%%/tilesets/winter/models/deathtree_small.g3d
X%%DATADIR%%/tilesets/winter/models/farn.g3d
X%%DATADIR%%/tilesets/winter/models/flower.tga
X%%DATADIR%%/tilesets/winter/models/grass.tga
X%%DATADIR%%/tilesets/winter/models/hanged.g3d
X%%DATADIR%%/tilesets/winter/models/impaled.g3d
X%%DATADIR%%/tilesets/winter/models/nettle.tga
X%%DATADIR%%/tilesets/winter/models/nettles.g3d
X%%DATADIR%%/tilesets/winter/models/nettles1.g3d
X%%DATADIR%%/tilesets/winter/models/nettles2.g3d
X%%DATADIR%%/tilesets/winter/models/none.g3d
X%%DATADIR%%/tilesets/winter/models/obelisk.g3d
X%%DATADIR%%/tilesets/winter/models/palm2.g3d
X%%DATADIR%%/tilesets/winter/models/reed.g3d
X%%DATADIR%%/tilesets/winter/models/reed.tga
X%%DATADIR%%/tilesets/winter/models/rock.tga
X%%DATADIR%%/tilesets/winter/models/statue.g3d
X%%DATADIR%%/tilesets/winter/models/stone1.g3d
X%%DATADIR%%/tilesets/winter/models/stone2.g3d
X%%DATADIR%%/tilesets/winter/models/stone3.g3d
X%%DATADIR%%/tilesets/winter/models/stump.tga
X%%DATADIR%%/tilesets/winter/models/stump2.g3d
X%%DATADIR%%/tilesets/winter/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/winter/models/tanne.g3d
X%%DATADIR%%/tilesets/winter/models/tanne2.g3d
X%%DATADIR%%/tilesets/winter/models/tanne_big.g3d
X%%DATADIR%%/tilesets/winter/models/tanne_small.g3d
X%%DATADIR%%/tilesets/winter/models/tannen.tga
X%%DATADIR%%/tilesets/winter/models/technician_statue.g3d
X%%DATADIR%%/tilesets/winter/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/winter/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/winter/models/texture_bush.tga
X%%DATADIR%%/tilesets/winter/models/texture_bush2.tga
X%%DATADIR%%/tilesets/winter/models/texture_custom5.tga
X%%DATADIR%%/tilesets/winter/models/texture_flowers.tga
X%%DATADIR%%/tilesets/winter/models/texture_grass.tga
X%%DATADIR%%/tilesets/winter/models/texture_hanged.tga
X%%DATADIR%%/tilesets/winter/models/texture_impaled.tga
X%%DATADIR%%/tilesets/winter/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/winter/models/texture_statue.tga
X%%DATADIR%%/tilesets/winter/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/winter/models/texture_stone.tga
X%%DATADIR%%/tilesets/winter/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/winter/sounds/chicken.wav
X%%DATADIR%%/tilesets/winter/sounds/wind.ogg
X%%DATADIR%%/tilesets/winter/sounds/wolf.wav
X%%DATADIR%%/tilesets/winter/textures/surface1a.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1b.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1c.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1d.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1e.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1f.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1g.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1h.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1i.bmp
X%%DATADIR%%/tilesets/winter/textures/surface1j.bmp
X%%DATADIR%%/tilesets/winter/textures/surface2a.bmp
X%%DATADIR%%/tilesets/winter/textures/surface2b.bmp
X%%DATADIR%%/tilesets/winter/textures/surface2c.bmp
X%%DATADIR%%/tilesets/winter/textures/surface2d.bmp
X%%DATADIR%%/tilesets/winter/textures/surface2e.bmp
X%%DATADIR%%/tilesets/winter/textures/surface2f.bmp
X%%DATADIR%%/tilesets/winter/textures/surface3a.bmp
X%%DATADIR%%/tilesets/winter/textures/surface3b.bmp
X%%DATADIR%%/tilesets/winter/textures/surface4a.bmp
X%%DATADIR%%/tilesets/winter/textures/surface4b.bmp
X%%DATADIR%%/tilesets/winter/textures/surface4c.bmp
X%%DATADIR%%/tilesets/winter/textures/surface4d.bmp
X%%DATADIR%%/tilesets/winter/textures/surface4e.bmp
X%%DATADIR%%/tilesets/winter/textures/surface5a.bmp
X%%DATADIR%%/tilesets/winter/textures/surface5b.bmp
X%%DATADIR%%/tilesets/winter/textures/surface5c.bmp
X%%DATADIR%%/tilesets/winter/textures/surface5d.bmp
X%%DATADIR%%/tilesets/winter/textures/surface5e.bmp
X%%DATADIR%%/tilesets/winter/textures/surface5f.bmp
X%%DATADIR%%/tilesets/winter/textures/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/winter/textures/texture_bush.tga
X%%DATADIR%%/tilesets/winter/textures/texture_custom5.tga
X%%DATADIR%%/tilesets/winter/textures/texture_hanged.tga
X%%DATADIR%%/tilesets/winter/textures/texture_impaled.tga
X%%DATADIR%%/tilesets/winter/textures/texture_obelisk.tga
X%%DATADIR%%/tilesets/winter/textures/texture_statue.tga
X%%DATADIR%%/tilesets/winter/textures/texture_statue_technician.tga
X%%DATADIR%%/tilesets/winter/textures/texture_stone.tga
X%%DATADIR%%/tilesets/winter/textures/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/winter/textures/water.tga
X%%DATADIR%%/tilesets/winter/textures/water_001.tga
X%%DATADIR%%/tilesets/winter/textures/water_002.tga
X%%DATADIR%%/tilesets/winter/textures/water_003.tga
X%%DATADIR%%/tilesets/winter/textures/water_004.tga
X%%DATADIR%%/tilesets/winter/textures/water_005.tga
X%%DATADIR%%/tilesets/winter/textures/water_006.tga
X%%DATADIR%%/tilesets/winter/textures/water_007.tga
X%%DATADIR%%/tilesets/winter/textures/water_008.tga
X%%DATADIR%%/tilesets/winter/winter.xml
X%%DATADIR%%/tilesets/winter_forest/models/battlemage_statue.g3d
X%%DATADIR%%/tilesets/winter_forest/models/big_stone.g3d
X%%DATADIR%%/tilesets/winter_forest/models/big_stone2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/big_stone3.g3d
X%%DATADIR%%/tilesets/winter_forest/models/big_tree1.g3d
X%%DATADIR%%/tilesets/winter_forest/models/big_tree2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/broken_statue.g3d
X%%DATADIR%%/tilesets/winter_forest/models/broken_statue2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/bush.g3d
X%%DATADIR%%/tilesets/winter_forest/models/bush2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/bush3.g3d
X%%DATADIR%%/tilesets/winter_forest/models/bush4.g3d
X%%DATADIR%%/tilesets/winter_forest/models/bush5.g3d
X%%DATADIR%%/tilesets/winter_forest/models/dead_tree.g3d
X%%DATADIR%%/tilesets/winter_forest/models/hanged.g3d
X%%DATADIR%%/tilesets/winter_forest/models/impaled.g3d
X%%DATADIR%%/tilesets/winter_forest/models/none.g3d
X%%DATADIR%%/tilesets/winter_forest/models/obelisk.g3d
X%%DATADIR%%/tilesets/winter_forest/models/riverside_object.g3d
X%%DATADIR%%/tilesets/winter_forest/models/riverside_object2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/riverside_object3.g3d
X%%DATADIR%%/tilesets/winter_forest/models/riverside_object4.g3d
X%%DATADIR%%/tilesets/winter_forest/models/riverside_object5.g3d
X%%DATADIR%%/tilesets/winter_forest/models/statue.g3d
X%%DATADIR%%/tilesets/winter_forest/models/stone1.g3d
X%%DATADIR%%/tilesets/winter_forest/models/stone2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/swordman_statue.g3d
X%%DATADIR%%/tilesets/winter_forest/models/technician_statue.g3d
X%%DATADIR%%/tilesets/winter_forest/models/texture_battlemage_statue.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_big_stone.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_bush.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_bush2.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_custom5.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_dead_tree.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_flowers.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_grass.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_hanged.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_impaled.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_obelisk.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_statue.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_statue_technician.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_stone.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_swordman_statue.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree1.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree2.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree3.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree4.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree5.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree6.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree_3.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_tree_4.tga
X%%DATADIR%%/tilesets/winter_forest/models/texture_water_object.tga
X%%DATADIR%%/tilesets/winter_forest/models/tree1.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree10.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree2.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree3.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree4.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree5.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree6.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree7.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree8.g3d
X%%DATADIR%%/tilesets/winter_forest/models/tree9.g3d
X%%DATADIR%%/tilesets/winter_forest/sounds/rain.ogg
X%%DATADIR%%/tilesets/winter_forest/sounds/wind.ogg
X%%DATADIR%%/tilesets/winter_forest/textures/surface1a.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface1b.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface1c.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface2a.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface2b.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface2c.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface2d.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface2e.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface2f.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface3a.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface3b.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface4a.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface4b.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface4c.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/surface5a.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/water.bmp
X%%DATADIR%%/tilesets/winter_forest/textures/water_001.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_002.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_003.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_004.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_005.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_006.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_007.tga
X%%DATADIR%%/tilesets/winter_forest/textures/water_008.tga
X%%DATADIR%%/tilesets/winter_forest/winter_forest.xml
X@dirrm %%DATADIR%%/tilesets/winter_forest/textures
X@dirrm %%DATADIR%%/tilesets/winter_forest/sounds
X@dirrm %%DATADIR%%/tilesets/winter_forest/models
X@dirrm %%DATADIR%%/tilesets/winter_forest
X@dirrm %%DATADIR%%/tilesets/winter/textures
X@dirrm %%DATADIR%%/tilesets/winter/sounds
X@dirrm %%DATADIR%%/tilesets/winter/models
X@dirrm %%DATADIR%%/tilesets/winter
X@dirrm %%DATADIR%%/tilesets/spring/textures
X@dirrm %%DATADIR%%/tilesets/spring/sounds
X@dirrm %%DATADIR%%/tilesets/spring/models
X@dirrm %%DATADIR%%/tilesets/spring
X@dirrm %%DATADIR%%/tilesets/scrub_land/textures
X@dirrm %%DATADIR%%/tilesets/scrub_land/sounds
X@dirrm %%DATADIR%%/tilesets/scrub_land/models
X@dirrm %%DATADIR%%/tilesets/scrub_land
X@dirrm %%DATADIR%%/tilesets/pine_peat/textures
X@dirrm %%DATADIR%%/tilesets/pine_peat/sounds
X@dirrm %%DATADIR%%/tilesets/pine_peat/models
X@dirrm %%DATADIR%%/tilesets/pine_peat
X@dirrm %%DATADIR%%/tilesets/mediterran/textures
X@dirrm %%DATADIR%%/tilesets/mediterran/sounds
X@dirrm %%DATADIR%%/tilesets/mediterran/models
X@dirrm %%DATADIR%%/tilesets/mediterran
X@dirrm %%DATADIR%%/tilesets/meadow/textures
X@dirrm %%DATADIR%%/tilesets/meadow/sounds
X@dirrm %%DATADIR%%/tilesets/meadow/models
X@dirrm %%DATADIR%%/tilesets/meadow
X@dirrm %%DATADIR%%/tilesets/karningul/textures/texture_stock
X@dirrm %%DATADIR%%/tilesets/karningul/textures
X@dirrm %%DATADIR%%/tilesets/karningul/sounds
X@dirrm %%DATADIR%%/tilesets/karningul/models
X@dirrm %%DATADIR%%/tilesets/karningul
X@dirrm %%DATADIR%%/tilesets/jungle/textures
X@dirrm %%DATADIR%%/tilesets/jungle/sounds
X@dirrm %%DATADIR%%/tilesets/jungle/models
X@dirrm %%DATADIR%%/tilesets/jungle
X@dirrm %%DATADIR%%/tilesets/hell/textures
X@dirrm %%DATADIR%%/tilesets/hell/sounds
X@dirrm %%DATADIR%%/tilesets/hell/models
X@dirrm %%DATADIR%%/tilesets/hell
X@dirrm %%DATADIR%%/tilesets/forest/textures
X@dirrm %%DATADIR%%/tilesets/forest/sounds
X@dirrm %%DATADIR%%/tilesets/forest/models
X@dirrm %%DATADIR%%/tilesets/forest
X@dirrm %%DATADIR%%/tilesets/fernland/textures
X@dirrm %%DATADIR%%/tilesets/fernland/sounds
X@dirrm %%DATADIR%%/tilesets/fernland/models
X@dirrm %%DATADIR%%/tilesets/fernland
X@dirrm %%DATADIR%%/tilesets/evergreen/textures
X@dirrm %%DATADIR%%/tilesets/evergreen/sounds
X@dirrm %%DATADIR%%/tilesets/evergreen/models
X@dirrm %%DATADIR%%/tilesets/evergreen
X@dirrm %%DATADIR%%/tilesets/desert2/textures
X@dirrm %%DATADIR%%/tilesets/desert2/sounds
X@dirrm %%DATADIR%%/tilesets/desert2/models
X@dirrm %%DATADIR%%/tilesets/desert2
X@dirrm %%DATADIR%%/tilesets/dark_forest/textures
X@dirrm %%DATADIR%%/tilesets/dark_forest/sounds
X@dirrm %%DATADIR%%/tilesets/dark_forest/models
X@dirrm %%DATADIR%%/tilesets/dark_forest
X@dirrm %%DATADIR%%/tilesets/autumn/textures
X@dirrm %%DATADIR%%/tilesets/autumn/sounds
X@dirrm %%DATADIR%%/tilesets/autumn/models
X@dirrm %%DATADIR%%/tilesets/autumn
X@dirrm %%DATADIR%%/tilesets
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial.xml
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_deutsch.lng
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_english.lng
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_espaol.lng
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_francais.lng
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_galego.lng
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_galician.lng
X%%DATADIR%%/tutorials/advanced_tutorial/advanced_tutorial_italiano.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial.xml
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_deutsch.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_english.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_espaol.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_francais.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_galego.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_galician.lng
X%%DATADIR%%/tutorials/basic_tutorial/basic_tutorial_italiano.lng
X%%DATADIR%%/tutorials/basic_tutorial_2/basic_tutorial_2.xml
X%%DATADIR%%/tutorials/basic_tutorial_2/basic_tutorial_2_deutsch.lng
X%%DATADIR%%/tutorials/basic_tutorial_2/basic_tutorial_2_english.lng
X@dirrm %%DATADIR%%/tutorials/basic_tutorial_2
X@dirrm %%DATADIR%%/tutorials/basic_tutorial
X@dirrm %%DATADIR%%/tutorials/advanced_tutorial
X@dirrm %%DATADIR%%/tutorials
X@dirrmtry %%DATADIR%%
X%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
X%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG
X%%PORTDOCS%%%%DOCSDIR%%/LICENSE
X%%PORTDOCS%%%%DOCSDIR%%/README
X%%PORTDOCS%%%%DOCSDIR%%/data_license.txt
X%%PORTDOCS%%%%DOCSDIR%%/data_license_readme.txt
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/advanced_architecture.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/advanced_magic.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/aerodrome.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/air_ballista.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/airship.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/ancient_summoning.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/archer.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/archmage.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/archmage_tower.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/barracks.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/battle_machine.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/battlemage.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/behemoth.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/blacksmith.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/blade_weapons.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/castle.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/catapult.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/cow.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/daemon.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/defense_tower.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/dragon.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/dragon_call.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/drake_rider.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/energy_compression.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/energy_sharpening.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/energy_source.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/farm.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/ghost_armor.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/golem.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/guard.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/hell_gate.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/horseman.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/index.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/initiate.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/library.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/mage_tower.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/mana_compression.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/ornithopter.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/piercing_weapons.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/pig.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/rider.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/robotics.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/shield_level_1.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/shield_level_2.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/stables.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/summoner.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/summoner_guild.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/swordman.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/technician.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/technodrome.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/tower_of_souls.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/training_field.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/wicker_behemoth.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/wicker_daemon.html
X%%PORTDOCS%%%%DOCSDIR%%/glest_factions/worker.html
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/glest_factions
X%%PORTDOCS%%@dirrmtry %%DOCSDIR%%
b024a41f0bd37a871ee1affd11ba731a
exit
--- megaglest-data.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->beat 
Responsible-Changed-By: beat 
Responsible-Changed-When: Sun Apr 3 13:13:53 UTC 2011 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=155111 
State-Changed-From-To: open->feedback 
State-Changed-By: beat 
State-Changed-When: Tue Apr 5 09:29:46 UTC 2011 
State-Changed-Why:  
Waiting for feedback about the maintainership of the new ports. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=155111 

From: Beat Gaetzi <beat@FreeBSD.org>
To: bug-followup@FreeBSD.org, rnejdl@ringofsaturn.com, smoeller@nichthelfer.de
Cc:  
Subject: Re: ports/155111: Create new megaglest port
Date: Tue, 05 Apr 2011 11:24:43 +0200

 This is a multi-part message in MIME format.
 --------------010102060309070204080007
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: 8bit
 
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
 Hi,
 
 The maintainer in the port is set to Sven but the PR was submitted by
 Rusty. Sven could you please confirm that you are still interested in
 maintaining this port?
 
 I did some refactoring and cleanups on the submitted ports. Could you
 please review and test the new shar files?
 
 Thanks,
 Beat
 
 - -- 
 Beat Gtzi       | FreeBSD Committer
 beat@FreeBSD.org | http://www.FreeBSD.org
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.16 (FreeBSD)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
 
 iEYEARECAAYFAk2a39sACgkQQMW893dCSdtTywCbBMXIOfdQAz97BrMerF+0tw/2
 4pQAn3IBdNx4kIdsEyTaSrDKhXGAzXj1
 =Tidd
 -----END PGP SIGNATURE-----
 
 --------------010102060309070204080007
 Content-Type: text/plain;
  name="megaglest.shar"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="megaglest.shar"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	megaglest
 #	megaglest/files
 #	megaglest/files/glest-wrapper.in
 #	megaglest/files/patch-CMakeLists.txt
 #	megaglest/files/pkg-message.in
 #	megaglest/Makefile
 #	megaglest/distinfo
 #	megaglest/pkg-descr
 #	megaglest/pkg-plist
 #
 echo c - megaglest
 mkdir -p megaglest > /dev/null 2>&1
 echo c - megaglest/files
 mkdir -p megaglest/files > /dev/null 2>&1
 echo x - megaglest/files/glest-wrapper.in
 sed 's/^X//' >megaglest/files/glest-wrapper.in << '5ea987f0fef152801e9f9dc56b8eddd3'
 X#!/bin/sh
 X
 X# The executable needs to be run from its data directory, and needs to store
 X# configuration in it. We therefore mirror the data directory hierarchy in
 X# ~/.megaglest, and create symlinks to the data files.
 X
 Xif [ -d ~/.megaglest ]
 Xthen
 X        echo "Using existing ~/.megaglest directory."
 Xelse
 X        echo "Creating ~/.megaglest directory."
 X        cd %%DATADIR%% || exit 1
 X        find * -type d -exec mkdir -p ~/.megaglest/{} \;
 X        find * -type f -exec ln -s %%DATADIR%%/{} ~/.megaglest/{} \; 2>/dev/null
 X	mkdir -p ~/.megaglest/screens
 X	mkdir -p ~/.megaglest/shaders/standard
 X	touch ~/.megaglest/megaglest.log
 X	rm ~/.megaglest/glest.ini ~/.megaglest/megaglest ~/.megaglest/servers.ini
 X	cp -f %%DATADIR%%/glest.ini ~/.megaglest/
 X	cp -f %%DATADIR%%/glestkeys.ini ~/.megaglest/
 X	cp -f %%DATADIR%%/servers.ini ~/.megaglest/
 X	chmod 640 ~/.megaglest/glest.ini ~/.megaglest/servers.ini
 Xfi
 X
 Xcd ~/.megaglest || exit 1
 Xecho "Please be patient while loading MegaGlest..."
 Xexec %%DATADIR%%/glest.bin "$@"
 5ea987f0fef152801e9f9dc56b8eddd3
 echo x - megaglest/files/patch-CMakeLists.txt
 sed 's/^X//' >megaglest/files/patch-CMakeLists.txt << '0cf48dcc35be4ea5b764a9c7d6d3f81c'
 X*** CMakeLists.txt	2011-02-10 17:41:19.000000000 +0100
 X--- CMakeLists.txt_FreeBSD	2011-02-10 17:41:56.000000000 +0100
 X*************** IF(CMAKE_COMPILER_IS_GNUCXX OR MINGW)
 X*** 59,76 ****
 X- 	OPTION(WANT_SVN_STAMP "use svn stamp" ON)
 X- 	IF(WANT_SVN_STAMP)
 X- 		# The stuff below gets SVN Global Revision # but ONLY when calling cmake!
 X- 		# the FindSubversion.cmake module is part of the standard distribution
 X- 		include(FindSubversion)
 X- 		# extract working copy information for SOURCE_DIR into MY_XXX variables
 X- 		Subversion_WC_INFO(${PROJECT_SOURCE_DIR} MG)
 X- 		#add_definitions(-DSVNVERSION="${MG_WC_REVISION}")
 X- 	ENDIF()
 X- 
 X- 	SET(SVN_VERSION_CMD "-DSVNVERSION='\\\"${MG_WC_REVISION}\\\"'")
 X- 
 X- 	IF(UNIX AND NOT APPLE)
 X- 		# We do some funky character escaping to get the right stuff written out to 
 X- 		# the final Makefile so we get the SVN Global Revsion #
 X- 		SET(SVN_VERSION_CMD "-DSVNVERSION='\\\"`svnversion -n ${PROJECT_SOURCE_DIR}`\\\"'")
 X- 	ENDIF()
 X- 
 X--- 58 ----
 0cf48dcc35be4ea5b764a9c7d6d3f81c
 echo x - megaglest/files/pkg-message.in
 sed 's/^X//' >megaglest/files/pkg-message.in << '4bd19d518555d813587371be8ff8d703'
 X###############################################################################
 X
 XThe megaglest game has been installed:
 X
 X1) You will find the megaglest configuration files in ~/.megaglest
 X
 X2) If you instlled the megaglest map editor you could lounch it like this:
 X
 X   # glest_editor
 X
 X3) If you have problems running megaglest, you should remove your ~/.megaglest 
 X   directory and try again
 X
 X4) Enjoy it ;)
 X
 X###############################################################################
 4bd19d518555d813587371be8ff8d703
 echo x - megaglest/Makefile
 sed 's/^X//' >megaglest/Makefile << '22a96243364cc23145ffe096a51871a8'
 X# New ports collection makefile for:	megaglest
 X# Date created:				2011-02-10
 X# Whom:					Sven Moeller <smoeller@nichthelfer.de>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	megaglest
 XPORTVERSION=	3.4.0
 XCATEGORIES=	games
 XMASTER_SITES=	SF/${PORTNAME}/current_release/
 XDISTNAME=	${PORTNAME}-source-${PORTVERSION}
 X
 XMAINTAINER=	smoeller@nichthelfer.de
 XCOMMENT=	Open source 3D real-time strategy game
 X
 XLIB_DEPENDS=	curl.6:${PORTSDIR}/ftp/curl \
 X		jpeg.11:${PORTSDIR}/graphics/jpeg \
 X		png.6:${PORTSDIR}/graphics/png \
 X		xerces-c.27:${PORTSDIR}/textproc/xerces-c2 \
 X		vorbis.4:${PORTSDIR}/audio/libvorbis
 XRUN_DEPENDS=	${DATADIR}/tutorials/basic_tutorial/basic_tutorial.xml:${PORTSDIR}/games/megaglest-data
 X
 XSUB_FILES=	glest-wrapper pkg-message
 X
 XUSE_BZIP2=	yes
 XUSE_CMAKE=	yes
 XUSE_DOS2UNIX=	yes
 XUSE_GL=		yes
 XUSE_LUA=	5.1
 XUSE_OPENAL=	al alut
 XUSE_SDL=	yes
 XUSE_WX=		2.8+
 X
 XOPTIONS=	EDITOR "Install MegaGlest Editor" off
 X
 X.include <bsd.port.options.mk>
 X
 X.if defined(WITH_EDITOR)
 XPLIST_SUB+=	EDITOR=""
 X.else
 XPLIST_SUB+=	EDITOR="@comment "
 X.endif
 X
 Xdo-install:
 X	${STRIP_CMD} ${WRKSRC}/mk/linux/glest.bin
 X	@${MKDIR} ${DATADIR}
 X.if !defined(NOPORTDOCS)
 X	@${MKDIR} ${DOCSDIR}
 X.endif
 X	${INSTALL_PROGRAM} ${WRKSRC}/mk/linux/glest.bin ${DATADIR}
 X.for f in glest.ini glestkeys.ini servers.ini
 X	${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR}
 X.endfor
 X	${INSTALL_SCRIPT} ${WRKDIR}/glest-wrapper ${PREFIX}/bin/${PORTNAME}
 X.if !defined(NOPORTDOCS)
 X	${INSTALL_DATA} ${WRKSRC}/code_license.txt ${DOCSDIR}
 X.endif
 X.if defined(WITH_EDITOR)
 X	${INSTALL_PROGRAM} ${WRKSRC}/mk/linux/glest_editor ${PREFIX}/bin/
 X.endif
 X
 Xpost-install:
 X	@${CAT} ${PKGMESSAGE}
 X
 X.include <bsd.port.mk>
 22a96243364cc23145ffe096a51871a8
 echo x - megaglest/distinfo
 sed 's/^X//' >megaglest/distinfo << '8d22f86bfa255e10c286691ee713f418'
 XSHA256 (megaglest-source-3.4.0.tar.bz2) = da17c210fb6c3c366bf0e2b44e243740008c3a6ad62f27d631002e46f0210654
 XSIZE (megaglest-source-3.4.0.tar.bz2) = 899312
 8d22f86bfa255e10c286691ee713f418
 echo x - megaglest/pkg-descr
 sed 's/^X//' >megaglest/pkg-descr << 'c7802852462edac5cdbbcd872b1ce15f'
 XMegaGlest is an open source 3D-real-time strategy game, where you control
 Xthe armies of one of seven different factions:  Tech, Magic, Egyptians,
 XIndians, Norsemen, Persian or Romans (Beta). The game is setup in one of
 X14 naturally looking settings, which -like the unit models- are crafted
 Xwith great appreciation for detail. MegaGlest is heavily based on the
 Xwidely known Glest, which it forked from in early 2010.
 X
 XWWW: http://megaglest.org/
 c7802852462edac5cdbbcd872b1ce15f
 echo x - megaglest/pkg-plist
 sed 's/^X//' >megaglest/pkg-plist << '085de6f891c513877aab8b9a0d6e2726'
 X%%EDITOR%%bin/glest_editor
 Xbin/megaglest
 X%%DATADIR%%/glest.bin
 X%%DATADIR%%/glest.ini
 X%%DATADIR%%/glestkeys.ini
 X%%DATADIR%%/servers.ini
 X%%PORTDOCS%%%%DOCSDIR%%/code_license.txt
 X%%PORTDOCS%%@dirrm %%DOCSDIR%%
 X@dirrm %%DATADIR%%
 085de6f891c513877aab8b9a0d6e2726
 exit
 
 
 --------------010102060309070204080007
 Content-Type: text/plain;
  name="megaglest-data.shar"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="megaglest-data.shar"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	megaglest-data
 #	megaglest-data/Makefile
 #	megaglest-data/distinfo
 #	megaglest-data/pkg-descr
 #
 echo c - megaglest-data
 mkdir -p megaglest-data > /dev/null 2>&1
 echo x - megaglest-data/Makefile
 sed 's/^X//' >megaglest-data/Makefile << 'c60268649f466fc6d6290d043c1c1de1'
 X# New ports collection makefile for:	megaglest-data
 X# Date created:				2010-11-12
 X# Whom:					Sven Moeller <smoeller@nichthelfer.de>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	megaglest
 XPORTVERSION=	3.4.0
 XCATEGORIES=	games
 XMASTER_SITES=	SF/${PORTNAME}/current_release/
 XPKGNAMESUFFIX=	-data
 XDISTNAME=	${PORTNAME}-fixed${PKGNAMESUFFIX:S/-/_/}-${PORTVERSION}
 XEXTRACT_SUFX=	.7z
 X
 XMAINTAINER=	smoeller@nichthelfer.de
 XCOMMENT=	MegaGlest data files
 X
 XEXTRACT_DEPENDS=7z:${PORTSDIR}/archivers/p7zip
 X
 XUSE_DOS2UNIX=	*.log *.ini *.html *.txt *.lng
 XNO_BUILD=	yes
 X
 XWRKSRC=		${WRKDIR}/${PORTNAME}_game
 X
 XPLIST=		${WRKDIR}/pkg-plist
 X
 Xdo-extract:
 X	@${MKDIR} ${WRKSRC}
 X	@cd ${WRKSRC} && \
 X		${LOCALBASE}/bin/7z x ${DISTDIR}/${DISTFILES} >/dev/null
 X
 Xpre-install:
 X	@${ECHO_CMD} "%%DATADIR%%/megaglest.ico" >> ${PLIST}
 X
 X.for DIR in data maps scenarios techs tilesets tutorials
 X	@cd ${WRKSRC} && \
 X		${FIND} ${DIR} -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/|' >> ${PLIST} && \
 X			${FIND} ${DIR} -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm %%DATADIR%%/|' >> ${PLIST}
 X.endfor
 X	@${ECHO_CMD} "@dirrmtry %%DATADIR%%" >> ${PLIST}
 X
 X.if !defined(NOPORTDOCS)
 X	@cd ${WRKSRC}/docs && \
 X		${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%PORTDOCS%%%%DOCSDIR%%/|' >> ${PLIST} && \
 X			${FIND} * -type d | ${SORT} -r | ${SED} -e 's|^|%%PORTDOCS%%@dirrm %%DOCSDIR%%/|' >> ${PLIST}
 X	@${ECHO_CMD} "%%PORTDOCS%%@dirrmtry %%DOCSDIR%%" >> ${PLIST}
 X.endif
 X
 Xdo-install:
 X.if !defined(NOPORTDOCS)
 X	@${MKDIR} ${DOCSDIR}/glest_factions
 X.for f in AUTHORS CHANGELOG LICENSE README data_license.txt data_license_readme.txt
 X	${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR}
 X.endfor
 X	(cd ${WRKSRC}/docs/glest_factions && ${COPYTREE_SHARE} "*" ${DOCSDIR}/glest_factions)
 X.endif
 X	@${MKDIR} ${DATADIR}
 X	${INSTALL_DATA} ${WRKSRC}/megaglest.ico ${DATADIR}
 X
 X.for DIR in data maps scenarios techs tilesets tutorials
 X	${MKDIR} ${DATADIR}/${DIR}
 X	(cd ${WRKSRC}/${DIR} && ${COPYTREE_SHARE} "*" ${DATADIR}/${DIR})
 X.endfor
 X
 X.include <bsd.port.mk>
 c60268649f466fc6d6290d043c1c1de1
 echo x - megaglest-data/distinfo
 sed 's/^X//' >megaglest-data/distinfo << '392edb33742b055303a65bde9cc7ec1e'
 XSHA256 (megaglest-fixed_data-3.4.0.7z) = 3944c2549f03c64a75a1c33835b22aaed3748a2712c192b5705978d8caef1d45
 XSIZE (megaglest-fixed_data-3.4.0.7z) = 189268275
 392edb33742b055303a65bde9cc7ec1e
 echo x - megaglest-data/pkg-descr
 sed 's/^X//' >megaglest-data/pkg-descr << 'f15a8f80ec1009269500b8e6a673d942'
 XThe megaglest data files.
 X
 XThis port installs the data files needed to run megaglest a free 3D
 Xreal-time strategy game.
 X
 XWWW: http://megaglest.org/
 f15a8f80ec1009269500b8e6a673d942
 exit
 
 
 --------------010102060309070204080007--

From: Sven Moeller <smoeller@nichthelfer.de>
To: Beat Gaetzi <beat@FreeBSD.org>
Cc: bug-followup@FreeBSD.org, rnejdl@ringofsaturn.com
Subject: Re: ports/155111: Create new megaglest port
Date: Tue, 05 Apr 2011 11:34:40 +0200

 Am 05.04.2011 11:24, schrieb Beat Gaetzi:
 > -----BEGIN PGP SIGNED MESSAGE-----
 > Hash: SHA1
 >
 > Hi,
 >
 > The maintainer in the port is set to Sven but the PR was submitted by
 > Rusty. Sven could you please confirm that you are still interested in
 > maintaining this port?
 >
 > I did some refactoring and cleanups on the submitted ports. Could you
 > please review and test the new shar files?
 >
 > Thanks,
 > Beat
 >
 > - -- 
 > Beat Gtzi       | FreeBSD Committer
 > beat@FreeBSD.org | http://www.FreeBSD.org
 > -----BEGIN PGP SIGNATURE-----
 > Version: GnuPG v2.0.16 (FreeBSD)
 > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
 >
 > iEYEARECAAYFAk2a39sACgkQQMW893dCSdtTywCbBMXIOfdQAz97BrMerF+0tw/2
 > 4pQAn3IBdNx4kIdsEyTaSrDKhXGAzXj1
 > =Tidd
 > -----END PGP SIGNATURE-----
 Hi Beat,
 
 yes, i confirm that i'm still interested in maintaining the MegaGlest 
 Ports. I did the porting of MegaGlest to FreeBSD and gave the needed 
 changes on the sources back to upstream. Rusty and i had made the 
 FreeBSD Port Makefiles together. We were helping each other.
 
 Many thanks Rusty.
 
 At the moment i'm at work. Hopefully i'll find some spare time for 
 testing the new shar files tonight or tomorrow evening. i'll let you now 
 as soon as i've tested them.
 
 Thanks and kind regards
 
 Sven Moeller

From: Rusty Nejdl <rnejdl@ringofsaturn.com>
To: Sven Moeller <smoeller@nichthelfer.de>
Cc: Beat Gaetzi <beat@freebsd.org>, <bug-followup@freebsd.org>
Subject: Re: ports/155111: Create new megaglest port
Date: Tue, 05 Apr 2011 09:49:32 -0500

 --=_b21d7d58c54a25d8924e218a1e246e3d
 Content-Transfer-Encoding: quoted-printable
 Content-Type: text/plain; charset=UTF-8
 
  =20
 
 On Tue, 05 Apr 2011 11:34:40 +0200, Sven Moeller wrote:=20
 
 > Am
 05.04.2011 11:24, schrieb Beat Gaetzi:
 >=20
 >> -----BEGIN PGP SIGNED
 MESSAGE----- Hash: SHA1 Hi, The maintainer in the port is set to Sven
 but the PR was submitted by Rusty. Sven could you please confirm that
 you are still interested in maintaining this port? I did some
 refactoring and cleanups on the submitted ports. Could you please review
 and test the new shar files? Thanks, Beat - -- Beat G=C3=A4tzi | FreeBSD
 Committer beat@FreeBSD.org [1] | http://www.FreeBSD.org [2] -----BEGIN
 PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) Comment: Using GnuPG
 with Mozilla - http://enigmail.mozdev.org/ [3]
 iEYEARECAAYFAk2a39sACgkQQMW893dCSdtTywCbBMXIOfdQAz97BrMerF+0tw/2
 4pQAn3IBdNx4kIdsEyTaSrDKhXGAzXj1 =3DTidd -----END PGP SIGNATURE-----
 >=20
 >
 Hi Beat,
 >=20
 > yes, i confirm that i'm still interested in maintaining
 the MegaGlest=20
 > Ports. I did the porting of MegaGlest to FreeBSD and
 gave the needed=20
 > changes on the sources back to upstream. Rusty and i
 had made the=20
 > FreeBSD Port Makefiles together. We were helping each
 other.
 >=20
 > Many thanks Rusty.
 >=20
 > At the moment i'm at work. Hopefully
 i'll find some spare time for=20
 > testing the new shar files tonight or
 tomorrow evening. i'll let you now=20
 > as soon as i've tested them.
 >=20
 >
 Thanks and kind regards
 >=20
 > Sven Moeller
 
 Sven,=20
 
 Thanks for the reply.
 I've tested the port and I only have one small tweak and it is good:
 
 
 In pkg-plist, change the last two lines to be:=20
 
 %%PORTDOCS%%@dirrmtry
 %%DOCSDIR%%
 @dirrmtry %%DATADIR%%
 =EF=BB=BF=20
 
 That will remove the errors when
 you deinstall megaglest before megaglest-data, while still ensuring that
 everything is cleaned up properly.=20
 
 Rusty=20
 
  =20
 
 Links:
 ------
 [1]
 mailto:beat@FreeBSD.org
 [2] http://www.FreeBSD.org
 [3]
 http://enigmail.mozdev.org/
 
 --=_b21d7d58c54a25d8924e218a1e246e3d
 Content-Transfer-Encoding: quoted-printable
 Content-Type: text/html; charset=UTF-8
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
 <html><body>
 <p>On Tue, 05 Apr 2011 11:34:40 +0200, Sven Moeller wrote:</p>
 <blockquote type=3D"cite" style=3D"padding-left:5px; border-left:#1010ff 2p=
 x solid; margin-left:5px; width:100%"><!-- html ignored --><!-- head ignore=
 d --><!-- meta ignored -->
 <pre>Am 05.04.2011 11:24, schrieb Beat Gaetzi:</pre>
 <blockquote type=3D"cite" style=3D"padding-left:5px; border-left:#1010ff 2p=
 x solid; margin-left:5px; width:100%">-----BEGIN PGP SIGNED MESSAGE----- Ha=
 sh: SHA1 Hi, The maintainer in the port is set to Sven but the PR was submi=
 tted by Rusty. Sven could you please confirm that you are still interested =
 in maintaining this port? I did some refactoring and cleanups on the submit=
 ted ports. Could you please review and test the new shar files? Thanks, Bea=
 t - -- Beat G&auml;tzi | FreeBSD Committer <a href=3D"mailto:beat@FreeBSD=
 =2Eorg">beat@FreeBSD.org</a> | <a href=3D"http://www.FreeBSD.org">http://ww=
 w.FreeBSD.org</a> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (Fre=
 eBSD) Comment: Using GnuPG with Mozilla - <a href=3D"http://enigmail.mozdev=
 =2Eorg/">http://enigmail.mozdev.org/</a> iEYEARECAAYFAk2a39sACgkQQMW893dCSd=
 tTywCbBMXIOfdQAz97BrMerF+0tw/2 4pQAn3IBdNx4kIdsEyTaSrDKhXGAzXj1 =3DTidd ---=
 --END PGP SIGNATURE-----</blockquote>
 <pre>Hi Beat,
 
 yes, i confirm that i'm still interested in maintaining the MegaGlest=20
 Ports. I did the porting of MegaGlest to FreeBSD and gave the needed=20
 changes on the sources back to upstream. Rusty and i had made the=20
 FreeBSD Port Makefiles together. We were helping each other.
 
 Many thanks Rusty.
 
 At the moment i'm at work. Hopefully i'll find some spare time for=20
 testing the new shar files tonight or tomorrow evening. i'll let you now=20
 as soon as i've tested them.
 
 Thanks and kind regards
 
 Sven Moeller
 </pre>
 </blockquote>
 <p>Sven,</p>
 <p>Thanks for the reply.&nbsp; I've tested the port and I only have one sma=
 ll tweak and it is good:</p>
 <p>In pkg-plist, change the last two lines to be:</p>
 <p>%%PORTDOCS%%@dirrmtry %%DOCSDIR%%<br />@dirrmtry %%DATADIR%%<br />=EF=BB=
 =BF</p>
 <p>That will remove the errors when you deinstall megaglest before megagles=
 t-data, while still ensuring that everything is cleaned up properly.</p>
 <p>Rusty</p>
 <p>&nbsp;</p>
 <div>&nbsp;</div>
 </body></html>
 
 --=_b21d7d58c54a25d8924e218a1e246e3d--
 

From: Sven Moeller <smoeller@nichthelfer.de>
To: rnejdl@ringofsaturn.com
Cc: Beat Gaetzi <beat@freebsd.org>, bug-followup@freebsd.org
Subject: Re: ports/155111: Create new megaglest port
Date: Thu, 07 Apr 2011 00:58:25 +0200

 This is a multi-part message in MIME format.
 --------------090702020401080407040009
 Content-Type: text/plain; charset=UTF-8; format=flowed
 Content-Transfer-Encoding: 8bit
 
 Am 05.04.2011 16:49, schrieb Rusty Nejdl:
 > On Tue, 05 Apr 2011 11:34:40 +0200, Sven Moeller wrote:
 >
 >> Am 05.04.2011 11:24, schrieb Beat Gaetzi:
 >>> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, The maintainer in
 >>> the port is set to Sven but the PR was submitted by Rusty. Sven could
 >>> you please confirm that you are still interested in maintaining this
 >>> port? I did some refactoring and cleanups on the submitted ports.
 >>> Could you please review and test the new shar files? Thanks, Beat -
 >>> -- Beat Gätzi | FreeBSD Committer beat@FreeBSD.org
 >>> <mailto:beat@FreeBSD.org> | http://www.FreeBSD.org -----BEGIN PGP
 >>> SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) Comment: Using GnuPG
 >>> with Mozilla - http://enigmail.mozdev.org/
 >>> iEYEARECAAYFAk2a39sACgkQQMW893dCSdtTywCbBMXIOfdQAz97BrMerF+0tw/2
 >>> 4pQAn3IBdNx4kIdsEyTaSrDKhXGAzXj1 =Tidd -----END PGP SIGNATURE-----
 >> Hi Beat,
 >>
 >> yes, i confirm that i'm still interested in maintaining the MegaGlest
 >> Ports. I did the porting of MegaGlest to FreeBSD and gave the needed
 >> changes on the sources back to upstream. Rusty and i had made the
 >> FreeBSD Port Makefiles together. We were helping each other.
 >>
 >> Many thanks Rusty.
 >>
 >> At the moment i'm at work. Hopefully i'll find some spare time for
 >> testing the new shar files tonight or tomorrow evening. i'll let you now
 >> as soon as i've tested them.
 >>
 >> Thanks and kind regards
 >>
 >> Sven Moeller
 >
 > Sven,
 >
 > Thanks for the reply. I've tested the port and I only have one small
 > tweak and it is good:
 >
 > In pkg-plist, change the last two lines to be:
 >
 > %%PORTDOCS%%@dirrmtry %%DOCSDIR%%
 > @dirrmtry %%DATADIR%%
 > ﻿
 >
 > That will remove the errors when you deinstall megaglest before
 > megaglest-data, while still ensuring that everything is cleaned up properly.
 >
 > Rusty
 >
 
 Hi Beat, hi Rusty,
 
 i've tweaked what you've Rusty suggested. I did some additional changes. 
 I had some warnings deinstalling megaglest-data, therefor i've changed 
 dirrm into dirrmtry in the Makefile of megaglest-data. These warnings 
 just came up when megaglest-data was installed without having megaglest 
 installed.
 
 I've changed one detail in the glest-wrapper script. The folder 
 ~/.megaglest is now ~/.megaglest3.4.0. I did this, because in the 
 upcoming MegaGlest release 3.5.0 changes it's behavior. ~/.megaglest 
 will be created/used by MegaGlest itself. MegaGlest checks for it's game 
 data. The symlinks created by the wrapper script will have the effect 
 that MegaGlest won't start claiming about double game data files.
 
 As soon as MegaGlest-3.5.0 is out, i'll drop the wrapper scripts, 
 because shouldn't be needed anymore.
 
 Please find attached the over-worked shar files. If you agree with that, 
 i'll agree to commit it. :-)
 
 kind regards
 Sven Moeller
 
 --------------090702020401080407040009
 Content-Type: text/plain;
  name="megaglest.shar"
 Content-Transfer-Encoding: base64
 Content-Disposition: attachment;
  filename="megaglest.shar"
 
 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUg
 YW55dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50
 ZXJpbmcgInNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBm
 aWxlcyBhbmQgZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBk
 ZWZhdWx0IHBlcm1pc3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJbWVn
 YWdsZXN0CiMJbWVnYWdsZXN0L2ZpbGVzCiMJbWVnYWdsZXN0L2ZpbGVzL2dsZXN0LXdyYXBw
 ZXIuaW4KIwltZWdhZ2xlc3QvZmlsZXMvcGF0Y2gtQ01ha2VMaXN0cy50eHQKIwltZWdhZ2xl
 c3QvZmlsZXMvcGtnLW1lc3NhZ2UuaW4KIwltZWdhZ2xlc3QvTWFrZWZpbGUKIwltZWdhZ2xl
 c3QvZGlzdGluZm8KIwltZWdhZ2xlc3QvcGtnLWRlc2NyCiMJbWVnYWdsZXN0L3BrZy1wbGlz
 dAojCmVjaG8gYyAtIG1lZ2FnbGVzdApta2RpciAtcCBtZWdhZ2xlc3QgPiAvZGV2L251bGwg
 Mj4mMQplY2hvIGMgLSBtZWdhZ2xlc3QvZmlsZXMKbWtkaXIgLXAgbWVnYWdsZXN0L2ZpbGVz
 ID4gL2Rldi9udWxsIDI+JjEKZWNobyB4IC0gbWVnYWdsZXN0L2ZpbGVzL2dsZXN0LXdyYXBw
 ZXIuaW4Kc2VkICdzL15YLy8nID5tZWdhZ2xlc3QvZmlsZXMvZ2xlc3Qtd3JhcHBlci5pbiA8
 PCAnNWVhOTg3ZjBmZWYxNTI4MDFlOWY5ZGM1NmI4ZWRkZDMnClgjIS9iaW4vc2gKWApYIyBU
 aGUgZXhlY3V0YWJsZSBuZWVkcyB0byBiZSBydW4gZnJvbSBpdHMgZGF0YSBkaXJlY3Rvcnks
 IGFuZCBuZWVkcyB0byBzdG9yZQpYIyBjb25maWd1cmF0aW9uIGluIGl0LiBXZSB0aGVyZWZv
 cmUgbWlycm9yIHRoZSBkYXRhIGRpcmVjdG9yeSBoaWVyYXJjaHkgaW4KWCMgfi8ubWVnYWds
 ZXN0My40LjAsIGFuZCBjcmVhdGUgc3ltbGlua3MgdG8gdGhlIGRhdGEgZmlsZXMuClgKWGlm
 IFsgLWQgfi8ubWVnYWdsZXN0My40LjAgXQpYdGhlbgpYICAgICAgICBlY2hvICJVc2luZyBl
 eGlzdGluZyB+Ly5tZWdhZ2xlc3QzLjQuMCBkaXJlY3RvcnkuIgpYZWxzZQpYICAgICAgICBl
 Y2hvICJDcmVhdGluZyB+Ly5tZWdhZ2xlc3QzLjQuMCBkaXJlY3RvcnkuIgpYICAgICAgICBj
 ZCAlJURBVEFESVIlJSB8fCBleGl0IDEKWCAgICAgICAgZmluZCAqIC10eXBlIGQgLWV4ZWMg
 bWtkaXIgLXAgfi8ubWVnYWdsZXN0My40LjAve30gXDsKWCAgICAgICAgZmluZCAqIC10eXBl
 IGYgLWV4ZWMgbG4gLXMgJSVEQVRBRElSJSUve30gfi8ubWVnYWdsZXN0My40LjAve30gXDsg
 Mj4vZGV2L251bGwKWAlta2RpciAtcCB+Ly5tZWdhZ2xlc3QzLjQuMC9zY3JlZW5zClgJbWtk
 aXIgLXAgfi8ubWVnYWdsZXN0My40LjAvc2hhZGVycy9zdGFuZGFyZApYCXRvdWNoIH4vLm1l
 Z2FnbGVzdDMuNC4wL21lZ2FnbGVzdC5sb2cKWAlybSB+Ly5tZWdhZ2xlc3QzLjQuMC9nbGVz
 dC5pbmkgfi8ubWVnYWdsZXN0My40LjAvbWVnYWdsZXN0IH4vLm1lZ2FnbGVzdDMuNC4wL3Nl
 cnZlcnMuaW5pClgJY3AgLWYgJSVEQVRBRElSJSUvZ2xlc3QuaW5pIH4vLm1lZ2FnbGVzdDMu
 NC4wLwpYCWNwIC1mICUlREFUQURJUiUlL2dsZXN0a2V5cy5pbmkgfi8ubWVnYWdsZXN0My40
 LjAvClgJY3AgLWYgJSVEQVRBRElSJSUvc2VydmVycy5pbmkgfi8ubWVnYWdsZXN0My40LjAv
 ClgJY2htb2QgNjQwIH4vLm1lZ2FnbGVzdDMuNC4wL2dsZXN0LmluaSB+Ly5tZWdhZ2xlc3Qz
 LjQuMC9zZXJ2ZXJzLmluaQpYZmkKWApYY2Qgfi8ubWVnYWdsZXN0My40LjAgfHwgZXhpdCAx
 ClhlY2hvICJQbGVhc2UgYmUgcGF0aWVudCB3aGlsZSBsb2FkaW5nIE1lZ2FHbGVzdC4uLiIK
 WGV4ZWMgJSVEQVRBRElSJSUvZ2xlc3QuYmluICIkQCIKNWVhOTg3ZjBmZWYxNTI4MDFlOWY5
 ZGM1NmI4ZWRkZDMKZWNobyB4IC0gbWVnYWdsZXN0L2ZpbGVzL3BhdGNoLUNNYWtlTGlzdHMu
 dHh0CnNlZCAncy9eWC8vJyA+bWVnYWdsZXN0L2ZpbGVzL3BhdGNoLUNNYWtlTGlzdHMudHh0
 IDw8ICcwY2Y0OGRjYzM1YmU0ZWE1Yjc2NGE5YzdkNmQzZjgxYycKWCoqKiBDTWFrZUxpc3Rz
 LnR4dAkyMDExLTAyLTEwIDE3OjQxOjE5LjAwMDAwMDAwMCArMDEwMApYLS0tIENNYWtlTGlz
 dHMudHh0X0ZyZWVCU0QJMjAxMS0wMi0xMCAxNzo0MTo1Ni4wMDAwMDAwMDAgKzAxMDAKWCoq
 KioqKioqKioqKioqKiBJRihDTUFLRV9DT01QSUxFUl9JU19HTlVDWFggT1IgTUlOR1cpClgq
 KiogNTksNzYgKioqKgpYLSAJT1BUSU9OKFdBTlRfU1ZOX1NUQU1QICJ1c2Ugc3ZuIHN0YW1w
 IiBPTikKWC0gCUlGKFdBTlRfU1ZOX1NUQU1QKQpYLSAJCSMgVGhlIHN0dWZmIGJlbG93IGdl
 dHMgU1ZOIEdsb2JhbCBSZXZpc2lvbiAjIGJ1dCBPTkxZIHdoZW4gY2FsbGluZyBjbWFrZSEK
 WC0gCQkjIHRoZSBGaW5kU3VidmVyc2lvbi5jbWFrZSBtb2R1bGUgaXMgcGFydCBvZiB0aGUg
 c3RhbmRhcmQgZGlzdHJpYnV0aW9uClgtIAkJaW5jbHVkZShGaW5kU3VidmVyc2lvbikKWC0g
 CQkjIGV4dHJhY3Qgd29ya2luZyBjb3B5IGluZm9ybWF0aW9uIGZvciBTT1VSQ0VfRElSIGlu
 dG8gTVlfWFhYIHZhcmlhYmxlcwpYLSAJCVN1YnZlcnNpb25fV0NfSU5GTygke1BST0pFQ1Rf
 U09VUkNFX0RJUn0gTUcpClgtIAkJI2FkZF9kZWZpbml0aW9ucygtRFNWTlZFUlNJT049IiR7
 TUdfV0NfUkVWSVNJT059IikKWC0gCUVORElGKCkKWC0gClgtIAlTRVQoU1ZOX1ZFUlNJT05f
 Q01EICItRFNWTlZFUlNJT049J1xcXCIke01HX1dDX1JFVklTSU9OfVxcXCInIikKWC0gClgt
 IAlJRihVTklYIEFORCBOT1QgQVBQTEUpClgtIAkJIyBXZSBkbyBzb21lIGZ1bmt5IGNoYXJh
 Y3RlciBlc2NhcGluZyB0byBnZXQgdGhlIHJpZ2h0IHN0dWZmIHdyaXR0ZW4gb3V0IHRvIApY
 LSAJCSMgdGhlIGZpbmFsIE1ha2VmaWxlIHNvIHdlIGdldCB0aGUgU1ZOIEdsb2JhbCBSZXZz
 aW9uICMKWC0gCQlTRVQoU1ZOX1ZFUlNJT05fQ01EICItRFNWTlZFUlNJT049J1xcXCJgc3Zu
 dmVyc2lvbiAtbiAke1BST0pFQ1RfU09VUkNFX0RJUn1gXFxcIiciKQpYLSAJRU5ESUYoKQpY
 LSAKWC0tLSA1OCAtLS0tCjBjZjQ4ZGNjMzViZTRlYTViNzY0YTljN2Q2ZDNmODFjCmVjaG8g
 eCAtIG1lZ2FnbGVzdC9maWxlcy9wa2ctbWVzc2FnZS5pbgpzZWQgJ3MvXlgvLycgPm1lZ2Fn
 bGVzdC9maWxlcy9wa2ctbWVzc2FnZS5pbiA8PCAnNGJkMTlkNTE4NTU1ZDgxMzU4NzM3MWJl
 OGZmOGQ3MDMnClgjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj
 IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjClgKWFRoZSBtZWdhZ2xlc3Qg
 Z2FtZSBoYXMgYmVlbiBpbnN0YWxsZWQ6ClgKWDEpIFlvdSB3aWxsIGZpbmQgdGhlIG1lZ2Fn
 bGVzdCBjb25maWd1cmF0aW9uIGZpbGVzIGluIH4vLm1lZ2FnbGVzdApYClgyKSBJZiB5b3Ug
 aW5zdGxsZWQgdGhlIG1lZ2FnbGVzdCBtYXAgZWRpdG9yIHlvdSBjb3VsZCBsb3VuY2ggaXQg
 bGlrZSB0aGlzOgpYClggICAjIGdsZXN0X2VkaXRvcgpYClgzKSBJZiB5b3UgaGF2ZSBwcm9i
 bGVtcyBydW5uaW5nIG1lZ2FnbGVzdCwgeW91IHNob3VsZCByZW1vdmUgeW91ciB+Ly5tZWdh
 Z2xlc3QgClggICBkaXJlY3RvcnkgYW5kIHRyeSBhZ2FpbgpYClg0KSBFbmpveSBpdCA7KQpY
 ClgjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj
 IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCjRiZDE5ZDUxODU1NWQ4MTM1ODczNzFiZThm
 ZjhkNzAzCmVjaG8geCAtIG1lZ2FnbGVzdC9NYWtlZmlsZQpzZWQgJ3MvXlgvLycgPm1lZ2Fn
 bGVzdC9NYWtlZmlsZSA8PCAnMjJhOTYyNDMzNjRjYzIzMTQ1ZmZlMDk2YTUxODcxYTgnClgj
 IE5ldyBwb3J0cyBjb2xsZWN0aW9uIG1ha2VmaWxlIGZvcjoJbWVnYWdsZXN0ClgjIERhdGUg
 Y3JlYXRlZDoJCQkJMjAxMS0wMi0xMApYIyBXaG9tOgkJCQkJU3ZlbiBNb2VsbGVyIDxzbW9l
 bGxlckBuaWNodGhlbGZlci5kZT4KWCMKWCMgJEZyZWVCU0QkClgjClgKWFBPUlROQU1FPQlt
 ZWdhZ2xlc3QKWFBPUlRWRVJTSU9OPQkzLjQuMApYQ0FURUdPUklFUz0JZ2FtZXMKWE1BU1RF
 Ul9TSVRFUz0JU0YvJHtQT1JUTkFNRX0vY3VycmVudF9yZWxlYXNlLwpYRElTVE5BTUU9CSR7
 UE9SVE5BTUV9LXNvdXJjZS0ke1BPUlRWRVJTSU9OfQpYClhNQUlOVEFJTkVSPQlzbW9lbGxl
 ckBuaWNodGhlbGZlci5kZQpYQ09NTUVOVD0JT3BlbiBzb3VyY2UgM0QgcmVhbC10aW1lIHN0
 cmF0ZWd5IGdhbWUKWApYTElCX0RFUEVORFM9CWN1cmwuNjoke1BPUlRTRElSfS9mdHAvY3Vy
 bCBcClgJCWpwZWcuMTE6JHtQT1JUU0RJUn0vZ3JhcGhpY3MvanBlZyBcClgJCXBuZy42OiR7
 UE9SVFNESVJ9L2dyYXBoaWNzL3BuZyBcClgJCXhlcmNlcy1jLjI3OiR7UE9SVFNESVJ9L3Rl
 eHRwcm9jL3hlcmNlcy1jMiBcClgJCXZvcmJpcy40OiR7UE9SVFNESVJ9L2F1ZGlvL2xpYnZv
 cmJpcwpYUlVOX0RFUEVORFM9CSR7REFUQURJUn0vdHV0b3JpYWxzL2Jhc2ljX3R1dG9yaWFs
 L2Jhc2ljX3R1dG9yaWFsLnhtbDoke1BPUlRTRElSfS9nYW1lcy9tZWdhZ2xlc3QtZGF0YQpY
 ClhTVUJfRklMRVM9CWdsZXN0LXdyYXBwZXIgcGtnLW1lc3NhZ2UKWApYVVNFX0JaSVAyPQl5
 ZXMKWFVTRV9DTUFLRT0JeWVzClhVU0VfRE9TMlVOSVg9CXllcwpYVVNFX0dMPQkJeWVzClhV
 U0VfTFVBPQk1LjEKWFVTRV9PUEVOQUw9CWFsIGFsdXQKWFVTRV9TREw9CXllcwpYVVNFX1dY
 PQkJMi44KwpYClhPUFRJT05TPQlFRElUT1IgIkluc3RhbGwgTWVnYUdsZXN0IEVkaXRvciIg
 b2ZmClgKWC5pbmNsdWRlIDxic2QucG9ydC5vcHRpb25zLm1rPgpYClguaWYgZGVmaW5lZChX
 SVRIX0VESVRPUikKWFBMSVNUX1NVQis9CUVESVRPUj0iIgpYLmVsc2UKWFBMSVNUX1NVQis9
 CUVESVRPUj0iQGNvbW1lbnQgIgpYLmVuZGlmClgKWGRvLWluc3RhbGw6ClgJJHtTVFJJUF9D
 TUR9ICR7V1JLU1JDfS9tay9saW51eC9nbGVzdC5iaW4KWAlAJHtNS0RJUn0gJHtEQVRBRElS
 fQpYLmlmICFkZWZpbmVkKE5PUE9SVERPQ1MpClgJQCR7TUtESVJ9ICR7RE9DU0RJUn0KWC5l
 bmRpZgpYCSR7SU5TVEFMTF9QUk9HUkFNfSAke1dSS1NSQ30vbWsvbGludXgvZ2xlc3QuYmlu
 ICR7REFUQURJUn0KWC5mb3IgZiBpbiBnbGVzdC5pbmkgZ2xlc3RrZXlzLmluaSBzZXJ2ZXJz
 LmluaQpYCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vJHtmfSAke0RBVEFESVJ9ClguZW5k
 Zm9yClgJJHtJTlNUQUxMX1NDUklQVH0gJHtXUktESVJ9L2dsZXN0LXdyYXBwZXIgJHtQUkVG
 SVh9L2Jpbi8ke1BPUlROQU1FfQpYLmlmICFkZWZpbmVkKE5PUE9SVERPQ1MpClgJJHtJTlNU
 QUxMX0RBVEF9ICR7V1JLU1JDfS9jb2RlX2xpY2Vuc2UudHh0ICR7RE9DU0RJUn0KWC5lbmRp
 ZgpYLmlmIGRlZmluZWQoV0lUSF9FRElUT1IpClgJJHtJTlNUQUxMX1BST0dSQU19ICR7V1JL
 U1JDfS9tay9saW51eC9nbGVzdF9lZGl0b3IgJHtQUkVGSVh9L2Jpbi8KWC5lbmRpZgpYClhw
 b3N0LWluc3RhbGw6ClgJQCR7Q0FUfSAke1BLR01FU1NBR0V9ClgKWC5pbmNsdWRlIDxic2Qu
 cG9ydC5taz4KMjJhOTYyNDMzNjRjYzIzMTQ1ZmZlMDk2YTUxODcxYTgKZWNobyB4IC0gbWVn
 YWdsZXN0L2Rpc3RpbmZvCnNlZCAncy9eWC8vJyA+bWVnYWdsZXN0L2Rpc3RpbmZvIDw8ICc4
 ZDIyZjg2YmZhMjU1ZTEwYzI4NjY5MWVlNzEzZjQxOCcKWFNIQTI1NiAobWVnYWdsZXN0LXNv
 dXJjZS0zLjQuMC50YXIuYnoyKSA9IGRhMTdjMjEwZmI2YzNjMzY2YmYwZTJiNDRlMjQzNzQw
 MDA4YzNhNmFkNjJmMjdkNjMxMDAyZTQ2ZjAyMTA2NTQKWFNJWkUgKG1lZ2FnbGVzdC1zb3Vy
 Y2UtMy40LjAudGFyLmJ6MikgPSA4OTkzMTIKOGQyMmY4NmJmYTI1NWUxMGMyODY2OTFlZTcx
 M2Y0MTgKZWNobyB4IC0gbWVnYWdsZXN0L3BrZy1kZXNjcgpzZWQgJ3MvXlgvLycgPm1lZ2Fn
 bGVzdC9wa2ctZGVzY3IgPDwgJ2M3ODAyODUyNDYyZWRhYzVjZGJiY2Q4NzJiMWNlMTVmJwpY
 TWVnYUdsZXN0IGlzIGFuIG9wZW4gc291cmNlIDNELXJlYWwtdGltZSBzdHJhdGVneSBnYW1l
 LCB3aGVyZSB5b3UgY29udHJvbApYdGhlIGFybWllcyBvZiBvbmUgb2Ygc2V2ZW4gZGlmZmVy
 ZW50IGZhY3Rpb25zOiAgVGVjaCwgTWFnaWMsIEVneXB0aWFucywKWEluZGlhbnMsIE5vcnNl
 bWVuLCBQZXJzaWFuIG9yIFJvbWFucyAoQmV0YSkuIFRoZSBnYW1lIGlzIHNldHVwIGluIG9u
 ZSBvZgpYMTQgbmF0dXJhbGx5IGxvb2tpbmcgc2V0dGluZ3MsIHdoaWNoIC1saWtlIHRoZSB1
 bml0IG1vZGVscy0gYXJlIGNyYWZ0ZWQKWHdpdGggZ3JlYXQgYXBwcmVjaWF0aW9uIGZvciBk
 ZXRhaWwuIE1lZ2FHbGVzdCBpcyBoZWF2aWx5IGJhc2VkIG9uIHRoZQpYd2lkZWx5IGtub3du
 IEdsZXN0LCB3aGljaCBpdCBmb3JrZWQgZnJvbSBpbiBlYXJseSAyMDEwLgpYClhXV1c6IGh0
 dHA6Ly9tZWdhZ2xlc3Qub3JnLwpjNzgwMjg1MjQ2MmVkYWM1Y2RiYmNkODcyYjFjZTE1Zgpl
 Y2hvIHggLSBtZWdhZ2xlc3QvcGtnLXBsaXN0CnNlZCAncy9eWC8vJyA+bWVnYWdsZXN0L3Br
 Zy1wbGlzdCA8PCAnMDg1ZGU2Zjg5MWM1MTM4NzdhYWI4YjlhMGQ2ZTI3MjYnClglJUVESVRP
 UiUlYmluL2dsZXN0X2VkaXRvcgpYYmluL21lZ2FnbGVzdApYJSVEQVRBRElSJSUvZ2xlc3Qu
 YmluClglJURBVEFESVIlJS9nbGVzdC5pbmkKWCUlREFUQURJUiUlL2dsZXN0a2V5cy5pbmkK
 WCUlREFUQURJUiUlL3NlcnZlcnMuaW5pClglJVBPUlRET0NTJSUlJURPQ1NESVIlJS9jb2Rl
 X2xpY2Vuc2UudHh0ClglJVBPUlRET0NTJSVAZGlycm10cnkgJSVET0NTRElSJSUKWEBkaXJy
 bXRyeSAlJURBVEFESVIlJQowODVkZTZmODkxYzUxMzg3N2FhYjhiOWEwZDZlMjcyNgpleGl0
 Cgo=
 --------------090702020401080407040009
 Content-Type: text/plain;
  name="megaglest-data.shar"
 Content-Transfer-Encoding: base64
 Content-Disposition: attachment;
  filename="megaglest-data.shar"
 
 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUg
 YW55dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50
 ZXJpbmcgInNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBm
 aWxlcyBhbmQgZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBk
 ZWZhdWx0IHBlcm1pc3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJbWVn
 YWdsZXN0LWRhdGEKIwltZWdhZ2xlc3QtZGF0YS9NYWtlZmlsZQojCW1lZ2FnbGVzdC1kYXRh
 L2Rpc3RpbmZvCiMJbWVnYWdsZXN0LWRhdGEvcGtnLWRlc2NyCiMKZWNobyBjIC0gbWVnYWds
 ZXN0LWRhdGEKbWtkaXIgLXAgbWVnYWdsZXN0LWRhdGEgPiAvZGV2L251bGwgMj4mMQplY2hv
 IHggLSBtZWdhZ2xlc3QtZGF0YS9NYWtlZmlsZQpzZWQgJ3MvXlgvLycgPm1lZ2FnbGVzdC1k
 YXRhL01ha2VmaWxlIDw8ICdjNjAyNjg2NDlmNDY2ZmM2ZDYyOTBkMDQzYzFjMWRlMScKWCMg
 TmV3IHBvcnRzIGNvbGxlY3Rpb24gbWFrZWZpbGUgZm9yOgltZWdhZ2xlc3QtZGF0YQpYIyBE
 YXRlIGNyZWF0ZWQ6CQkJCTIwMTAtMTEtMTIKWCMgV2hvbToJCQkJCVN2ZW4gTW9lbGxlciA8
 c21vZWxsZXJAbmljaHRoZWxmZXIuZGU+ClgjClgjICRGcmVlQlNEJApYIwpYClhQT1JUTkFN
 RT0JbWVnYWdsZXN0ClhQT1JUVkVSU0lPTj0JMy40LjAKWENBVEVHT1JJRVM9CWdhbWVzClhN
 QVNURVJfU0lURVM9CVNGLyR7UE9SVE5BTUV9L2N1cnJlbnRfcmVsZWFzZS8KWFBLR05BTUVT
 VUZGSVg9CS1kYXRhClhESVNUTkFNRT0JJHtQT1JUTkFNRX0tZml4ZWQke1BLR05BTUVTVUZG
 SVg6Uy8tL18vfS0ke1BPUlRWRVJTSU9OfQpYRVhUUkFDVF9TVUZYPQkuN3oKWApYTUFJTlRB
 SU5FUj0Jc21vZWxsZXJAbmljaHRoZWxmZXIuZGUKWENPTU1FTlQ9CU1lZ2FHbGVzdCBkYXRh
 IGZpbGVzClgKWEVYVFJBQ1RfREVQRU5EUz03ejoke1BPUlRTRElSfS9hcmNoaXZlcnMvcDd6
 aXAKWApYVVNFX0RPUzJVTklYPQkqLmxvZyAqLmluaSAqLmh0bWwgKi50eHQgKi5sbmcKWE5P
 X0JVSUxEPQl5ZXMKWApYV1JLU1JDPQkJJHtXUktESVJ9LyR7UE9SVE5BTUV9X2dhbWUKWApY
 UExJU1Q9CQkke1dSS0RJUn0vcGtnLXBsaXN0ClgKWGRvLWV4dHJhY3Q6ClgJQCR7TUtESVJ9
 ICR7V1JLU1JDfQpYCUBjZCAke1dSS1NSQ30gJiYgXApYCQkke0xPQ0FMQkFTRX0vYmluLzd6
 IHggJHtESVNURElSfS8ke0RJU1RGSUxFU30gPi9kZXYvbnVsbApYClhwcmUtaW5zdGFsbDoK
 WAlAJHtFQ0hPX0NNRH0gIiUlREFUQURJUiUlL21lZ2FnbGVzdC5pY28iID4+ICR7UExJU1R9
 ClgKWC5mb3IgRElSIGluIGRhdGEgbWFwcyBzY2VuYXJpb3MgdGVjaHMgdGlsZXNldHMgdHV0
 b3JpYWxzClgJQGNkICR7V1JLU1JDfSAmJiBcClgJCSR7RklORH0gJHtESVJ9IC10eXBlIGYg
 fCAke1NPUlR9IHwgJHtTRUR9IC1lICdzfF58JSVEQVRBRElSJSUvfCcgPj4gJHtQTElTVH0g
 JiYgXApYCQkJJHtGSU5EfSAke0RJUn0gLXR5cGUgZCB8ICR7U09SVH0gLXIgfCAke1NFRH0g
 LWUgJ3N8XnxAZGlycm10cnkgJSVEQVRBRElSJSUvfCcgPj4gJHtQTElTVH0KWC5lbmRmb3IK
 WAlAJHtFQ0hPX0NNRH0gIkBkaXJybXRyeSAlJURBVEFESVIlJSIgPj4gJHtQTElTVH0KWApY
 LmlmICFkZWZpbmVkKE5PUE9SVERPQ1MpClgJQGNkICR7V1JLU1JDfS9kb2NzICYmIFwKWAkJ
 JHtGSU5EfSAqIC10eXBlIGYgfCAke1NPUlR9IHwgJHtTRUR9IC1lICdzfF58JSVQT1JURE9D
 UyUlJSVET0NTRElSJSUvfCcgPj4gJHtQTElTVH0gJiYgXApYCQkJJHtGSU5EfSAqIC10eXBl
 IGQgfCAke1NPUlR9IC1yIHwgJHtTRUR9IC1lICdzfF58JSVQT1JURE9DUyUlQGRpcnJtdHJ5
 ICUlRE9DU0RJUiUlL3wnID4+ICR7UExJU1R9ClgJQCR7RUNIT19DTUR9ICIlJVBPUlRET0NT
 JSVAZGlycm10cnkgJSVET0NTRElSJSUiID4+ICR7UExJU1R9ClguZW5kaWYKWApYZG8taW5z
 dGFsbDoKWC5pZiAhZGVmaW5lZChOT1BPUlRET0NTKQpYCUAke01LRElSfSAke0RPQ1NESVJ9
 L2dsZXN0X2ZhY3Rpb25zClguZm9yIGYgaW4gQVVUSE9SUyBDSEFOR0VMT0cgTElDRU5TRSBS
 RUFETUUgZGF0YV9saWNlbnNlLnR4dCBkYXRhX2xpY2Vuc2VfcmVhZG1lLnR4dApYCSR7SU5T
 VEFMTF9EQVRBfSAke1dSS1NSQ30vZG9jcy8ke2Z9ICR7RE9DU0RJUn0KWC5lbmRmb3IKWAko
 Y2QgJHtXUktTUkN9L2RvY3MvZ2xlc3RfZmFjdGlvbnMgJiYgJHtDT1BZVFJFRV9TSEFSRX0g
 IioiICR7RE9DU0RJUn0vZ2xlc3RfZmFjdGlvbnMpClguZW5kaWYKWAlAJHtNS0RJUn0gJHtE
 QVRBRElSfQpYCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vbWVnYWdsZXN0LmljbyAke0RB
 VEFESVJ9ClgKWC5mb3IgRElSIGluIGRhdGEgbWFwcyBzY2VuYXJpb3MgdGVjaHMgdGlsZXNl
 dHMgdHV0b3JpYWxzClgJJHtNS0RJUn0gJHtEQVRBRElSfS8ke0RJUn0KWAkoY2QgJHtXUktT
 UkN9LyR7RElSfSAmJiAke0NPUFlUUkVFX1NIQVJFfSAiKiIgJHtEQVRBRElSfS8ke0RJUn0p
 ClguZW5kZm9yClgKWC5pbmNsdWRlIDxic2QucG9ydC5taz4KYzYwMjY4NjQ5ZjQ2NmZjNmQ2
 MjkwZDA0M2MxYzFkZTEKZWNobyB4IC0gbWVnYWdsZXN0LWRhdGEvZGlzdGluZm8Kc2VkICdz
 L15YLy8nID5tZWdhZ2xlc3QtZGF0YS9kaXN0aW5mbyA8PCAnMzkyZWRiMzM3NDJiMDU1MzAz
 YTY1YmRlOWNjN2VjMWUnClhTSEEyNTYgKG1lZ2FnbGVzdC1maXhlZF9kYXRhLTMuNC4wLjd6
 KSA9IDM5NDRjMjU0OWYwM2M2NGE3NWExYzMzODM1YjIyYWFlZDM3NDhhMjcxMmMxOTJiNTcw
 NTk3OGQ4Y2FlZjFkNDUKWFNJWkUgKG1lZ2FnbGVzdC1maXhlZF9kYXRhLTMuNC4wLjd6KSA9
 IDE4OTI2ODI3NQozOTJlZGIzMzc0MmIwNTUzMDNhNjViZGU5Y2M3ZWMxZQplY2hvIHggLSBt
 ZWdhZ2xlc3QtZGF0YS9wa2ctZGVzY3IKc2VkICdzL15YLy8nID5tZWdhZ2xlc3QtZGF0YS9w
 a2ctZGVzY3IgPDwgJ2YxNWE4ZjgwZWMxMDA5MjY5NTAwYjhlNmE2NzNkOTQyJwpYVGhlIG1l
 Z2FnbGVzdCBkYXRhIGZpbGVzLgpYClhUaGlzIHBvcnQgaW5zdGFsbHMgdGhlIGRhdGEgZmls
 ZXMgbmVlZGVkIHRvIHJ1biBtZWdhZ2xlc3QgYSBmcmVlIDNEClhyZWFsLXRpbWUgc3RyYXRl
 Z3kgZ2FtZS4KWApYV1dXOiBodHRwOi8vbWVnYWdsZXN0Lm9yZy8KZjE1YThmODBlYzEwMDky
 Njk1MDBiOGU2YTY3M2Q5NDIKZXhpdAoK
 --------------090702020401080407040009--
State-Changed-From-To: feedback->open 
State-Changed-By: beat 
State-Changed-When: Thu Apr 7 05:06:01 UTC 2011 
State-Changed-Why:  
Feedback received. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=155111 
State-Changed-From-To: open->closed 
State-Changed-By: beat 
State-Changed-When: Thu Apr 7 05:18:23 UTC 2011 
State-Changed-Why:  
New ports added. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=155111 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/155111: commit references a PR
Date: Thu,  7 Apr 2011 05:13:53 +0000 (UTC)

 beat        2011-04-07 05:13:40 UTC
 
   FreeBSD ports repository
 
   Modified files:
     games                Makefile 
   Added files:
     games/megaglest-data Makefile distinfo pkg-descr 
   Log:
   The megaglest data files.
   
   This port installs the data files needed to run megaglest a free 3D
   real-time strategy game.
   
   WWW: http://megaglest.org/
   
   PR:             ports/155111
   Submitted by:   Rusty Nejdl <rnejdl AT ringofsaturn.com>,
                   Sven Moeller <smoeller AT nichthelfer.de>
   
   Revision  Changes    Path
   1.1368    +1 -0      ports/games/Makefile
   1.1       +66 -0     ports/games/megaglest-data/Makefile (new)
   1.1       +2 -0      ports/games/megaglest-data/distinfo (new)
   1.1       +6 -0      ports/games/megaglest-data/pkg-descr (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/155111: commit references a PR
Date: Thu,  7 Apr 2011 05:17:29 +0000 (UTC)

 beat        2011-04-07 05:17:21 UTC
 
   FreeBSD ports repository
 
   Modified files:
     games                Makefile 
   Added files:
     games/megaglest      Makefile distinfo pkg-descr pkg-plist 
     games/megaglest/files glest-wrapper.in patch-CMakeLists.txt 
                           pkg-message.in 
   Log:
   MegaGlest is an open source 3D-real-time strategy game, where you control
   the armies of one of seven different factions:  Tech, Magic, Egyptians,
   Indians, Norsemen, Persian or Romans (Beta). The game is setup in one of
   14 naturally looking settings, which -like the unit models- are crafted
   with great appreciation for detail. MegaGlest is heavily based on the
   widely known Glest, which it forked from in early 2010.
   
   WWW: http://megaglest.org/
   
   PR:             ports/155111
   Submitted by:   Rusty Nejdl <rnejdl AT ringofsaturn.com>,
                   Sven Moeller <smoeller AT nichthelfer.de>
   
   Revision  Changes    Path
   1.1369    +1 -0      ports/games/Makefile
   1.1       +66 -0     ports/games/megaglest/Makefile (new)
   1.1       +2 -0      ports/games/megaglest/distinfo (new)
   1.1       +27 -0     ports/games/megaglest/files/glest-wrapper.in (new)
   1.1       +23 -0     ports/games/megaglest/files/patch-CMakeLists.txt (new)
   1.1       +16 -0     ports/games/megaglest/files/pkg-message.in (new)
   1.1       +8 -0      ports/games/megaglest/pkg-descr (new)
   1.1       +9 -0      ports/games/megaglest/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
