diff options
Diffstat (limited to 'games')
| -rw-r--r-- | games/stone-soup/CVS/Entries | 5 | ||||
| -rw-r--r-- | games/stone-soup/CVS/Repository | 1 | ||||
| -rw-r--r-- | games/stone-soup/CVS/Root | 1 | ||||
| -rw-r--r-- | games/stone-soup/Makefile | 91 | ||||
| -rw-r--r-- | games/stone-soup/distinfo | 2 | ||||
| -rw-r--r-- | games/stone-soup/files/CVS/Entries | 2 | ||||
| -rw-r--r-- | games/stone-soup/files/CVS/Repository | 1 | ||||
| -rw-r--r-- | games/stone-soup/files/CVS/Root | 1 | ||||
| -rw-r--r-- | games/stone-soup/files/stone-soup.desktop | 9 | ||||
| -rw-r--r-- | games/stone-soup/pkg/CVS/Entries | 4 | ||||
| -rw-r--r-- | games/stone-soup/pkg/CVS/Repository | 1 | ||||
| -rw-r--r-- | games/stone-soup/pkg/CVS/Root | 1 | ||||
| -rw-r--r-- | games/stone-soup/pkg/DESCR | 3 | ||||
| -rw-r--r-- | games/stone-soup/pkg/PLIST | 730 |
14 files changed, 0 insertions, 852 deletions
diff --git a/games/stone-soup/CVS/Entries b/games/stone-soup/CVS/Entries deleted file mode 100644 index 225d8ff..0000000 --- a/games/stone-soup/CVS/Entries +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | /Makefile/1.44/Fri Mar 11 19:04:58 2022// | ||
| 2 | /distinfo/1.8/Thu Sep 2 17:03:29 2021// | ||
| 3 | D/files//// | ||
| 4 | D/patches//// | ||
| 5 | D/pkg//// | ||
diff --git a/games/stone-soup/CVS/Repository b/games/stone-soup/CVS/Repository deleted file mode 100644 index 4643aa0..0000000 --- a/games/stone-soup/CVS/Repository +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | ports/games/stone-soup | ||
diff --git a/games/stone-soup/CVS/Root b/games/stone-soup/CVS/Root deleted file mode 100644 index 3811072..0000000 --- a/games/stone-soup/CVS/Root +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | /cvs | ||
diff --git a/games/stone-soup/Makefile b/games/stone-soup/Makefile deleted file mode 100644 index 4a951af..0000000 --- a/games/stone-soup/Makefile +++ /dev/null | |||
| @@ -1,91 +0,0 @@ | |||
| 1 | BROKEN-hppa = ICE on dgn-shoals.cc:638 | ||
| 2 | |||
| 3 | COMMENT = dungeon crawl stone soup | ||
| 4 | |||
| 5 | VERSION = 0.30.0 | ||
| 6 | |||
| 7 | DISTNAME= crawl_${VERSION}.orig | ||
| 8 | PKGNAME= stone-soup-${VERSION} | ||
| 9 | REVISION= 1 | ||
| 10 | |||
| 11 | CATEGORIES = games | ||
| 12 | |||
| 13 | HOMEPAGE = https://crawl.develz.org/ | ||
| 14 | |||
| 15 | # GPLv2+ | ||
| 16 | PERMIT_PACKAGE= Yes | ||
| 17 | |||
| 18 | WANTLIB += ${COMPILER_LIBCXX} ${MODLUA_WANTLIB} c m sqlite3 | ||
| 19 | |||
| 20 | MASTER_SITES = https://github.com/crawl/crawl/releases/download/${VERSION}-debian/ | ||
| 21 | EXTRACT_SUFX= .tar.xz | ||
| 22 | |||
| 23 | COMPILER = base-clang ports-gcc | ||
| 24 | MODULES = lang/python \ | ||
| 25 | lang/lua | ||
| 26 | |||
| 27 | MODLUA_VERSION = 5.1 | ||
| 28 | |||
| 29 | BUILD_DEPENDS = graphics/pngcrush \ | ||
| 30 | textproc/py-yaml${MODPY_FLAVOR} | ||
| 31 | LIB_DEPENDS = databases/sqlite3 | ||
| 32 | |||
| 33 | MAKE_FLAGS = CC="${CC}" GCC="${GCC}" GXX="${CXX}" \ | ||
| 34 | CXX="${CXX}" HOSTCXX="${CXX}" \ | ||
| 35 | LUA_INCLUDE_DIR=${MODLUA_INCL_DIR} \ | ||
| 36 | LUA_LIB=${MODLUA_LIB} \ | ||
| 37 | SQLITE_INCLUDE_DIR=${LOCALBASE}/include \ | ||
| 38 | LDFLAGS=-L${LOCALBASE}/lib \ | ||
| 39 | INSTALL_UGRP=root:wheel \ | ||
| 40 | prefix=${PREFIX} \ | ||
| 41 | SAVEDIR="~/.crawl" \ | ||
| 42 | NO_YACC=1 V=1 | ||
| 43 | |||
| 44 | USE_GMAKE = Yes | ||
| 45 | CONFIGURE_STYLE = none | ||
| 46 | |||
| 47 | MODPY_RUN_DEPENDS = No | ||
| 48 | MODPY_ADJ_FILES = util/species-gen.py | ||
| 49 | |||
| 50 | FLAVORS = no_x11 | ||
| 51 | FLAVOR ?= | ||
| 52 | |||
| 53 | .if ${FLAVOR:Mno_x11} | ||
| 54 | WANTLIB += curses pthread z | ||
| 55 | MAKE_FLAGS += USE_UNICODE=y UNICODE_LOCALE=y | ||
| 56 | .else | ||
| 57 | # This should be automatically set during "gmake -C rltiles..." but isn't... | ||
| 58 | CFLAGS += -DUSE_TILE | ||
| 59 | CXXFLAGS += -DUSE_TILE | ||
| 60 | |||
| 61 | MAKE_FLAGS += TILES=y \ | ||
| 62 | LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib \ | ||
| 63 | -lSDL2 -lSDL2_image -lpng -pthread" | ||
| 64 | WANTLIB += GL GLU SDL2 SDL2_image freetype png pthread z | ||
| 65 | RUN_DEPENDS = | ||
| 66 | LIB_DEPENDS += devel/sdl2 \ | ||
| 67 | devel/sdl2-image \ | ||
| 68 | databases/sqlite3 \ | ||
| 69 | graphics/png | ||
| 70 | .endif | ||
| 71 | |||
| 72 | NO_TEST = Yes | ||
| 73 | |||
| 74 | CFLAGS += -I${LOCALBASE}/include -I${LOCALBASE}/include/SDL2 | ||
| 75 | CXXFLAGS += -I${LOCALBASE}/include -I${LOCALBASE}/include/SDL2 | ||
| 76 | |||
| 77 | WRKDIST = ${WRKDIR}/stone_soup-${VERSION} | ||
| 78 | WRKSRC = ${WRKDIST}/source | ||
| 79 | |||
| 80 | post-install: | ||
| 81 | mv ${PREFIX}/bin/crawl ${PREFIX}/bin/crawl-ss | ||
| 82 | chmod 755 ${PREFIX}/bin/crawl-ss | ||
| 83 | ${INSTALL_MAN} ${WRKDIST}/docs/crawl.6 ${PREFIX}/man/man6/crawl-ss.6 | ||
| 84 | .if ! ${FLAVOR:Mno_x11} | ||
| 85 | ${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps ${PREFIX}/share/applications | ||
| 86 | ${INSTALL_DATA} \ | ||
| 87 | ${PREFIX}/share/crawl/dat/tiles/stone_soup_icon-32x32.png \ | ||
| 88 | ${PREFIX}/share/pixmaps/stone-soup.png | ||
| 89 | .endif | ||
| 90 | |||
| 91 | .include <bsd.port.mk> | ||
diff --git a/games/stone-soup/distinfo b/games/stone-soup/distinfo deleted file mode 100644 index c462047..0000000 --- a/games/stone-soup/distinfo +++ /dev/null | |||
| @@ -1,2 +0,0 @@ | |||
| 1 | SHA256 (crawl_0.30.0.orig.tar.xz) = 79Fz6xmCxrAtM99d9pkcg87AMwh/IgPiOuDqxM3eanM= | ||
| 2 | SIZE (crawl_0.30.0.orig.tar.xz) = 18859360 | ||
diff --git a/games/stone-soup/files/CVS/Entries b/games/stone-soup/files/CVS/Entries deleted file mode 100644 index 2ee046f..0000000 --- a/games/stone-soup/files/CVS/Entries +++ /dev/null | |||
| @@ -1,2 +0,0 @@ | |||
| 1 | /stone-soup.desktop/1.1/Fri Dec 16 15:04:27 2011// | ||
| 2 | D | ||
diff --git a/games/stone-soup/files/CVS/Repository b/games/stone-soup/files/CVS/Repository deleted file mode 100644 index 3f36f89..0000000 --- a/games/stone-soup/files/CVS/Repository +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | ports/games/stone-soup/files | ||
diff --git a/games/stone-soup/files/CVS/Root b/games/stone-soup/files/CVS/Root deleted file mode 100644 index 3811072..0000000 --- a/games/stone-soup/files/CVS/Root +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | /cvs | ||
diff --git a/games/stone-soup/files/stone-soup.desktop b/games/stone-soup/files/stone-soup.desktop deleted file mode 100644 index e58d338..0000000 --- a/games/stone-soup/files/stone-soup.desktop +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | [Desktop Entry] | ||
| 2 | Encoding=UTF-8 | ||
| 3 | Name=Dungeon Crawl Stone Soup | ||
| 4 | Exec=crawl-ss | ||
| 5 | Icon=stone-soup.png | ||
| 6 | Terminal=false | ||
| 7 | Type=Application | ||
| 8 | Categories=Application;Game; | ||
| 9 | StartupNotify=false | ||
diff --git a/games/stone-soup/pkg/CVS/Entries b/games/stone-soup/pkg/CVS/Entries deleted file mode 100644 index 7565f0e..0000000 --- a/games/stone-soup/pkg/CVS/Entries +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | /DESCR/1.1.1.1/Sun Apr 24 20:14:06 2011// | ||
| 2 | /PFRAG.no-no_x11/1.11/Fri Mar 11 19:04:59 2022// | ||
| 3 | /PLIST/1.10/Fri Mar 11 19:04:59 2022// | ||
| 4 | D | ||
diff --git a/games/stone-soup/pkg/CVS/Repository b/games/stone-soup/pkg/CVS/Repository deleted file mode 100644 index 2922cbb..0000000 --- a/games/stone-soup/pkg/CVS/Repository +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | ports/games/stone-soup/pkg | ||
diff --git a/games/stone-soup/pkg/CVS/Root b/games/stone-soup/pkg/CVS/Root deleted file mode 100644 index 3811072..0000000 --- a/games/stone-soup/pkg/CVS/Root +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | /cvs | ||
diff --git a/games/stone-soup/pkg/DESCR b/games/stone-soup/pkg/DESCR deleted file mode 100644 index fc1e4ae..0000000 --- a/games/stone-soup/pkg/DESCR +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | Dungeon Crawl Stone Soup is a free roguelike game of exploration and | ||
| 2 | treasure-hunting in dungeons filled with dangerous and unfriendly | ||
| 3 | monsters in a quest for the mystifyingly fabulous Orb of Zot. | ||
diff --git a/games/stone-soup/pkg/PLIST b/games/stone-soup/pkg/PLIST deleted file mode 100644 index 749778c..0000000 --- a/games/stone-soup/pkg/PLIST +++ /dev/null | |||
| @@ -1,730 +0,0 @@ | |||
| 1 | @bin bin/crawl-ss | ||
| 2 | @man man/man6/crawl-ss.6 | ||
| 3 | share/crawl/ | ||
| 4 | share/crawl/dat/ | ||
| 5 | share/crawl/dat/clua/ | ||
| 6 | share/crawl/dat/clua/autofight.lua | ||
| 7 | share/crawl/dat/clua/automagic.lua | ||
| 8 | share/crawl/dat/clua/delays.lua | ||
| 9 | share/crawl/dat/clua/kills.lua | ||
| 10 | share/crawl/dat/clua/stash.lua | ||
| 11 | share/crawl/dat/database/ | ||
| 12 | share/crawl/dat/database/FAQ.txt | ||
| 13 | share/crawl/dat/database/el/ | ||
| 14 | share/crawl/dat/database/el/monflee.txt | ||
| 15 | share/crawl/dat/database/el/rand_all.txt | ||
| 16 | share/crawl/dat/database/godname.txt | ||
| 17 | share/crawl/dat/database/godspeak.txt | ||
| 18 | share/crawl/dat/database/help.txt | ||
| 19 | share/crawl/dat/database/insult.txt | ||
| 20 | share/crawl/dat/database/miscname.txt | ||
| 21 | share/crawl/dat/database/monflee.txt | ||
| 22 | share/crawl/dat/database/monname.txt | ||
| 23 | share/crawl/dat/database/monspeak.txt | ||
| 24 | share/crawl/dat/database/monspell.txt | ||
| 25 | share/crawl/dat/database/montitle.txt | ||
| 26 | share/crawl/dat/database/pl/ | ||
| 27 | share/crawl/dat/database/pl/godspeak.txt | ||
| 28 | share/crawl/dat/database/pl/miscname.txt | ||
| 29 | share/crawl/dat/database/rand_all.txt | ||
| 30 | share/crawl/dat/database/rand_arm.txt | ||
| 31 | share/crawl/dat/database/rand_wpn.txt | ||
| 32 | share/crawl/dat/database/randbook.txt | ||
| 33 | share/crawl/dat/database/randname.txt | ||
| 34 | share/crawl/dat/database/shout.txt | ||
| 35 | share/crawl/dat/database/wpnnoise.txt | ||
| 36 | share/crawl/dat/database/zh/ | ||
| 37 | share/crawl/dat/database/zh/FAQ.txt | ||
| 38 | share/crawl/dat/database/zh/help.txt | ||
| 39 | share/crawl/dat/database/zh/monflee.txt | ||
| 40 | share/crawl/dat/database/zh/montitle.txt | ||
| 41 | share/crawl/dat/defaults/ | ||
| 42 | share/crawl/dat/defaults/autopickup_exceptions.txt | ||
| 43 | share/crawl/dat/defaults/glyph_colours.txt | ||
| 44 | share/crawl/dat/defaults/menu_colours.txt | ||
| 45 | share/crawl/dat/defaults/messages.txt | ||
| 46 | share/crawl/dat/defaults/misc.txt | ||
| 47 | share/crawl/dat/defaults/runrest_messages.txt | ||
| 48 | share/crawl/dat/defaults/standard_colours.txt | ||
| 49 | share/crawl/dat/des/ | ||
| 50 | share/crawl/dat/des/00init.des | ||
| 51 | share/crawl/dat/des/altar/ | ||
| 52 | share/crawl/dat/des/altar/altar.des | ||
| 53 | share/crawl/dat/des/altar/ashenzari_visionary.des | ||
| 54 | share/crawl/dat/des/altar/ecumenical.des | ||
| 55 | share/crawl/dat/des/altar/kiku_cage.des | ||
| 56 | share/crawl/dat/des/altar/lugonu_bribe.des | ||
| 57 | share/crawl/dat/des/altar/nemelex_the_gamble.des | ||
| 58 | share/crawl/dat/des/altar/okawaru_arena.des | ||
| 59 | share/crawl/dat/des/altar/overflow.des | ||
| 60 | share/crawl/dat/des/altar/trog_burn_book.des | ||
| 61 | share/crawl/dat/des/altar/trog_wizard.des | ||
| 62 | share/crawl/dat/des/altar/vehumet_trees.des | ||
| 63 | share/crawl/dat/des/altar/xom_monty_hall.des | ||
| 64 | share/crawl/dat/des/altar/xom_sheep.des | ||
| 65 | share/crawl/dat/des/altar/yredelemnul_ordeal.des | ||
| 66 | share/crawl/dat/des/arrival/ | ||
| 67 | share/crawl/dat/des/arrival/arrival_guide.txt | ||
| 68 | share/crawl/dat/des/arrival/large.des | ||
| 69 | share/crawl/dat/des/arrival/simple.des | ||
| 70 | share/crawl/dat/des/arrival/small.des | ||
| 71 | share/crawl/dat/des/arrival/twisted.des | ||
| 72 | share/crawl/dat/des/branches/ | ||
| 73 | share/crawl/dat/des/branches/abyss.des | ||
| 74 | share/crawl/dat/des/branches/blade.des | ||
| 75 | share/crawl/dat/des/branches/coc.des | ||
| 76 | share/crawl/dat/des/branches/crypt.des | ||
| 77 | share/crawl/dat/des/branches/depths.des | ||
| 78 | share/crawl/dat/des/branches/depths_encompass.des | ||
| 79 | share/crawl/dat/des/branches/dis.des | ||
| 80 | share/crawl/dat/des/branches/elf.des | ||
| 81 | share/crawl/dat/des/branches/geh.des | ||
| 82 | share/crawl/dat/des/branches/geh_lava_maze.des | ||
| 83 | share/crawl/dat/des/branches/hell.des | ||
| 84 | share/crawl/dat/des/branches/hells.des | ||
| 85 | share/crawl/dat/des/branches/hilbert_zone.des | ||
| 86 | share/crawl/dat/des/branches/lair.des | ||
| 87 | share/crawl/dat/des/branches/orc.des | ||
| 88 | share/crawl/dat/des/branches/pan.des | ||
| 89 | share/crawl/dat/des/branches/shoals.des | ||
| 90 | share/crawl/dat/des/branches/slime.des | ||
| 91 | share/crawl/dat/des/branches/snake.des | ||
| 92 | share/crawl/dat/des/branches/spider.des | ||
| 93 | share/crawl/dat/des/branches/spider_jumping.des | ||
| 94 | share/crawl/dat/des/branches/swamp.des | ||
| 95 | share/crawl/dat/des/branches/tar.des | ||
| 96 | share/crawl/dat/des/branches/temple.des | ||
| 97 | share/crawl/dat/des/branches/temple_compat.des | ||
| 98 | share/crawl/dat/des/branches/tomb.des | ||
| 99 | share/crawl/dat/des/branches/vaults.des | ||
| 100 | share/crawl/dat/des/branches/vaults_rooms_empty.des | ||
| 101 | share/crawl/dat/des/branches/vaults_rooms_ghost.des | ||
| 102 | share/crawl/dat/des/branches/vaults_rooms_hard.des | ||
| 103 | share/crawl/dat/des/branches/vaults_rooms_standard.des | ||
| 104 | share/crawl/dat/des/branches/zot.des | ||
| 105 | share/crawl/dat/des/builder/ | ||
| 106 | share/crawl/dat/des/builder/alphashops.des | ||
| 107 | share/crawl/dat/des/builder/arena.des | ||
| 108 | share/crawl/dat/des/builder/decor.des | ||
| 109 | share/crawl/dat/des/builder/dummy.des | ||
| 110 | share/crawl/dat/des/builder/layout.des | ||
| 111 | share/crawl/dat/des/builder/layout_caves.des | ||
| 112 | share/crawl/dat/des/builder/layout_cc.des | ||
| 113 | share/crawl/dat/des/builder/layout_cellular.des | ||
| 114 | share/crawl/dat/des/builder/layout_city.des | ||
| 115 | share/crawl/dat/des/builder/layout_delve.des | ||
| 116 | share/crawl/dat/des/builder/layout_forest.des | ||
| 117 | share/crawl/dat/des/builder/layout_geoelf.des | ||
| 118 | share/crawl/dat/des/builder/layout_geoelf_castle.des | ||
| 119 | share/crawl/dat/des/builder/layout_grids.des | ||
| 120 | share/crawl/dat/des/builder/layout_halls.des | ||
| 121 | share/crawl/dat/des/builder/layout_loops.des | ||
| 122 | share/crawl/dat/des/builder/layout_overlapping_boxes.des | ||
| 123 | share/crawl/dat/des/builder/layout_pan_divisions.des | ||
| 124 | share/crawl/dat/des/builder/layout_pools.des | ||
| 125 | share/crawl/dat/des/builder/layout_vaults.des | ||
| 126 | share/crawl/dat/des/builder/rooms.des | ||
| 127 | share/crawl/dat/des/builder/shops.des | ||
| 128 | share/crawl/dat/des/builder/uniques.des | ||
| 129 | share/crawl/dat/des/guide.txt | ||
| 130 | share/crawl/dat/des/portals/ | ||
| 131 | share/crawl/dat/des/portals/arena.des | ||
| 132 | share/crawl/dat/des/portals/bailey.des | ||
| 133 | share/crawl/dat/des/portals/bazaar.des | ||
| 134 | share/crawl/dat/des/portals/desolation.des | ||
| 135 | share/crawl/dat/des/portals/gauntlet.des | ||
| 136 | share/crawl/dat/des/portals/icecave.des | ||
| 137 | share/crawl/dat/des/portals/ossuary.des | ||
| 138 | share/crawl/dat/des/portals/sewer.des | ||
| 139 | share/crawl/dat/des/portals/trove.des | ||
| 140 | share/crawl/dat/des/portals/volcano.des | ||
| 141 | share/crawl/dat/des/portals/wizlab.des | ||
| 142 | share/crawl/dat/des/portals/ziggurat.des | ||
| 143 | share/crawl/dat/des/serial/ | ||
| 144 | share/crawl/dat/des/serial/aquarium.des | ||
| 145 | share/crawl/dat/des/serial/bayou.des | ||
| 146 | share/crawl/dat/des/serial/column_ruins.des | ||
| 147 | share/crawl/dat/des/serial/corridors.des | ||
| 148 | share/crawl/dat/des/serial/curves.des | ||
| 149 | share/crawl/dat/des/serial/demonic.des | ||
| 150 | share/crawl/dat/des/serial/forest.des | ||
| 151 | share/crawl/dat/des/serial/glass.des | ||
| 152 | share/crawl/dat/des/serial/gnoll_camp.des | ||
| 153 | share/crawl/dat/des/serial/ice.des | ||
| 154 | share/crawl/dat/des/serial/magic_research.des | ||
| 155 | share/crawl/dat/des/serial/park.des | ||
| 156 | share/crawl/dat/des/serial/rivers.des | ||
| 157 | share/crawl/dat/des/serial/serial_guide.txt | ||
| 158 | share/crawl/dat/des/serial/sigils.des | ||
| 159 | share/crawl/dat/des/serial/subway.des | ||
| 160 | share/crawl/dat/des/serial/undead.des | ||
| 161 | share/crawl/dat/des/serial/window.des | ||
| 162 | share/crawl/dat/des/sprint/ | ||
| 163 | share/crawl/dat/des/sprint/arena_sprint.des | ||
| 164 | share/crawl/dat/des/sprint/fedhas.des | ||
| 165 | share/crawl/dat/des/sprint/linesprint.des | ||
| 166 | share/crawl/dat/des/sprint/meat.des | ||
| 167 | share/crawl/dat/des/sprint/menkaure.des | ||
| 168 | share/crawl/dat/des/sprint/pitsprint.des | ||
| 169 | share/crawl/dat/des/sprint/red_sonja.des | ||
| 170 | share/crawl/dat/des/sprint/sprint_mu.des | ||
| 171 | share/crawl/dat/des/sprint/zigsprint.des | ||
| 172 | share/crawl/dat/des/test/ | ||
| 173 | share/crawl/dat/des/test.des | ||
| 174 | share/crawl/dat/des/test/suite-los.des | ||
| 175 | share/crawl/dat/des/test/suite.des | ||
| 176 | share/crawl/dat/des/traps/ | ||
| 177 | share/crawl/dat/des/traps/monster_drop.des | ||
| 178 | share/crawl/dat/des/traps/rats_trap.des | ||
| 179 | share/crawl/dat/des/tutorial/ | ||
| 180 | share/crawl/dat/des/tutorial/lesson1.des | ||
| 181 | share/crawl/dat/des/tutorial/lesson2.des | ||
| 182 | share/crawl/dat/des/tutorial/lesson3.des | ||
| 183 | share/crawl/dat/des/tutorial/lesson4.des | ||
| 184 | share/crawl/dat/des/tutorial/lesson5.des | ||
| 185 | share/crawl/dat/des/variable/ | ||
| 186 | share/crawl/dat/des/variable/ambush.des | ||
| 187 | share/crawl/dat/des/variable/arcadia.des | ||
| 188 | share/crawl/dat/des/variable/cathedral_bats.des | ||
| 189 | share/crawl/dat/des/variable/compat.des | ||
| 190 | share/crawl/dat/des/variable/d_encompass.des | ||
| 191 | share/crawl/dat/des/variable/float.des | ||
| 192 | share/crawl/dat/des/variable/geyser.des | ||
| 193 | share/crawl/dat/des/variable/ghost.des | ||
| 194 | share/crawl/dat/des/variable/grated_community.des | ||
| 195 | share/crawl/dat/des/variable/large_abstract.des | ||
| 196 | share/crawl/dat/des/variable/large_themed.des | ||
| 197 | share/crawl/dat/des/variable/lemuel_castle.des | ||
| 198 | share/crawl/dat/des/variable/mini.des | ||
| 199 | share/crawl/dat/des/variable/mini_features.des | ||
| 200 | share/crawl/dat/des/variable/mini_monsters.des | ||
| 201 | share/crawl/dat/des/variable/polyominoes.des | ||
| 202 | share/crawl/dat/des/variable/the_bubble.des | ||
| 203 | share/crawl/dat/des/variable/the_grid.des | ||
| 204 | share/crawl/dat/des/variable/winding_woodlands.des | ||
| 205 | share/crawl/dat/descript/ | ||
| 206 | share/crawl/dat/descript/ability.txt | ||
| 207 | share/crawl/dat/descript/backgrounds.txt | ||
| 208 | share/crawl/dat/descript/branches.txt | ||
| 209 | share/crawl/dat/descript/cards.txt | ||
| 210 | share/crawl/dat/descript/clouds.txt | ||
| 211 | share/crawl/dat/descript/commands.txt | ||
| 212 | share/crawl/dat/descript/cs/ | ||
| 213 | share/crawl/dat/descript/cs/ability.txt | ||
| 214 | share/crawl/dat/descript/cs/branches.txt | ||
| 215 | share/crawl/dat/descript/cs/commands.txt | ||
| 216 | share/crawl/dat/descript/cs/features.txt | ||
| 217 | share/crawl/dat/descript/cs/gods.txt | ||
| 218 | share/crawl/dat/descript/cs/hints.txt | ||
| 219 | share/crawl/dat/descript/cs/items.txt | ||
| 220 | share/crawl/dat/descript/cs/monsters.txt | ||
| 221 | share/crawl/dat/descript/cs/quotes.txt | ||
| 222 | share/crawl/dat/descript/cs/species.txt | ||
| 223 | share/crawl/dat/descript/cs/spells.txt | ||
| 224 | share/crawl/dat/descript/cs/tutorial.txt | ||
| 225 | share/crawl/dat/descript/cs/unident.txt | ||
| 226 | share/crawl/dat/descript/cs/unrand.txt | ||
| 227 | share/crawl/dat/descript/da/ | ||
| 228 | share/crawl/dat/descript/da/ability.txt | ||
| 229 | share/crawl/dat/descript/da/backgrounds.txt | ||
| 230 | share/crawl/dat/descript/da/branches.txt | ||
| 231 | share/crawl/dat/descript/da/cards.txt | ||
| 232 | share/crawl/dat/descript/da/commands.txt | ||
| 233 | share/crawl/dat/descript/da/hints.txt | ||
| 234 | share/crawl/dat/descript/da/items.txt | ||
| 235 | share/crawl/dat/descript/da/monsters.txt | ||
| 236 | share/crawl/dat/descript/da/quotes.txt | ||
| 237 | share/crawl/dat/descript/da/skills.txt | ||
| 238 | share/crawl/dat/descript/da/species.txt | ||
| 239 | share/crawl/dat/descript/da/unident.txt | ||
| 240 | share/crawl/dat/descript/da/unrand.txt | ||
| 241 | share/crawl/dat/descript/de/ | ||
| 242 | share/crawl/dat/descript/de/ability.txt | ||
| 243 | share/crawl/dat/descript/de/backgrounds.txt | ||
| 244 | share/crawl/dat/descript/de/branches.txt | ||
| 245 | share/crawl/dat/descript/de/cards.txt | ||
| 246 | share/crawl/dat/descript/de/commands.txt | ||
| 247 | share/crawl/dat/descript/de/features.txt | ||
| 248 | share/crawl/dat/descript/de/gods.txt | ||
| 249 | share/crawl/dat/descript/de/hints.txt | ||
| 250 | share/crawl/dat/descript/de/items.txt | ||
| 251 | share/crawl/dat/descript/de/monsters.txt | ||
| 252 | share/crawl/dat/descript/de/quotes.txt | ||
| 253 | share/crawl/dat/descript/de/skills.txt | ||
| 254 | share/crawl/dat/descript/de/species.txt | ||
| 255 | share/crawl/dat/descript/de/spells.txt | ||
| 256 | share/crawl/dat/descript/de/tutorial.txt | ||
| 257 | share/crawl/dat/descript/de/unident.txt | ||
| 258 | share/crawl/dat/descript/de/unrand.txt | ||
| 259 | share/crawl/dat/descript/el/ | ||
| 260 | share/crawl/dat/descript/el/ability.txt | ||
| 261 | share/crawl/dat/descript/el/backgrounds.txt | ||
| 262 | share/crawl/dat/descript/el/branches.txt | ||
| 263 | share/crawl/dat/descript/el/gods.txt | ||
| 264 | share/crawl/dat/descript/el/items.txt | ||
| 265 | share/crawl/dat/descript/el/monsters.txt | ||
| 266 | share/crawl/dat/descript/el/species.txt | ||
| 267 | share/crawl/dat/descript/el/tutorial.txt | ||
| 268 | share/crawl/dat/descript/el/unident.txt | ||
| 269 | share/crawl/dat/descript/el/unrand.txt | ||
| 270 | share/crawl/dat/descript/es/ | ||
| 271 | share/crawl/dat/descript/es/ability.txt | ||
| 272 | share/crawl/dat/descript/es/backgrounds.txt | ||
| 273 | share/crawl/dat/descript/es/branches.txt | ||
| 274 | share/crawl/dat/descript/es/cards.txt | ||
| 275 | share/crawl/dat/descript/es/commands.txt | ||
| 276 | share/crawl/dat/descript/es/features.txt | ||
| 277 | share/crawl/dat/descript/es/gods.txt | ||
| 278 | share/crawl/dat/descript/es/items.txt | ||
| 279 | share/crawl/dat/descript/es/monsters.txt | ||
| 280 | share/crawl/dat/descript/es/quotes.txt | ||
| 281 | share/crawl/dat/descript/es/skills.txt | ||
| 282 | share/crawl/dat/descript/es/species.txt | ||
| 283 | share/crawl/dat/descript/es/tutorial.txt | ||
| 284 | share/crawl/dat/descript/es/unident.txt | ||
| 285 | share/crawl/dat/descript/es/unrand.txt | ||
| 286 | share/crawl/dat/descript/features.txt | ||
| 287 | share/crawl/dat/descript/fi/ | ||
| 288 | share/crawl/dat/descript/fi/ability.txt | ||
| 289 | share/crawl/dat/descript/fi/backgrounds.txt | ||
| 290 | share/crawl/dat/descript/fi/cards.txt | ||
| 291 | share/crawl/dat/descript/fi/commands.txt | ||
| 292 | share/crawl/dat/descript/fi/features.txt | ||
| 293 | share/crawl/dat/descript/fi/items.txt | ||
| 294 | share/crawl/dat/descript/fi/monsters.txt | ||
| 295 | share/crawl/dat/descript/fi/species.txt | ||
| 296 | share/crawl/dat/descript/fi/spells.txt | ||
| 297 | share/crawl/dat/descript/fi/unident.txt | ||
| 298 | share/crawl/dat/descript/fi/unrand.txt | ||
| 299 | share/crawl/dat/descript/fr/ | ||
| 300 | share/crawl/dat/descript/fr/ability.txt | ||
| 301 | share/crawl/dat/descript/fr/backgrounds.txt | ||
| 302 | share/crawl/dat/descript/fr/branches.txt | ||
| 303 | share/crawl/dat/descript/fr/cards.txt | ||
| 304 | share/crawl/dat/descript/fr/commands.txt | ||
| 305 | share/crawl/dat/descript/fr/features.txt | ||
| 306 | share/crawl/dat/descript/fr/gods.txt | ||
| 307 | share/crawl/dat/descript/fr/hints.txt | ||
| 308 | share/crawl/dat/descript/fr/items.txt | ||
| 309 | share/crawl/dat/descript/fr/monsters.txt | ||
| 310 | share/crawl/dat/descript/fr/quotes.txt | ||
| 311 | share/crawl/dat/descript/fr/skills.txt | ||
| 312 | share/crawl/dat/descript/fr/species.txt | ||
| 313 | share/crawl/dat/descript/fr/spells.txt | ||
| 314 | share/crawl/dat/descript/fr/tutorial.txt | ||
| 315 | share/crawl/dat/descript/fr/unident.txt | ||
| 316 | share/crawl/dat/descript/fr/unrand.txt | ||
| 317 | share/crawl/dat/descript/gods.txt | ||
| 318 | share/crawl/dat/descript/hints.txt | ||
| 319 | share/crawl/dat/descript/hu/ | ||
| 320 | share/crawl/dat/descript/hu/backgrounds.txt | ||
| 321 | share/crawl/dat/descript/hu/species.txt | ||
| 322 | share/crawl/dat/descript/it/ | ||
| 323 | share/crawl/dat/descript/it/backgrounds.txt | ||
| 324 | share/crawl/dat/descript/it/branches.txt | ||
| 325 | share/crawl/dat/descript/it/cards.txt | ||
| 326 | share/crawl/dat/descript/it/commands.txt | ||
| 327 | share/crawl/dat/descript/it/features.txt | ||
| 328 | share/crawl/dat/descript/it/gods.txt | ||
| 329 | share/crawl/dat/descript/it/hints.txt | ||
| 330 | share/crawl/dat/descript/it/items.txt | ||
| 331 | share/crawl/dat/descript/it/monsters.txt | ||
| 332 | share/crawl/dat/descript/it/quotes.txt | ||
| 333 | share/crawl/dat/descript/it/skills.txt | ||
| 334 | share/crawl/dat/descript/it/species.txt | ||
| 335 | share/crawl/dat/descript/it/tutorial.txt | ||
| 336 | share/crawl/dat/descript/it/unident.txt | ||
| 337 | share/crawl/dat/descript/it/unrand.txt | ||
| 338 | share/crawl/dat/descript/items.txt | ||
| 339 | share/crawl/dat/descript/ja/ | ||
| 340 | share/crawl/dat/descript/ja/ability.txt | ||
| 341 | share/crawl/dat/descript/ja/backgrounds.txt | ||
| 342 | share/crawl/dat/descript/ja/branches.txt | ||
| 343 | share/crawl/dat/descript/ja/cards.txt | ||
| 344 | share/crawl/dat/descript/ja/commands.txt | ||
| 345 | share/crawl/dat/descript/ja/gods.txt | ||
| 346 | share/crawl/dat/descript/ja/hints.txt | ||
| 347 | share/crawl/dat/descript/ja/items.txt | ||
| 348 | share/crawl/dat/descript/ja/monsters.txt | ||
| 349 | share/crawl/dat/descript/ja/skills.txt | ||
| 350 | share/crawl/dat/descript/ja/species.txt | ||
| 351 | share/crawl/dat/descript/ja/spells.txt | ||
| 352 | share/crawl/dat/descript/ja/tutorial.txt | ||
| 353 | share/crawl/dat/descript/ja/unident.txt | ||
| 354 | share/crawl/dat/descript/ja/unrand.txt | ||
| 355 | share/crawl/dat/descript/ko/ | ||
| 356 | share/crawl/dat/descript/ko/ability.txt | ||
| 357 | share/crawl/dat/descript/ko/backgrounds.txt | ||
| 358 | share/crawl/dat/descript/ko/branches.txt | ||
| 359 | share/crawl/dat/descript/ko/cards.txt | ||
| 360 | share/crawl/dat/descript/ko/commands.txt | ||
| 361 | share/crawl/dat/descript/ko/features.txt | ||
| 362 | share/crawl/dat/descript/ko/gods.txt | ||
| 363 | share/crawl/dat/descript/ko/hints.txt | ||
| 364 | share/crawl/dat/descript/ko/items.txt | ||
| 365 | share/crawl/dat/descript/ko/monsters.txt | ||
| 366 | share/crawl/dat/descript/ko/quotes.txt | ||
| 367 | share/crawl/dat/descript/ko/skills.txt | ||
| 368 | share/crawl/dat/descript/ko/species.txt | ||
| 369 | share/crawl/dat/descript/ko/spells.txt | ||
| 370 | share/crawl/dat/descript/ko/tutorial.txt | ||
| 371 | share/crawl/dat/descript/ko/unident.txt | ||
| 372 | share/crawl/dat/descript/ko/unrand.txt | ||
| 373 | share/crawl/dat/descript/lt/ | ||
| 374 | share/crawl/dat/descript/lt/backgrounds.txt | ||
| 375 | share/crawl/dat/descript/lt/branches.txt | ||
| 376 | share/crawl/dat/descript/lt/commands.txt | ||
| 377 | share/crawl/dat/descript/lt/monsters.txt | ||
| 378 | share/crawl/dat/descript/lt/skills.txt | ||
| 379 | share/crawl/dat/descript/lt/species.txt | ||
| 380 | share/crawl/dat/descript/lt/unident.txt | ||
| 381 | share/crawl/dat/descript/lv/ | ||
| 382 | share/crawl/dat/descript/lv/ability.txt | ||
| 383 | share/crawl/dat/descript/lv/backgrounds.txt | ||
| 384 | share/crawl/dat/descript/lv/branches.txt | ||
| 385 | share/crawl/dat/descript/lv/cards.txt | ||
| 386 | share/crawl/dat/descript/lv/commands.txt | ||
| 387 | share/crawl/dat/descript/lv/features.txt | ||
| 388 | share/crawl/dat/descript/lv/gods.txt | ||
| 389 | share/crawl/dat/descript/lv/hints.txt | ||
| 390 | share/crawl/dat/descript/lv/items.txt | ||
| 391 | share/crawl/dat/descript/lv/monsters.txt | ||
| 392 | share/crawl/dat/descript/lv/skills.txt | ||
| 393 | share/crawl/dat/descript/lv/species.txt | ||
| 394 | share/crawl/dat/descript/lv/spells.txt | ||
| 395 | share/crawl/dat/descript/lv/tutorial.txt | ||
| 396 | share/crawl/dat/descript/lv/unident.txt | ||
| 397 | share/crawl/dat/descript/lv/unrand.txt | ||
| 398 | share/crawl/dat/descript/monsters.txt | ||
| 399 | share/crawl/dat/descript/mutations.txt | ||
| 400 | share/crawl/dat/descript/nl/ | ||
| 401 | share/crawl/dat/descript/nl/ability.txt | ||
| 402 | share/crawl/dat/descript/nl/tutorial.txt | ||
| 403 | share/crawl/dat/descript/nl/unident.txt | ||
| 404 | share/crawl/dat/descript/passives.txt | ||
| 405 | share/crawl/dat/descript/pl/ | ||
| 406 | share/crawl/dat/descript/pl/ability.txt | ||
| 407 | share/crawl/dat/descript/pl/backgrounds.txt | ||
| 408 | share/crawl/dat/descript/pl/cards.txt | ||
| 409 | share/crawl/dat/descript/pl/commands.txt | ||
| 410 | share/crawl/dat/descript/pl/features.txt | ||
| 411 | share/crawl/dat/descript/pl/gods.txt | ||
| 412 | share/crawl/dat/descript/pl/hints.txt | ||
| 413 | share/crawl/dat/descript/pl/items.txt | ||
| 414 | share/crawl/dat/descript/pl/quotes.txt | ||
| 415 | share/crawl/dat/descript/pl/skills.txt | ||
| 416 | share/crawl/dat/descript/pl/species.txt | ||
| 417 | share/crawl/dat/descript/pl/spells.txt | ||
| 418 | share/crawl/dat/descript/pl/tutorial.txt | ||
| 419 | share/crawl/dat/descript/pl/unident.txt | ||
| 420 | share/crawl/dat/descript/pl/unrand.txt | ||
| 421 | share/crawl/dat/descript/pt/ | ||
| 422 | share/crawl/dat/descript/pt/ability.txt | ||
| 423 | share/crawl/dat/descript/pt/commands.txt | ||
| 424 | share/crawl/dat/descript/pt/gods.txt | ||
| 425 | share/crawl/dat/descript/pt/items.txt | ||
| 426 | share/crawl/dat/descript/pt/unident.txt | ||
| 427 | share/crawl/dat/descript/quotes.txt | ||
| 428 | share/crawl/dat/descript/ru/ | ||
| 429 | share/crawl/dat/descript/ru/ability.txt | ||
| 430 | share/crawl/dat/descript/ru/backgrounds.txt | ||
| 431 | share/crawl/dat/descript/ru/branches.txt | ||
| 432 | share/crawl/dat/descript/ru/cards.txt | ||
| 433 | share/crawl/dat/descript/ru/commands.txt | ||
| 434 | share/crawl/dat/descript/ru/features.txt | ||
| 435 | share/crawl/dat/descript/ru/gods.txt | ||
| 436 | share/crawl/dat/descript/ru/hints.txt | ||
| 437 | share/crawl/dat/descript/ru/items.txt | ||
| 438 | share/crawl/dat/descript/ru/monsters.txt | ||
| 439 | share/crawl/dat/descript/ru/quotes.txt | ||
| 440 | share/crawl/dat/descript/ru/skills.txt | ||
| 441 | share/crawl/dat/descript/ru/species.txt | ||
| 442 | share/crawl/dat/descript/ru/spells.txt | ||
| 443 | share/crawl/dat/descript/ru/tutorial.txt | ||
| 444 | share/crawl/dat/descript/ru/unident.txt | ||
| 445 | share/crawl/dat/descript/ru/unrand.txt | ||
| 446 | share/crawl/dat/descript/skills.txt | ||
| 447 | share/crawl/dat/descript/species.txt | ||
| 448 | share/crawl/dat/descript/spells.txt | ||
| 449 | share/crawl/dat/descript/status.txt | ||
| 450 | share/crawl/dat/descript/sv/ | ||
| 451 | share/crawl/dat/descript/sv/ability.txt | ||
| 452 | share/crawl/dat/descript/sv/cards.txt | ||
| 453 | share/crawl/dat/descript/sv/commands.txt | ||
| 454 | share/crawl/dat/descript/sv/features.txt | ||
| 455 | share/crawl/dat/descript/sv/items.txt | ||
| 456 | share/crawl/dat/descript/sv/monsters.txt | ||
| 457 | share/crawl/dat/descript/sv/species.txt | ||
| 458 | share/crawl/dat/descript/sv/unrand.txt | ||
| 459 | share/crawl/dat/descript/tr/ | ||
| 460 | share/crawl/dat/descript/tr/ability.txt | ||
| 461 | share/crawl/dat/descript/tr/cards.txt | ||
| 462 | share/crawl/dat/descript/tr/commands.txt | ||
| 463 | share/crawl/dat/descript/tr/gods.txt | ||
| 464 | share/crawl/dat/descript/tr/items.txt | ||
| 465 | share/crawl/dat/descript/tr/quotes.txt | ||
| 466 | share/crawl/dat/descript/tr/species.txt | ||
| 467 | share/crawl/dat/descript/tr/tutorial.txt | ||
| 468 | share/crawl/dat/descript/tr/unident.txt | ||
| 469 | share/crawl/dat/descript/tr/unrand.txt | ||
| 470 | share/crawl/dat/descript/tutorial.txt | ||
| 471 | share/crawl/dat/descript/unident.txt | ||
| 472 | share/crawl/dat/descript/unrand.txt | ||
| 473 | share/crawl/dat/descript/zh/ | ||
| 474 | share/crawl/dat/descript/zh/ability.txt | ||
| 475 | share/crawl/dat/descript/zh/backgrounds.txt | ||
| 476 | share/crawl/dat/descript/zh/branches.txt | ||
| 477 | share/crawl/dat/descript/zh/cards.txt | ||
| 478 | share/crawl/dat/descript/zh/clouds.txt | ||
| 479 | share/crawl/dat/descript/zh/commands.txt | ||
| 480 | share/crawl/dat/descript/zh/features.txt | ||
| 481 | share/crawl/dat/descript/zh/gods.txt | ||
| 482 | share/crawl/dat/descript/zh/hints.txt | ||
| 483 | share/crawl/dat/descript/zh/items.txt | ||
| 484 | share/crawl/dat/descript/zh/monsters.txt | ||
| 485 | share/crawl/dat/descript/zh/mutations.txt | ||
| 486 | share/crawl/dat/descript/zh/passives.txt | ||
| 487 | share/crawl/dat/descript/zh/quotes.txt | ||
| 488 | share/crawl/dat/descript/zh/skills.txt | ||
| 489 | share/crawl/dat/descript/zh/species.txt | ||
| 490 | share/crawl/dat/descript/zh/spells.txt | ||
| 491 | share/crawl/dat/descript/zh/status.txt | ||
| 492 | share/crawl/dat/descript/zh/tutorial.txt | ||
| 493 | share/crawl/dat/descript/zh/unident.txt | ||
| 494 | share/crawl/dat/descript/zh/unrand.txt | ||
| 495 | share/crawl/dat/dist_bones/ | ||
| 496 | share/crawl/dat/dist_bones/README | ||
| 497 | share/crawl/dat/dist_bones/bones.store.Crypt | ||
| 498 | share/crawl/dat/dist_bones/bones.store.D-10 | ||
| 499 | share/crawl/dat/dist_bones/bones.store.D-11 | ||
| 500 | share/crawl/dat/dist_bones/bones.store.D-12 | ||
| 501 | share/crawl/dat/dist_bones/bones.store.D-13 | ||
| 502 | share/crawl/dat/dist_bones/bones.store.D-14 | ||
| 503 | share/crawl/dat/dist_bones/bones.store.D-15 | ||
| 504 | share/crawl/dat/dist_bones/bones.store.D-3 | ||
| 505 | share/crawl/dat/dist_bones/bones.store.D-4 | ||
| 506 | share/crawl/dat/dist_bones/bones.store.D-5 | ||
| 507 | share/crawl/dat/dist_bones/bones.store.D-6 | ||
| 508 | share/crawl/dat/dist_bones/bones.store.D-7 | ||
| 509 | share/crawl/dat/dist_bones/bones.store.D-8 | ||
| 510 | share/crawl/dat/dist_bones/bones.store.D-9 | ||
| 511 | share/crawl/dat/dist_bones/bones.store.Depths | ||
| 512 | share/crawl/dat/dist_bones/bones.store.Elf | ||
| 513 | share/crawl/dat/dist_bones/bones.store.Hells | ||
| 514 | share/crawl/dat/dist_bones/bones.store.Lair-1 | ||
| 515 | share/crawl/dat/dist_bones/bones.store.Lair-2 | ||
| 516 | share/crawl/dat/dist_bones/bones.store.Lair-3 | ||
| 517 | share/crawl/dat/dist_bones/bones.store.Lair-4 | ||
| 518 | share/crawl/dat/dist_bones/bones.store.Lair-5 | ||
| 519 | share/crawl/dat/dist_bones/bones.store.Lair-6 | ||
| 520 | share/crawl/dat/dist_bones/bones.store.Orc | ||
| 521 | share/crawl/dat/dist_bones/bones.store.Pan | ||
| 522 | share/crawl/dat/dist_bones/bones.store.Shoals | ||
| 523 | share/crawl/dat/dist_bones/bones.store.Slime | ||
| 524 | share/crawl/dat/dist_bones/bones.store.Snake | ||
| 525 | share/crawl/dat/dist_bones/bones.store.Spider | ||
| 526 | share/crawl/dat/dist_bones/bones.store.Swamp | ||
| 527 | share/crawl/dat/dist_bones/bones.store.Tomb | ||
| 528 | share/crawl/dat/dist_bones/bones.store.Vaults | ||
| 529 | share/crawl/dat/dist_bones/bones.store.Zig | ||
| 530 | share/crawl/dat/dist_bones/bones.store.Zot | ||
| 531 | share/crawl/dat/dlua/ | ||
| 532 | share/crawl/dat/dlua/debug.lua | ||
| 533 | share/crawl/dat/dlua/dungeon.lua | ||
| 534 | share/crawl/dat/dlua/explorer.lua | ||
| 535 | share/crawl/dat/dlua/fnwrap.lua | ||
| 536 | share/crawl/dat/dlua/gauntlet.lua | ||
| 537 | share/crawl/dat/dlua/ghost.lua | ||
| 538 | share/crawl/dat/dlua/init.lua | ||
| 539 | share/crawl/dat/dlua/iter.lua | ||
| 540 | share/crawl/dat/dlua/layout/ | ||
| 541 | share/crawl/dat/dlua/layout/geoelf.lua | ||
| 542 | share/crawl/dat/dlua/layout/geoelf_corridors.lua | ||
| 543 | share/crawl/dat/dlua/layout/geoelf_directions.lua | ||
| 544 | share/crawl/dat/dlua/layout/geoelf_glyphs.lua | ||
| 545 | share/crawl/dat/dlua/layout/geoelf_rooms.lua | ||
| 546 | share/crawl/dat/dlua/layout/hyper.lua | ||
| 547 | share/crawl/dat/dlua/layout/hyper_caves.lua | ||
| 548 | share/crawl/dat/dlua/layout/hyper_city.lua | ||
| 549 | share/crawl/dat/dlua/layout/hyper_debug.lua | ||
| 550 | share/crawl/dat/dlua/layout/hyper_decor.lua | ||
| 551 | share/crawl/dat/dlua/layout/hyper_fort.lua | ||
| 552 | share/crawl/dat/dlua/layout/hyper_paint.lua | ||
| 553 | share/crawl/dat/dlua/layout/hyper_place.lua | ||
| 554 | share/crawl/dat/dlua/layout/hyper_rooms.lua | ||
| 555 | share/crawl/dat/dlua/layout/hyper_shapes.lua | ||
| 556 | share/crawl/dat/dlua/layout/hyper_strategy.lua | ||
| 557 | share/crawl/dat/dlua/layout/hyper_usage.lua | ||
| 558 | share/crawl/dat/dlua/layout/layout.lua | ||
| 559 | share/crawl/dat/dlua/layout/minimum_map_area.lua | ||
| 560 | share/crawl/dat/dlua/layout/omnigrid.lua | ||
| 561 | share/crawl/dat/dlua/layout/procedural.lua | ||
| 562 | share/crawl/dat/dlua/layout/procedural_complex.lua | ||
| 563 | share/crawl/dat/dlua/layout/procedural_primitives.lua | ||
| 564 | share/crawl/dat/dlua/layout/procedural_transform.lua | ||
| 565 | share/crawl/dat/dlua/layout/rooms_primitive.lua | ||
| 566 | share/crawl/dat/dlua/layout/theme.lua | ||
| 567 | share/crawl/dat/dlua/layout/vector.lua | ||
| 568 | share/crawl/dat/dlua/layout/zonify.lua | ||
| 569 | share/crawl/dat/dlua/lm_1way.lua | ||
| 570 | share/crawl/dat/dlua/lm_door.lua | ||
| 571 | share/crawl/dat/dlua/lm_fog.lua | ||
| 572 | share/crawl/dat/dlua/lm_items.lua | ||
| 573 | share/crawl/dat/dlua/lm_mon_prop.lua | ||
| 574 | share/crawl/dat/dlua/lm_monst.lua | ||
| 575 | share/crawl/dat/dlua/lm_mslav.lua | ||
| 576 | share/crawl/dat/dlua/lm_named_hatch.lua | ||
| 577 | share/crawl/dat/dlua/lm_pdesc.lua | ||
| 578 | share/crawl/dat/dlua/lm_props.lua | ||
| 579 | share/crawl/dat/dlua/lm_timed.lua | ||
| 580 | share/crawl/dat/dlua/lm_tmsg.lua | ||
| 581 | share/crawl/dat/dlua/lm_toll.lua | ||
| 582 | share/crawl/dat/dlua/lm_trans.lua | ||
| 583 | share/crawl/dat/dlua/lm_trig.lua | ||
| 584 | share/crawl/dat/dlua/lm_trove.lua | ||
| 585 | share/crawl/dat/dlua/loadmaps.lua | ||
| 586 | share/crawl/dat/dlua/luamark.lua | ||
| 587 | share/crawl/dat/dlua/macro.lua | ||
| 588 | share/crawl/dat/dlua/mapinit.lua | ||
| 589 | share/crawl/dat/dlua/persist.lua | ||
| 590 | share/crawl/dat/dlua/point.lua | ||
| 591 | share/crawl/dat/dlua/profiler.lua | ||
| 592 | share/crawl/dat/dlua/sanity.lua | ||
| 593 | share/crawl/dat/dlua/sprint.lua | ||
| 594 | share/crawl/dat/dlua/stress.lua | ||
| 595 | share/crawl/dat/dlua/tags.lua | ||
| 596 | share/crawl/dat/dlua/test.lua | ||
| 597 | share/crawl/dat/dlua/tutorial.lua | ||
| 598 | share/crawl/dat/dlua/userbase.lua | ||
| 599 | share/crawl/dat/dlua/util.lua | ||
| 600 | share/crawl/dat/dlua/v_debug.lua | ||
| 601 | share/crawl/dat/dlua/v_layouts.lua | ||
| 602 | share/crawl/dat/dlua/v_paint.lua | ||
| 603 | share/crawl/dat/dlua/v_rooms.lua | ||
| 604 | share/crawl/dat/dlua/v_shapes.lua | ||
| 605 | share/crawl/dat/dlua/vault.lua | ||
| 606 | share/crawl/dat/dlua/ziggurat.lua | ||
| 607 | share/crawl/dat/tiles/ | ||
| 608 | share/crawl/dat/tiles/feat.png | ||
| 609 | share/crawl/dat/tiles/floor.png | ||
| 610 | share/crawl/dat/tiles/gui.png | ||
| 611 | share/crawl/dat/tiles/icons.png | ||
| 612 | share/crawl/dat/tiles/logo.png | ||
| 613 | share/crawl/dat/tiles/logosmall.png | ||
| 614 | share/crawl/dat/tiles/main.png | ||
| 615 | share/crawl/dat/tiles/player.png | ||
| 616 | share/crawl/dat/tiles/stone_soup_icon-32x32.png | ||
| 617 | share/crawl/dat/tiles/stone_soup_icon-48x48.png | ||
| 618 | share/crawl/dat/tiles/stone_soup_icon-512x512.png | ||
| 619 | share/crawl/dat/tiles/stone_soup_icon-win32.png | ||
| 620 | share/crawl/dat/tiles/title_Cws_Minotauros.png | ||
| 621 | share/crawl/dat/tiles/title_SpinningBird_djinn_sears_gnolls.png | ||
| 622 | share/crawl/dat/tiles/title_anon_octopus_wizard.png | ||
| 623 | share/crawl/dat/tiles/title_arbituhhh_tesu.png | ||
| 624 | share/crawl/dat/tiles/title_baconkid_duvessa_dowan.png | ||
| 625 | share/crawl/dat/tiles/title_baconkid_gastronok.png | ||
| 626 | share/crawl/dat/tiles/title_baconkid_mnoleg.png | ||
| 627 | share/crawl/dat/tiles/title_benadryl_antaeus.png | ||
| 628 | share/crawl/dat/tiles/title_denzi_dragon.png | ||
| 629 | share/crawl/dat/tiles/title_denzi_evil_mage.png | ||
| 630 | share/crawl/dat/tiles/title_denzi_invasion.png | ||
| 631 | share/crawl/dat/tiles/title_denzi_kitchen_duty.png | ||
| 632 | share/crawl/dat/tiles/title_denzi_summoner.png | ||
| 633 | share/crawl/dat/tiles/title_denzi_undead_warrior.png | ||
| 634 | share/crawl/dat/tiles/title_e_m_fields.png | ||
| 635 | share/crawl/dat/tiles/title_firemage.png | ||
| 636 | share/crawl/dat/tiles/title_froggy_goodgod_tengu_gold.png | ||
| 637 | share/crawl/dat/tiles/title_froggy_jiyva_felid.png | ||
| 638 | share/crawl/dat/tiles/title_froggy_natasha_and_boris.png | ||
| 639 | share/crawl/dat/tiles/title_froggy_rune_and_run_failed_on_dis.png | ||
| 640 | share/crawl/dat/tiles/title_froggy_thunder_fist_nikola.png | ||
| 641 | share/crawl/dat/tiles/title_gompami_kohu_xbow.png | ||
| 642 | share/crawl/dat/tiles/title_kaonedong_ignis_the_dying_flame.png | ||
| 643 | share/crawl/dat/tiles/title_kaonedong_menkaure_prince_of_dust.png | ||
| 644 | share/crawl/dat/tiles/title_micah_c_ereshkigal.png | ||
| 645 | share/crawl/dat/tiles/title_nibiki_octopode.png | ||
| 646 | share/crawl/dat/tiles/title_omndra_zot_demon.png | ||
| 647 | share/crawl/dat/tiles/title_peileppe_bloax_eye.png | ||
| 648 | share/crawl/dat/tiles/title_philosopheropposite_palentonga_paladin.png | ||
| 649 | share/crawl/dat/tiles/title_ploomutoo_ijyb.png | ||
| 650 | share/crawl/dat/tiles/title_pooryurik_knight.png | ||
| 651 | share/crawl/dat/tiles/title_psiweapon_kiku.png | ||
| 652 | share/crawl/dat/tiles/title_psiweapon_roxanne.png | ||
| 653 | share/crawl/dat/tiles/title_sastrei_chei.png | ||
| 654 | share/crawl/dat/tiles/title_shadyamish_octm.png | ||
| 655 | share/crawl/dat/tiles/title_white_noise_entering_the_dungeon.png | ||
| 656 | share/crawl/dat/tiles/title_white_noise_grabbing_the_orb.png | ||
| 657 | share/crawl/dat/tiles/wall.png | ||
| 658 | share/crawl/docs/ | ||
| 659 | share/crawl/docs/CREDITS.txt | ||
| 660 | share/crawl/docs/aptitudes-wide.txt | ||
| 661 | share/crawl/docs/aptitudes.txt | ||
| 662 | share/crawl/docs/arena.txt | ||
| 663 | share/crawl/docs/changelog.txt | ||
| 664 | share/crawl/docs/crawl_manual.txt | ||
| 665 | share/crawl/docs/develop/ | ||
| 666 | share/crawl/docs/develop/IRC.txt | ||
| 667 | share/crawl/docs/develop/android.txt | ||
| 668 | share/crawl/docs/develop/arena.txt | ||
| 669 | share/crawl/docs/develop/background_creation.txt | ||
| 670 | share/crawl/docs/develop/ctags.txt | ||
| 671 | share/crawl/docs/develop/editor_tips.txt | ||
| 672 | share/crawl/docs/develop/gdb_tips.txt | ||
| 673 | share/crawl/docs/develop/god_creation.txt | ||
| 674 | share/crawl/docs/develop/keys.txt | ||
| 675 | share/crawl/docs/develop/levels/ | ||
| 676 | share/crawl/docs/develop/levels/advanced.txt | ||
| 677 | share/crawl/docs/develop/levels/introduction.txt | ||
| 678 | share/crawl/docs/develop/levels/syntax.txt | ||
| 679 | share/crawl/docs/develop/levels/triggerables.txt | ||
| 680 | share/crawl/docs/develop/monster_creation.txt | ||
| 681 | share/crawl/docs/develop/monster_speech.txt | ||
| 682 | share/crawl/docs/develop/mutation_creation.txt | ||
| 683 | share/crawl/docs/develop/patch_guide.txt | ||
| 684 | share/crawl/docs/develop/save_compatibility.txt | ||
| 685 | share/crawl/docs/develop/spells.txt | ||
| 686 | share/crawl/docs/develop/test_plug_and_play_cc.txt | ||
| 687 | share/crawl/docs/develop/tiles_creation.txt | ||
| 688 | share/crawl/docs/develop/translation.txt | ||
| 689 | share/crawl/docs/fight_simulator.txt | ||
| 690 | share/crawl/docs/keybind.txt | ||
| 691 | share/crawl/docs/license/ | ||
| 692 | share/crawl/docs/license/cc0.txt | ||
| 693 | share/crawl/docs/license/lgpl.txt | ||
| 694 | share/crawl/docs/license/libpng-LICENSE.txt | ||
| 695 | share/crawl/docs/license/lualicense.txt | ||
| 696 | share/crawl/docs/license/pcre_license.txt | ||
| 697 | share/crawl/docs/license/worley.txt | ||
| 698 | share/crawl/docs/macros_guide.txt | ||
| 699 | share/crawl/docs/options_guide.txt | ||
| 700 | share/crawl/docs/quickstart.md | ||
| 701 | share/crawl/docs/quickstart.txt | ||
| 702 | share/crawl/docs/ssh_guide.txt | ||
| 703 | share/crawl/docs/tiles_help.txt | ||
| 704 | share/crawl/settings/ | ||
| 705 | share/crawl/settings/0.12_monster_glyphs.txt | ||
| 706 | share/crawl/settings/0.13_monster_glyphs.txt | ||
| 707 | share/crawl/settings/0.14_monster_glyphs.txt | ||
| 708 | share/crawl/settings/0.16_monster_glyphs.txt | ||
| 709 | share/crawl/settings/0.17_monster_glyphs.txt | ||
| 710 | share/crawl/settings/0.18_monster_glyphs.txt | ||
| 711 | share/crawl/settings/0.9_monster_glyphs.txt | ||
| 712 | share/crawl/settings/034_command_keys.txt | ||
| 713 | share/crawl/settings/052_monster_glyphs.txt | ||
| 714 | share/crawl/settings/060_monster_glyphs.txt | ||
| 715 | share/crawl/settings/071_monster_glyphs.txt | ||
| 716 | share/crawl/settings/080_monster_glyphs.txt | ||
| 717 | share/crawl/settings/advanced_optioneering.txt | ||
| 718 | share/crawl/settings/colemak_command_keys.txt | ||
| 719 | share/crawl/settings/dec_glyphs.txt | ||
| 720 | share/crawl/settings/dvorak_command_keys.txt | ||
| 721 | share/crawl/settings/ibm_glyphs.txt | ||
| 722 | share/crawl/settings/init.txt | ||
| 723 | share/crawl/settings/mac/ | ||
| 724 | share/crawl/settings/mac/Crawl profile.terminal | ||
| 725 | share/crawl/settings/neo_command_keys.txt | ||
| 726 | share/crawl/settings/no_vi_command_keys.txt | ||
| 727 | share/crawl/settings/old_unicode_glyphs.txt | ||
| 728 | share/crawl/settings/safe_move_shift.txt | ||
| 729 | share/pixmaps/ | ||
| 730 | share/pixmaps/stone-soup.png | ||
