Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Oct 2013 13:38:24 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330512 - in head/games/valyriatear: . files
Message-ID:  <201310161338.r9GDcOxj038744@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Wed Oct 16 13:38:24 2013
New Revision: 330512
URL: http://svnweb.freebsd.org/changeset/ports/330512

Log:
  - Update to 0.6.0
  - Support staging
  - Use new LIB_DEPENDS syntax
  - Optionize NLS
  
  Submitted by:	Brian Callahan <bcallah@cvs.openbsd.org> (partially)

Added:
  head/games/valyriatear/files/patch-CMakeLists.txt   (contents, props changed)
Deleted:
  head/games/valyriatear/files/patch-src-modes-shop-shop__sell.cpp
Modified:
  head/games/valyriatear/Makefile
  head/games/valyriatear/distinfo
  head/games/valyriatear/pkg-plist

Modified: head/games/valyriatear/Makefile
==============================================================================
--- head/games/valyriatear/Makefile	Wed Oct 16 13:33:59 2013	(r330511)
+++ head/games/valyriatear/Makefile	Wed Oct 16 13:38:24 2013	(r330512)
@@ -2,43 +2,51 @@
 # $FreeBSD$
 
 PORTNAME=	valyriatear
-PORTVERSION=	0.5.0
-PORTREVISION=	1
+PORTVERSION=	0.6.0
 CATEGORIES=	games
 
-USE_GITHUB=	yes
-GH_ACCOUNT=	Bertram25
-GH_PROJECT=	ValyriaTear
-GH_COMMIT=	3af3e06
-
 MAINTAINER=	amdmi3@FreeBSD.org
 COMMENT=	Open Source J-RPG based on the Hero of Allacrost engine
 
+# Valyria Tear underwent a licensing audit.
+# The main game is GPLv2 but artwork/music/fonts are a variety of licenses:
+# GPLv2, GPLv3 (with font exception), OFL-1.1, CC0, CC-BY-3, and CC-BY-SA-3.
 LICENSE=	GPLv2
-LICENSE_FILE=	${WRKSRC}/COPYING
 
-LIB_DEPENDS=	boost_thread:${PORTSDIR}/devel/boost-libs \
-		vorbis:${PORTSDIR}/audio/libvorbis \
-		png15:${PORTSDIR}/graphics/png \
-		jpeg:${PORTSDIR}/graphics/jpeg
+LIB_DEPENDS=	libboost_thread.so:${PORTSDIR}/devel/boost-libs \
+		libvorbis.so:${PORTSDIR}/audio/libvorbis \
+		libpng.so:${PORTSDIR}/graphics/png
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Bertram25
+GH_PROJECT=	ValyriaTear
+GH_COMMIT=	a324297
 
-USES=		cmake gettext iconv
+USES=		cmake iconv
+CMAKE_ARGS=	-DUSE_PCH_COMPILATION=OFF
 USE_SDL=	sdl image ttf
 USE_GL=		gl
 USE_OPENAL=	yes
 USE_LUA=	5.1
-USE_GCC=	yes # problems in luabind; recheck with next update
-LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB} -lintl
+INSTALLS_ICONS=	yes
 
 PORTDOCS=	*
+PORTDATA=	*
 
-NO_STAGE=	yes
-.include <bsd.port.options.mk>
+OPTIONS_DEFINE=	DOCS NLS
+OPTIONS_DEFAULT=DOCS NLS
+OPTIONS_SUB=	yes
+
+NLS_CMAKE_OFF=	-DDISABLE_TRANSLATIONS=ON
+NLS_CMAKE_ON=	-DDISABLE_TRANSLATIONS=OFF
+NLS_USES=	gettext
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
+		${WRKSRC}/CMake/Modules/*.cmake
 
-.if ${PORT_OPTIONS:MDOCS}
 post-install:
-	${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/MANUAL ${DOCSDIR}/
-.endif
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/MANUAL ${STAGEDIR}${DOCSDIR}/
 
 .include <bsd.port.mk>

Modified: head/games/valyriatear/distinfo
==============================================================================
--- head/games/valyriatear/distinfo	Wed Oct 16 13:33:59 2013	(r330511)
+++ head/games/valyriatear/distinfo	Wed Oct 16 13:38:24 2013	(r330512)
@@ -1,2 +1,2 @@
-SHA256 (valyriatear-0.5.0.tar.gz) = 8b9a8e74fd6560b7efaaea5a2f62179d4935d65d2dd0cdd456935728d74ecbeb
-SIZE (valyriatear-0.5.0.tar.gz) = 50020777
+SHA256 (valyriatear-0.6.0.tar.gz) = 2898df9dbb0257cfb9d40e2feae1db47911cc1ad605bdd9aef8316c04b5dd0a5
+SIZE (valyriatear-0.6.0.tar.gz) = 81974992

Added: head/games/valyriatear/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/valyriatear/files/patch-CMakeLists.txt	Wed Oct 16 13:38:24 2013	(r330512)
@@ -0,0 +1,15 @@
+--- CMakeLists.txt.orig	2013-09-24 15:33:12.000000000 +0400
++++ CMakeLists.txt	2013-10-08 04:14:13.346487900 +0400
+@@ -51,8 +51,10 @@
+ ADD_SUBDIRECTORY(src)
+ 
+ # Add data packages
+-FIND_PACKAGE(Gettext)
+-ADD_SUBDIRECTORY(po)
++IF(NOT DISABLE_TRANSLATIONS)
++    FIND_PACKAGE(Gettext)
++    ADD_SUBDIRECTORY(po)
++ENDIF(NOT DISABLE_TRANSLATIONS)
+ 
+ # CPack installation part
+ If(UNIX)

Modified: head/games/valyriatear/pkg-plist
==============================================================================
--- head/games/valyriatear/pkg-plist	Wed Oct 16 13:33:59 2013	(r330511)
+++ head/games/valyriatear/pkg-plist	Wed Oct 16 13:38:24 2013	(r330512)
@@ -1,966 +1,16 @@
 bin/valyriatear
 share/applications/valyriatear.desktop
-share/locale/de/LC_MESSAGES/valyriatear.mo
-share/locale/en@quot/LC_MESSAGES/valyriatear.mo
-share/locale/fr/LC_MESSAGES/valyriatear.mo
-share/locale/it/LC_MESSAGES/valyriatear.mo
-%%DATADIR%%/dat/actors/characters.lua
-%%DATADIR%%/dat/actors/enemies.lua
-%%DATADIR%%/dat/actors/map_objects.lua
-%%DATADIR%%/dat/actors/map_sprites.lua
-%%DATADIR%%/dat/actors/map_treasures.lua
-%%DATADIR%%/dat/battles/desert_cave_battle_anim.lua
-%%DATADIR%%/dat/battles/tutorial_battle_dialogs.lua
-%%DATADIR%%/dat/config/boot.lua
-%%DATADIR%%/dat/config/editor.lua
-%%DATADIR%%/dat/config/fonts.lua
-%%DATADIR%%/dat/config/languages.lua
-%%DATADIR%%/dat/config/quests.lua
-%%DATADIR%%/dat/config/restore_settings.lua
-%%DATADIR%%/dat/config/settings.lua
-%%DATADIR%%/dat/config/themes.lua
-%%DATADIR%%/dat/config/world_locations.lua
-%%DATADIR%%/dat/credits/episode1_credits.lua
-%%DATADIR%%/dat/credits/old_credits.lua
-%%DATADIR%%/dat/debug/debug_battle.lua
-%%DATADIR%%/dat/debug/debug_menu.lua
-%%DATADIR%%/dat/debug/debug_shop.lua
-%%DATADIR%%/dat/effects/emotes.lua
-%%DATADIR%%/dat/effects/lightning.lua
-%%DATADIR%%/dat/effects/particles/active_save_point.lua
-%%DATADIR%%/dat/effects/particles/blue_firework.lua
-%%DATADIR%%/dat/effects/particles/crystal_appearance.lua
-%%DATADIR%%/dat/effects/particles/defensive_stance.lua
-%%DATADIR%%/dat/effects/particles/explosion.lua
-%%DATADIR%%/dat/effects/particles/fire.lua
-%%DATADIR%%/dat/effects/particles/fire_spell.lua
-%%DATADIR%%/dat/effects/particles/heal_particle.lua
-%%DATADIR%%/dat/effects/particles/heal_sp_particle.lua
-%%DATADIR%%/dat/effects/particles/inactive_save_point.lua
-%%DATADIR%%/dat/effects/particles/rain.lua
-%%DATADIR%%/dat/effects/particles/snow.lua
-%%DATADIR%%/dat/effects/particles/wave_spell.lua
-%%DATADIR%%/dat/effects/status.lua
-%%DATADIR%%/dat/global.lua
-%%DATADIR%%/dat/help/in_game_move_and_interact_anim.lua
-%%DATADIR%%/dat/maps/introduction.lua
-%%DATADIR%%/dat/maps/layna_forest/crystal_appearance/blue_lightning1.png
-%%DATADIR%%/dat/maps/layna_forest/crystal_appearance/blue_lightning2.png
-%%DATADIR%%/dat/maps/layna_forest/crystal_appearance/blue_lightning3.png
-%%DATADIR%%/dat/maps/layna_forest/crystal_appearance/crystal_shadow.png
-%%DATADIR%%/dat/maps/layna_forest/crystal_appearance/layna_forest_crystal_appearance_anim.lua
-%%DATADIR%%/dat/maps/layna_forest/crystal_appearance/vortex.png
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_cave1_1.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_cave1_2.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_cave1_2_stone_sign_image.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_cave2.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_caves_background_anim.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_crystal.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_entrance.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_north_east.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_north_west.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_south_east.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_south_west.lua
-%%DATADIR%%/dat/maps/layna_forest/layna_forest_wolf_cave.lua
-%%DATADIR%%/dat/maps/layna_forest/stone_sign.png
-%%DATADIR%%/dat/maps/layna_forest/wolfpain_necklace.lua
-%%DATADIR%%/dat/maps/layna_forest/wolfpain_necklace.png
-%%DATADIR%%/dat/maps/layna_village/layna_village_bronanns_home.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_bronanns_home_first_floor.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_center.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_center_shop.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_center_sophia_house.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_kalya_house_exterior.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_kalya_house_path.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_kalya_house_path_small_house.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_riverbank.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_riverbank_house.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_south_entrance.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_south_entrance_left_house.lua
-%%DATADIR%%/dat/maps/layna_village/layna_village_south_entrance_right_house.lua
-%%DATADIR%%/dat/maps/to_be_continued_anim.lua
-%%DATADIR%%/dat/objects/arm_armor.lua
-%%DATADIR%%/dat/objects/head_armor.lua
-%%DATADIR%%/dat/objects/items.lua
-%%DATADIR%%/dat/objects/key_items.lua
-%%DATADIR%%/dat/objects/leg_armor.lua
-%%DATADIR%%/dat/objects/torso_armor.lua
-%%DATADIR%%/dat/objects/weapons.lua
-%%DATADIR%%/dat/skills/attack.lua
-%%DATADIR%%/dat/skills/battle_animations/bronann_attack.lua
-%%DATADIR%%/dat/skills/battle_animations/kalya_attack.lua
-%%DATADIR%%/dat/skills/battle_animations/thanis_attack.lua
-%%DATADIR%%/dat/skills/battle_animations/thanis_blade_rush_attack.lua
-%%DATADIR%%/dat/skills/special.lua
-%%DATADIR%%/dat/skills/support.lua
-%%DATADIR%%/dat/tilesets/autotiling.lua
-%%DATADIR%%/dat/tilesets/building_interior_objects_01.lua
-%%DATADIR%%/dat/tilesets/castle_exterior_01.lua
-%%DATADIR%%/dat/tilesets/desert_cave.lua
-%%DATADIR%%/dat/tilesets/desert_cave_ground.lua
-%%DATADIR%%/dat/tilesets/desert_cave_walls.lua
-%%DATADIR%%/dat/tilesets/desert_cave_walls2.lua
-%%DATADIR%%/dat/tilesets/desert_cave_water.lua
-%%DATADIR%%/dat/tilesets/desert_ground.lua
-%%DATADIR%%/dat/tilesets/desert_house_tileset.lua
-%%DATADIR%%/dat/tilesets/harrvah_house_exterior.lua
-%%DATADIR%%/dat/tilesets/harrvah_house_interior.lua
-%%DATADIR%%/dat/tilesets/mountain_house_exterior.lua
-%%DATADIR%%/dat/tilesets/mountain_house_exterior2.lua
-%%DATADIR%%/dat/tilesets/mountain_house_interior.lua
-%%DATADIR%%/dat/tilesets/mountain_landscape.lua
-%%DATADIR%%/dat/tilesets/snow_tileset.lua
-%%DATADIR%%/dat/tilesets/village_exterior.lua
-%%DATADIR%%/dat/tilesets/water_tileset.lua
-%%DATADIR%%/dat/tilesets/wood_tileset.lua
-%%DATADIR%%/img/ambient/black.png
-%%DATADIR%%/img/ambient/clouds.png
-%%DATADIR%%/img/ambient/dark.png
-%%DATADIR%%/img/ambient/fog.png
-%%DATADIR%%/img/ambient/sandstorm.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_creatures.lua
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_creatures.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_eyes1.lua
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_eyes1.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_eyes2.lua
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_eyes2.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_water.lua
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_water.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_waterdrop.lua
-%%DATADIR%%/img/backdrops/battle/desert_cave/desert_cave_waterdrop.png
-%%DATADIR%%/img/backdrops/battle/desert_cave/tpl_desert_cave_anim.png
-%%DATADIR%%/img/backdrops/battle/forest_background.png
-%%DATADIR%%/img/backdrops/battle/forest_background_evening.png
-%%DATADIR%%/img/backdrops/battle/mountain_village.png
-%%DATADIR%%/img/backdrops/battle/rock.png
-%%DATADIR%%/img/backdrops/boot/background.png
-%%DATADIR%%/img/backdrops/boot/cloudfield.png
-%%DATADIR%%/img/backdrops/boot/cloudy_mist.png
-%%DATADIR%%/img/backdrops/boot/crystal.png
-%%DATADIR%%/img/backdrops/boot/crystal_shadow.png
-%%DATADIR%%/img/backdrops/boot/flare.png
-%%DATADIR%%/img/backdrops/boot/fog.png
-%%DATADIR%%/img/backdrops/boot/satellite.png
-%%DATADIR%%/img/backdrops/boot/satellite_shadow.png
-%%DATADIR%%/img/backdrops/cave_background.png
-%%DATADIR%%/img/effects/emotes/exclamation.lua
-%%DATADIR%%/img/effects/emotes/exclamation.png
-%%DATADIR%%/img/effects/emotes/interrogation.lua
-%%DATADIR%%/img/effects/emotes/interrogation.png
-%%DATADIR%%/img/effects/emotes/sweat_drop.lua
-%%DATADIR%%/img/effects/emotes/sweat_drop.png
-%%DATADIR%%/img/effects/emotes/thinking_dots.lua
-%%DATADIR%%/img/effects/emotes/thinking_dots.png
-%%DATADIR%%/img/effects/explosion.png
-%%DATADIR%%/img/effects/fire.png
-%%DATADIR%%/img/effects/flame1.png
-%%DATADIR%%/img/effects/flame2.png
-%%DATADIR%%/img/effects/flame3.png
-%%DATADIR%%/img/effects/flame4.png
-%%DATADIR%%/img/effects/flame5.png
-%%DATADIR%%/img/effects/flame6.png
-%%DATADIR%%/img/effects/flame7.png
-%%DATADIR%%/img/effects/flame8.png
-%%DATADIR%%/img/effects/outlined_circle_small.png
-%%DATADIR%%/img/effects/right_arrow.png
-%%DATADIR%%/img/effects/shield.png
-%%DATADIR%%/img/fonts/Berenika-Oblique.ttf
-%%DATADIR%%/img/fonts/LinBiolinum_RBah.ttf
-%%DATADIR%%/img/fonts/LinLibertine_aBS.ttf
-%%DATADIR%%/img/icons/actors/characters/bronann.png
-%%DATADIR%%/img/icons/actors/characters/kalya.png
-%%DATADIR%%/img/icons/actors/characters/sylve.png
-%%DATADIR%%/img/icons/actors/characters/thanis.png
-%%DATADIR%%/img/icons/actors/default_stamina_icon.png
-%%DATADIR%%/img/icons/actors/enemies/aerocephal.png
-%%DATADIR%%/img/icons/actors/enemies/arcana_drake.png
-%%DATADIR%%/img/icons/actors/enemies/aurum-drakueli.png
-%%DATADIR%%/img/icons/actors/enemies/bat.png
-%%DATADIR%%/img/icons/actors/enemies/big_slime.png
-%%DATADIR%%/img/icons/actors/enemies/daemarbora.png
-%%DATADIR%%/img/icons/actors/enemies/deceleon.png
-%%DATADIR%%/img/icons/actors/enemies/demonic_essence.png
-%%DATADIR%%/img/icons/actors/enemies/dune_crawler.png
-%%DATADIR%%/img/icons/actors/enemies/fenrir.png
-%%DATADIR%%/img/icons/actors/enemies/green_slime.png
-%%DATADIR%%/img/icons/actors/enemies/green_snake.png
-%%DATADIR%%/img/icons/actors/enemies/mushroom_zombie.png
-%%DATADIR%%/img/icons/actors/enemies/nagaruda.png
-%%DATADIR%%/img/icons/actors/enemies/rat.png
-%%DATADIR%%/img/icons/actors/enemies/red_slime.png
-%%DATADIR%%/img/icons/actors/enemies/scorpion.png
-%%DATADIR%%/img/icons/actors/enemies/scorpion_goliath.png
-%%DATADIR%%/img/icons/actors/enemies/skeleton.png
-%%DATADIR%%/img/icons/actors/enemies/snake.png
-%%DATADIR%%/img/icons/actors/enemies/spider.png
-%%DATADIR%%/img/icons/actors/enemies/stygian_lizard.png
-%%DATADIR%%/img/icons/actors/enemies/thing.png
-%%DATADIR%%/img/icons/actors/enemies/white_wolf.png
-%%DATADIR%%/img/icons/actors/enemies/yeti.png
-%%DATADIR%%/img/icons/actors/templates.png
-%%DATADIR%%/img/icons/armor/butterfly_hair_tong.png
-%%DATADIR%%/img/icons/armor/cloak_leather_brown.png
-%%DATADIR%%/img/icons/armor/cobalt_helm.png
-%%DATADIR%%/img/icons/armor/crested_helmet.png
-%%DATADIR%%/img/icons/armor/cuirass_muscled.png
-%%DATADIR%%/img/icons/armor/golden_phoenix_shield.png
-%%DATADIR%%/img/icons/armor/green_tunic.png
-%%DATADIR%%/img/icons/armor/helmet_bascinet.png
-%%DATADIR%%/img/icons/armor/jewelry_necklace_amber.png
-%%DATADIR%%/img/icons/armor/jewelry_ring_prismatic.png
-%%DATADIR%%/img/icons/armor/karlate_breastplate.png
-%%DATADIR%%/img/icons/armor/karlate_helmet.png
-%%DATADIR%%/img/icons/armor/leather_boots.png
-%%DATADIR%%/img/icons/armor/leather_chain_mail.png
-%%DATADIR%%/img/icons/armor/leather_sandals.png
-%%DATADIR%%/img/icons/armor/metal_armor.png
-%%DATADIR%%/img/icons/armor/metal_helmet.png
-%%DATADIR%%/img/icons/armor/metal_shield.png
-%%DATADIR%%/img/icons/armor/phoenix_shield.png
-%%DATADIR%%/img/icons/armor/rookie_tunic.png
-%%DATADIR%%/img/icons/armor/shouldered_breastplate.png
-%%DATADIR%%/img/icons/armor/standard_greaves.png
-%%DATADIR%%/img/icons/armor/stone_bracelet.png
-%%DATADIR%%/img/icons/armor/tempered_greaves.png
-%%DATADIR%%/img/icons/armor/trident_shield.png
-%%DATADIR%%/img/icons/armor/willow_dress.png
-%%DATADIR%%/img/icons/armor/winged_circlet.png
-%%DATADIR%%/img/icons/armor/wooden_shield.png
-%%DATADIR%%/img/icons/battle/attack_point_target.png
-%%DATADIR%%/img/icons/battle/character_selector.png
-%%DATADIR%%/img/icons/battle/default_attack.png
-%%DATADIR%%/img/icons/battle/default_special.png
-%%DATADIR%%/img/icons/battle/invocation.png
-%%DATADIR%%/img/icons/battle/item.png
-%%DATADIR%%/img/icons/battle/support.png
-%%DATADIR%%/img/icons/battle/template.png
-%%DATADIR%%/img/icons/drunes.png
-%%DATADIR%%/img/icons/effects/elemental.png
-%%DATADIR%%/img/icons/effects/status.png
-%%DATADIR%%/img/icons/effects/targets.png
-%%DATADIR%%/img/icons/effects/templates.png
-%%DATADIR%%/img/icons/effects/zzz.png
-%%DATADIR%%/img/icons/items/key_items/barley_meal_bag.png
-%%DATADIR%%/img/icons/items/key_items/ink.png
-%%DATADIR%%/img/icons/items/key_items/instrument_kantele.png
-%%DATADIR%%/img/icons/items/key_items/necklace_wolfpain.png
-%%DATADIR%%/img/icons/items/key_items/net.png
-%%DATADIR%%/img/icons/items/key_items/torch.png
-%%DATADIR%%/img/icons/items/potion_blue_huge.png
-%%DATADIR%%/img/icons/items/potion_blue_large.png
-%%DATADIR%%/img/icons/items/potion_blue_medium.png
-%%DATADIR%%/img/icons/items/potion_blue_small.png
-%%DATADIR%%/img/icons/items/potion_green_huge.png
-%%DATADIR%%/img/icons/items/potion_green_large.png
-%%DATADIR%%/img/icons/items/potion_green_medium.png
-%%DATADIR%%/img/icons/items/potion_green_small.png
-%%DATADIR%%/img/icons/items/potion_red_huge.png
-%%DATADIR%%/img/icons/items/potion_red_large.png
-%%DATADIR%%/img/icons/items/potion_red_medium.png
-%%DATADIR%%/img/icons/items/potion_red_small.png
-%%DATADIR%%/img/icons/items/scroll_red.png
-%%DATADIR%%/img/icons/magic/curse.png
-%%DATADIR%%/img/icons/magic/dark-missile.png
-%%DATADIR%%/img/icons/magic/entangle.png
-%%DATADIR%%/img/icons/magic/faerie-fire.png
-%%DATADIR%%/img/icons/magic/faerie-touch.png
-%%DATADIR%%/img/icons/magic/fireball.png
-%%DATADIR%%/img/icons/magic/frenzy.png
-%%DATADIR%%/img/icons/magic/gaze.png
-%%DATADIR%%/img/icons/magic/iceball.png
-%%DATADIR%%/img/icons/magic/lightbeam.png
-%%DATADIR%%/img/icons/magic/lightning.png
-%%DATADIR%%/img/icons/magic/magic-missile.png
-%%DATADIR%%/img/icons/magic/mud-glob.png
-%%DATADIR%%/img/icons/magic/thorns.png
-%%DATADIR%%/img/icons/magic/wail.png
-%%DATADIR%%/img/icons/monster_attacks/animal-fangs.png
-%%DATADIR%%/img/icons/monster_attacks/beak.png
-%%DATADIR%%/img/icons/monster_attacks/claws-animal.png
-%%DATADIR%%/img/icons/monster_attacks/claws-drake.png
-%%DATADIR%%/img/icons/monster_attacks/claws-flaming-drake.png
-%%DATADIR%%/img/icons/monster_attacks/claws-undead.png
-%%DATADIR%%/img/icons/monster_attacks/crush-wose.png
-%%DATADIR%%/img/icons/monster_attacks/fangs-spider.png
-%%DATADIR%%/img/icons/monster_attacks/fire-breath-drake.png
-%%DATADIR%%/img/icons/monster_attacks/fist-troll.png
-%%DATADIR%%/img/icons/monster_attacks/pincers.png
-%%DATADIR%%/img/icons/monster_attacks/slam.png
-%%DATADIR%%/img/icons/monster_attacks/sting.png
-%%DATADIR%%/img/icons/monster_attacks/tentacle.png
-%%DATADIR%%/img/icons/monster_attacks/touch.png
-%%DATADIR%%/img/icons/monster_attacks/waterspray.png
-%%DATADIR%%/img/icons/monster_attacks/web.png
-%%DATADIR%%/img/icons/monster_attacks/zombie-touch.png
-%%DATADIR%%/img/icons/object_category_icons.png
-%%DATADIR%%/img/icons/weapons/arbalest.png
-%%DATADIR%%/img/icons/weapons/axe-deathblade.png
-%%DATADIR%%/img/icons/weapons/axe-undead.png
-%%DATADIR%%/img/icons/weapons/axe.png
-%%DATADIR%%/img/icons/weapons/ballista.png
-%%DATADIR%%/img/icons/weapons/baneblade.png
-%%DATADIR%%/img/icons/weapons/battleaxe-undead.png
-%%DATADIR%%/img/icons/weapons/battleaxe.png
-%%DATADIR%%/img/icons/weapons/bow-orcish.png
-%%DATADIR%%/img/icons/weapons/bow.png
-%%DATADIR%%/img/icons/weapons/chakram.png
-%%DATADIR%%/img/icons/weapons/cleaver.png
-%%DATADIR%%/img/icons/weapons/club.png
-%%DATADIR%%/img/icons/weapons/crossbow-human.png
-%%DATADIR%%/img/icons/weapons/crossbow-orcish.png
-%%DATADIR%%/img/icons/weapons/dagger-thrown-human.png
-%%DATADIR%%/img/icons/weapons/dagger-thrown-poison-human.png
-%%DATADIR%%/img/icons/weapons/dagger-thrown-poison-orcish.png
-%%DATADIR%%/img/icons/weapons/dagger-undead.png
-%%DATADIR%%/img/icons/weapons/dragonstaff.png
-%%DATADIR%%/img/icons/weapons/druidstaff.png
-%%DATADIR%%/img/icons/weapons/elven-bow.png
-%%DATADIR%%/img/icons/weapons/elven-magic-bow.png
-%%DATADIR%%/img/icons/weapons/elven-sword.png
-%%DATADIR%%/img/icons/weapons/fist-human.png
-%%DATADIR%%/img/icons/weapons/greatsword-human.png
-%%DATADIR%%/img/icons/weapons/halberd.png
-%%DATADIR%%/img/icons/weapons/hammer-troll.png
-%%DATADIR%%/img/icons/weapons/hammer.png
-%%DATADIR%%/img/icons/weapons/hatchet.png
-%%DATADIR%%/img/icons/weapons/human-dagger.png
-%%DATADIR%%/img/icons/weapons/human-sabre.png
-%%DATADIR%%/img/icons/weapons/human-sword.png
-%%DATADIR%%/img/icons/weapons/iron_sword.png
-%%DATADIR%%/img/icons/weapons/javelin-human.png
-%%DATADIR%%/img/icons/weapons/javelin-orcish.png
-%%DATADIR%%/img/icons/weapons/karlate_sword.png
-%%DATADIR%%/img/icons/weapons/knights_blade.png
-%%DATADIR%%/img/icons/weapons/mace.png
-%%DATADIR%%/img/icons/weapons/magic-staff.png
-%%DATADIR%%/img/icons/weapons/morning-star.png
-%%DATADIR%%/img/icons/weapons/necromantic-staff.png
-%%DATADIR%%/img/icons/weapons/orcish-dagger.png
-%%DATADIR%%/img/icons/weapons/orcish-greatsword.png
-%%DATADIR%%/img/icons/weapons/orcish-sword.png
-%%DATADIR%%/img/icons/weapons/paladin-sword.png
-%%DATADIR%%/img/icons/weapons/pick-axe.png
-%%DATADIR%%/img/icons/weapons/pike.png
-%%DATADIR%%/img/icons/weapons/pitchfork.png
-%%DATADIR%%/img/icons/weapons/quarterstaff.png
-%%DATADIR%%/img/icons/weapons/quick_crossbow.png
-%%DATADIR%%/img/icons/weapons/reinforced_crossbow.png
-%%DATADIR%%/img/icons/weapons/scimitar.png
-%%DATADIR%%/img/icons/weapons/sling.png
-%%DATADIR%%/img/icons/weapons/spear-orcish.png
-%%DATADIR%%/img/icons/weapons/spear.png
-%%DATADIR%%/img/icons/weapons/staff-elven.png
-%%DATADIR%%/img/icons/weapons/staff-plague.png
-%%DATADIR%%/img/icons/weapons/standard_crossbow.png
-%%DATADIR%%/img/icons/weapons/sword-arendian-doublebladed.png
-%%DATADIR%%/img/icons/weapons/sword-arendian.png
-%%DATADIR%%/img/icons/weapons/sword-flaming.png
-%%DATADIR%%/img/icons/weapons/sword-human-short.png
-%%DATADIR%%/img/icons/weapons/thunderstick.png
-%%DATADIR%%/img/icons/weapons/trident.png
-%%DATADIR%%/img/icons/weapons/whip.png
-%%DATADIR%%/img/icons/weapons/woodensword.png
-%%DATADIR%%/img/logos/hoa_garland_logo.png
-%%DATADIR%%/img/logos/main_logo_sword.png
-%%DATADIR%%/img/logos/oga.png
-%%DATADIR%%/img/logos/program_icon.png
-%%DATADIR%%/img/logos/valyria_logo_black.png
-%%DATADIR%%/img/menus/battle_bottom_menu.png
-%%DATADIR%%/img/menus/battle_character_command.png
-%%DATADIR%%/img/menus/battle_character_selection.png
-%%DATADIR%%/img/menus/battle_command_buttons.png
-%%DATADIR%%/img/menus/black_sleet_parch.png
-%%DATADIR%%/img/menus/dialogue_box.png
-%%DATADIR%%/img/menus/dialogue_cont_arrow.png
-%%DATADIR%%/img/menus/dialogue_last_ind.png
-%%DATADIR%%/img/menus/dialogue_nameplate.png
-%%DATADIR%%/img/menus/equip.png
-%%DATADIR%%/img/menus/green_check.png
-%%DATADIR%%/img/menus/hand.png
-%%DATADIR%%/img/menus/hand_down.png
-%%DATADIR%%/img/menus/key.png
-%%DATADIR%%/img/menus/locations/desert.png
-%%DATADIR%%/img/menus/locations/desert_cave.png
-%%DATADIR%%/img/menus/locations/layna_forest.png
-%%DATADIR%%/img/menus/locations/mountain_village.png
-%%DATADIR%%/img/menus/quests/bring_orlinn_back.png
-%%DATADIR%%/img/menus/quests/find_pen.png
-%%DATADIR%%/img/menus/quests/get_barley.png
-%%DATADIR%%/img/menus/quests/hide_n_seek_with_orlinn.png
-%%DATADIR%%/img/menus/quests/wants_to_go_into_the_forest.png
-%%DATADIR%%/img/menus/red_x.png
-%%DATADIR%%/img/menus/rotating_crystal_grey.lua
-%%DATADIR%%/img/menus/rotating_crystal_grey.png
-%%DATADIR%%/img/menus/scroll_arrows.png
-%%DATADIR%%/img/menus/shard.png
-%%DATADIR%%/img/menus/shard_slot.png
-%%DATADIR%%/img/menus/socket.png
-%%DATADIR%%/img/menus/stamina_bar.png
-%%DATADIR%%/img/menus/stamina_icon.png
-%%DATADIR%%/img/menus/stamina_icon_selected.png
-%%DATADIR%%/img/menus/star.png
-%%DATADIR%%/img/menus/themes/black_sleet/black_sleet_skin.png
-%%DATADIR%%/img/menus/themes/black_sleet/black_sleet_texture.png
-%%DATADIR%%/img/menus/themes/black_sleet/cursor.png
-%%DATADIR%%/img/menus/themes/royal_silk/cursor.png
-%%DATADIR%%/img/menus/themes/royal_silk/win_background.png
-%%DATADIR%%/img/menus/themes/royal_silk/win_border.png
-%%DATADIR%%/img/menus/worldmaps/test_map.png
-%%DATADIR%%/img/misc/category_icons.png
-%%DATADIR%%/img/misc/dialogue_icon.lua
-%%DATADIR%%/img/misc/dialogue_icon.png
-%%DATADIR%%/img/misc/editor-tools/arrow-left.png
-%%DATADIR%%/img/misc/editor-tools/arrow-right.png
-%%DATADIR%%/img/misc/editor-tools/document-new.png
-%%DATADIR%%/img/misc/editor-tools/edit-delete.png
-%%DATADIR%%/img/misc/editor-tools/edit-rename.png
-%%DATADIR%%/img/misc/editor-tools/eye.png
-%%DATADIR%%/img/misc/editor-tools/go-down.png
-%%DATADIR%%/img/misc/editor-tools/go-up.png
-%%DATADIR%%/img/misc/editor-tools/stock-tool-arrow.png
-%%DATADIR%%/img/misc/editor-tools/stock-tool-bucket-fill-22.png
-%%DATADIR%%/img/misc/editor-tools/stock-tool-color-picker-22.png
-%%DATADIR%%/img/misc/editor-tools/stock-tool-eraser-22.png
-%%DATADIR%%/img/misc/editor-tools/stock-tool-pencil-22.png
-%%DATADIR%%/img/misc/editor-tools/stock-tool-rect-select-22.png
-%%DATADIR%%/img/misc/lights/left_window_light.lua
-%%DATADIR%%/img/misc/lights/left_window_light.png
-%%DATADIR%%/img/misc/lights/light_reverb.lua
-%%DATADIR%%/img/misc/lights/light_reverb.png
-%%DATADIR%%/img/misc/lights/right_ray_light.lua
-%%DATADIR%%/img/misc/lights/right_ray_light.png
-%%DATADIR%%/img/misc/lights/right_window_light.lua
-%%DATADIR%%/img/misc/lights/right_window_light.png
-%%DATADIR%%/img/misc/lights/sun_flare_light.png
-%%DATADIR%%/img/misc/lights/sun_flare_light_main.lua
-%%DATADIR%%/img/misc/lights/sun_flare_light_secondary.lua
-%%DATADIR%%/img/misc/lights/sun_flare_light_small_main.lua
-%%DATADIR%%/img/misc/lights/sun_flare_light_small_secondary.lua
-%%DATADIR%%/img/misc/lights/torch_light_mask.lua
-%%DATADIR%%/img/misc/lights/torch_light_mask.png
-%%DATADIR%%/img/misc/save_point/save_point1.lua
-%%DATADIR%%/img/misc/save_point/save_point1.png
-%%DATADIR%%/img/misc/save_point/save_point2.lua
-%%DATADIR%%/img/misc/save_point/save_point2.png
-%%DATADIR%%/img/misc/save_point/save_point3.lua
-%%DATADIR%%/img/misc/save_point/save_point3.png
-%%DATADIR%%/img/misc/save_point/save_point4.lua
-%%DATADIR%%/img/misc/save_point/save_point4.png
-%%DATADIR%%/img/misc/stamina_bar_background.png
-%%DATADIR%%/img/misc/stamina_bar_infinite_overlay.png
-%%DATADIR%%/img/portraits/battle/bronann_damage.png
-%%DATADIR%%/img/portraits/battle/kalya_damage.png
-%%DATADIR%%/img/portraits/battle/sylve_damage.png
-%%DATADIR%%/img/portraits/battle/thanis_damage.png
-%%DATADIR%%/img/portraits/bronann.png
-%%DATADIR%%/img/portraits/bronann_full.png
-%%DATADIR%%/img/portraits/kalya.png
-%%DATADIR%%/img/portraits/kalya_full.png
-%%DATADIR%%/img/portraits/npcs/carson.png
-%%DATADIR%%/img/portraits/npcs/malta.png
-%%DATADIR%%/img/portraits/sylve.png
-%%DATADIR%%/img/portraits/sylve_full.png
-%%DATADIR%%/img/portraits/thanis.png
-%%DATADIR%%/img/portraits/thanis_full.png
-%%DATADIR%%/img/sprites/battle/ammo/wood_arrow.lua
-%%DATADIR%%/img/sprites/battle/ammo/wood_arrow.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_attack.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_attack.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_dead.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_dead.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_dodge.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_dodge.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_hurt.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_hurt.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_idle.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_idle.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_jump_backward.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_jump_backward.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_jump_forward.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_jump_forward.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_kneeling.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_kneeling.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_magic_cast.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_magic_cast.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_magic_prepare.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_magic_prepare.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_run.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_run.png
-%%DATADIR%%/img/sprites/battle/characters/bronann_victory.lua
-%%DATADIR%%/img/sprites/battle/characters/bronann_victory.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_attack.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_attack.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_dead.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_dead.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_dodge.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_dodge.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_hurt.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_hurt.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_idle.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_idle.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_kneeling.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_kneeling.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_magic_cast.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_magic_cast.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_magic_prepare.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_magic_prepare.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_run.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_run.png
-%%DATADIR%%/img/sprites/battle/characters/kalya_victory.lua
-%%DATADIR%%/img/sprites/battle/characters/kalya_victory.png
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_attack.lua
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_attack.png
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_dead.lua
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_dead.png
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_idle.lua
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_idle.png
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_run.lua
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_run.png
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_victory.lua
-%%DATADIR%%/img/sprites/battle/characters/others/soldier_victory.png
-%%DATADIR%%/img/sprites/battle/characters/sylve_dead.lua
-%%DATADIR%%/img/sprites/battle/characters/sylve_dead.png
-%%DATADIR%%/img/sprites/battle/characters/sylve_idle.lua
-%%DATADIR%%/img/sprites/battle/characters/sylve_idle.png
-%%DATADIR%%/img/sprites/battle/characters/sylve_run.lua
-%%DATADIR%%/img/sprites/battle/characters/sylve_run.png
-%%DATADIR%%/img/sprites/battle/characters/thanis_attack.lua
-%%DATADIR%%/img/sprites/battle/characters/thanis_attack.png
-%%DATADIR%%/img/sprites/battle/characters/thanis_dead.lua
-%%DATADIR%%/img/sprites/battle/characters/thanis_dead.png
-%%DATADIR%%/img/sprites/battle/characters/thanis_idle.lua
-%%DATADIR%%/img/sprites/battle/characters/thanis_idle.png
-%%DATADIR%%/img/sprites/battle/characters/thanis_run.lua
-%%DATADIR%%/img/sprites/battle/characters/thanis_run.png
-%%DATADIR%%/img/sprites/battle/characters/thanis_run_left.lua
-%%DATADIR%%/img/sprites/battle/characters/thanis_run_left.png
-%%DATADIR%%/img/sprites/battle/characters/thanis_victory.lua
-%%DATADIR%%/img/sprites/battle/characters/thanis_victory.png
-%%DATADIR%%/img/sprites/battle/enemies/aerocephal.png
-%%DATADIR%%/img/sprites/battle/enemies/arcana_drake.png
-%%DATADIR%%/img/sprites/battle/enemies/aurum-drakueli.png
-%%DATADIR%%/img/sprites/battle/enemies/bat.png
-%%DATADIR%%/img/sprites/battle/enemies/big_slime.png
-%%DATADIR%%/img/sprites/battle/enemies/daemarbora.png
-%%DATADIR%%/img/sprites/battle/enemies/deceleon.png
-%%DATADIR%%/img/sprites/battle/enemies/demonic_essence.png
-%%DATADIR%%/img/sprites/battle/enemies/dune_crawler.png
-%%DATADIR%%/img/sprites/battle/enemies/fenrir_final.png
-%%DATADIR%%/img/sprites/battle/enemies/fenrir_normal.png
-%%DATADIR%%/img/sprites/battle/enemies/green_slime.png
-%%DATADIR%%/img/sprites/battle/enemies/green_snake.png
-%%DATADIR%%/img/sprites/battle/enemies/kyle.png
-%%DATADIR%%/img/sprites/battle/enemies/mushroom_zombie.png
-%%DATADIR%%/img/sprites/battle/enemies/nagaruda.png
-%%DATADIR%%/img/sprites/battle/enemies/rat.png
-%%DATADIR%%/img/sprites/battle/enemies/red_slime.png
-%%DATADIR%%/img/sprites/battle/enemies/scorpion.png
-%%DATADIR%%/img/sprites/battle/enemies/scorpion_goliath.png
-%%DATADIR%%/img/sprites/battle/enemies/skeleton.png
-%%DATADIR%%/img/sprites/battle/enemies/snake.png
-%%DATADIR%%/img/sprites/battle/enemies/spider.png
-%%DATADIR%%/img/sprites/battle/enemies/stygian_lizard.png
-%%DATADIR%%/img/sprites/battle/enemies/thing.png
-%%DATADIR%%/img/sprites/battle/enemies/white_wolf.png
-%%DATADIR%%/img/sprites/battle/enemies/yeti.png
-%%DATADIR%%/img/sprites/map/characters/bronann_attack_north.png
-%%DATADIR%%/img/sprites/map/characters/bronann_attack_south.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_attack_south.png
-%%DATADIR%%/img/sprites/map/characters/bronann_bed_animation.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_bed_animation.png
-%%DATADIR%%/img/sprites/map/characters/bronann_frightened.png
-%%DATADIR%%/img/sprites/map/characters/bronann_frightened_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_frightened_unarmed.png
-%%DATADIR%%/img/sprites/map/characters/bronann_hero_stance_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_herostance.png
-%%DATADIR%%/img/sprites/map/characters/bronann_herostance_unarmed.png
-%%DATADIR%%/img/sprites/map/characters/bronann_hurt_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_hurt_west.png
-%%DATADIR%%/img/sprites/map/characters/bronann_idle_guard_east.png
-%%DATADIR%%/img/sprites/map/characters/bronann_idle_guard_north.png
-%%DATADIR%%/img/sprites/map/characters/bronann_idle_guard_south.png
-%%DATADIR%%/img/sprites/map/characters/bronann_idle_guard_west.png
-%%DATADIR%%/img/sprites/map/characters/bronann_idle_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_jump_forward_east.png
-%%DATADIR%%/img/sprites/map/characters/bronann_laughing.png
-%%DATADIR%%/img/sprites/map/characters/bronann_run.png
-%%DATADIR%%/img/sprites/map/characters/bronann_run_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_run_unarmed.png
-%%DATADIR%%/img/sprites/map/characters/bronann_searching.png
-%%DATADIR%%/img/sprites/map/characters/bronann_searching_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_searching_unarmed.png
-%%DATADIR%%/img/sprites/map/characters/bronann_turn_around.png
-%%DATADIR%%/img/sprites/map/characters/bronann_unarmed_hurt_east.png
-%%DATADIR%%/img/sprites/map/characters/bronann_walk.png
-%%DATADIR%%/img/sprites/map/characters/bronann_walk_unarmed.lua
-%%DATADIR%%/img/sprites/map/characters/bronann_walk_unarmed.png
-%%DATADIR%%/img/sprites/map/characters/kalya_idle.lua
-%%DATADIR%%/img/sprites/map/characters/kalya_idle_guard_south.png
-%%DATADIR%%/img/sprites/map/characters/kalya_run.lua
-%%DATADIR%%/img/sprites/map/characters/kalya_run.png
-%%DATADIR%%/img/sprites/map/characters/kalya_walk.lua
-%%DATADIR%%/img/sprites/map/characters/kalya_walk.png
-%%DATADIR%%/img/sprites/map/characters/sylve_idle.lua
-%%DATADIR%%/img/sprites/map/characters/sylve_run.lua
-%%DATADIR%%/img/sprites/map/characters/sylve_run.png
-%%DATADIR%%/img/sprites/map/characters/sylve_walk.lua
-%%DATADIR%%/img/sprites/map/characters/sylve_walk.png
-%%DATADIR%%/img/sprites/map/characters/thanis_idle.lua
-%%DATADIR%%/img/sprites/map/characters/thanis_run.lua
-%%DATADIR%%/img/sprites/map/characters/thanis_walk.lua
-%%DATADIR%%/img/sprites/map/characters/thanis_walk.png
-%%DATADIR%%/img/sprites/map/enemies/bat_idle.lua
-%%DATADIR%%/img/sprites/map/enemies/bat_spritesheet.png
-%%DATADIR%%/img/sprites/map/enemies/bat_walk.lua
-%%DATADIR%%/img/sprites/map/enemies/big_slime_idle.lua
-%%DATADIR%%/img/sprites/map/enemies/big_slime_spritesheet.png
-%%DATADIR%%/img/sprites/map/enemies/big_slime_walk.lua
-%%DATADIR%%/img/sprites/map/enemies/fenrir_idle.lua
-%%DATADIR%%/img/sprites/map/enemies/fenrir_spritesheet.png
-%%DATADIR%%/img/sprites/map/enemies/fenrir_walk.lua
-%%DATADIR%%/img/sprites/map/enemies/gigas_walk.png
-%%DATADIR%%/img/sprites/map/enemies/naga_walk.png
-%%DATADIR%%/img/sprites/map/enemies/scorpion_walk.png
-%%DATADIR%%/img/sprites/map/enemies/slime_idle.lua
-%%DATADIR%%/img/sprites/map/enemies/slime_spritesheet.png
-%%DATADIR%%/img/sprites/map/enemies/slime_walk.lua
-%%DATADIR%%/img/sprites/map/enemies/snake_idle.lua
-%%DATADIR%%/img/sprites/map/enemies/snake_spritesheet.png
-%%DATADIR%%/img/sprites/map/enemies/snake_walk.lua
-%%DATADIR%%/img/sprites/map/enemies/wolf_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/crystal_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/crystal_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/mak_hound.png
-%%DATADIR%%/img/sprites/map/npcs/mak_hound_mounted.png
-%%DATADIR%%/img/sprites/map/npcs/mak_hound_saddle.png
-%%DATADIR%%/img/sprites/map/npcs/npc_girl01_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_girl01_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_girl01_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_man01_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_man01_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_man01_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_old_woman01_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_old_woman01_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_old_woman01_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_soldier01_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_soldier02_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_woman01_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_woman01_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_woman01_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_woman02_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_woman02_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_woman02_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_woman03_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/npc_woman03_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/npc_woman03_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/story/carson_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/story/carson_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/story/carson_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/story/herth_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/story/herth_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/story/herth_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/story/malta_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/story/malta_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/story/malta_walk.lua
-%%DATADIR%%/img/sprites/map/npcs/story/orlinn_idle.lua
-%%DATADIR%%/img/sprites/map/npcs/story/orlinn_spritesheet.png
-%%DATADIR%%/img/sprites/map/npcs/story/orlinn_walk.lua
-%%DATADIR%%/img/sprites/map/objects/barrel1.lua
-%%DATADIR%%/img/sprites/map/objects/barrel1.png
-%%DATADIR%%/img/sprites/map/objects/bed1.lua
-%%DATADIR%%/img/sprites/map/objects/bed1.png
-%%DATADIR%%/img/sprites/map/objects/bench1.lua
-%%DATADIR%%/img/sprites/map/objects/bench1.png
-%%DATADIR%%/img/sprites/map/objects/bench2.lua
-%%DATADIR%%/img/sprites/map/objects/bench2.png
-%%DATADIR%%/img/sprites/map/objects/book1.lua
-%%DATADIR%%/img/sprites/map/objects/box1.lua
-%%DATADIR%%/img/sprites/map/objects/box1.png
-%%DATADIR%%/img/sprites/map/objects/bread1.lua
-%%DATADIR%%/img/sprites/map/objects/bush1.lua
-%%DATADIR%%/img/sprites/map/objects/bush1.png
-%%DATADIR%%/img/sprites/map/objects/bush2.lua
-%%DATADIR%%/img/sprites/map/objects/bush2.png
-%%DATADIR%%/img/sprites/map/objects/bush3.lua
-%%DATADIR%%/img/sprites/map/objects/bush3.png
-%%DATADIR%%/img/sprites/map/objects/bush4.lua
-%%DATADIR%%/img/sprites/map/objects/bush4.png
-%%DATADIR%%/img/sprites/map/objects/candle1.lua
-%%DATADIR%%/img/sprites/map/objects/cat1.lua
-%%DATADIR%%/img/sprites/map/objects/cat1.png
-%%DATADIR%%/img/sprites/map/objects/chair1.lua
-%%DATADIR%%/img/sprites/map/objects/chair1.png
-%%DATADIR%%/img/sprites/map/objects/chair1_inverted.lua
-%%DATADIR%%/img/sprites/map/objects/chair1_inverted.png
-%%DATADIR%%/img/sprites/map/objects/chair2.lua
-%%DATADIR%%/img/sprites/map/objects/chair2.png
-%%DATADIR%%/img/sprites/map/objects/clock1.lua
-%%DATADIR%%/img/sprites/map/objects/dog1.lua
-%%DATADIR%%/img/sprites/map/objects/dog1.png
-%%DATADIR%%/img/sprites/map/objects/fence1-horizontal.lua
-%%DATADIR%%/img/sprites/map/objects/fence1-l-bottom-left.lua
-%%DATADIR%%/img/sprites/map/objects/fence1-l-bottom-right.lua
-%%DATADIR%%/img/sprites/map/objects/fence1-l-top-left.lua
-%%DATADIR%%/img/sprites/map/objects/fence1-l-top-right.lua
-%%DATADIR%%/img/sprites/map/objects/fence1-vertical.lua
-%%DATADIR%%/img/sprites/map/objects/flower_pot1.lua
-%%DATADIR%%/img/sprites/map/objects/flower_pot1.png
-%%DATADIR%%/img/sprites/map/objects/flower_pot2.lua
-%%DATADIR%%/img/sprites/map/objects/flower_pot2.png
-%%DATADIR%%/img/sprites/map/objects/grass_clump1.lua
-%%DATADIR%%/img/sprites/map/objects/grass_clump1.png
-%%DATADIR%%/img/sprites/map/objects/green_pepper1.lua
-%%DATADIR%%/img/sprites/map/objects/knife1.lua
-%%DATADIR%%/img/sprites/map/objects/locker.lua
-%%DATADIR%%/img/sprites/map/objects/locker.png
-%%DATADIR%%/img/sprites/map/objects/paper_feather.lua
-%%DATADIR%%/img/sprites/map/objects/paper_feather.png
-%%DATADIR%%/img/sprites/map/objects/parchment.lua
-%%DATADIR%%/img/sprites/map/objects/parchment.png
-%%DATADIR%%/img/sprites/map/objects/plate_pile1.lua
-%%DATADIR%%/img/sprites/map/objects/rock1.lua
-%%DATADIR%%/img/sprites/map/objects/rock1.png
-%%DATADIR%%/img/sprites/map/objects/rock2.lua
-%%DATADIR%%/img/sprites/map/objects/rock2.png
-%%DATADIR%%/img/sprites/map/objects/rock3.lua
-%%DATADIR%%/img/sprites/map/objects/rock3.png
-%%DATADIR%%/img/sprites/map/objects/salad1.lua
-%%DATADIR%%/img/sprites/map/objects/sauce_pot1.lua
-%%DATADIR%%/img/sprites/map/objects/stone_sign1.lua
-%%DATADIR%%/img/sprites/map/objects/stone_sign1.png
-%%DATADIR%%/img/sprites/map/objects/table1.lua
-%%DATADIR%%/img/sprites/map/objects/table1.png
-%%DATADIR%%/img/sprites/map/objects/table2.lua
-%%DATADIR%%/img/sprites/map/objects/table2.png
-%%DATADIR%%/img/sprites/map/objects/tree_big1.lua
-%%DATADIR%%/img/sprites/map/objects/tree_big1.png
-%%DATADIR%%/img/sprites/map/objects/tree_big2.lua
-%%DATADIR%%/img/sprites/map/objects/tree_big2.png
-%%DATADIR%%/img/sprites/map/objects/tree_little1.lua
-%%DATADIR%%/img/sprites/map/objects/tree_little1.png
-%%DATADIR%%/img/sprites/map/objects/tree_little2.lua
-%%DATADIR%%/img/sprites/map/objects/tree_little2.png
-%%DATADIR%%/img/sprites/map/objects/tree_little3.lua
-%%DATADIR%%/img/sprites/map/objects/tree_little3.png
-%%DATADIR%%/img/sprites/map/objects/tree_little4.lua
-%%DATADIR%%/img/sprites/map/objects/tree_little4.png
-%%DATADIR%%/img/sprites/map/objects/tree_small1.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small1.png
-%%DATADIR%%/img/sprites/map/objects/tree_small2.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small2.png
-%%DATADIR%%/img/sprites/map/objects/tree_small3.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small3.png
-%%DATADIR%%/img/sprites/map/objects/tree_small3_tilting.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small3_tilting.png
-%%DATADIR%%/img/sprites/map/objects/tree_small4.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small4.png
-%%DATADIR%%/img/sprites/map/objects/tree_small5.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small5.png
-%%DATADIR%%/img/sprites/map/objects/tree_small5_fallen.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small5_fallen.png
-%%DATADIR%%/img/sprites/map/objects/tree_small6.lua
-%%DATADIR%%/img/sprites/map/objects/tree_small6.png
-%%DATADIR%%/img/sprites/map/objects/tree_tiny1.lua
-%%DATADIR%%/img/sprites/map/objects/tree_tiny1.png
-%%DATADIR%%/img/sprites/map/objects/tree_tiny2.lua
-%%DATADIR%%/img/sprites/map/objects/tree_tiny2.png
-%%DATADIR%%/img/sprites/map/objects/tree_tiny3.lua
-%%DATADIR%%/img/sprites/map/objects/tree_tiny3.png
-%%DATADIR%%/img/sprites/map/objects/tree_tiny4.lua
-%%DATADIR%%/img/sprites/map/objects/tree_tiny4.png
-%%DATADIR%%/img/sprites/map/objects/vase1.lua
-%%DATADIR%%/img/sprites/map/objects/vase1.png
-%%DATADIR%%/img/sprites/map/objects/wooden_sword1.lua
-%%DATADIR%%/img/sprites/map/objects/wooden_sword1.png
-%%DATADIR%%/img/sprites/map/objects/wooden_table_big.lua
-%%DATADIR%%/img/sprites/map/objects/wooden_table_big.png
-%%DATADIR%%/img/sprites/map/objects/wooden_table_small.lua
-%%DATADIR%%/img/sprites/map/objects/wooden_table_small.png
-%%DATADIR%%/img/sprites/map/scening/butterfly_idle.lua
-%%DATADIR%%/img/sprites/map/scening/butterfly_spritesheet.png
-%%DATADIR%%/img/sprites/map/scening/butterfly_walk.lua
-%%DATADIR%%/img/sprites/map/scening/chicken_idle.lua
-%%DATADIR%%/img/sprites/map/scening/chicken_spritesheet.png
-%%DATADIR%%/img/sprites/map/scening/chicken_walk.lua
-%%DATADIR%%/img/sprites/map/scening/squirrel_idle.lua
-%%DATADIR%%/img/sprites/map/scening/squirrel_spritesheet.png
-%%DATADIR%%/img/sprites/map/scening/squirrel_walk.lua
-%%DATADIR%%/img/sprites/map/treasures/chest1.png
-%%DATADIR%%/img/sprites/map/treasures/chest1_closed.lua
-%%DATADIR%%/img/sprites/map/treasures/chest1_open.lua
-%%DATADIR%%/img/sprites/map/treasures/chest1_opening.lua
-%%DATADIR%%/img/sprites/map/triggers/stone_trigger1_off.lua
-%%DATADIR%%/img/sprites/map/triggers/stone_trigger1_off.png
-%%DATADIR%%/img/sprites/map/triggers/stone_trigger1_on.lua
-%%DATADIR%%/img/sprites/map/triggers/stone_trigger1_on.png
-%%DATADIR%%/img/tilesets/ancient_ruins_exterior.png
-%%DATADIR%%/img/tilesets/ancient_ruins_interior.png
-%%DATADIR%%/img/tilesets/building_interior_objects_01.png
-%%DATADIR%%/img/tilesets/castle_exterior_01.png
-%%DATADIR%%/img/tilesets/desert_cave.png
-%%DATADIR%%/img/tilesets/desert_cave_ground.png
-%%DATADIR%%/img/tilesets/desert_cave_walls.png
-%%DATADIR%%/img/tilesets/desert_cave_walls2.png
-%%DATADIR%%/img/tilesets/desert_cave_water.png
-%%DATADIR%%/img/tilesets/desert_ground.png
-%%DATADIR%%/img/tilesets/desert_house_tileset.png
-%%DATADIR%%/img/tilesets/harrvah_house_exterior.png
-%%DATADIR%%/img/tilesets/harrvah_house_interior.png
-%%DATADIR%%/img/tilesets/mountain_house_exterior.png
-%%DATADIR%%/img/tilesets/mountain_house_exterior2.png
-%%DATADIR%%/img/tilesets/mountain_house_interior.png
-%%DATADIR%%/img/tilesets/mountain_landscape.png
-%%DATADIR%%/img/tilesets/snow_tileset.png
-%%DATADIR%%/img/tilesets/village_exterior.png
-%%DATADIR%%/img/tilesets/water_tileset.png
-%%DATADIR%%/img/tilesets/wood_tileset.png
-%%DATADIR%%/mus/Battle_lost-OGA-Mumu.ogg
-%%DATADIR%%/mus/Caketown_1-OGA-mat-pablo.ogg
-%%DATADIR%%/mus/Fanfare.ogg
-%%DATADIR%%/mus/Soliloquy_1-OGA-mat-pablo.ogg
-%%DATADIR%%/mus/accion-OGA-djsaryon.ogg
-%%DATADIR%%/mus/heroism-OGA-Edward-J-Blakeley.ogg
-%%DATADIR%%/mus/house_in_a_forest_loop_horrorpen_oga.ogg
-%%DATADIR%%/mus/koertes-ccby-birdsongloop16s.ogg
-%%DATADIR%%/mus/shrine-OGA-yd.ogg
-%%DATADIR%%/snd/battle_encounter_01.ogg
-%%DATADIR%%/snd/battle_encounter_02.ogg
-%%DATADIR%%/snd/battle_encounter_03.ogg
-%%DATADIR%%/snd/bite_01.ogg
-%%DATADIR%%/snd/bite_02.ogg
-%%DATADIR%%/snd/bump.wav
-%%DATADIR%%/snd/cancel.wav
-%%DATADIR%%/snd/cave-in.ogg
-%%DATADIR%%/snd/chestclose1.wav
-%%DATADIR%%/snd/chestclose2.wav
-%%DATADIR%%/snd/chestclose3.wav
-%%DATADIR%%/snd/chestopen1.wav
-%%DATADIR%%/snd/chestopen2.wav
-%%DATADIR%%/snd/chestopen3.wav
-%%DATADIR%%/snd/cloth_sound.wav
-%%DATADIR%%/snd/coins.wav
-%%DATADIR%%/snd/confirm.wav
-%%DATADIR%%/snd/crossbow.ogg
-%%DATADIR%%/snd/crossbow_miss.ogg
-%%DATADIR%%/snd/door_close.wav
-%%DATADIR%%/snd/door_open1.wav
-%%DATADIR%%/snd/door_open2.wav
-%%DATADIR%%/snd/evil_hiss.ogg
-%%DATADIR%%/snd/falling_tree.ogg
-%%DATADIR%%/snd/female_scream.ogg
-%%DATADIR%%/snd/footstep_concrete1.wav
-%%DATADIR%%/snd/footstep_concrete2.wav
-%%DATADIR%%/snd/footstep_grass1.wav
-%%DATADIR%%/snd/footstep_grass2.wav
-%%DATADIR%%/snd/fountain_large.ogg
-%%DATADIR%%/snd/fountain_small.ogg
-%%DATADIR%%/snd/gentle_stream.ogg
-%%DATADIR%%/snd/gong.wav
-%%DATADIR%%/snd/gong2.wav
-%%DATADIR%%/snd/growl1_IFartInUrGeneralDirection_freesound.wav
-%%DATADIR%%/snd/heal_spell.wav
-%%DATADIR%%/snd/itempick2_michel_baradari_oga.wav
-%%DATADIR%%/snd/levelup.wav
-%%DATADIR%%/snd/lightning.wav
-%%DATADIR%%/snd/lively_crowd.ogg
-%%DATADIR%%/snd/magic_blast.ogg
-%%DATADIR%%/snd/makok_howl.ogg
-%%DATADIR%%/snd/male_scream.ogg
-%%DATADIR%%/snd/menu_click_01.wav
-%%DATADIR%%/snd/menu_click_02.wav
-%%DATADIR%%/snd/missed_target.wav
-%%DATADIR%%/snd/new_game.wav
-%%DATADIR%%/snd/obtain.wav
-%%DATADIR%%/snd/opening_sword_swipe.wav
-%%DATADIR%%/snd/opening_sword_unsheathe.wav
-%%DATADIR%%/snd/potion_drink.wav
-%%DATADIR%%/snd/rumble.wav
-%%DATADIR%%/snd/save_point_activated_dokashiteru_oga.wav
-%%DATADIR%%/snd/save_successful_nick_bowler_oga.wav
-%%DATADIR%%/snd/skeleton_attack.wav
-%%DATADIR%%/snd/slime_attack.wav
-%%DATADIR%%/snd/snake_attack.wav
-%%DATADIR%%/snd/spider_attack.wav
-%%DATADIR%%/snd/sword_swipe.wav
-%%DATADIR%%/snd/swordslice1.wav
-%%DATADIR%%/snd/swordslice2.wav
-%%DATADIR%%/snd/swordslice3.wav
-%%DATADIR%%/snd/thunder.wav
-%%DATADIR%%/snd/volume_test.wav
-%%DATADIR%%/snd/wind.ogg
-@dirrm %%DATADIR%%/snd
-@dirrm %%DATADIR%%/mus
-@dirrm %%DATADIR%%/img/tilesets
-@dirrm %%DATADIR%%/img/sprites/map/triggers
-@dirrm %%DATADIR%%/img/sprites/map/treasures
-@dirrm %%DATADIR%%/img/sprites/map/scening

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310161338.r9GDcOxj038744>