├── .gitmodules ├── .mailmap ├── .travis ├── apt.pl ├── build.pl └── deps.pl ├── CHANGES.md ├── LICENSE ├── README.md └── crawl-ref ├── .gitattributes ├── .gitignore ├── CREDITS.txt ├── INSTALL.md ├── docs ├── arena.txt ├── changelog.txt ├── crawl.6 ├── crawl_manual.rst ├── develop │ ├── IRC.txt │ ├── android.txt │ ├── background_creation.txt │ ├── coding_conventions.txt │ ├── contribution-process.md │ ├── ctags.txt │ ├── editor_tips.txt │ ├── gdb_tips.txt │ ├── git │ │ ├── aliases.txt │ │ ├── articles.txt │ │ ├── config.txt │ │ ├── pre-commit │ │ └── quickstart.txt │ ├── god_creation.txt │ ├── history │ │ └── major-tag-history.md │ ├── keys.txt │ ├── levels │ │ ├── advanced.txt │ │ ├── guidelines.md │ │ ├── introduction.txt │ │ ├── syntax.txt │ │ └── triggerables.txt │ ├── monster_creation.txt │ ├── monster_speech.txt │ ├── mutation_creation.txt │ ├── patch_guide.txt │ ├── release │ │ ├── debian.txt │ │ ├── guide.txt │ │ └── pbuilderrc │ ├── rng_guidelines.md │ ├── save_compatibility.txt │ ├── species_creation.txt │ ├── spells.txt │ ├── team │ │ ├── new_dev_checklist.txt │ │ └── new_dev_guidelines.md │ ├── testing.txt │ ├── tiles_creation.txt │ └── translation.txt ├── fight_simulator.txt ├── keybind.txt ├── license │ ├── cc0.txt │ ├── lgpl.txt │ ├── libpng-LICENSE.txt │ ├── lualicense.txt │ ├── pcre_license.txt │ └── worley.txt ├── macros_guide.txt ├── obsolete │ ├── 034_changes.txt │ ├── cut_spells.txt │ ├── key_changes.txt │ ├── spl-data.txt │ └── versions.txt ├── options_guide.txt ├── quickstart.md ├── quickstart.pdf ├── ssh_guide.txt ├── template │ ├── apt-tmpl-wide.txt │ └── apt-tmpl.txt └── tiles_help.txt ├── git-hooks ├── README.txt └── crawl-ref-email ├── settings ├── 034_command_keys.txt ├── colemak_command_keys.txt ├── default_macros.txt ├── dvorak_command_keys.txt ├── glyphs │ ├── 0.12_monster_glyphs.txt │ ├── 0.13_monster_glyphs.txt │ ├── 0.14_monster_glyphs.txt │ ├── 0.16_monster_glyphs.txt │ ├── 0.17_monster_glyphs.txt │ ├── 0.18_monster_glyphs.txt │ ├── 0.9_monster_glyphs.txt │ ├── 052_monster_glyphs.txt │ ├── 060_monster_glyphs.txt │ ├── 071_monster_glyphs.txt │ ├── 080_monster_glyphs.txt │ ├── dec_glyphs.txt │ ├── ibm_glyphs.txt │ └── old_unicode_glyphs.txt ├── init.txt ├── mac │ └── Crawl profile.terminal ├── neo_command_keys.txt ├── no_vi_command_keys.txt └── safe_move_shift.txt └── source ├── AppHdr.cc ├── AppHdr.h ├── Crawl.xcodeproj └── project.pbxproj ├── KeymapContext.h ├── MSVC ├── .gitignore ├── Common.props ├── Common.vsprops ├── Console.props ├── Console.vsprops ├── Debug.props ├── Debug.vsprops ├── PropertySheet.props ├── Release.props ├── Release.vsprops ├── Tiles.props ├── Tiles.vsprops ├── crawl-ref.sln ├── crawl.vcxproj ├── crawl.vcxproj.filters ├── dat.csproj ├── fresh.bat ├── include │ ├── dirent.h │ ├── getopt.h │ ├── inttypes.h │ ├── stdint.h │ ├── sys │ │ └── param.h │ └── unistd.h ├── inttypes.h ├── stdint.h ├── tilegen.vcproj ├── tilegen.vcxproj └── webserver │ ├── Properties │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── webserver.csproj ├── Makefile ├── Makefile.obj ├── SDLMain.h ├── SDLMain.m ├── ability-type.h ├── ability.cc ├── ability.h ├── abyss.cc ├── abyss.h ├── ac-type.h ├── acquire.cc ├── acquire.h ├── act-iter.cc ├── act-iter.h ├── activity-interrupt-type.h ├── actor-los.cc ├── actor.cc ├── actor.h ├── adjust.cc ├── adjust.h ├── android-project ├── AndroidManifest.xml.in ├── ant.properties ├── build.properties ├── build.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── SDL2 │ ├── SDL2_image │ ├── SDL2_mixer │ ├── freetype │ ├── lua │ ├── mikmod │ ├── pcre │ ├── smpeg │ ├── sqlite │ ├── src │ │ └── Android.mk │ ├── webp │ └── zlib ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── org │ ├── develz │ └── crawl │ │ └── DungeonCrawlStoneSoup.java │ └── libsdl │ └── app │ └── SDLActivity.java ├── aptitudes.h ├── areas.cc ├── areas.h ├── arena.cc ├── arena.h ├── art-data.txt ├── art-func.h ├── artefact-prop-type.h ├── artefact.cc ├── artefact.h ├── attack.cc ├── attack.h ├── attitude-change.cc ├── attitude-change.h ├── attribute-type.h ├── beam-type.h ├── beam.cc ├── beam.h ├── beh-type.h ├── behold.cc ├── bitary.cc ├── bitary.h ├── bloodspatter.cc ├── bloodspatter.h ├── book-data.h ├── book-type.h ├── branch-data.h ├── branch-type.h ├── branch.cc ├── branch.h ├── butcher.cc ├── butcher.h ├── caction-type.h ├── canned-message-type.h ├── char-set-type.h ├── chardump.cc ├── chardump.h ├── cio.cc ├── cio.h ├── cleansing-flame-source-type.h ├── cloud-type.h ├── cloud.cc ├── cloud.h ├── clua.cc ├── clua.h ├── cluautil.cc ├── cluautil.h ├── cmd-keys.h ├── colour.cc ├── colour.h ├── command-type.h ├── command.cc ├── command.h ├── conduct-type.h ├── confirm-butcher-type.h ├── confirm-level-type.h ├── confirm-prompt-type.h ├── contrib ├── .gitignore ├── Contribs.sln ├── MSVC │ ├── Common.props │ ├── Common.vsprops │ ├── DLL.props │ ├── DLL.vsprops │ ├── Debug.props │ ├── Debug.vsprops │ ├── LIB.props │ ├── LIB.vsprops │ ├── Release.props │ ├── Release.vsprops │ ├── SDL.vcxproj │ ├── SDL.vcxproj.filters │ ├── SDL_image.vcxproj │ ├── SDLmain.vcxproj │ ├── freetype.vcxproj │ ├── freetype.vcxproj.filters │ ├── libpng.vcxproj │ ├── lua.vcxproj │ ├── pcre.vcxproj │ ├── sqlite.vcxproj │ ├── zlib.props │ ├── zlib.vcxproj │ └── zlib.vcxproj.filters └── Makefile ├── coord-circle.cc ├── coord-circle.h ├── coord.cc ├── coord.h ├── coordit.cc ├── coordit.h ├── crash.cc ├── crash.h ├── crawl-gdb.py ├── crawl_all.doxy ├── crawl_simple.doxy ├── ctest.cc ├── ctest.h ├── cursor-type.h ├── daction-type.h ├── dactions.cc ├── dactions.h ├── dat ├── clua │ ├── autofight.lua │ ├── automagic.lua │ ├── delays.lua │ ├── kills.lua │ └── stash.lua ├── database │ ├── FAQ.txt │ ├── el │ │ ├── monflee.txt │ │ └── rand_all.txt │ ├── godname.txt │ ├── godspeak.txt │ ├── help.txt │ ├── insult.txt │ ├── miscname.txt │ ├── monflee.txt │ ├── monname.txt │ ├── monspeak.txt │ ├── monspell.txt │ ├── montitle.txt │ ├── pl │ │ ├── godspeak.txt │ │ └── miscname.txt │ ├── rand_all.txt │ ├── rand_arm.txt │ ├── rand_wpn.txt │ ├── randbook.txt │ ├── randname.txt │ ├── shout.txt │ └── wpnnoise.txt ├── defaults │ ├── autopickup_exceptions.txt │ ├── food_colouring.txt │ ├── glyph_colours.txt │ ├── menu_colours.txt │ ├── messages.txt │ ├── misc.txt │ ├── runrest_messages.txt │ └── standard_colours.txt ├── des │ ├── altar │ │ ├── altar.des │ │ ├── ashenzari_visionary.des │ │ ├── kiku_cage.des │ │ ├── lugonu_bribe.des │ │ ├── nemelex_the_gamble.des │ │ ├── okawaru_arena.des │ │ ├── overflow.des │ │ ├── trog_burn_book.des │ │ ├── trog_wizard.des │ │ ├── vehumet_trees.des │ │ ├── xom_monty_hall.des │ │ ├── xom_sheep.des │ │ └── yredelemnul_ordeal.des │ ├── arrival │ │ ├── arrival_guide.txt │ │ ├── large.des │ │ ├── simple.des │ │ ├── small.des │ │ └── twisted.des │ ├── branches │ │ ├── abyss.des │ │ ├── blade.des │ │ ├── coc.des │ │ ├── crypt.des │ │ ├── depths.des │ │ ├── depths_encompass.des │ │ ├── dis.des │ │ ├── elf.des │ │ ├── forest.des │ │ ├── geh.des │ │ ├── hell.des │ │ ├── lair.des │ │ ├── orc.des │ │ ├── pan.des │ │ ├── shoals.des │ │ ├── slime.des │ │ ├── snake.des │ │ ├── spider.des │ │ ├── swamp.des │ │ ├── tar.des │ │ ├── temple.des │ │ ├── temple_compat.des │ │ ├── tomb.des │ │ ├── vaults.des │ │ ├── vaults_rooms_empty.des │ │ ├── vaults_rooms_ghost.des │ │ ├── vaults_rooms_hard.des │ │ ├── vaults_rooms_standard.des │ │ └── zot.des │ ├── builder │ │ ├── alphashops.des │ │ ├── arena.des │ │ ├── decor.des │ │ ├── dummy.des │ │ ├── food.des │ │ ├── layout.des │ │ ├── layout_caves.des │ │ ├── layout_cc.des │ │ ├── layout_cellular.des │ │ ├── layout_city.des │ │ ├── layout_delve.des │ │ ├── layout_forest.des │ │ ├── layout_geoelf.des │ │ ├── layout_geoelf_castle.des │ │ ├── layout_grids.des │ │ ├── layout_halls.des │ │ ├── layout_loops.des │ │ ├── layout_overlapping_boxes.des │ │ ├── layout_pan_divisions.des │ │ ├── layout_pools.des │ │ ├── layout_slime.des │ │ ├── layout_vaults.des │ │ ├── rooms.des │ │ ├── shops.des │ │ └── uniques.des │ ├── guide.txt │ ├── portals │ │ ├── bailey.des │ │ ├── bazaar.des │ │ ├── desolation.des │ │ ├── gauntlet.des │ │ ├── icecave.des │ │ ├── ossuary.des │ │ ├── sewer.des │ │ ├── trove.des │ │ ├── volcano.des │ │ ├── wizlab.des │ │ └── ziggurat.des │ ├── serial │ │ ├── aquarium.des │ │ ├── bayou.des │ │ ├── column_ruins.des │ │ ├── corridors.des │ │ ├── curves.des │ │ ├── forest.des │ │ ├── glass.des │ │ ├── gnoll_camp.des │ │ ├── ice.des │ │ ├── magic_research.des │ │ ├── park.des │ │ ├── rivers.des │ │ ├── serial_guide.txt │ │ ├── sigils.des │ │ ├── undead.des │ │ └── window.des │ ├── sprint │ │ ├── arena_sprint.des │ │ ├── fedhas.des │ │ ├── linesprint.des │ │ ├── meat.des │ │ ├── menkaure.des │ │ ├── pitsprint.des │ │ ├── red_sonja.des │ │ ├── sprint_mu.des │ │ └── zigsprint.des │ ├── test.des │ ├── test │ │ ├── suite-los.des │ │ └── suite.des │ ├── traps │ │ ├── grate.des │ │ ├── rats_trap.des │ │ └── spider_basket.des │ ├── tutorial │ │ ├── lesson1.des │ │ ├── lesson2.des │ │ ├── lesson3.des │ │ ├── lesson4.des │ │ └── lesson5.des │ └── variable │ │ ├── ambush.des │ │ ├── arcadia.des │ │ ├── cathedral_bats.des │ │ ├── compat.des │ │ ├── d_encompass.des │ │ ├── float.des │ │ ├── geyser.des │ │ ├── ghost.des │ │ ├── grated_community.des │ │ ├── large_abstract.des │ │ ├── large_themed.des │ │ ├── lemuel_castle.des │ │ ├── mini.des │ │ ├── mini_features.des │ │ ├── mini_monsters.des │ │ ├── polyominoes.des │ │ ├── the_bubble.des │ │ └── the_grid.des ├── descript │ ├── ability.txt │ ├── backgrounds.txt │ ├── branches.txt │ ├── cards.txt │ ├── clouds.txt │ ├── commands.txt │ ├── cs │ │ ├── ability.txt │ │ ├── branches.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── da │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── de │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── el │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── gods.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── species.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── es │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── features.txt │ ├── fi │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── fr │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── gods.txt │ ├── hints.txt │ ├── hu │ │ ├── backgrounds.txt │ │ └── species.txt │ ├── it │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── items.txt │ ├── ja │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── ko │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── lt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── commands.txt │ │ ├── monsters.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ └── unident.txt │ ├── lv │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── monsters.txt │ ├── nl │ │ ├── ability.txt │ │ ├── tutorial.txt │ │ └── unident.txt │ ├── pl │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── pt │ │ ├── ability.txt │ │ ├── commands.txt │ │ ├── gods.txt │ │ ├── items.txt │ │ └── unident.txt │ ├── quotes.txt │ ├── ru │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── skills.txt │ ├── species.txt │ ├── spells.txt │ ├── status.txt │ ├── sv │ │ ├── ability.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── species.txt │ │ └── unrand.txt │ ├── tr │ │ ├── ability.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── gods.txt │ │ ├── items.txt │ │ ├── quotes.txt │ │ ├── species.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt │ ├── tutorial.txt │ ├── unident.txt │ ├── unrand.txt │ └── zh │ │ ├── ability.txt │ │ ├── backgrounds.txt │ │ ├── branches.txt │ │ ├── cards.txt │ │ ├── commands.txt │ │ ├── features.txt │ │ ├── gods.txt │ │ ├── hints.txt │ │ ├── items.txt │ │ ├── monsters.txt │ │ ├── quotes.txt │ │ ├── skills.txt │ │ ├── species.txt │ │ ├── spells.txt │ │ ├── tutorial.txt │ │ ├── unident.txt │ │ └── unrand.txt ├── dist_bones │ ├── README │ ├── bones.store.Crypt │ ├── bones.store.D-10 │ ├── bones.store.D-11 │ ├── bones.store.D-12 │ ├── bones.store.D-13 │ ├── bones.store.D-14 │ ├── bones.store.D-15 │ ├── bones.store.D-3 │ ├── bones.store.D-4 │ ├── bones.store.D-5 │ ├── bones.store.D-6 │ ├── bones.store.D-7 │ ├── bones.store.D-8 │ ├── bones.store.D-9 │ ├── bones.store.Depths │ ├── bones.store.Elf │ ├── bones.store.Hells │ ├── bones.store.Lair-1 │ ├── bones.store.Lair-2 │ ├── bones.store.Lair-3 │ ├── bones.store.Lair-4 │ ├── bones.store.Lair-5 │ ├── bones.store.Lair-6 │ ├── bones.store.Orc │ ├── bones.store.Pan │ ├── bones.store.Shoals │ ├── bones.store.Slime │ ├── bones.store.Snake │ ├── bones.store.Spider │ ├── bones.store.Swamp │ ├── bones.store.Tomb │ ├── bones.store.Vaults │ ├── bones.store.Zig │ └── bones.store.Zot ├── dlua │ ├── debug.lua │ ├── dungeon.lua │ ├── explorer.lua │ ├── fnwrap.lua │ ├── gauntlet.lua │ ├── ghost.lua │ ├── init.lua │ ├── iter.lua │ ├── layout │ │ ├── geoelf.lua │ │ ├── geoelf_corridors.lua │ │ ├── geoelf_directions.lua │ │ ├── geoelf_glyphs.lua │ │ ├── geoelf_rooms.lua │ │ ├── hyper.lua │ │ ├── hyper_caves.lua │ │ ├── hyper_city.lua │ │ ├── hyper_debug.lua │ │ ├── hyper_decor.lua │ │ ├── hyper_fort.lua │ │ ├── hyper_paint.lua │ │ ├── hyper_place.lua │ │ ├── hyper_rooms.lua │ │ ├── hyper_shapes.lua │ │ ├── hyper_strategy.lua │ │ ├── hyper_usage.lua │ │ ├── layout.lua │ │ ├── minimum_map_area.lua │ │ ├── omnigrid.lua │ │ ├── procedural.lua │ │ ├── procedural_complex.lua │ │ ├── procedural_primitives.lua │ │ ├── procedural_transform.lua │ │ ├── rooms_primitive.lua │ │ ├── theme.lua │ │ ├── vector.lua │ │ └── zonify.lua │ ├── lm_1way.lua │ ├── lm_door.lua │ ├── lm_fog.lua │ ├── lm_items.lua │ ├── lm_mon_prop.lua │ ├── lm_monst.lua │ ├── lm_mslav.lua │ ├── lm_named_hatch.lua │ ├── lm_pdesc.lua │ ├── lm_props.lua │ ├── lm_timed.lua │ ├── lm_tmsg.lua │ ├── lm_toll.lua │ ├── lm_trans.lua │ ├── lm_trig.lua │ ├── lm_trove.lua │ ├── loadmaps.lua │ ├── luamark.lua │ ├── macro.lua │ ├── mapinit.lua │ ├── persist.lua │ ├── point.lua │ ├── profiler.lua │ ├── sanity.lua │ ├── sprint.lua │ ├── stress.lua │ ├── test.lua │ ├── tutorial.lua │ ├── userbase.lua │ ├── util.lua │ ├── v_debug.lua │ ├── v_layouts.lua │ ├── v_paint.lua │ ├── v_rooms.lua │ ├── v_shapes.lua │ ├── vault.lua │ └── ziggurat.lua ├── emacs │ └── dir-locals.el ├── lua-wiz │ └── damtally.lua ├── tiles │ ├── logo.png │ ├── logosmall.png │ ├── stone_soup_icon-32x32.png │ ├── stone_soup_icon-512x512.png │ ├── stone_soup_icon-win32.png │ ├── title_Cws512_spriggan_baker.png │ ├── title_Cws_Minotauros.png │ ├── title_anon_octopus_wizard.png │ ├── title_baconkid_duvessa_dowan.png │ ├── title_baconkid_gastronok.png │ ├── title_baconkid_mnoleg.png │ ├── title_denzi_dragon.png │ ├── title_denzi_evil_mage.png │ ├── title_denzi_invasion.png │ ├── title_denzi_kitchen_duty.png │ ├── title_denzi_summoner.png │ ├── title_denzi_undead_warrior.png │ ├── title_e_m_fields.png │ ├── title_firemage.png │ ├── title_froggy_goodgod_tengu_gold.png │ ├── title_froggy_jiyva_felid.png │ ├── title_froggy_natasha_and_boris.png │ ├── title_froggy_rune_and_run_failed_on_dis.png │ ├── title_froggy_thunder_fist_nikola.png │ ├── title_nibiki_octopode.png │ ├── title_omndra_zot_demon.png │ ├── title_peileppe_bloax_eye.png │ ├── title_ploomutoo_ijyb.png │ ├── title_pooryurik_knight.png │ ├── title_psiweapon_kiku.png │ ├── title_psiweapon_roxanne.png │ ├── title_sastrei_chei.png │ ├── title_shadyamish_octm.png │ ├── title_white_noise_entering_the_dungeon.png │ └── title_white_noise_grabbing_the_orb.png └── vim │ └── syntax │ └── levdes.vim ├── database.cc ├── database.h ├── dbg-asrt.cc ├── dbg-maps.cc ├── dbg-maps.h ├── dbg-objstat.cc ├── dbg-objstat.h ├── dbg-scan.cc ├── dbg-scan.h ├── dbg-util.cc ├── dbg-util.h ├── debian ├── changelog ├── compat ├── control ├── copyright ├── crawl-common.docs ├── crawl-common.postinst ├── crawl-common.postrm ├── crawl-tiles.desktop ├── crawl-tiles.menu ├── crawl.desktop ├── crawl.menu ├── crawl.png ├── crawl.postinst ├── crawl.xpm ├── rules ├── source │ ├── format │ ├── include-binaries │ └── options └── watch ├── debug.h ├── deck-type.h ├── decks.cc ├── decks.h ├── defines.h ├── delay.cc ├── delay.h ├── describe-god.cc ├── describe-god.h ├── describe-spells.cc ├── describe-spells.h ├── describe.cc ├── describe.h ├── description-level-type.h ├── dgl-message.cc ├── dgl-message.h ├── dgn-delve.cc ├── dgn-delve.h ├── dgn-event.cc ├── dgn-event.h ├── dgn-height.cc ├── dgn-height.h ├── dgn-irregular-box.cc ├── dgn-irregular-box.h ├── dgn-layouts.cc ├── dgn-layouts.h ├── dgn-overview.cc ├── dgn-overview.h ├── dgn-proclayouts.cc ├── dgn-proclayouts.h ├── dgn-shoals.cc ├── dgn-shoals.h ├── dgn-swamp.cc ├── dgn-swamp.h ├── directn.cc ├── directn.h ├── disable-type.h ├── dlua.cc ├── dlua.h ├── domino-data.h ├── domino.cc ├── domino.h ├── dungeon-char-type.h ├── dungeon-feature-type.h ├── dungeon.cc ├── dungeon.h ├── duration-data.h ├── duration-type.h ├── enchant-type.h ├── end.cc ├── end.h ├── endianness.h ├── energy-use-type.h ├── english.cc ├── english.h ├── enum.h ├── env.h ├── eq-type-flags.h ├── eq-type.h ├── equipment-type.h ├── errors.cc ├── errors.h ├── evoke.cc ├── evoke.h ├── exclude.cc ├── exclude.h ├── exercise.cc ├── exercise.h ├── externs.h ├── fearmonger.cc ├── feature-data.h ├── feature.cc ├── feature.h ├── fight.cc ├── fight.h ├── files.cc ├── files.h ├── fineff.cc ├── fineff.h ├── fixedarray.h ├── fixedvector.h ├── flang-t.h ├── flood-find.h ├── flush-reason-type.h ├── fontwrapper-ft.cc ├── fontwrapper-ft.h ├── food.cc ├── food.h ├── form-data.h ├── format.cc ├── format.h ├── fprop.cc ├── fprop.h ├── game-chapter.h ├── game-exit-type.h ├── game-options.cc ├── game-options.h ├── game-type.h ├── gender-type.h ├── geom2d.cc ├── geom2d.h ├── ghost.cc ├── ghost.h ├── glwrapper-ogl.cc ├── glwrapper-ogl.h ├── glwrapper.cc ├── glwrapper.h ├── god-abil.cc ├── god-abil.h ├── god-blessing.cc ├── god-blessing.h ├── god-companions.cc ├── god-companions.h ├── god-conduct.cc ├── god-conduct.h ├── god-item.cc ├── god-item.h ├── god-menu.cc ├── god-menu.h ├── god-passive.cc ├── god-passive.h ├── god-prayer.cc ├── god-prayer.h ├── god-type.h ├── god-wrath.cc ├── god-wrath.h ├── hash.cc ├── hash.h ├── hints.cc ├── hints.h ├── hiscores.cc ├── hiscores.h ├── holy-word-source-type.h ├── hunger-state-t.h ├── initfile.cc ├── initfile.h ├── invent.cc ├── invent.h ├── item-name.cc ├── item-name.h ├── item-prop-enum.h ├── item-prop.cc ├── item-prop.h ├── item-status-flag-type.h ├── item-type-id-state-type.h ├── item-use.cc ├── item-use.h ├── items.cc ├── items.h ├── job-data.h ├── job-type.h ├── jobs.cc ├── jobs.h ├── json-wrapper.h ├── json.cc ├── json.h ├── kill-category.h ├── killer-type.h ├── kills.cc ├── kills.h ├── l-colour.cc ├── l-crawl.cc ├── l-debug.cc ├── l-defs.h ├── l-dgn.cc ├── l-dgnbld.cc ├── l-dgnevt.cc ├── l-dgngrd.cc ├── l-dgnit.cc ├── l-dgnlvl.cc ├── l-dgnmon.cc ├── l-dgntil.cc ├── l-feat.cc ├── l-file.cc ├── l-food.cc ├── l-global.cc ├── l-item.cc ├── l-libs.h ├── l-los.cc ├── l-mapgrd.cc ├── l-mapmrk.cc ├── l-moninf.cc ├── l-mons.cc ├── l-option.cc ├── l-spells.cc ├── l-subvault.cc ├── l-travel.cc ├── l-view.cc ├── l-wiz.cc ├── l-you.cc ├── lang-fake.cc ├── lang-fake.h ├── lang-t.h ├── lev-pand.cc ├── lev-pand.h ├── level-state-type.h ├── libconsole.h ├── libgui.cc ├── libunix.cc ├── libunix.h ├── libutil.cc ├── libutil.h ├── libw32c.cc ├── libw32c.h ├── loading-screen.cc ├── loading-screen.h ├── lookup-help.cc ├── lookup-help.h ├── los-def.cc ├── los-def.h ├── los-type.h ├── los.cc ├── los.h ├── losglobal.cc ├── losglobal.h ├── losparam.cc ├── losparam.h ├── luaterp.cc ├── luaterp.h ├── mac ├── Crawl-Info.plist ├── Crawl.icns ├── Makefile.app-bundle ├── crawl ├── mac-app-universal-build ├── mac-release-build ├── mac-release-console-build └── mac-release-tiles-build ├── macro.cc ├── macro.h ├── main.cc ├── makeitem.cc ├── makeitem.h ├── map-cell.h ├── map-feature.h ├── map-knowledge.cc ├── map-knowledge.h ├── map-marker-type.h ├── mapdef.cc ├── mapdef.h ├── mapmark.cc ├── mapmark.h ├── maps.cc ├── maps.h ├── matrix.h ├── maybe-bool.h ├── melee-attack.cc ├── melee-attack.h ├── menu-type.h ├── menu.cc ├── menu.h ├── message-stream.cc ├── message.cc ├── message.h ├── mgen-data.h ├── mgen-enum.h ├── misc.cc ├── misc.h ├── misc ├── CP437 ├── WGL-4 ├── grep-mon.pl ├── grind.sh ├── src-pkg-excludes.lst └── valgrind-suppress.txt ├── mon-abil.cc ├── mon-abil.h ├── mon-act.cc ├── mon-act.h ├── mon-attitude-type.h ├── mon-behv.cc ├── mon-behv.h ├── mon-book.h ├── mon-cast.cc ├── mon-cast.h ├── mon-clone.cc ├── mon-clone.h ├── mon-data.h ├── mon-death.cc ├── mon-death.h ├── mon-ench.cc ├── mon-ench.h ├── mon-enum.h ├── mon-flags.h ├── mon-gear.cc ├── mon-gear.h ├── mon-grow.cc ├── mon-grow.h ├── mon-holy-type.h ├── mon-info.cc ├── mon-info.h ├── mon-inv-type.h ├── mon-movetarget.cc ├── mon-movetarget.h ├── mon-pathfind.cc ├── mon-pathfind.h ├── mon-pick-data.h ├── mon-pick.cc ├── mon-pick.h ├── mon-place.cc ├── mon-place.h ├── mon-poly.cc ├── mon-poly.h ├── mon-project.cc ├── mon-project.h ├── mon-speak.cc ├── mon-speak.h ├── mon-spell.h ├── mon-tentacle.cc ├── mon-tentacle.h ├── mon-transit.cc ├── mon-transit.h ├── mon-util.cc ├── mon-util.h ├── monster-type.h ├── monster.cc ├── monster.h ├── montravel-target-type.h ├── movement.cc ├── movement.h ├── mpr.h ├── msvc.h ├── mutant-beast.h ├── mutation-data.h ├── mutation-type.h ├── mutation.cc ├── mutation.h ├── nearby-danger.cc ├── nearby-danger.h ├── newgame-def.h ├── newgame.cc ├── newgame.h ├── ng-init.cc ├── ng-init.h ├── ng-input.cc ├── ng-input.h ├── ng-restr.cc ├── ng-restr.h ├── ng-setup.cc ├── ng-setup.h ├── ng-wanderer.cc ├── ng-wanderer.h ├── noise.h ├── notes.cc ├── notes.h ├── object-class-type.h ├── operation-types.h ├── options.h ├── orb-type.h ├── orb.cc ├── orb.h ├── ouch.cc ├── ouch.h ├── output.cc ├── output.h ├── package.cc ├── package.h ├── pattern.cc ├── pattern.h ├── pcg.cc ├── pcg.h ├── perlin.cc ├── perlin.h ├── place-info.cc ├── place-info.h ├── place.cc ├── place.h ├── platform.h ├── playable.cc ├── playable.h ├── player-act.cc ├── player-equip.cc ├── player-equip.h ├── player-reacts.cc ├── player-reacts.h ├── player-save-info.h ├── player-stats.cc ├── player-stats.h ├── player.cc ├── player.h ├── potion-type.h ├── potion.cc ├── potion.h ├── prebuilt ├── levcomp.lex.cc ├── levcomp.tab.cc └── levcomp.tab.h ├── prompt.cc ├── prompt.h ├── pronoun-type.h ├── props.h ├── quiver.cc ├── quiver.h ├── randbook.cc ├── randbook.h ├── random-pick.h ├── random-var.cc ├── random-var.h ├── random.cc ├── random.h ├── ranged-attack.cc ├── ranged-attack.h ├── ray.cc ├── ray.h ├── reach-type.h ├── recite-eligibility.h ├── recite-type.h ├── religion-enum.h ├── religion.cc ├── religion.h ├── rltiles ├── .gitignore ├── Makefile ├── UNUSED │ ├── armour │ │ ├── boots_iron2.png │ │ ├── cap1.png │ │ ├── cornuthaum.png │ │ ├── dwarven_buckler1.png │ │ ├── dwarven_buckler2.png │ │ ├── elven_buckler1.png │ │ ├── elven_buckler2.png │ │ ├── gauntlet1.png │ │ ├── orcish_plate2.png │ │ ├── plumed_helmet.png │ │ └── shield2.png │ ├── emissaries │ │ ├── elyvilon.png │ │ ├── okawaru.png │ │ ├── trog.png │ │ ├── tso.png │ │ ├── vehumet.png │ │ └── zin.png │ ├── features │ │ ├── altar.png │ │ ├── altar_ashenzari.png │ │ ├── altar_base.png │ │ ├── branch_stairs.png │ │ ├── gas_trap.png │ │ ├── granite_stump.png │ │ ├── gravestone_ornate.png │ │ ├── hive_gone.png │ │ ├── hive_portal.png │ │ ├── lava.png │ │ ├── machine_tukima.png │ │ ├── pedestal.png │ │ ├── rock_stairs_down.png │ │ ├── rock_stairs_up.png │ │ ├── sarcophagus_open.png │ │ ├── shadow.png │ │ ├── shadow_dormant.png │ │ ├── statue_bases.png │ │ ├── transparent_flesh.png │ │ ├── trap_magical.png │ │ └── trap_mechanical.png │ ├── floor │ │ └── sigils │ │ │ ├── V-shaped_E.png │ │ │ ├── V-shaped_N.png │ │ │ ├── V-shaped_S.png │ │ │ ├── V-shaped_W.png │ │ │ ├── X-shaped.png │ │ │ ├── Y-shaped_E.png │ │ │ ├── Y-shaped_N.png │ │ │ ├── Y-shaped_S.png │ │ │ ├── Y-shaped_W.png │ │ │ ├── Y-shaped_left.png │ │ │ ├── Y-shaped_right.png │ │ │ ├── algiz.png │ │ │ ├── algiz_left.png │ │ │ ├── algiz_right.png │ │ │ ├── angle_wide_E_NW.png │ │ │ ├── angle_wide_E_SW.png │ │ │ ├── angle_wide_N_SE.png │ │ │ ├── angle_wide_N_SW.png │ │ │ ├── angle_wide_S_NE.png │ │ │ ├── angle_wide_S_NW.png │ │ │ ├── angle_wide_W_NE.png │ │ │ ├── angle_wide_W_SE.png │ │ │ ├── circle.png │ │ │ ├── cross.png │ │ │ ├── curve_N_E.png │ │ │ ├── curve_N_W.png │ │ │ ├── curve_S_E.png │ │ │ ├── curve_S_W.png │ │ │ ├── rhombus.png │ │ │ ├── sharp_E_NE.png │ │ │ ├── sharp_N_E.png │ │ │ ├── sharp_N_W.png │ │ │ ├── sharp_S_E.png │ │ │ ├── sharp_S_W.png │ │ │ ├── sharp_W_SW.png │ │ │ ├── straight_E_NE_SW.png │ │ │ ├── straight_E_W.png │ │ │ ├── straight_E_W_NW_SE.png │ │ │ └── straight_N_S.png │ ├── food │ │ ├── i-mutation.png │ │ ├── lump_of_royal_jelly.png │ │ ├── lychee.png │ │ ├── piece_of_ambrosia.png │ │ ├── rambutan.png │ │ └── sultana.png │ ├── gui │ │ ├── bottle_blood.png │ │ ├── divinations.png │ │ ├── droplast.png │ │ ├── elyvilon_lesser_healing.png │ │ ├── evoke_teleport.png │ │ ├── evoke_teleport_control.png │ │ ├── mass_confusion.png │ │ ├── mummy_restoration.png │ │ ├── pakellas_drain_magic.png │ │ ├── pakellas_major_device_surge.png │ │ ├── pakellas_minor_device_surge.png │ │ ├── pakellas_sap_magic.png │ │ ├── stabbing.png │ │ ├── tab_label_item_sword.png │ │ ├── tab_label_memorise_M.png │ │ ├── tab_label_metacommands.png │ │ ├── tab_label_other.png │ │ ├── tab_label_spell_flame.png │ │ ├── tab_selected_square.png │ │ ├── tab_unselected_square.png │ │ ├── tavern.png │ │ ├── title_omndra_stone_soup.png │ │ ├── title_omndra_zot_demon.png │ │ ├── traps.png │ │ ├── trog_burn_spellbooks.png │ │ └── zotdef_dart_trap.png │ ├── monsters │ │ ├── alligator_baby.png │ │ ├── antaeus.png │ │ ├── anubis_guard.png │ │ ├── asmodeus.small.png │ │ ├── blork_the_orc1.png │ │ ├── blue_devil.png │ │ ├── boring_beetle.png │ │ ├── brain_worm.png │ │ ├── bumblebee.png │ │ ├── cacodemon.png │ │ ├── centaur_paladin.png │ │ ├── cerebov.png │ │ ├── chilling_statue.png │ │ ├── crimson_imp.png │ │ ├── deep_dwarf_artificer.png │ │ ├── deep_dwarf_berserker.png │ │ ├── deep_dwarf_death_knight.png │ │ ├── deep_elf_conjurer.png │ │ ├── deep_elf_fighter.png │ │ ├── deep_elf_priest.png │ │ ├── deep_elf_summoner.png │ │ ├── deep_troll_berserker.png │ │ ├── dispater.small.png │ │ ├── eastern_dragon.png │ │ ├── enchantress_human.png │ │ ├── ereshkigal.small.png │ │ ├── firebrand.png │ │ ├── flaming_corpse.png │ │ ├── forest_drake.png │ │ ├── formicid_venom_mage.png │ │ ├── giant_amoeba.png │ │ ├── giant_centipede.png │ │ ├── giant_firefly.png │ │ ├── giant_goldfish.png │ │ ├── giant_newt.png │ │ ├── gloorx_vloq.png │ │ ├── gnome.png │ │ ├── grand_avatar.png │ │ ├── grinder.png │ │ ├── guardian-eyeclosed-flame1.png │ │ ├── guardian-eyeclosed-flame2.png │ │ ├── guardian-eyeclosed-flame3.png │ │ ├── guardian-eyeclosed-flame4.png │ │ ├── guardian-eyeopen-flame1.png │ │ ├── guardian-eyeopen-flame2.png │ │ ├── guardian-eyeopen-flame3.png │ │ ├── guardian-eyeopen-flame4.png │ │ ├── hellwing.png │ │ ├── holy_dragon.png │ │ ├── hydrataur.png │ │ ├── ice_devil.png │ │ ├── iron_imp.png │ │ ├── jellyfish.png │ │ ├── labrat_unseen.png │ │ ├── lava_fish.png │ │ ├── lava_worm.png │ │ ├── lemure.png │ │ ├── leshy.png │ │ ├── lom_lobon.png │ │ ├── michael.png │ │ ├── midge.png │ │ ├── mnoleg.png │ │ ├── moth_of_suppression.png │ │ ├── mutant_beast.png │ │ ├── naga_warrior_unique.png │ │ ├── neqoxec.png │ │ ├── norris.png │ │ ├── norris_with_board.png │ │ ├── octopode_crusher.png │ │ ├── ophan.png │ │ ├── phoenix.png │ │ ├── plants │ │ │ ├── bloom_plant_01.png │ │ │ ├── bloom_plant_02.png │ │ │ ├── flytrap_plant_digest_morph.png │ │ │ ├── flytrap_plant_digest_morph_mellow.png │ │ │ ├── flytrap_plant_open_morph.png │ │ │ ├── flytrap_plant_open_morph_mellow.png │ │ │ ├── fruit_plant_01.png │ │ │ ├── fruit_plant_02.png │ │ │ ├── magic_mushroom_01.png │ │ │ ├── magic_mushroom_02.png │ │ │ ├── magic_mushroom_03.png │ │ │ ├── magic_mushroom_04.png │ │ │ ├── magic_mushroom_05.png │ │ │ └── poison_pollen.png │ │ ├── raven.png │ │ ├── rotting_devil.png │ │ ├── rotting_hulk.png │ │ ├── salamander_firebrand.png │ │ ├── salamander_stormcaller.png │ │ ├── shadow_fiend.png │ │ ├── shadow_imp.png │ │ ├── shark.png │ │ ├── shedu.png │ │ ├── sheep.png │ │ ├── silver_star.png │ │ ├── singularity1.png │ │ ├── singularity2.png │ │ ├── singularity3.png │ │ ├── singularity4.png │ │ ├── snail_statue.png │ │ ├── spider.png │ │ ├── spiny_frog.png │ │ ├── spiny_worm.png │ │ ├── spooky_statue.png │ │ ├── spriggan_assassin.png │ │ ├── spriggan_enchanter.png │ │ ├── spriggan_rider.png │ │ ├── thorn_lotus.png │ │ ├── tiamat_black.png │ │ ├── tiamat_blue.png │ │ ├── tiamat_green.png │ │ ├── tiamat_grey.png │ │ ├── tiamat_mottled.png │ │ ├── tiamat_pale.png │ │ ├── tiamat_purple.png │ │ ├── tiamat_red.png │ │ ├── tiamat_white.png │ │ ├── tiamat_yellow.png │ │ ├── tormentor.png │ │ ├── trapdoor_spider.png │ │ ├── unborn.png │ │ ├── vapour.png │ │ ├── war_dog.png │ │ ├── white_imp.png │ │ ├── wight_king.png │ │ └── wiglaf.png │ ├── other │ │ ├── acid_venom.png │ │ ├── demon_pentagram-large1.png │ │ ├── demon_pentagram-large2.png │ │ ├── demon_pentagram-large3.png │ │ ├── demon_pentagram-large4.png │ │ ├── demon_pentagram-large5.png │ │ ├── drain0.png │ │ ├── drain1.png │ │ ├── drain2.png │ │ ├── drain_red0.png │ │ ├── drain_red1.png │ │ ├── drain_red2.png │ │ ├── eye_filled_portal.png │ │ ├── gold_sparkles1.png │ │ ├── gold_sparkles2.png │ │ ├── gold_sparkles3.png │ │ ├── goldaura0.png │ │ ├── goldaura1.png │ │ ├── goldaura2.png │ │ ├── i-c-flight.png │ │ ├── i-clarity.png │ │ ├── i-cold.png │ │ ├── i-conservation.png │ │ ├── i-deck_changes.png │ │ ├── i-deck_defense.png │ │ ├── i-deck_dungeons.png │ │ ├── i-deck_war.png │ │ ├── i-deck_wonders.png │ │ ├── i-detect_curse.png │ │ ├── i-dragon_slaying.png │ │ ├── i-fire.png │ │ ├── i-frost.png │ │ ├── i-heal-wounds.png │ │ ├── i-hunger.png │ │ ├── i-invisibility.png │ │ ├── i-levitation.png │ │ ├── i-magic_darts.png │ │ ├── i-r-lightning.png │ │ ├── i-r-mutation.png │ │ ├── i-rod_destruction_ice.png │ │ ├── i-rod_discovery.png │ │ ├── i-stasis.png │ │ ├── i-sustenance.png │ │ ├── magic_lamp.png │ │ ├── misc_bishop.png │ │ ├── misc_chesspiece.png │ │ ├── misc_deck.png │ │ ├── misc_deck_legendary.png │ │ ├── misc_king.png │ │ ├── misc_knight.png │ │ ├── misc_pawn.png │ │ ├── misc_queen.png │ │ ├── misc_rook.png │ │ ├── misc_thimble.png │ │ ├── reaping-2.png │ │ ├── reaping-3.png │ │ ├── sleeping2.png │ │ ├── sleeping_full.png │ │ ├── spwpn_sceptre_of_asmodeus2.png │ │ ├── spwpn_staff_of_dispater2.png │ │ ├── suppressed.png │ │ └── tried.png │ ├── spells │ │ ├── abjuration.png │ │ ├── banishment.png │ │ ├── bone_shards.png │ │ ├── components │ │ │ ├── bird.png │ │ │ ├── eye.png │ │ │ ├── hand3.png │ │ │ ├── hand4.png │ │ │ ├── hand5.png │ │ │ ├── ice.png │ │ │ ├── stone.png │ │ │ └── stone_cracked.png │ │ ├── condensation_shield.png │ │ ├── controlled_teleport.png │ │ ├── cure_poison.png │ │ ├── divination │ │ │ ├── detect_creatures.png │ │ │ ├── detect_curse.png │ │ │ └── identify.png │ │ ├── evaporate.png │ │ ├── forceful_dismissal.png │ │ ├── mystic_mark.png │ │ ├── orb_of_destruction_big.png │ │ ├── orb_of_destruction_small.png │ │ ├── phase_shift.png │ │ ├── portal.png │ │ ├── singularity.png │ │ ├── stoneskin.png │ │ ├── sublimation_of_blood.png │ │ ├── summon_elemental.png │ │ ├── tomb_of_doroklohe.png │ │ └── warp_weapon.png │ ├── weapons │ │ ├── ancient_sword.png │ │ ├── bardiche4.png │ │ ├── bardiche5.png │ │ ├── battle_axe4.png │ │ ├── battle_axe5.png │ │ ├── battle_axe6.png │ │ ├── battle_axe7.png │ │ ├── broad_axe4.png │ │ ├── broad_axe5.png │ │ ├── broad_axe6.png │ │ ├── broad_axe7.png │ │ ├── claymore.png │ │ ├── claymore2.png │ │ ├── claymore3.png │ │ ├── claymore_blessed.png │ │ ├── cutlass1.png │ │ ├── cutlass2.png │ │ ├── cutlass3.png │ │ ├── cutlass4.png │ │ ├── cutlass5.png │ │ ├── cutlass6.png │ │ ├── cutlass7.png │ │ ├── cutlass8.png │ │ ├── cutlass9.png │ │ ├── dagger6.png │ │ ├── dagger7.png │ │ ├── eveningstar4.png │ │ ├── eveningstar5.png │ │ ├── eveningstar6.png │ │ ├── eveningstar7.png │ │ ├── executioner_axe4.png │ │ ├── executioner_axe5.png │ │ ├── executioner_axe6.png │ │ ├── executioner_axe7.png │ │ ├── falchion4.png │ │ ├── falchion5.png │ │ ├── falchion6.png │ │ ├── falchion7.png │ │ ├── flail6.png │ │ ├── flail7.png │ │ ├── golden_sword.png │ │ ├── greatsword3.png │ │ ├── greatsword4.png │ │ ├── halberd4.png │ │ ├── halberd5.png │ │ ├── hammer1.png │ │ ├── hammer2.png │ │ ├── hammer3.png │ │ ├── katana1.png │ │ ├── katana2.png │ │ ├── long_sword5.png │ │ ├── long_sword6.png │ │ ├── long_sword7.png │ │ ├── mace7.png │ │ ├── morningstar4.png │ │ ├── morningstar5.png │ │ ├── morningstar6.png │ │ ├── morningstar7.png │ │ ├── short_sword5.png │ │ ├── short_sword6.png │ │ ├── short_sword7.png │ │ ├── spear4.png │ │ ├── spear5.png │ │ ├── spear6.png │ │ ├── spear7.png │ │ ├── spiked_flail1.png │ │ ├── spiked_flail2.png │ │ ├── spiked_flail3.png │ │ ├── spwpn_wrath_of_trog2.png │ │ ├── war_axe4.png │ │ ├── war_axe5.png │ │ ├── war_axe6.png │ │ └── war_axe7.png │ └── worn │ │ ├── flail_spike2.png │ │ ├── grinder_cleaver.png │ │ ├── hammer.png │ │ ├── hammer2.png │ │ ├── hammer_one.png │ │ ├── hammer_two.png │ │ ├── shield_draco_knight.png │ │ ├── shield_goblin.png │ │ ├── shield_holy.png │ │ └── spriggan_defshield.png ├── dc-abilities.txt ├── dc-commands.txt ├── dc-corpse.txt ├── dc-demon.txt ├── dc-dngn.txt ├── dc-feat.txt ├── dc-floor.txt ├── dc-gui.txt ├── dc-icons.txt ├── dc-invocations.txt ├── dc-item.txt ├── dc-main.txt ├── dc-misc.txt ├── dc-mon.txt ├── dc-player.txt ├── dc-skills.txt ├── dc-spells.txt ├── dc-tentacles.txt ├── dc-wall.txt ├── dc-zombie.txt ├── dngn │ ├── altars │ │ ├── ashenzari.png │ │ ├── beogh.png │ │ ├── cheibriados.png │ │ ├── dithmenos1.png │ │ ├── dithmenos2.png │ │ ├── dithmenos3.png │ │ ├── dithmenos4.png │ │ ├── ecumenical.png │ │ ├── elyvilon.png │ │ ├── fedhas.png │ │ ├── gozag0.png │ │ ├── gozag1.png │ │ ├── gozag2.png │ │ ├── hep0.png │ │ ├── hep1.png │ │ ├── hep2.png │ │ ├── hep3.png │ │ ├── hep4.png │ │ ├── hep5.png │ │ ├── jiyva01.png │ │ ├── jiyva02.png │ │ ├── jiyva03.png │ │ ├── jiyva04.png │ │ ├── jiyva05.png │ │ ├── jiyva06.png │ │ ├── jiyva07.png │ │ ├── jiyva08.png │ │ ├── jiyva09.png │ │ ├── jiyva10.png │ │ ├── jiyva11.png │ │ ├── kikubaaqudgha.png │ │ ├── lugonu.png │ │ ├── makhleb_flame1.png │ │ ├── makhleb_flame2.png │ │ ├── makhleb_flame3.png │ │ ├── makhleb_flame4.png │ │ ├── makhleb_flame5.png │ │ ├── makhleb_flame6.png │ │ ├── makhleb_flame7.png │ │ ├── makhleb_flame8.png │ │ ├── nemelex1.png │ │ ├── nemelex2.png │ │ ├── nemelex3.png │ │ ├── nemelex4.png │ │ ├── nemelex5.png │ │ ├── okawaru.png │ │ ├── pakellas0.png │ │ ├── pakellas1.png │ │ ├── pakellas2.png │ │ ├── pakellas3.png │ │ ├── qazlal0.png │ │ ├── qazlal1.png │ │ ├── qazlal2.png │ │ ├── ru.png │ │ ├── shining_one.png │ │ ├── sif_muna1.png │ │ ├── sif_muna2.png │ │ ├── sif_muna3.png │ │ ├── sif_muna4.png │ │ ├── trog.png │ │ ├── unknown.png │ │ ├── uskayaw.png │ │ ├── vehumet1.png │ │ ├── vehumet2.png │ │ ├── wu_jian.png │ │ ├── xom0.png │ │ ├── xom1.png │ │ ├── xom2.png │ │ ├── xom3.png │ │ ├── xom4.png │ │ ├── xom5.png │ │ ├── xom6.png │ │ ├── xom7.png │ │ ├── yredelemnul.png │ │ └── zin.png │ ├── blood_fountain.png │ ├── blood_fountain2.png │ ├── blue_fountain.png │ ├── blue_fountain2.png │ ├── doors │ │ ├── closed_clear_door.png │ │ ├── closed_door.png │ │ ├── closed_door_crypt.png │ │ ├── fleshy_orifice_closed.png │ │ ├── fleshy_orifice_open.png │ │ ├── gate_closed_clear_left.png │ │ ├── gate_closed_clear_middle.png │ │ ├── gate_closed_clear_right.png │ │ ├── gate_closed_left.png │ │ ├── gate_closed_left_crypt.png │ │ ├── gate_closed_middle.png │ │ ├── gate_closed_middle_crypt.png │ │ ├── gate_closed_right.png │ │ ├── gate_closed_right_crypt.png │ │ ├── gate_open_clear_left.png │ │ ├── gate_open_clear_middle.png │ │ ├── gate_open_clear_right.png │ │ ├── gate_open_left.png │ │ ├── gate_open_left_crypt.png │ │ ├── gate_open_middle.png │ │ ├── gate_open_middle_crypt.png │ │ ├── gate_open_right.png │ │ ├── gate_open_right_crypt.png │ │ ├── gate_runed_clear_left.png │ │ ├── gate_runed_clear_middle.png │ │ ├── gate_runed_clear_right.png │ │ ├── gate_runed_left.png │ │ ├── gate_runed_middle.png │ │ ├── gate_runed_right.png │ │ ├── gate_sealed_clear_left.png │ │ ├── gate_sealed_clear_middle.png │ │ ├── gate_sealed_clear_right.png │ │ ├── gate_sealed_left.png │ │ ├── gate_sealed_middle.png │ │ ├── gate_sealed_right.png │ │ ├── open_clear_door.png │ │ ├── open_door.png │ │ ├── open_door_crypt.png │ │ ├── runed_clear_door.png │ │ ├── runed_door.png │ │ ├── sealed_clear_door.png │ │ ├── sealed_door.png │ │ ├── vgate_closed_clear_down.png │ │ ├── vgate_closed_clear_middle.png │ │ ├── vgate_closed_clear_up.png │ │ ├── vgate_closed_down.png │ │ ├── vgate_closed_down_crypt.png │ │ ├── vgate_closed_middle.png │ │ ├── vgate_closed_middle_crypt.png │ │ ├── vgate_closed_up.png │ │ ├── vgate_closed_up_crypt.png │ │ ├── vgate_open_clear_down.png │ │ ├── vgate_open_clear_middle.png │ │ ├── vgate_open_clear_up.png │ │ ├── vgate_open_down.png │ │ ├── vgate_open_down_crypt.png │ │ ├── vgate_open_middle.png │ │ ├── vgate_open_middle_crypt.png │ │ ├── vgate_open_up.png │ │ ├── vgate_open_up_crypt.png │ │ ├── vgate_runed_clear_down.png │ │ ├── vgate_runed_clear_middle.png │ │ ├── vgate_runed_clear_up.png │ │ ├── vgate_runed_down.png │ │ ├── vgate_runed_middle.png │ │ ├── vgate_runed_up.png │ │ ├── vgate_sealed_clear_down.png │ │ ├── vgate_sealed_clear_middle.png │ │ ├── vgate_sealed_clear_up.png │ │ ├── vgate_sealed_down.png │ │ ├── vgate_sealed_middle.png │ │ └── vgate_sealed_up.png │ ├── dry_fountain.png │ ├── floor │ │ ├── acidic_floor0.png │ │ ├── acidic_floor1.png │ │ ├── acidic_floor2.png │ │ ├── acidic_floor3.png │ │ ├── black_cobalt01.png │ │ ├── black_cobalt02.png │ │ ├── black_cobalt03.png │ │ ├── black_cobalt04.png │ │ ├── black_cobalt05.png │ │ ├── black_cobalt06.png │ │ ├── black_cobalt07.png │ │ ├── black_cobalt08.png │ │ ├── black_cobalt09.png │ │ ├── black_cobalt10.png │ │ ├── black_cobalt11.png │ │ ├── black_cobalt12.png │ │ ├── bog_green0.png │ │ ├── bog_green1.png │ │ ├── bog_green2.png │ │ ├── bog_green3.png │ │ ├── cage0.png │ │ ├── cage1.png │ │ ├── cage2.png │ │ ├── cage3.png │ │ ├── cage4.png │ │ ├── cage5.png │ │ ├── cobble_blood1.png │ │ ├── cobble_blood10.png │ │ ├── cobble_blood11.png │ │ ├── cobble_blood12.png │ │ ├── cobble_blood2.png │ │ ├── cobble_blood3.png │ │ ├── cobble_blood4.png │ │ ├── cobble_blood5.png │ │ ├── cobble_blood6.png │ │ ├── cobble_blood7.png │ │ ├── cobble_blood8.png │ │ ├── cobble_blood9.png │ │ ├── crypt0.png │ │ ├── crypt1.png │ │ ├── crypt10.png │ │ ├── crypt11.png │ │ ├── crypt2.png │ │ ├── crypt3.png │ │ ├── crypt4.png │ │ ├── crypt5.png │ │ ├── crypt6.png │ │ ├── crypt7.png │ │ ├── crypt8.png │ │ ├── crypt9.png │ │ ├── crypt_domino_1a.png │ │ ├── crypt_domino_1b.png │ │ ├── crypt_domino_2a.png │ │ ├── crypt_domino_3a.png │ │ ├── crypt_domino_4a.png │ │ ├── crypt_domino_4b.png │ │ ├── crypt_domino_5a.png │ │ ├── crypt_domino_6a.png │ │ ├── crypt_domino_7a.png │ │ ├── crypt_domino_8a.png │ │ ├── crystal_floor0.png │ │ ├── crystal_floor1.png │ │ ├── crystal_floor2.png │ │ ├── crystal_floor3.png │ │ ├── crystal_floor4.png │ │ ├── crystal_floor5.png │ │ ├── demonic_red1.png │ │ ├── demonic_red2.png │ │ ├── demonic_red3.png │ │ ├── demonic_red4.png │ │ ├── demonic_red5.png │ │ ├── demonic_red6.png │ │ ├── demonic_red7.png │ │ ├── demonic_red8.png │ │ ├── demonic_red9.png │ │ ├── dirt0.png │ │ ├── dirt1.png │ │ ├── dirt2.png │ │ ├── dirt_e.png │ │ ├── dirt_full.png │ │ ├── dirt_n.png │ │ ├── dirt_ne.png │ │ ├── dirt_nw.png │ │ ├── dirt_s.png │ │ ├── dirt_se.png │ │ ├── dirt_sw.png │ │ ├── dirt_w.png │ │ ├── endless_salt0.png │ │ ├── endless_salt1.png │ │ ├── endless_salt2.png │ │ ├── endless_salt3.png │ │ ├── etched0.png │ │ ├── etched1.png │ │ ├── etched2.png │ │ ├── etched3.png │ │ ├── etched4.png │ │ ├── etched5.png │ │ ├── floor_nerves0.png │ │ ├── floor_nerves1.png │ │ ├── floor_nerves2.png │ │ ├── floor_nerves3.png │ │ ├── floor_nerves4.png │ │ ├── floor_nerves5.png │ │ ├── floor_nerves6.png │ │ ├── floor_vines0.png │ │ ├── floor_vines1.png │ │ ├── floor_vines2.png │ │ ├── floor_vines3.png │ │ ├── floor_vines4.png │ │ ├── floor_vines5.png │ │ ├── floor_vines6.png │ │ ├── frozen0.png │ │ ├── frozen1.png │ │ ├── frozen10.png │ │ ├── frozen11.png │ │ ├── frozen12.png │ │ ├── frozen2.png │ │ ├── frozen3.png │ │ ├── frozen4.png │ │ ├── frozen5.png │ │ ├── frozen6.png │ │ ├── frozen7.png │ │ ├── frozen8.png │ │ ├── frozen9.png │ │ ├── gauntlet0.png │ │ ├── gauntlet1.png │ │ ├── gauntlet2.png │ │ ├── gauntlet3.png │ │ ├── grass │ │ │ ├── grass0-dirt-mix1.png │ │ │ ├── grass0-dirt-mix2.png │ │ │ ├── grass0-dirt-mix3.png │ │ │ ├── grass0.png │ │ │ ├── grass1.png │ │ │ ├── grass2.png │ │ │ ├── grass_e.png │ │ │ ├── grass_flowers_blue1.png │ │ │ ├── grass_flowers_blue2.png │ │ │ ├── grass_flowers_blue3.png │ │ │ ├── grass_flowers_red1.png │ │ │ ├── grass_flowers_red2.png │ │ │ ├── grass_flowers_red3.png │ │ │ ├── grass_flowers_yellow1.png │ │ │ ├── grass_flowers_yellow2.png │ │ │ ├── grass_flowers_yellow3.png │ │ │ ├── grass_full.png │ │ │ ├── grass_n.png │ │ │ ├── grass_ne.png │ │ │ ├── grass_nw.png │ │ │ ├── grass_s.png │ │ │ ├── grass_se.png │ │ │ ├── grass_sw.png │ │ │ └── grass_w.png │ │ ├── green_bones01.png │ │ ├── green_bones02.png │ │ ├── green_bones03.png │ │ ├── green_bones04.png │ │ ├── green_bones05.png │ │ ├── green_bones06.png │ │ ├── green_bones07.png │ │ ├── green_bones08.png │ │ ├── green_bones09.png │ │ ├── green_bones10.png │ │ ├── green_bones11.png │ │ ├── green_bones12.png │ │ ├── grey_dirt0.png │ │ ├── grey_dirt1.png │ │ ├── grey_dirt2.png │ │ ├── grey_dirt3.png │ │ ├── grey_dirt4.png │ │ ├── grey_dirt5.png │ │ ├── grey_dirt6.png │ │ ├── grey_dirt7.png │ │ ├── grey_dirt_b_0.png │ │ ├── grey_dirt_b_1.png │ │ ├── grey_dirt_b_2.png │ │ ├── grey_dirt_b_3.png │ │ ├── grey_dirt_b_4.png │ │ ├── grey_dirt_b_5.png │ │ ├── grey_dirt_b_6.png │ │ ├── grey_dirt_b_7.png │ │ ├── ice0.png │ │ ├── ice1.png │ │ ├── ice2.png │ │ ├── ice3.png │ │ ├── infernal01.png │ │ ├── infernal02.png │ │ ├── infernal03.png │ │ ├── infernal04.png │ │ ├── infernal05.png │ │ ├── infernal06.png │ │ ├── infernal07.png │ │ ├── infernal08.png │ │ ├── infernal09.png │ │ ├── infernal10.png │ │ ├── infernal11.png │ │ ├── infernal12.png │ │ ├── infernal13.png │ │ ├── infernal14.png │ │ ├── infernal15.png │ │ ├── infernal_blank.png │ │ ├── iron0.png │ │ ├── iron1.png │ │ ├── iron2.png │ │ ├── iron3.png │ │ ├── iron4.png │ │ ├── iron5.png │ │ ├── lair0.png │ │ ├── lair0b.png │ │ ├── lair1.png │ │ ├── lair1b.png │ │ ├── lair2.png │ │ ├── lair2b.png │ │ ├── lair3.png │ │ ├── lair3b.png │ │ ├── lair4.png │ │ ├── lair4b.png │ │ ├── lair5.png │ │ ├── lair5b.png │ │ ├── lair6.png │ │ ├── lair6b.png │ │ ├── lair7.png │ │ ├── lair7b.png │ │ ├── lava00.png │ │ ├── lava01.png │ │ ├── lava02.png │ │ ├── lava03.png │ │ ├── lava04.png │ │ ├── lava05.png │ │ ├── lava06.png │ │ ├── lava07.png │ │ ├── lava08.png │ │ ├── lava09.png │ │ ├── lava10.png │ │ ├── lava11.png │ │ ├── lava_sea0000.png │ │ ├── lava_sea0001.png │ │ ├── lava_sea0002.png │ │ ├── lava_sea0003.png │ │ ├── lava_sea0004.png │ │ ├── lava_sea0005.png │ │ ├── lava_sea0006.png │ │ ├── lava_sea0007.png │ │ ├── lava_sea0008.png │ │ ├── lava_sea0009.png │ │ ├── lava_sea0010.png │ │ ├── lava_sea0011.png │ │ ├── lava_sea0012.png │ │ ├── lava_sea0013.png │ │ ├── lava_sea0014.png │ │ ├── lava_sea0015.png │ │ ├── limestone0.png │ │ ├── limestone1.png │ │ ├── limestone2.png │ │ ├── limestone3.png │ │ ├── limestone4.png │ │ ├── limestone5.png │ │ ├── limestone6.png │ │ ├── limestone7.png │ │ ├── limestone8.png │ │ ├── limestone9.png │ │ ├── marble_floor1.png │ │ ├── marble_floor2.png │ │ ├── marble_floor3.png │ │ ├── marble_floor4.png │ │ ├── marble_floor5.png │ │ ├── marble_floor6.png │ │ ├── mesh0.png │ │ ├── mesh1.png │ │ ├── mesh2.png │ │ ├── mesh3.png │ │ ├── mosaic0.png │ │ ├── mosaic1.png │ │ ├── mosaic10.png │ │ ├── mosaic11.png │ │ ├── mosaic12.png │ │ ├── mosaic13.png │ │ ├── mosaic14.png │ │ ├── mosaic15.png │ │ ├── mosaic2.png │ │ ├── mosaic3.png │ │ ├── mosaic4.png │ │ ├── mosaic5.png │ │ ├── mosaic6.png │ │ ├── mosaic7.png │ │ ├── mosaic8.png │ │ ├── mosaic9.png │ │ ├── moss0.png │ │ ├── moss1.png │ │ ├── moss2.png │ │ ├── moss3.png │ │ ├── mud0.png │ │ ├── mud1.png │ │ ├── mud2.png │ │ ├── mud3.png │ │ ├── orc0.png │ │ ├── orc1.png │ │ ├── orc2.png │ │ ├── orc3.png │ │ ├── orc4.png │ │ ├── orc5.png │ │ ├── orc6.png │ │ ├── orc7.png │ │ ├── pebble_brown0.png │ │ ├── pebble_brown1.png │ │ ├── pebble_brown2.png │ │ ├── pebble_brown3.png │ │ ├── pebble_brown4.png │ │ ├── pebble_brown5.png │ │ ├── pebble_brown6.png │ │ ├── pebble_brown7.png │ │ ├── pebble_brown8.png │ │ ├── pedestal_e.png │ │ ├── pedestal_full.png │ │ ├── pedestal_n.png │ │ ├── pedestal_ne.png │ │ ├── pedestal_nw.png │ │ ├── pedestal_s.png │ │ ├── pedestal_se.png │ │ ├── pedestal_sw.png │ │ ├── pedestal_w.png │ │ ├── rect_gray0.png │ │ ├── rect_gray1.png │ │ ├── rect_gray2.png │ │ ├── rect_gray3.png │ │ ├── rough_red0.png │ │ ├── rough_red1.png │ │ ├── rough_red2.png │ │ ├── rough_red3.png │ │ ├── runelight0.png │ │ ├── runelight1.png │ │ ├── runelight2.png │ │ ├── runelight3.png │ │ ├── salt0.png │ │ ├── salt1.png │ │ ├── salt2.png │ │ ├── salt3.png │ │ ├── salt4.png │ │ ├── salt5.png │ │ ├── sand1.png │ │ ├── sand2.png │ │ ├── sand3.png │ │ ├── sand4.png │ │ ├── sand5.png │ │ ├── sand6.png │ │ ├── sand7.png │ │ ├── sand8.png │ │ ├── sandstone_floor0.png │ │ ├── sandstone_floor1.png │ │ ├── sandstone_floor2.png │ │ ├── sandstone_floor3.png │ │ ├── sandstone_floor4.png │ │ ├── sandstone_floor5.png │ │ ├── sandstone_floor6.png │ │ ├── sandstone_floor7.png │ │ ├── sandstone_floor8.png │ │ ├── sandstone_floor9.png │ │ ├── sigil_Y_E.png │ │ ├── sigil_Y_N.png │ │ ├── sigil_Y_S.png │ │ ├── sigil_Y_W.png │ │ ├── sigil_Y_left.png │ │ ├── sigil_Y_right.png │ │ ├── sigil_algiz_left.png │ │ ├── sigil_algiz_right.png │ │ ├── sigil_circle.png │ │ ├── sigil_cross.png │ │ ├── sigil_curve_N_E.png │ │ ├── sigil_curve_N_W.png │ │ ├── sigil_curve_S_E.png │ │ ├── sigil_curve_S_W.png │ │ ├── sigil_rhombus.png │ │ ├── sigil_sharp_E_NE.png │ │ ├── sigil_sharp_W_SW.png │ │ ├── sigil_straight_E_NE_SW.png │ │ ├── sigil_straight_E_W.png │ │ ├── sigil_straight_E_W_NE_NW.png │ │ ├── sigil_straight_NE_SW.png │ │ ├── sigil_straight_NW_SE.png │ │ ├── sigil_straight_N_S.png │ │ ├── sigil_wide_E_NW.png │ │ ├── sigil_wide_E_SW.png │ │ ├── sigil_wide_N_SE.png │ │ ├── sigil_wide_N_SW.png │ │ ├── sigil_wide_S_NE.png │ │ ├── sigil_wide_S_NW.png │ │ ├── sigil_wide_W_NE.png │ │ ├── sigil_wide_W_SE.png │ │ ├── slime_overlay_E.png │ │ ├── slime_overlay_N.png │ │ ├── slime_overlay_NE.png │ │ ├── slime_overlay_NW.png │ │ ├── slime_overlay_S.png │ │ ├── slime_overlay_SE.png │ │ ├── slime_overlay_SW.png │ │ ├── slime_overlay_W.png │ │ ├── snake-a0.png │ │ ├── snake-a1.png │ │ ├── snake-a2.png │ │ ├── snake-a3.png │ │ ├── snake-c0.png │ │ ├── snake-c1.png │ │ ├── snake-c2.png │ │ ├── snake-c3.png │ │ ├── snake-d0.png │ │ ├── snake-d1.png │ │ ├── snake-d2.png │ │ ├── snake-d3.png │ │ ├── spider00.png │ │ ├── spider01.png │ │ ├── spider02.png │ │ ├── spider03.png │ │ ├── spider04.png │ │ ├── spider05.png │ │ ├── spider06.png │ │ ├── spider07.png │ │ ├── spider08.png │ │ ├── spider09.png │ │ ├── spider10.png │ │ ├── spider11.png │ │ ├── swamp0.png │ │ ├── swamp1.png │ │ ├── swamp2.png │ │ ├── swamp3.png │ │ ├── tomb0.png │ │ ├── tomb1.png │ │ ├── tomb2.png │ │ ├── tomb3.png │ │ ├── tutorial_pad.png │ │ ├── volcanic_floor0.png │ │ ├── volcanic_floor1.png │ │ ├── volcanic_floor2.png │ │ ├── volcanic_floor3.png │ │ ├── volcanic_floor4.png │ │ ├── volcanic_floor5.png │ │ ├── volcanic_floor6.png │ │ ├── white_marble0.png │ │ ├── white_marble1.png │ │ ├── white_marble2.png │ │ ├── white_marble3.png │ │ ├── white_marble4.png │ │ ├── white_marble5.png │ │ ├── white_marble6.png │ │ ├── white_marble7.png │ │ ├── white_marble8.png │ │ ├── white_marble9.png │ │ ├── woodground01.png │ │ ├── woodground02.png │ │ ├── woodground03.png │ │ ├── woodground04.png │ │ ├── woodground05.png │ │ ├── woodground06.png │ │ ├── woodground07.png │ │ ├── woodground08.png │ │ └── woodground09.png │ ├── gateways │ │ ├── abyssal_stair.png │ │ ├── bailey_gone.png │ │ ├── bailey_portal.png │ │ ├── bazaar_gone.png │ │ ├── bazaar_portal.png │ │ ├── desolation_portal.png │ │ ├── desolation_portal_closed.png │ │ ├── enter.png │ │ ├── enter_abyss1.png │ │ ├── enter_abyss2.png │ │ ├── enter_abyss3.png │ │ ├── enter_cocytus1.png │ │ ├── enter_cocytus2.png │ │ ├── enter_cocytus3.png │ │ ├── enter_crypt.png │ │ ├── enter_depths.png │ │ ├── enter_dis1.png │ │ ├── enter_dis2.png │ │ ├── enter_dis3.png │ │ ├── enter_elf.png │ │ ├── enter_gehenna1.png │ │ ├── enter_gehenna2.png │ │ ├── enter_gehenna3.png │ │ ├── enter_hell1.png │ │ ├── enter_hell2.png │ │ ├── enter_hell3.png │ │ ├── enter_lair.png │ │ ├── enter_orc.png │ │ ├── enter_pandemonium.png │ │ ├── enter_shoals.png │ │ ├── enter_slime.png │ │ ├── enter_snake.png │ │ ├── enter_spider.png │ │ ├── enter_swamp.png │ │ ├── enter_tartarus1.png │ │ ├── enter_tartarus2.png │ │ ├── enter_tartarus3.png │ │ ├── enter_temple.png │ │ ├── enter_tomb.png │ │ ├── enter_vaults_closed.png │ │ ├── enter_vaults_open.png │ │ ├── enter_zot_closed.png │ │ ├── enter_zot_open.png │ │ ├── escape_hatch_down.png │ │ ├── escape_hatch_up.png │ │ ├── exit_abyss.png │ │ ├── exit_abyss_flickering.png │ │ ├── exit_crypt.png │ │ ├── exit_dungeon.png │ │ ├── exit_elf.png │ │ ├── exit_lair.png │ │ ├── exit_orc.png │ │ ├── exit_pandemonium.png │ │ ├── exit_pandemonium_flickering.png │ │ ├── exit_shoals.png │ │ ├── exit_slime.png │ │ ├── exit_snake.png │ │ ├── exit_spider.png │ │ ├── exit_swamp.png │ │ ├── exit_temple.png │ │ ├── exit_tomb.png │ │ ├── exit_vaults.png │ │ ├── expired_portal.png │ │ ├── gauntlet_gone.png │ │ ├── gauntlet_portal.png │ │ ├── ice_cave_gone.png │ │ ├── ice_cave_portal.png │ │ ├── one_way_stairs_down.png │ │ ├── one_way_stairs_up.png │ │ ├── ossuary_gone.png │ │ ├── ossuary_portal.png │ │ ├── portal.png │ │ ├── portal_rotated.png │ │ ├── portal_unknown.png │ │ ├── return.png │ │ ├── return_depths.png │ │ ├── return_hell.png │ │ ├── return_vestibule.png │ │ ├── return_zot.png │ │ ├── sealed_stairs_down.png │ │ ├── sealed_stairs_up.png │ │ ├── sewer_portal.png │ │ ├── sewer_portal_rusted.png │ │ ├── shoals_stairs_down.png │ │ ├── shoals_stairs_up.png │ │ ├── starry_portal.png │ │ ├── stone_arch.png │ │ ├── stone_arch_hell.png │ │ ├── stone_stairs_down.png │ │ ├── stone_stairs_up.png │ │ ├── transit_pandemonium.png │ │ ├── trove_gone.png │ │ ├── trove_portal.png │ │ ├── volcano_exit.png │ │ ├── volcano_gone.png │ │ ├── volcano_portal.png │ │ ├── wizlab_gone.png │ │ ├── wizlab_portal0.png │ │ ├── wizlab_portal1.png │ │ ├── wizlab_portal2.png │ │ ├── wizlab_portal3.png │ │ ├── wizlab_portal4.png │ │ ├── wizlab_portal5.png │ │ ├── wizlab_portal6.png │ │ ├── wizlab_portal7.png │ │ ├── zig_portal.png │ │ └── zig_used.png │ ├── grate.png │ ├── shops │ │ ├── abandoned_shop.png │ │ ├── enter_shop.png │ │ ├── shop_armour.png │ │ ├── shop_books.png │ │ ├── shop_food.png │ │ ├── shop_gadgets.png │ │ ├── shop_general.png │ │ ├── shop_jewellery.png │ │ ├── shop_potions.png │ │ ├── shop_scrolls.png │ │ ├── shop_wands.png │ │ └── shop_weapon.png │ ├── sparkling_fountain.png │ ├── sparkling_fountain2.png │ ├── statues │ │ ├── crumbled_column_1.png │ │ ├── crumbled_column_2.png │ │ ├── crumbled_column_3.png │ │ ├── crumbled_column_4.png │ │ ├── crumbled_column_5.png │ │ ├── crumbled_column_6.png │ │ ├── orcish_idol.png │ │ ├── statue_ancient_evil.png │ │ ├── statue_ancient_hero.png │ │ ├── statue_angel.png │ │ ├── statue_archer.png │ │ ├── statue_axe.png │ │ ├── statue_cat.png │ │ ├── statue_centaur.png │ │ ├── statue_cerebov.png │ │ ├── statue_demonic_bust.png │ │ ├── statue_dragon.png │ │ ├── statue_dwarf.png │ │ ├── statue_elephant.png │ │ ├── statue_hydra.png │ │ ├── statue_imp.png │ │ ├── statue_iron.png │ │ ├── statue_maw.png │ │ ├── statue_mermaid.png │ │ ├── statue_naga.png │ │ ├── statue_orb.png │ │ ├── statue_orb_guardian.png │ │ ├── statue_polearm.png │ │ ├── statue_princess.png │ │ ├── statue_sigmund.png │ │ ├── statue_snail.png │ │ ├── statue_sword.png │ │ ├── statue_tengu.png │ │ ├── statue_tentacles.png │ │ ├── statue_triangle.png │ │ ├── statue_twins.png │ │ └── statue_wraith.png │ ├── teleporter.png │ ├── transporter.png │ ├── transporter_landing_site.png │ ├── traps │ │ ├── alarm.png │ │ ├── arrow.png │ │ ├── blade.png │ │ ├── bolt.png │ │ ├── cobweb_E.png │ │ ├── cobweb_ES.png │ │ ├── cobweb_ESW.png │ │ ├── cobweb_EW.png │ │ ├── cobweb_N.png │ │ ├── cobweb_NE.png │ │ ├── cobweb_NES.png │ │ ├── cobweb_NESW.png │ │ ├── cobweb_NEW.png │ │ ├── cobweb_NS.png │ │ ├── cobweb_NSW.png │ │ ├── cobweb_NW.png │ │ ├── cobweb_S.png │ │ ├── cobweb_SW.png │ │ ├── cobweb_W.png │ │ ├── cobweb_none_0.png │ │ ├── cobweb_none_1.png │ │ ├── cobweb_none_2.png │ │ ├── cobweb_none_3.png │ │ ├── cobweb_none_4.png │ │ ├── dart.png │ │ ├── needle.png │ │ ├── net.png │ │ ├── passage_of_golubria.png │ │ ├── pressure_plate.png │ │ ├── shaft.png │ │ ├── spear.png │ │ ├── teleport.png │ │ ├── teleport_permanent.png │ │ └── zot.png │ ├── trees │ │ ├── mangrove1.png │ │ ├── mangrove2.png │ │ ├── mangrove3.png │ │ ├── tree1.png │ │ ├── tree10.png │ │ ├── tree10_red.png │ │ ├── tree11.png │ │ ├── tree12.png │ │ ├── tree13.png │ │ ├── tree14.png │ │ ├── tree14a.png │ │ ├── tree14b.png │ │ ├── tree14c.png │ │ ├── tree15.png │ │ ├── tree15a.png │ │ ├── tree16.png │ │ ├── tree1_dead.png │ │ ├── tree1_lightred.png │ │ ├── tree1_red.png │ │ ├── tree1_yellow.png │ │ ├── tree2.png │ │ ├── tree2_dead.png │ │ ├── tree2_lightred.png │ │ ├── tree2_red.png │ │ ├── tree2_yellow.png │ │ ├── tree3.png │ │ ├── tree4.png │ │ ├── tree5.png │ │ ├── tree6.png │ │ ├── tree6_bright.png │ │ ├── tree6_yellow.png │ │ ├── tree7.png │ │ ├── tree7_red.png │ │ ├── tree8.png │ │ └── tree9.png │ ├── unseen.png │ ├── vaults │ │ ├── brick_dark_eyes.png │ │ ├── brick_dark_leak.png │ │ ├── brick_dark_skeleton.png │ │ ├── dimension_edge.png │ │ ├── disco_ball.png │ │ ├── golden_statue_1.png │ │ ├── golden_statue_2.png │ │ ├── gravestone_blank.png │ │ ├── gravestone_writing1.png │ │ ├── gravestone_writing2.png │ │ ├── sarcophagus_pedestal_left.png │ │ ├── sarcophagus_pedestal_right.png │ │ ├── sarcophagus_sealed.png │ │ ├── statue_elephant_jade.png │ │ ├── statue_iron_golem.png │ │ ├── teleporter_ice_cave.png │ │ └── zshrine.png │ ├── wall │ │ ├── abyss │ │ │ ├── abyss0.png │ │ │ ├── abyss1.png │ │ │ ├── abyss2.png │ │ │ ├── abyss3.png │ │ │ ├── abyss4.png │ │ │ ├── abyss5.png │ │ │ ├── abyss6.png │ │ │ ├── abyss7.png │ │ │ ├── abyss_blue0.png │ │ │ ├── abyss_blue1.png │ │ │ ├── abyss_blue2.png │ │ │ ├── abyss_blue3.png │ │ │ ├── abyss_blue4.png │ │ │ ├── abyss_blue5.png │ │ │ ├── abyss_blue6.png │ │ │ ├── abyss_blue7.png │ │ │ ├── abyss_brown0.png │ │ │ ├── abyss_brown1.png │ │ │ ├── abyss_brown2.png │ │ │ ├── abyss_brown3.png │ │ │ ├── abyss_brown4.png │ │ │ ├── abyss_brown5.png │ │ │ ├── abyss_brown6.png │ │ │ ├── abyss_brown7.png │ │ │ ├── abyss_cyan0.png │ │ │ ├── abyss_cyan1.png │ │ │ ├── abyss_cyan2.png │ │ │ ├── abyss_cyan3.png │ │ │ ├── abyss_cyan4.png │ │ │ ├── abyss_cyan5.png │ │ │ ├── abyss_cyan6.png │ │ │ ├── abyss_cyan7.png │ │ │ ├── abyss_darkgray0.png │ │ │ ├── abyss_darkgray1.png │ │ │ ├── abyss_darkgray2.png │ │ │ ├── abyss_darkgray3.png │ │ │ ├── abyss_darkgray4.png │ │ │ ├── abyss_darkgray5.png │ │ │ ├── abyss_darkgray6.png │ │ │ ├── abyss_darkgray7.png │ │ │ ├── abyss_green0.png │ │ │ ├── abyss_green1.png │ │ │ ├── abyss_green2.png │ │ │ ├── abyss_green3.png │ │ │ ├── abyss_green4.png │ │ │ ├── abyss_green5.png │ │ │ ├── abyss_green6.png │ │ │ ├── abyss_green7.png │ │ │ ├── abyss_lightblue0.png │ │ │ ├── abyss_lightblue1.png │ │ │ ├── abyss_lightblue2.png │ │ │ ├── abyss_lightblue3.png │ │ │ ├── abyss_lightblue4.png │ │ │ ├── abyss_lightblue5.png │ │ │ ├── abyss_lightblue6.png │ │ │ ├── abyss_lightblue7.png │ │ │ ├── abyss_lightcyan0.png │ │ │ ├── abyss_lightcyan1.png │ │ │ ├── abyss_lightcyan2.png │ │ │ ├── abyss_lightcyan3.png │ │ │ ├── abyss_lightcyan4.png │ │ │ ├── abyss_lightcyan5.png │ │ │ ├── abyss_lightcyan6.png │ │ │ ├── abyss_lightcyan7.png │ │ │ ├── abyss_lightgray0.png │ │ │ ├── abyss_lightgray1.png │ │ │ ├── abyss_lightgray2.png │ │ │ ├── abyss_lightgray3.png │ │ │ ├── abyss_lightgray4.png │ │ │ ├── abyss_lightgray5.png │ │ │ ├── abyss_lightgray6.png │ │ │ ├── abyss_lightgray7.png │ │ │ ├── abyss_lightgreen0.png │ │ │ ├── abyss_lightgreen1.png │ │ │ ├── abyss_lightgreen2.png │ │ │ ├── abyss_lightgreen3.png │ │ │ ├── abyss_lightgreen4.png │ │ │ ├── abyss_lightgreen5.png │ │ │ ├── abyss_lightgreen6.png │ │ │ ├── abyss_lightgreen7.png │ │ │ ├── abyss_lightmagenta0.png │ │ │ ├── abyss_lightmagenta1.png │ │ │ ├── abyss_lightmagenta2.png │ │ │ ├── abyss_lightmagenta3.png │ │ │ ├── abyss_lightmagenta4.png │ │ │ ├── abyss_lightmagenta5.png │ │ │ ├── abyss_lightmagenta6.png │ │ │ ├── abyss_lightmagenta7.png │ │ │ ├── abyss_lightred0.png │ │ │ ├── abyss_lightred1.png │ │ │ ├── abyss_lightred2.png │ │ │ ├── abyss_lightred3.png │ │ │ ├── abyss_lightred4.png │ │ │ ├── abyss_lightred5.png │ │ │ ├── abyss_lightred6.png │ │ │ ├── abyss_lightred7.png │ │ │ ├── abyss_magenta0.png │ │ │ ├── abyss_magenta1.png │ │ │ ├── abyss_magenta2.png │ │ │ ├── abyss_magenta3.png │ │ │ ├── abyss_magenta4.png │ │ │ ├── abyss_magenta5.png │ │ │ ├── abyss_magenta6.png │ │ │ ├── abyss_magenta7.png │ │ │ ├── abyss_white0.png │ │ │ ├── abyss_white1.png │ │ │ ├── abyss_white2.png │ │ │ ├── abyss_white3.png │ │ │ ├── abyss_white4.png │ │ │ ├── abyss_white5.png │ │ │ ├── abyss_white6.png │ │ │ ├── abyss_white7.png │ │ │ ├── abyss_yellow0.png │ │ │ ├── abyss_yellow1.png │ │ │ ├── abyss_yellow2.png │ │ │ ├── abyss_yellow3.png │ │ │ ├── abyss_yellow4.png │ │ │ ├── abyss_yellow5.png │ │ │ ├── abyss_yellow6.png │ │ │ └── abyss_yellow7.png │ │ ├── bars_red01.png │ │ ├── bars_red02.png │ │ ├── bars_red03.png │ │ ├── bars_red04.png │ │ ├── bars_red05.png │ │ ├── bars_red06.png │ │ ├── bars_red07.png │ │ ├── bars_red08.png │ │ ├── beehives0.png │ │ ├── beehives1.png │ │ ├── beehives2.png │ │ ├── beehives3.png │ │ ├── beehives4.png │ │ ├── beehives5.png │ │ ├── beehives6.png │ │ ├── beehives7.png │ │ ├── beehives8.png │ │ ├── beehives9.png │ │ ├── brick_brown-vines1.png │ │ ├── brick_brown-vines2.png │ │ ├── brick_brown-vines3.png │ │ ├── brick_brown-vines4.png │ │ ├── brick_brown0.png │ │ ├── brick_brown1.png │ │ ├── brick_brown2.png │ │ ├── brick_brown3.png │ │ ├── brick_brown4.png │ │ ├── brick_brown5.png │ │ ├── brick_brown6.png │ │ ├── brick_brown7.png │ │ ├── brick_dark_1_0.png │ │ ├── brick_dark_1_1.png │ │ ├── brick_dark_1_10.png │ │ ├── brick_dark_1_11.png │ │ ├── brick_dark_1_2.png │ │ ├── brick_dark_1_3.png │ │ ├── brick_dark_1_4.png │ │ ├── brick_dark_1_5.png │ │ ├── brick_dark_1_6.png │ │ ├── brick_dark_1_7.png │ │ ├── brick_dark_1_8.png │ │ ├── brick_dark_1_9.png │ │ ├── brick_dark_2_0.png │ │ ├── brick_dark_2_1.png │ │ ├── brick_dark_2_10.png │ │ ├── brick_dark_2_11.png │ │ ├── brick_dark_2_2.png │ │ ├── brick_dark_2_3.png │ │ ├── brick_dark_2_4.png │ │ ├── brick_dark_2_5.png │ │ ├── brick_dark_2_6.png │ │ ├── brick_dark_2_7.png │ │ ├── brick_dark_2_8.png │ │ ├── brick_dark_2_9.png │ │ ├── brick_dark_3_0.png │ │ ├── brick_dark_3_1.png │ │ ├── brick_dark_3_10.png │ │ ├── brick_dark_3_11.png │ │ ├── brick_dark_3_12.png │ │ ├── brick_dark_3_13.png │ │ ├── brick_dark_3_14.png │ │ ├── brick_dark_3_15.png │ │ ├── brick_dark_3_2.png │ │ ├── brick_dark_3_3.png │ │ ├── brick_dark_3_4.png │ │ ├── brick_dark_3_5.png │ │ ├── brick_dark_3_6.png │ │ ├── brick_dark_3_7.png │ │ ├── brick_dark_3_8.png │ │ ├── brick_dark_3_9.png │ │ ├── brick_dark_4_0.png │ │ ├── brick_dark_4_1.png │ │ ├── brick_dark_4_10.png │ │ ├── brick_dark_4_11.png │ │ ├── brick_dark_4_12.png │ │ ├── brick_dark_4_13.png │ │ ├── brick_dark_4_14.png │ │ ├── brick_dark_4_15.png │ │ ├── brick_dark_4_2.png │ │ ├── brick_dark_4_3.png │ │ ├── brick_dark_4_4.png │ │ ├── brick_dark_4_5.png │ │ ├── brick_dark_4_6.png │ │ ├── brick_dark_4_7.png │ │ ├── brick_dark_4_8.png │ │ ├── brick_dark_4_9.png │ │ ├── brick_dark_5_0.png │ │ ├── brick_dark_5_1.png │ │ ├── brick_dark_5_10.png │ │ ├── brick_dark_5_11.png │ │ ├── brick_dark_5_12.png │ │ ├── brick_dark_5_13.png │ │ ├── brick_dark_5_14.png │ │ ├── brick_dark_5_15.png │ │ ├── brick_dark_5_16.png │ │ ├── brick_dark_5_17.png │ │ ├── brick_dark_5_18.png │ │ ├── brick_dark_5_19.png │ │ ├── brick_dark_5_2.png │ │ ├── brick_dark_5_3.png │ │ ├── brick_dark_5_4.png │ │ ├── brick_dark_5_5.png │ │ ├── brick_dark_5_6.png │ │ ├── brick_dark_5_7.png │ │ ├── brick_dark_5_8.png │ │ ├── brick_dark_5_9.png │ │ ├── brick_dark_6_0.png │ │ ├── brick_dark_6_1.png │ │ ├── brick_dark_6_10.png │ │ ├── brick_dark_6_11.png │ │ ├── brick_dark_6_12.png │ │ ├── brick_dark_6_13.png │ │ ├── brick_dark_6_14.png │ │ ├── brick_dark_6_15.png │ │ ├── brick_dark_6_16.png │ │ ├── brick_dark_6_17.png │ │ ├── brick_dark_6_18.png │ │ ├── brick_dark_6_19.png │ │ ├── brick_dark_6_2.png │ │ ├── brick_dark_6_3.png │ │ ├── brick_dark_6_4.png │ │ ├── brick_dark_6_5.png │ │ ├── brick_dark_6_6.png │ │ ├── brick_dark_6_7.png │ │ ├── brick_dark_6_8.png │ │ ├── brick_dark_6_9.png │ │ ├── brick_gray0.png │ │ ├── brick_gray1.png │ │ ├── brick_gray2.png │ │ ├── brick_gray3.png │ │ ├── catacombs0.png │ │ ├── catacombs1.png │ │ ├── catacombs10.png │ │ ├── catacombs11.png │ │ ├── catacombs12.png │ │ ├── catacombs13.png │ │ ├── catacombs14.png │ │ ├── catacombs15.png │ │ ├── catacombs2.png │ │ ├── catacombs3.png │ │ ├── catacombs4.png │ │ ├── catacombs5.png │ │ ├── catacombs6.png │ │ ├── catacombs7.png │ │ ├── catacombs8.png │ │ ├── catacombs9.png │ │ ├── church0.png │ │ ├── church1.png │ │ ├── church2.png │ │ ├── church3.png │ │ ├── church4.png │ │ ├── cobalt_rock1.png │ │ ├── cobalt_rock2.png │ │ ├── cobalt_rock3.png │ │ ├── cobalt_rock4.png │ │ ├── cobalt_stone01.png │ │ ├── cobalt_stone02.png │ │ ├── cobalt_stone03.png │ │ ├── cobalt_stone04.png │ │ ├── cobalt_stone05.png │ │ ├── cobalt_stone06.png │ │ ├── cobalt_stone07.png │ │ ├── cobalt_stone08.png │ │ ├── cobalt_stone09.png │ │ ├── cobalt_stone10.png │ │ ├── cobalt_stone11.png │ │ ├── cobalt_stone12.png │ │ ├── crypt-metal0.png │ │ ├── crypt-metal1.png │ │ ├── crypt-metal2.png │ │ ├── crypt-metal3.png │ │ ├── crypt-metal4.png │ │ ├── crypt0.png │ │ ├── crypt1.png │ │ ├── crypt2.png │ │ ├── crypt3.png │ │ ├── crypt4.png │ │ ├── crypt5.png │ │ ├── crypt6.png │ │ ├── crypt7.png │ │ ├── crypt8.png │ │ ├── crypt9.png │ │ ├── crystal_wall00.png │ │ ├── crystal_wall01.png │ │ ├── crystal_wall02.png │ │ ├── crystal_wall03.png │ │ ├── crystal_wall04.png │ │ ├── crystal_wall05.png │ │ ├── crystal_wall06.png │ │ ├── crystal_wall07.png │ │ ├── crystal_wall08.png │ │ ├── crystal_wall09.png │ │ ├── crystal_wall10.png │ │ ├── crystal_wall11.png │ │ ├── crystal_wall_blue.png │ │ ├── crystal_wall_brown.png │ │ ├── crystal_wall_cyan.png │ │ ├── crystal_wall_darkgray.png │ │ ├── crystal_wall_green.png │ │ ├── crystal_wall_lightblue.png │ │ ├── crystal_wall_lightcyan.png │ │ ├── crystal_wall_lightgray.png │ │ ├── crystal_wall_lightgreen.png │ │ ├── crystal_wall_lightmagenta.png │ │ ├── crystal_wall_lightred.png │ │ ├── crystal_wall_magenta.png │ │ ├── crystal_wall_red.png │ │ ├── crystal_wall_white.png │ │ ├── crystal_wall_yellow.png │ │ ├── desolation1.png │ │ ├── desolation2.png │ │ ├── emerald1.png │ │ ├── emerald2.png │ │ ├── emerald3.png │ │ ├── emerald4.png │ │ ├── emerald5.png │ │ ├── emerald6.png │ │ ├── emerald7.png │ │ ├── emerald8.png │ │ ├── hell01.png │ │ ├── hell02.png │ │ ├── hell03.png │ │ ├── hell04.png │ │ ├── hell05.png │ │ ├── hell06.png │ │ ├── hell07.png │ │ ├── hell08.png │ │ ├── hell09.png │ │ ├── hell10.png │ │ ├── hell11.png │ │ ├── ice_block0.png │ │ ├── ice_block1.png │ │ ├── ice_block2.png │ │ ├── ice_block3.png │ │ ├── ice_block4.png │ │ ├── ice_wall0.png │ │ ├── ice_wall1.png │ │ ├── ice_wall2.png │ │ ├── ice_wall3.png │ │ ├── ice_wall4.png │ │ ├── icy_stone0.png │ │ ├── icy_stone1.png │ │ ├── icy_stone2.png │ │ ├── icy_stone3.png │ │ ├── icy_stone4.png │ │ ├── iron0-0.png │ │ ├── iron0-2.png │ │ ├── iron0-4.png │ │ ├── iron1-1.png │ │ ├── iron1-2.png │ │ ├── iron1-3.png │ │ ├── iron1-4.png │ │ ├── iron2-0.png │ │ ├── iron2-1.png │ │ ├── iron2-2.png │ │ ├── iron2-3.png │ │ ├── iron2-4.png │ │ ├── iron3-0.png │ │ ├── iron3-1.png │ │ ├── iron3-2.png │ │ ├── iron3-3.png │ │ ├── iron4-0.png │ │ ├── iron4-2.png │ │ ├── iron4-3.png │ │ ├── iron5-0.png │ │ ├── iron5-2.png │ │ ├── lab-metal0.png │ │ ├── lab-metal1.png │ │ ├── lab-metal2.png │ │ ├── lab-metal3.png │ │ ├── lab-metal4.png │ │ ├── lab-metal5.png │ │ ├── lab-metal6.png │ │ ├── lab-rock0.png │ │ ├── lab-rock1.png │ │ ├── lab-rock2.png │ │ ├── lab-rock3.png │ │ ├── lab-stone0.png │ │ ├── lab-stone1.png │ │ ├── lab-stone2.png │ │ ├── lab-stone3.png │ │ ├── lab-stone4.png │ │ ├── lab-stone5.png │ │ ├── lair0.png │ │ ├── lair1.png │ │ ├── lair2.png │ │ ├── lair3.png │ │ ├── marble_wall1.png │ │ ├── marble_wall10.png │ │ ├── marble_wall11.png │ │ ├── marble_wall12.png │ │ ├── marble_wall2.png │ │ ├── marble_wall3.png │ │ ├── marble_wall4.png │ │ ├── marble_wall5.png │ │ ├── marble_wall6.png │ │ ├── marble_wall7.png │ │ ├── marble_wall8.png │ │ ├── marble_wall9.png │ │ ├── metal_wall.png │ │ ├── metal_wall0.png │ │ ├── metal_wall1.png │ │ ├── metal_wall2.png │ │ ├── metal_wall3.png │ │ ├── metal_wall4.png │ │ ├── metal_wall5.png │ │ ├── metal_wall6.png │ │ ├── metal_wall7.png │ │ ├── metal_wall8.png │ │ ├── metal_wall_red0.png │ │ ├── metal_wall_red1.png │ │ ├── metal_wall_red2.png │ │ ├── metal_wall_red3.png │ │ ├── metal_wall_red4.png │ │ ├── metal_wall_red5.png │ │ ├── metal_wall_red6.png │ │ ├── metal_wall_red7.png │ │ ├── metal_wall_red8.png │ │ ├── metal_wall_white0.png │ │ ├── metal_wall_white1.png │ │ ├── metal_wall_white2.png │ │ ├── mirrored_wall.png │ │ ├── orc0.png │ │ ├── orc1.png │ │ ├── orc10.png │ │ ├── orc11.png │ │ ├── orc2.png │ │ ├── orc3.png │ │ ├── orc4.png │ │ ├── orc5.png │ │ ├── orc6.png │ │ ├── orc7.png │ │ ├── orc8.png │ │ ├── orc9.png │ │ ├── pebble_red0.png │ │ ├── pebble_red1.png │ │ ├── pebble_red2.png │ │ ├── pebble_red3.png │ │ ├── permarock_clear_red0.png │ │ ├── permarock_red0.png │ │ ├── relief0.png │ │ ├── relief1.png │ │ ├── relief2.png │ │ ├── relief3.png │ │ ├── relief_brown0.png │ │ ├── relief_brown1.png │ │ ├── relief_brown2.png │ │ ├── relief_brown3.png │ │ ├── rock_wall_crypt0.png │ │ ├── rock_wall_crypt1.png │ │ ├── rock_wall_crypt2.png │ │ ├── rock_wall_crypt3.png │ │ ├── sandstone_wall0.png │ │ ├── sandstone_wall1.png │ │ ├── sandstone_wall2.png │ │ ├── sandstone_wall3.png │ │ ├── sandstone_wall4.png │ │ ├── sandstone_wall5.png │ │ ├── sandstone_wall6.png │ │ ├── sandstone_wall7.png │ │ ├── sandstone_wall8.png │ │ ├── sandstone_wall9.png │ │ ├── shadow_e.png │ │ ├── shadow_e_darker.png │ │ ├── shadow_e_top.png │ │ ├── shadow_e_top_darker.png │ │ ├── shadow_n.png │ │ ├── shadow_n_darker.png │ │ ├── shadow_ne.png │ │ ├── shadow_ne_darker.png │ │ ├── shadow_nw.png │ │ ├── shadow_nw_darker.png │ │ ├── shadow_w.png │ │ ├── shadow_w_darker.png │ │ ├── shadow_w_top.png │ │ ├── shadow_w_top_darker.png │ │ ├── shoals_wall1.png │ │ ├── shoals_wall2.png │ │ ├── shoals_wall3.png │ │ ├── shoals_wall4.png │ │ ├── silver_wall.png │ │ ├── slime0.png │ │ ├── slime1.png │ │ ├── slime2.png │ │ ├── slime3.png │ │ ├── slime4.png │ │ ├── slime5.png │ │ ├── slime6.png │ │ ├── slime7.png │ │ ├── slime_stone0.png │ │ ├── slime_stone1.png │ │ ├── slime_stone2.png │ │ ├── slime_stone3.png │ │ ├── snake0.png │ │ ├── snake1.png │ │ ├── snake2.png │ │ ├── snake3.png │ │ ├── snake4.png │ │ ├── snake5.png │ │ ├── snake6.png │ │ ├── snake7.png │ │ ├── snake8.png │ │ ├── snake9.png │ │ ├── spider00.png │ │ ├── spider01.png │ │ ├── spider02.png │ │ ├── spider03.png │ │ ├── spider04.png │ │ ├── spider05.png │ │ ├── spider06.png │ │ ├── spider07.png │ │ ├── spider08.png │ │ ├── spider09.png │ │ ├── spider10.png │ │ ├── spider11.png │ │ ├── spider12.png │ │ ├── spider13.png │ │ ├── spider14.png │ │ ├── spider15.png │ │ ├── stone2_brown0.png │ │ ├── stone2_brown1.png │ │ ├── stone2_brown2.png │ │ ├── stone2_brown3.png │ │ ├── stone2_dark0.png │ │ ├── stone2_dark1.png │ │ ├── stone2_dark2.png │ │ ├── stone2_dark3.png │ │ ├── stone2_gray0.png │ │ ├── stone2_gray1.png │ │ ├── stone2_gray2.png │ │ ├── stone2_gray3.png │ │ ├── stone_black_marked0.png │ │ ├── stone_black_marked1.png │ │ ├── stone_black_marked2.png │ │ ├── stone_black_marked3.png │ │ ├── stone_black_marked4.png │ │ ├── stone_black_marked5.png │ │ ├── stone_black_marked6.png │ │ ├── stone_black_marked7.png │ │ ├── stone_black_marked8.png │ │ ├── stone_dark0.png │ │ ├── stone_dark1.png │ │ ├── stone_dark2.png │ │ ├── stone_dark3.png │ │ ├── stone_gray0.png │ │ ├── stone_gray1.png │ │ ├── stone_gray2.png │ │ ├── stone_gray3.png │ │ ├── stone_mossy0.png │ │ ├── stone_mossy1.png │ │ ├── stone_mossy2.png │ │ ├── stone_mossy3.png │ │ ├── stone_smooth0.png │ │ ├── stone_smooth1.png │ │ ├── stone_smooth2.png │ │ ├── stone_smooth3.png │ │ ├── tomb0.png │ │ ├── tomb1.png │ │ ├── tomb2.png │ │ ├── tomb3.png │ │ ├── transparent_flesh1.png │ │ ├── transparent_flesh2.png │ │ ├── transparent_flesh3.png │ │ ├── transparent_flesh4.png │ │ ├── transparent_flesh5.png │ │ ├── transparent_flesh6.png │ │ ├── transparent_stone.png │ │ ├── transparent_wall.png │ │ ├── undead0.png │ │ ├── undead1.png │ │ ├── undead2.png │ │ ├── undead3.png │ │ ├── undead_brown0.png │ │ ├── undead_brown1.png │ │ ├── undead_brown2.png │ │ ├── undead_brown3.png │ │ ├── vault0.png │ │ ├── vault1.png │ │ ├── vault2.png │ │ ├── vault3.png │ │ ├── vault_stone00.png │ │ ├── vault_stone01.png │ │ ├── vault_stone02.png │ │ ├── vault_stone03.png │ │ ├── vault_stone04.png │ │ ├── vault_stone05.png │ │ ├── vault_stone06.png │ │ ├── vault_stone07.png │ │ ├── vault_stone08.png │ │ ├── vault_stone09.png │ │ ├── vault_stone10.png │ │ ├── vault_stone11.png │ │ ├── vault_stone12.png │ │ ├── vault_stone13.png │ │ ├── vault_stone14.png │ │ ├── vault_stone15.png │ │ ├── volcanic_wall0.png │ │ ├── volcanic_wall1.png │ │ ├── volcanic_wall2.png │ │ ├── volcanic_wall3.png │ │ ├── volcanic_wall4.png │ │ ├── volcanic_wall5.png │ │ ├── volcanic_wall6.png │ │ ├── wall_flesh0.png │ │ ├── wall_flesh1.png │ │ ├── wall_flesh2.png │ │ ├── wall_flesh3.png │ │ ├── wall_flesh4.png │ │ ├── wall_flesh5.png │ │ ├── wall_flesh6.png │ │ ├── wall_moon0.png │ │ ├── wall_moon1.png │ │ ├── wall_moon2.png │ │ ├── wall_moon3.png │ │ ├── wall_moon4.png │ │ ├── wall_moon5.png │ │ ├── wall_moon6.png │ │ ├── wall_stone_shoals0.png │ │ ├── wall_stone_shoals1.png │ │ ├── wall_stone_shoals2.png │ │ ├── wall_stone_shoals3.png │ │ ├── wall_stone_shoals4.png │ │ ├── wall_stone_spider0.png │ │ ├── wall_stone_spider1.png │ │ ├── wall_stone_spider2.png │ │ ├── wall_stone_spider3.png │ │ ├── wall_vines0.png │ │ ├── wall_vines1.png │ │ ├── wall_vines2.png │ │ ├── wall_vines3.png │ │ ├── wall_vines4.png │ │ ├── wall_vines5.png │ │ ├── wall_vines6.png │ │ ├── zot_blue0.png │ │ ├── zot_blue1.png │ │ ├── zot_blue2.png │ │ └── zot_blue3.png │ └── water │ │ ├── deep_water.png │ │ ├── deep_water2.png │ │ ├── deep_water_murky.png │ │ ├── deep_water_murky2.png │ │ ├── deep_water_wave_E1.png │ │ ├── deep_water_wave_E2.png │ │ ├── deep_water_wave_N1.png │ │ ├── deep_water_wave_N2.png │ │ ├── deep_water_wave_S1.png │ │ ├── deep_water_wave_S2.png │ │ ├── deep_water_wave_W1.png │ │ ├── deep_water_wave_W2.png │ │ ├── deep_water_wave_corner_NE1.png │ │ ├── deep_water_wave_corner_NE2.png │ │ ├── deep_water_wave_corner_NW1.png │ │ ├── deep_water_wave_corner_NW2.png │ │ ├── deep_water_wave_corner_SE1.png │ │ ├── deep_water_wave_corner_SE2.png │ │ ├── deep_water_wave_corner_SW1.png │ │ ├── deep_water_wave_corner_SW2.png │ │ ├── grey_dirt_bb.png │ │ ├── grey_dirt_bcl.png │ │ ├── grey_dirt_bcr.png │ │ ├── grey_dirt_bl.png │ │ ├── grey_dirt_br.png │ │ ├── ink_full.png │ │ ├── ink_wave_E.png │ │ ├── ink_wave_N.png │ │ ├── ink_wave_S.png │ │ ├── ink_wave_W.png │ │ ├── ink_wave_corner_NE.png │ │ ├── ink_wave_corner_NW.png │ │ ├── ink_wave_corner_SE.png │ │ ├── ink_wave_corner_SW.png │ │ ├── liquefaction1.png │ │ ├── liquefaction2.png │ │ ├── murky_bord_bl.png │ │ ├── murky_bord_br.png │ │ ├── murky_bord_btm.png │ │ ├── murky_bord_lft.png │ │ ├── murky_bord_rgt.png │ │ ├── murky_bord_tl.png │ │ ├── murky_bord_top.png │ │ ├── murky_bord_tr.png │ │ ├── open_sea.png │ │ ├── open_sea2.png │ │ ├── shallow_bord_bl.png │ │ ├── shallow_bord_br.png │ │ ├── shallow_bord_btm.png │ │ ├── shallow_bord_lft.png │ │ ├── shallow_bord_rgt.png │ │ ├── shallow_bord_tl.png │ │ ├── shallow_bord_top.png │ │ ├── shallow_bord_tr.png │ │ ├── shallow_water.png │ │ ├── shallow_water2.png │ │ ├── shallow_water_disturbance.png │ │ ├── shallow_water_disturbance2.png │ │ ├── shallow_water_murky.png │ │ ├── shallow_water_murky2.png │ │ ├── shallow_water_murky_disturbance.png │ │ ├── shallow_water_murky_disturbance2.png │ │ ├── shallow_water_wave_E.png │ │ ├── shallow_water_wave_N.png │ │ ├── shallow_water_wave_S.png │ │ ├── shallow_water_wave_W.png │ │ ├── shallow_water_wave_corner_NE.png │ │ ├── shallow_water_wave_corner_NW.png │ │ ├── shallow_water_wave_corner_SE.png │ │ ├── shallow_water_wave_corner_SW.png │ │ ├── shoals_deep_water0.png │ │ ├── shoals_deep_water1.png │ │ ├── shoals_deep_water10.png │ │ ├── shoals_deep_water11.png │ │ ├── shoals_deep_water2.png │ │ ├── shoals_deep_water3.png │ │ ├── shoals_deep_water4.png │ │ ├── shoals_deep_water5.png │ │ ├── shoals_deep_water6.png │ │ ├── shoals_deep_water7.png │ │ ├── shoals_deep_water8.png │ │ ├── shoals_deep_water9.png │ │ ├── shoals_shallow_water0.png │ │ ├── shoals_shallow_water1.png │ │ ├── shoals_shallow_water10.png │ │ ├── shoals_shallow_water11.png │ │ ├── shoals_shallow_water2.png │ │ ├── shoals_shallow_water3.png │ │ ├── shoals_shallow_water4.png │ │ ├── shoals_shallow_water5.png │ │ ├── shoals_shallow_water6.png │ │ ├── shoals_shallow_water7.png │ │ ├── shoals_shallow_water8.png │ │ ├── shoals_shallow_water9.png │ │ ├── shoals_shallow_water_disturbance1.png │ │ ├── shoals_shallow_water_disturbance2.png │ │ └── shoals_shallow_water_disturbance3.png ├── effect │ ├── arrow0.png │ ├── arrow1.png │ ├── arrow2.png │ ├── arrow3.png │ ├── arrow4.png │ ├── arrow5.png │ ├── arrow6.png │ ├── arrow7.png │ ├── bolt0.png │ ├── bolt01.png │ ├── bolt02.png │ ├── bolt03.png │ ├── bolt04.png │ ├── bolt05.png │ ├── bolt06.png │ ├── bolt07.png │ ├── bolt08.png │ ├── bolt1.png │ ├── bolt2.png │ ├── bolt3.png │ ├── bolt4.png │ ├── bolt5.png │ ├── bolt6.png │ ├── bolt7.png │ ├── cloud_acid0.png │ ├── cloud_acid1.png │ ├── cloud_acid2.png │ ├── cloud_black_smoke.png │ ├── cloud_blue_smoke.png │ ├── cloud_calc_dust0.png │ ├── cloud_calc_dust1.png │ ├── cloud_calc_dust2.png │ ├── cloud_calc_dust3.png │ ├── cloud_chaos1.png │ ├── cloud_chaos2.png │ ├── cloud_chaos3.png │ ├── cloud_chaos4.png │ ├── cloud_chaos5.png │ ├── cloud_cold0.png │ ├── cloud_cold1.png │ ├── cloud_cold2.png │ ├── cloud_dust0.png │ ├── cloud_dust1.png │ ├── cloud_dust2.png │ ├── cloud_dust3.png │ ├── cloud_fire0.png │ ├── cloud_fire1.png │ ├── cloud_fire2.png │ ├── cloud_forest_fire.png │ ├── cloud_gloom.png │ ├── cloud_gold_dust0.png │ ├── cloud_gold_dust1.png │ ├── cloud_gold_dust2.png │ ├── cloud_gold_dust3.png │ ├── cloud_grey_smoke.png │ ├── cloud_magic_trail0.png │ ├── cloud_magic_trail1.png │ ├── cloud_magic_trail2.png │ ├── cloud_magic_trail3.png │ ├── cloud_meph0.png │ ├── cloud_meph1.png │ ├── cloud_meph2.png │ ├── cloud_miasma0.png │ ├── cloud_miasma1.png │ ├── cloud_miasma2.png │ ├── cloud_mutagenic_large1.png │ ├── cloud_mutagenic_large2.png │ ├── cloud_mutagenic_large3.png │ ├── cloud_mutagenic_large4.png │ ├── cloud_mutagenic_medium1.png │ ├── cloud_mutagenic_medium2.png │ ├── cloud_mutagenic_small1.png │ ├── cloud_mutagenic_small2.png │ ├── cloud_neg0.png │ ├── cloud_neg1.png │ ├── cloud_neg2.png │ ├── cloud_poison0.png │ ├── cloud_poison1.png │ ├── cloud_poison2.png │ ├── cloud_rain1.png │ ├── cloud_rain2.png │ ├── cloud_spectral0.png │ ├── cloud_spectral1.png │ ├── cloud_spectral2.png │ ├── cloud_storm1.png │ ├── cloud_storm2.png │ ├── cloud_tloc_energy.png │ ├── cloud_yellow_smoke.png │ ├── crystal_spear0.png │ ├── crystal_spear1.png │ ├── crystal_spear2.png │ ├── crystal_spear3.png │ ├── crystal_spear4.png │ ├── crystal_spear5.png │ ├── crystal_spear6.png │ ├── crystal_spear7.png │ ├── damnation.png │ ├── disjunct0.png │ ├── disjunct1.png │ ├── disjunct2.png │ ├── disjunct3.png │ ├── drain0.png │ ├── drain1.png │ ├── drain2.png │ ├── flame0.png │ ├── flame1.png │ ├── flame2.png │ ├── frost0.png │ ├── frost1.png │ ├── halo_range.png │ ├── heataura0.png │ ├── heataura1.png │ ├── heataura2.png │ ├── icicle0.png │ ├── icicle1.png │ ├── icicle2.png │ ├── icicle3.png │ ├── icicle4.png │ ├── icicle5.png │ ├── icicle6.png │ ├── icicle7.png │ ├── indicator_1.png │ ├── indicator_2.png │ ├── indicator_3.png │ ├── indicator_4.png │ ├── indicator_5.png │ ├── indicator_6.png │ ├── indicator_7.png │ ├── indicator_8.png │ ├── iron_shot0.png │ ├── iron_shot1.png │ ├── iron_shot2.png │ ├── iron_shot3.png │ ├── iron_shot4.png │ ├── iron_shot5.png │ ├── iron_shot6.png │ ├── iron_shot7.png │ ├── irradiate0.png │ ├── irradiate1.png │ ├── irradiate2.png │ ├── irradiate3.png │ ├── javelin0.png │ ├── javelin1.png │ ├── javelin2.png │ ├── javelin3.png │ ├── javelin4.png │ ├── javelin5.png │ ├── javelin6.png │ ├── javelin7.png │ ├── magic_dart0.png │ ├── magic_dart1.png │ ├── magic_dart2.png │ ├── magic_dart3.png │ ├── magic_dart4.png │ ├── magic_dart5.png │ ├── needle0.png │ ├── needle1.png │ ├── needle2.png │ ├── needle3.png │ ├── needle4.png │ ├── needle5.png │ ├── needle6.png │ ├── needle7.png │ ├── net_trap.png │ ├── orb_glow0.png │ ├── orb_glow1.png │ ├── poison_arrow0.png │ ├── poison_arrow1.png │ ├── poison_arrow2.png │ ├── poison_arrow3.png │ ├── poison_arrow4.png │ ├── poison_arrow5.png │ ├── poison_arrow6.png │ ├── poison_arrow7.png │ ├── quad_glow.png │ ├── rock0.png │ ├── sanctuary.png │ ├── sandblast0.png │ ├── sandblast1.png │ ├── sandblast2.png │ ├── searing_ray0.png │ ├── searing_ray1.png │ ├── searing_ray2.png │ ├── searing_ray3.png │ ├── searing_ray4.png │ ├── searing_ray5.png │ ├── silenced.png │ ├── silver_sling_bullet0.png │ ├── silver_sling_bullet_runed0.png │ ├── sling_bullet0.png │ ├── sling_bullet_runed0.png │ ├── steel_sling_bullet0.png │ ├── steel_sling_bullet_runed0.png │ ├── sting0.png │ ├── sting1.png │ ├── sting2.png │ ├── stone0.png │ ├── stone_arrow0.png │ ├── stone_arrow1.png │ ├── stone_arrow2.png │ ├── stone_arrow3.png │ ├── stone_arrow4.png │ ├── stone_arrow5.png │ ├── stone_arrow6.png │ ├── stone_arrow7.png │ ├── throwing_net0.png │ ├── throwing_net1.png │ ├── throwing_net2.png │ ├── throwing_net3.png │ ├── throwing_net4.png │ ├── throwing_net5.png │ ├── throwing_net6.png │ ├── throwing_net7.png │ ├── tomahawk0.png │ ├── tomahawk1.png │ ├── tomahawk2.png │ ├── tomahawk3.png │ ├── tomahawk4.png │ ├── tomahawk5.png │ ├── tomahawk6.png │ ├── tomahawk7.png │ ├── tornado1.png │ ├── tornado2.png │ ├── umbra0.png │ ├── umbra1.png │ ├── umbra2.png │ ├── umbra3.png │ ├── zap0.png │ ├── zap1.png │ ├── zap2.png │ └── zap3.png ├── gui │ ├── abilities │ │ ├── bat_form.png │ │ ├── beogh.png │ │ ├── blink.png │ │ ├── breathe_acid.png │ │ ├── breathe_energy.png │ │ ├── breathe_fire.png │ │ ├── breathe_frost.png │ │ ├── breathe_lightning.png │ │ ├── breathe_mephitic.png │ │ ├── breathe_poison.png │ │ ├── breathe_steam.png │ │ ├── cancel_pierce.png │ │ ├── cancel_pproj.png │ │ ├── dig.png │ │ ├── end_transformation.png │ │ ├── ent_passwall.png │ │ ├── evoke_berserk.png │ │ ├── evoke_fog.png │ │ ├── evoke_invisibility.png │ │ ├── evoke_invisibility_end.png │ │ ├── evoke_ratskin.png │ │ ├── evoke_thunder.png │ │ ├── flight.png │ │ ├── flight_end.png │ │ ├── heal_wounds.png │ │ ├── hop.png │ │ ├── hurl_damnation.png │ │ ├── shaft_self.png │ │ ├── spit_poison.png │ │ └── stop_recall.png │ ├── commands │ │ ├── ability.png │ │ ├── add_waypoint.png │ │ ├── autofight.png │ │ ├── butcher.png │ │ ├── cast_spell.png │ │ ├── chardump.png │ │ ├── clear_excludes.png │ │ ├── display_map.png │ │ ├── doll_editor.png │ │ ├── drop.png │ │ ├── exclude_area.png │ │ ├── explore.png │ │ ├── find_altar.png │ │ ├── find_downstair.png │ │ ├── find_excluded.png │ │ ├── find_portal.png │ │ ├── find_stash.png │ │ ├── find_traps.png │ │ ├── find_upstair.png │ │ ├── find_waypoint.png │ │ ├── find_you.png │ │ ├── goto_level.png │ │ ├── goto_target.png │ │ ├── help.png │ │ ├── inventory.png │ │ ├── keyboard.png │ │ ├── known_items.png │ │ ├── lookup_help.png │ │ ├── memorise.png │ │ ├── message_history.png │ │ ├── mutations.png │ │ ├── next_level.png │ │ ├── overmap.png │ │ ├── overview.png │ │ ├── prev_level.png │ │ ├── quicksave.png │ │ ├── religion.png │ │ ├── resting.png │ │ ├── skills.png │ │ ├── stash_search.png │ │ ├── status.png │ │ ├── travel.png │ │ └── waiting.png │ ├── invocations │ │ ├── ashenzari_curse.png │ │ ├── ashenzari_scry.png │ │ ├── ashenzari_transfer_knowledge.png │ │ ├── ashenzari_transfer_knowledge_end.png │ │ ├── beogh_gift.png │ │ ├── beogh_recall.png │ │ ├── beogh_resurrection.png │ │ ├── beogh_smite.png │ │ ├── cheibriados_bend_time.png │ │ ├── cheibriados_slouch.png │ │ ├── cheibriados_temporal_distortion.png │ │ ├── cheibriados_time_step.png │ │ ├── dithmenos_shadow_form.png │ │ ├── dithmenos_shadow_step.png │ │ ├── elyvilon_divine_protection.png │ │ ├── elyvilon_divine_vigour.png │ │ ├── elyvilon_greater_healing.png │ │ ├── elyvilon_heal_other.png │ │ ├── elyvilon_lesser_healing.png │ │ ├── elyvilon_purification.png │ │ ├── fedhas_evolution.png │ │ ├── fedhas_fungal_bloom.png │ │ ├── fedhas_plant_ring.png │ │ ├── fedhas_rain.png │ │ ├── fedhas_spawn_spores.png │ │ ├── fedhas_sunlight.png │ │ ├── gozag_bribe_branch.png │ │ ├── gozag_call_merchant.png │ │ ├── gozag_potion_petition.png │ │ ├── hep_battlemage.png │ │ ├── hep_hexer.png │ │ ├── hep_idealise.png │ │ ├── hep_identity.png │ │ ├── hep_knight.png │ │ ├── hep_recall.png │ │ ├── hep_transference.png │ │ ├── i-deck_destruction.png │ │ ├── i-deck_escape.png │ │ ├── i-deck_punishment.png │ │ ├── i-deck_summoning.png │ │ ├── jiyva_cure_bad_mutations.png │ │ ├── jiyva_request_jelly.png │ │ ├── jiyva_slimify.png │ │ ├── jiyva_stat_shuffle.png │ │ ├── kiku_bless_weapon.png │ │ ├── kiku_necronomicon.png │ │ ├── kiku_receive_corpses.png │ │ ├── kiku_torment.png │ │ ├── lugonu_banish.png │ │ ├── lugonu_bend_space.png │ │ ├── lugonu_bless_weapon.png │ │ ├── lugonu_corrupt.png │ │ ├── lugonu_enter_abyss.png │ │ ├── lugonu_exit_abyss.png │ │ ├── makhleb_greater_servant.png │ │ ├── makhleb_hew.png │ │ ├── makhleb_major_destruction.png │ │ ├── makhleb_minor_destruction.png │ │ ├── nemelex_card.png │ │ ├── nemelex_deal_four.png │ │ ├── nemelex_deck.png │ │ ├── nemelex_draw_destruction.png │ │ ├── nemelex_draw_escape.png │ │ ├── nemelex_draw_stack.png │ │ ├── nemelex_draw_summoning.png │ │ ├── nemelex_stack_five.png │ │ ├── nemelex_triple_draw.png │ │ ├── okawaru_finesse.png │ │ ├── okawaru_heroism.png │ │ ├── pakellas_device_surge.png │ │ ├── pakellas_quick_charge.png │ │ ├── qazlal_become_the_storm.png │ │ ├── qazlal_elemental_force.png │ │ ├── qazlal_upheaval.png │ │ ├── renounce.png │ │ ├── ru_apocalypse.png │ │ ├── ru_draw_out_power.png │ │ ├── ru_power_leap.png │ │ ├── ru_reject_sacrifices.png │ │ ├── ru_sacrifice_arcana.png │ │ ├── ru_sacrifice_artifice.png │ │ ├── ru_sacrifice_courage.png │ │ ├── ru_sacrifice_drink.png │ │ ├── ru_sacrifice_durability.png │ │ ├── ru_sacrifice_essence.png │ │ ├── ru_sacrifice_experience.png │ │ ├── ru_sacrifice_eye.png │ │ ├── ru_sacrifice_hand.png │ │ ├── ru_sacrifice_health.png │ │ ├── ru_sacrifice_love.png │ │ ├── ru_sacrifice_nimbleness.png │ │ ├── ru_sacrifice_purity.png │ │ ├── ru_sacrifice_resistance.png │ │ ├── ru_sacrifice_skill.png │ │ ├── ru_sacrifice_stealth.png │ │ ├── ru_sacrifice_words.png │ │ ├── sif_muna_amnesia.png │ │ ├── sif_muna_channel.png │ │ ├── sif_muna_divine_energy.png │ │ ├── sif_muna_moment_of_magic.png │ │ ├── sif_muna_stop_divine_energy.png │ │ ├── trog_berserk.png │ │ ├── trog_brothers_in_arms.png │ │ ├── trog_hand.png │ │ ├── tso_bless_weapon.png │ │ ├── tso_cleansing_flame.png │ │ ├── tso_divine_shield.png │ │ ├── tso_divine_warrior.png │ │ ├── uskayaw_grand_finale.png │ │ ├── uskayaw_line_pass.png │ │ ├── uskayaw_stomp.png │ │ ├── wu_jian_heavenly_storm.png │ │ ├── wu_jian_serpents_lash.png │ │ ├── wu_jian_wall_jump.png │ │ ├── yred_animate_dead.png │ │ ├── yred_animate_remains.png │ │ ├── yred_drain_life.png │ │ ├── yred_enslave_soul.png │ │ ├── yred_injury_mirror.png │ │ ├── yred_recall.png │ │ ├── zin_cure_mutations.png │ │ ├── zin_donate.png │ │ ├── zin_imprison.png │ │ ├── zin_manna.png │ │ ├── zin_recite.png │ │ ├── zin_sanctuary.png │ │ └── zin_vitalisation.png │ ├── prompt_no.png │ ├── prompt_yes.png │ ├── skills │ │ ├── air_magic.png │ │ ├── armour.png │ │ ├── axes.png │ │ ├── bows.png │ │ ├── charms.png │ │ ├── conjurations.png │ │ ├── crossbows.png │ │ ├── disabled-base.png │ │ ├── disabled-fg.png │ │ ├── dodging.png │ │ ├── earth_magic.png │ │ ├── enabled-base.png │ │ ├── enabled-fg.png │ │ ├── evocations.png │ │ ├── fighting.png │ │ ├── fire_magic.png │ │ ├── focused-fg.png │ │ ├── gods │ │ │ ├── beogh.png │ │ │ ├── cheibriados.png │ │ │ ├── dithmenos.png │ │ │ ├── elyvilon.png │ │ │ ├── fedhas.png │ │ │ ├── hepliaklqana.png │ │ │ ├── kikubaaqudgha.png │ │ │ ├── lugonu.png │ │ │ ├── makhleb.png │ │ │ ├── nemelex_xobeh.png │ │ │ ├── okawaru.png │ │ │ ├── qazlal.png │ │ │ ├── sif_muna.png │ │ │ ├── tso.png │ │ │ ├── uskayaw.png │ │ │ ├── yredelemnul.png │ │ │ └── zin.png │ │ ├── hexes.png │ │ ├── ice_magic.png │ │ ├── invocations.png │ │ ├── long_blades.png │ │ ├── maces_flails.png │ │ ├── mastered-base.png │ │ ├── mastered-fg.png │ │ ├── necromancy.png │ │ ├── poison_magic.png │ │ ├── polearms.png │ │ ├── shields.png │ │ ├── short_blades.png │ │ ├── slings.png │ │ ├── spellcasting.png │ │ ├── staves.png │ │ ├── stealth.png │ │ ├── summonings.png │ │ ├── throwing.png │ │ ├── translocations.png │ │ ├── transmutations.png │ │ ├── unarmed_combat.png │ │ ├── unarmed_combat_claw.png │ │ ├── unarmed_combat_paw.png │ │ └── unarmed_combat_tentacle.png │ ├── spells │ │ ├── air │ │ │ ├── airstrike.png │ │ │ ├── chain_lightning.png │ │ │ ├── conjure_ball_lightning.png │ │ │ ├── deflect_missiles.png │ │ │ ├── lightning_bolt.png │ │ │ ├── repel_missiles.png │ │ │ ├── shock.png │ │ │ ├── silence.png │ │ │ ├── static_discharge.png │ │ │ ├── swiftness.png │ │ │ └── tornado.png │ │ ├── bg.png │ │ ├── conjuration │ │ │ ├── battlesphere.png │ │ │ ├── dazzling_spray.png │ │ │ ├── force_lance.png │ │ │ ├── fulminant_prism.png │ │ │ ├── iskenderuns_mystic_blast.png │ │ │ ├── magic_dart.png │ │ │ ├── orb_of_destruction.png │ │ │ └── searing_ray.png │ │ ├── earth │ │ │ ├── dig.png │ │ │ ├── iron_shot.png │ │ │ ├── ledas_liquefaction.png │ │ │ ├── lees_rapid_deconstruction.png │ │ │ ├── lehudibs_crystal_spear.png │ │ │ ├── passwall.png │ │ │ ├── petrify.png │ │ │ ├── sandblast.png │ │ │ ├── shatter.png │ │ │ ├── statue_form.png │ │ │ └── stone_arrow.png │ │ ├── enchantment │ │ │ ├── berserker_rage.png │ │ │ ├── cause_fear.png │ │ │ ├── charming.png │ │ │ ├── confuse.png │ │ │ ├── confusing_touch.png │ │ │ ├── corona.png │ │ │ ├── darkness.png │ │ │ ├── discord.png │ │ │ ├── flaming_arrows.png │ │ │ ├── haste.png │ │ │ ├── infusion.png │ │ │ ├── invisibility.png │ │ │ ├── piercing_shot.png │ │ │ ├── shackle.png │ │ │ ├── slow.png │ │ │ ├── song_of_slaying.png │ │ │ ├── spectral_weapon.png │ │ │ ├── sure_blade.png │ │ │ ├── tukimas_dance.png │ │ │ └── violent_unravelling.png │ │ ├── fire │ │ │ ├── bolt_of_fire.png │ │ │ ├── bolt_of_magma.png │ │ │ ├── conjure_flame.png │ │ │ ├── fire_storm.png │ │ │ ├── fireball.png │ │ │ ├── flame_tongue.png │ │ │ ├── ignite_poison.png │ │ │ ├── ignition.png │ │ │ ├── inner_flame.png │ │ │ ├── ring_of_flames.png │ │ │ ├── sticky_flame.png │ │ │ └── throw_flame.png │ │ ├── ice │ │ │ ├── bolt_of_cold.png │ │ │ ├── ensorcelled_hibernation.png │ │ │ ├── freeze.png │ │ │ ├── freezing_cloud.png │ │ │ ├── ice_form.png │ │ │ ├── ice_storm.png │ │ │ ├── icicle_burst.png │ │ │ ├── metabolic_englaciation.png │ │ │ ├── ozocubus_armour.png │ │ │ ├── ozocubus_refrigeration.png │ │ │ ├── throw_frost.png │ │ │ └── throw_icicle.png │ │ ├── memorise.png │ │ ├── misc │ │ │ ├── bolt_corrosive.png │ │ │ ├── bolt_energy.png │ │ │ ├── bolt_random.png │ │ │ ├── bolt_thunder.png │ │ │ ├── cloud_cone.png │ │ │ ├── iceblast.png │ │ │ ├── paralyse.png │ │ │ └── scattershot.png │ │ ├── monster │ │ │ ├── air_elementals.png │ │ │ ├── brain_feed.png │ │ │ ├── call_down_damnation.png │ │ │ ├── cantrip.png │ │ │ ├── cold_breath.png │ │ │ ├── earth_elementals.png │ │ │ ├── fake_mara_summon.png │ │ │ ├── fake_rakshasa_summon.png │ │ │ ├── fire_breath.png │ │ │ ├── generic.png │ │ │ ├── ghostly_fireball.png │ │ │ ├── grasping_roots.png │ │ │ ├── haste_other.png │ │ │ ├── ink_cloud.png │ │ │ ├── iron_elementals.png │ │ │ ├── malmutate.png │ │ │ ├── metal_splinters.png │ │ │ ├── miasma_breath.png │ │ │ ├── might.png │ │ │ ├── noxious_cloud.png │ │ │ ├── orb_of_electricity.png │ │ │ ├── petrifying_cloud.png │ │ │ ├── phantom_mirror.png │ │ │ ├── polymorph.png │ │ │ ├── porkalator.png │ │ │ ├── quicksilver_bolt.png │ │ │ ├── sleep.png │ │ │ ├── spectral_cloud.png │ │ │ ├── spit_acid.png │ │ │ ├── spit_poison.png │ │ │ ├── sprint.png │ │ │ ├── steam_ball.png │ │ │ ├── sticky_flame_range.png │ │ │ ├── sticky_flame_splash.png │ │ │ ├── summon_drakes.png │ │ │ ├── summon_eyeballs.png │ │ │ ├── summon_hell_beast.png │ │ │ ├── summon_minor_demon.png │ │ │ ├── summon_mushrooms.png │ │ │ ├── summon_ufetubus.png │ │ │ ├── summon_undead.png │ │ │ ├── summon_vermin.png │ │ │ ├── teleport.png │ │ │ ├── twisted_resurrection.png │ │ │ └── water_elementals.png │ │ ├── necromancy │ │ │ ├── agony.png │ │ │ ├── animate_dead.png │ │ │ ├── animate_skeleton.png │ │ │ ├── blight.png │ │ │ ├── bolt_of_draining.png │ │ │ ├── borgnjors_vile_clutch.png │ │ │ ├── corpse_rot.png │ │ │ ├── death_channel.png │ │ │ ├── deaths_door.png │ │ │ ├── dispel_undead.png │ │ │ ├── excruciating_wounds.png │ │ │ ├── haunt.png │ │ │ ├── infestation.png │ │ │ ├── necromutation.png │ │ │ ├── pain.png │ │ │ ├── regeneration.png │ │ │ ├── simulacrum.png │ │ │ ├── sublimation_of_blood.png │ │ │ ├── symbol_of_torment.png │ │ │ └── vampiric_draining.png │ │ ├── poison │ │ │ ├── alistairs_intoxication.png │ │ │ ├── mephitic_cloud.png │ │ │ ├── olgrebs_toxic_radiance.png │ │ │ ├── poison_arrow.png │ │ │ ├── poisonous_cloud.png │ │ │ ├── poisonous_vapours.png │ │ │ ├── scorpion_form.png │ │ │ ├── spider_form.png │ │ │ ├── sting.png │ │ │ ├── venom_bolt.png │ │ │ └── virulence.png │ │ ├── summoning │ │ │ ├── call_canine_familiar.png │ │ │ ├── call_imp.png │ │ │ ├── false_image.png │ │ │ ├── fire_elementals.png │ │ │ ├── malign_gateway.png │ │ │ ├── mass_abjuration.png │ │ │ ├── monstrous_menagerie.png │ │ │ ├── recall.png │ │ │ ├── spellforged_servitor.png │ │ │ ├── sticks_to_snakes.png │ │ │ ├── summon_butterflies.png │ │ │ ├── summon_demon.png │ │ │ ├── summon_dragon.png │ │ │ ├── summon_forest.png │ │ │ ├── summon_greater_demon.png │ │ │ ├── summon_guardian_golem.png │ │ │ ├── summon_horrible_things.png │ │ │ ├── summon_hydra.png │ │ │ ├── summon_ice_beast.png │ │ │ ├── summon_lightning_spire.png │ │ │ ├── summon_mana_viper.png │ │ │ ├── summon_scorpions.png │ │ │ ├── summon_shadow_creatures.png │ │ │ └── summon_small_mammal.png │ │ ├── translocation │ │ │ ├── apportation.png │ │ │ ├── beckoning.png │ │ │ ├── blink.png │ │ │ ├── blink_other.png │ │ │ ├── controlled_blink.png │ │ │ ├── disjunction.png │ │ │ ├── dispersal.png │ │ │ ├── gravitas.png │ │ │ ├── passage_of_golubria.png │ │ │ ├── portal_projectile.png │ │ │ ├── shroud_of_golubria.png │ │ │ └── teleport_other.png │ │ └── transmutation │ │ │ ├── beastly_appendage.png │ │ │ ├── blade_hands.png │ │ │ ├── dragon_form.png │ │ │ ├── irradiate.png │ │ │ └── tree_form.png │ ├── startup │ │ ├── adventure.png │ │ ├── arena.png │ │ ├── dungeon_sprint.png │ │ ├── high_scores.png │ │ ├── hints_mode.png │ │ ├── instructions.png │ │ ├── stonesoup.png │ │ ├── tutorial.png │ │ └── zot_defence.png │ ├── tab_label_ability.png │ ├── tab_label_command.png │ ├── tab_label_item.png │ ├── tab_label_memorise.png │ ├── tab_label_metacommands.png │ ├── tab_label_monster.png │ ├── tab_label_navigation.png │ ├── tab_label_skill.png │ ├── tab_label_spell.png │ ├── tab_mouseover.png │ ├── tab_selected.png │ └── tab_unselected.png ├── item │ ├── amulet │ │ ├── amethyst.png │ │ ├── artefact │ │ │ ├── urand_air.png │ │ │ ├── urand_bloodlust.png │ │ │ ├── urand_brooch_of_shielding.png │ │ │ ├── urand_cekugob.png │ │ │ ├── urand_finger.png │ │ │ ├── urand_four_winds.png │ │ │ ├── urand_vision.png │ │ │ └── urand_vitality.png │ │ ├── beryl.png │ │ ├── blue.png │ │ ├── bone.png │ │ ├── brass.png │ │ ├── bronze.png │ │ ├── cabochon.png │ │ ├── cameo.png │ │ ├── citrine.png │ │ ├── copper.png │ │ ├── diamond.png │ │ ├── emerald.png │ │ ├── filigree.png │ │ ├── flourescent.png │ │ ├── garnet.png │ │ ├── golden.png │ │ ├── i-acrobat.png │ │ ├── i-faith.png │ │ ├── i-gourmand.png │ │ ├── i-harm.png │ │ ├── i-inaccuracy.png │ │ ├── i-m-regeneration.png │ │ ├── i-rage.png │ │ ├── i-reflection.png │ │ ├── i-regeneration.png │ │ ├── i-spirit.png │ │ ├── jade.png │ │ ├── jasper.png │ │ ├── lapis_lazuli.png │ │ ├── malachite.png │ │ ├── pearl.png │ │ ├── peridot.png │ │ ├── platinum.png │ │ ├── randarts │ │ │ ├── azure.png │ │ │ ├── cluster.png │ │ │ ├── drop.png │ │ │ ├── knot.png │ │ │ ├── scarab.png │ │ │ ├── skull.png │ │ │ ├── spider.png │ │ │ └── sun.png │ │ ├── ruby.png │ │ ├── sapphire.png │ │ ├── silver.png │ │ ├── soapstone.png │ │ ├── steel.png │ │ └── zirconium.png │ ├── armour │ │ ├── acid_dragon_armour.png │ │ ├── acid_dragon_armour_art.png │ │ ├── animal_skin1.png │ │ ├── animal_skin2.png │ │ ├── animal_skin3.png │ │ ├── artefact │ │ │ ├── urand_alchemist.png │ │ │ ├── urand_assassin.png │ │ │ ├── urand_augmentation.png │ │ │ ├── urand_bear.png │ │ │ ├── urand_bk_barding.png │ │ │ ├── urand_bullseye.png │ │ │ ├── urand_clouds.png │ │ │ ├── urand_dragon_king.png │ │ │ ├── urand_dragonmask.png │ │ │ ├── urand_dragonskin.png │ │ │ ├── urand_dyrovepreva.png │ │ │ ├── urand_eternal_torment.png │ │ │ ├── urand_etheric_cage.png │ │ │ ├── urand_faerie.png │ │ │ ├── urand_fencer.png │ │ │ ├── urand_fists_of_thunder.png │ │ │ ├── urand_flash.png │ │ │ ├── urand_folly.png │ │ │ ├── urand_gong.png │ │ │ ├── urand_high_council.png │ │ │ ├── urand_ignorance.png │ │ │ ├── urand_kryias.png │ │ │ ├── urand_lear.png │ │ │ ├── urand_lightning_scales.png │ │ │ ├── urand_maxwell.png │ │ │ ├── urand_misfortune.png │ │ │ ├── urand_moon_troll_leather_armour.png │ │ │ ├── urand_night.png │ │ │ ├── urand_orange_crystal.png │ │ │ ├── urand_pondering.png │ │ │ ├── urand_ratskin_cloak.png │ │ │ ├── urand_resistance.png │ │ │ ├── urand_salamander.png │ │ │ ├── urand_spider.png │ │ │ ├── urand_starlight.png │ │ │ ├── urand_talos.png │ │ │ ├── urand_thief.png │ │ │ ├── urand_vines.png │ │ │ ├── urand_war.png │ │ │ ├── urand_warlock.png │ │ │ ├── urand_xtahua_scales.png │ │ │ └── urand_zhor.png │ │ ├── bardings │ │ │ ├── centaur_barding_blue.png │ │ │ ├── centaur_barding_magenta.png │ │ │ ├── centaur_barding_metal.png │ │ │ ├── centaur_barding_red.png │ │ │ ├── naga_barding_blue.png │ │ │ ├── naga_barding_magenta.png │ │ │ ├── naga_barding_metal.png │ │ │ └── naga_barding_red.png │ │ ├── boots1_brown.png │ │ ├── boots2_jackboots.png │ │ ├── boots3_stripe.png │ │ ├── boots4_green.png │ │ ├── brands │ │ │ ├── i-archery.png │ │ │ ├── i-archmagi.png │ │ │ ├── i-cloud-immune.png │ │ │ ├── i-cold-res.png │ │ │ ├── i-dexterity.png │ │ │ ├── i-fire-res.png │ │ │ ├── i-flying.png │ │ │ ├── i-intelligence.png │ │ │ ├── i-invisibility.png │ │ │ ├── i-jumping.png │ │ │ ├── i-magic-recovery.png │ │ │ ├── i-magic-res.png │ │ │ ├── i-poison-res.png │ │ │ ├── i-ponderous.png │ │ │ ├── i-positive-energy.png │ │ │ ├── i-preservation.png │ │ │ ├── i-protection.png │ │ │ ├── i-reflection.png │ │ │ ├── i-repulsion.png │ │ │ ├── i-resistance.png │ │ │ ├── i-running.png │ │ │ ├── i-see-invis.png │ │ │ ├── i-spirit.png │ │ │ ├── i-stasis.png │ │ │ ├── i-stealth.png │ │ │ └── i-strength.png │ │ ├── chain_mail1.png │ │ ├── chain_mail2.png │ │ ├── chain_mail3.png │ │ ├── cloak1_leather.png │ │ ├── cloak2.png │ │ ├── cloak3.png │ │ ├── cloak4.png │ │ ├── crystal_plate.png │ │ ├── crystal_plate2.png │ │ ├── crystal_plate3.png │ │ ├── deep_troll_leather.png │ │ ├── fire_dragon_armour.png │ │ ├── fire_dragon_armour_art.png │ │ ├── glove1.png │ │ ├── glove2.png │ │ ├── glove3.png │ │ ├── glove4.png │ │ ├── glove5.png │ │ ├── gold_dragon_armour.png │ │ ├── gold_dragon_armour_art.png │ │ ├── headgear │ │ │ ├── cap_jester.png │ │ │ ├── elven_leather_helm.png │ │ │ ├── hat1.png │ │ │ ├── hat2.png │ │ │ ├── hat3.png │ │ │ ├── helmet1.png │ │ │ ├── helmet2.png │ │ │ ├── helmet3.png │ │ │ ├── helmet4.png │ │ │ ├── helmet5.png │ │ │ ├── helmet_art1.png │ │ │ ├── helmet_art2.png │ │ │ ├── helmet_art3.png │ │ │ ├── helmet_ego1.png │ │ │ ├── helmet_ego2.png │ │ │ ├── helmet_ego3.png │ │ │ └── helmet_ego4.png │ │ ├── ice_dragon_armour.png │ │ ├── ice_dragon_armour_art.png │ │ ├── iron_dragon_armour.png │ │ ├── iron_troll_leather.png │ │ ├── leather_armour1.png │ │ ├── leather_armour2.png │ │ ├── leather_armour3.png │ │ ├── pearl_dragon_armour.png │ │ ├── pearl_dragon_armour_art.png │ │ ├── plate1.png │ │ ├── plate2.png │ │ ├── plate3.png │ │ ├── quicksilver_dragon_armour.png │ │ ├── quicksilver_dragon_armour_art.png │ │ ├── ring_mail1.png │ │ ├── ring_mail2.png │ │ ├── ring_mail3.png │ │ ├── robe1.png │ │ ├── robe2.png │ │ ├── robe_art1.png │ │ ├── robe_art2.png │ │ ├── robe_ego1.png │ │ ├── robe_ego2.png │ │ ├── scale_mail1.png │ │ ├── scale_mail2.png │ │ ├── scale_mail3.png │ │ ├── scarf1.png │ │ ├── scarf2_1.png │ │ ├── scarf2_2.png │ │ ├── scarf2_3.png │ │ ├── scarf3.png │ │ ├── shadow_dragon_armour.png │ │ ├── shadow_dragon_armour_art.png │ │ ├── shields │ │ │ ├── buckler1.png │ │ │ ├── buckler2.png │ │ │ ├── buckler3.png │ │ │ ├── buckler_spriggan.png │ │ │ ├── large_shield1.png │ │ │ ├── large_shield2.png │ │ │ ├── large_shield3.png │ │ │ ├── lshield_dd_dk.png │ │ │ ├── lshield_louise.png │ │ │ ├── shield1.png │ │ │ ├── shield2.png │ │ │ ├── shield3.png │ │ │ ├── shield_dd.png │ │ │ ├── shield_dd_scion.png │ │ │ └── shield_donald.png │ │ ├── steam_dragon_armour.png │ │ ├── steam_dragon_armour_art.png │ │ ├── storm_dragon_armour.png │ │ ├── storm_dragon_armour_art.png │ │ ├── swamp_dragon_armour.png │ │ ├── swamp_dragon_armour_art.png │ │ └── troll_leather_armour.png │ ├── book │ │ ├── artefact │ │ │ ├── bookmark.png │ │ │ ├── buckle.png │ │ │ ├── thick.png │ │ │ ├── thin.png │ │ │ ├── vellum.png │ │ │ ├── velvet.png │ │ │ └── wrinkled.png │ │ ├── book_of_the_dead.png │ │ ├── bronze.png │ │ ├── cloth.png │ │ ├── copper.png │ │ ├── cyan.png │ │ ├── dark_blue.png │ │ ├── dark_brown.png │ │ ├── dark_gray.png │ │ ├── dark_green.png │ │ ├── gold.png │ │ ├── leather.png │ │ ├── light_blue.png │ │ ├── light_brown.png │ │ ├── light_gray.png │ │ ├── light_green.png │ │ ├── magenta.png │ │ ├── manual1.png │ │ ├── manual2.png │ │ ├── metal_blue.png │ │ ├── metal_cyan.png │ │ ├── metal_green.png │ │ ├── parchment.png │ │ ├── pink.png │ │ ├── plaid.png │ │ ├── purple.png │ │ ├── red.png │ │ ├── silver.png │ │ ├── tan.png │ │ ├── turquoise.png │ │ ├── white.png │ │ └── yellow.png │ ├── food │ │ ├── apple.png │ │ ├── apricot.png │ │ ├── banana.png │ │ ├── beef_jerky.png │ │ ├── bone1.png │ │ ├── bone2.png │ │ ├── bone3.png │ │ ├── bone4.png │ │ ├── bone_humanoid1.png │ │ ├── bone_humanoid2.png │ │ ├── bone_humanoid3.png │ │ ├── bone_humanoid4.png │ │ ├── bread_ration.png │ │ ├── cheese.png │ │ ├── choko.png │ │ ├── chunk.png │ │ ├── chunk_brands │ │ │ ├── i-decay.png │ │ │ ├── i-forbidden.png │ │ │ ├── i-inedible.png │ │ │ └── i-poison.png │ │ ├── chunk_rotten.png │ │ ├── fruit.png │ │ ├── grape.png │ │ ├── honeycomb.png │ │ ├── lemon.png │ │ ├── meat_ration.png │ │ ├── orange.png │ │ ├── pear.png │ │ ├── pizza.png │ │ ├── sausage.png │ │ ├── snozzcumber.png │ │ └── strawberry.png │ ├── gold │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 16.png │ │ ├── 19.png │ │ ├── 23.png │ │ └── 25.png │ ├── misc │ │ ├── misc_ancient_crate.png │ │ ├── misc_bottle.png │ │ ├── misc_box.png │ │ ├── misc_crystal.png │ │ ├── misc_dusty_tome.png │ │ ├── misc_fan.png │ │ ├── misc_fan_inert.png │ │ ├── misc_horn.png │ │ ├── misc_lamp.png │ │ ├── misc_lamp_inert.png │ │ ├── misc_lantern.png │ │ ├── misc_lightning_rod.png │ │ ├── misc_lightning_rod_inert.png │ │ ├── misc_phantom_mirror.png │ │ ├── misc_phial.png │ │ ├── misc_phial_inert.png │ │ ├── misc_quad.png │ │ ├── misc_sack.png │ │ ├── misc_sack_inert.png │ │ ├── misc_stone.png │ │ ├── misc_stone_inert.png │ │ ├── misc_zigfig.png │ │ ├── orb_of_zot1.png │ │ ├── orb_of_zot2.png │ │ ├── orb_of_zot3.png │ │ ├── orb_of_zot4.png │ │ ├── orb_of_zot5.png │ │ ├── runes │ │ │ ├── generic.png │ │ │ ├── rune_abyss.png │ │ │ ├── rune_cerebov.png │ │ │ ├── rune_cocytus.png │ │ │ ├── rune_demonic_1.png │ │ │ ├── rune_demonic_2.png │ │ │ ├── rune_demonic_3.png │ │ │ ├── rune_demonic_4.png │ │ │ ├── rune_demonic_5.png │ │ │ ├── rune_demonic_6.png │ │ │ ├── rune_dis.png │ │ │ ├── rune_elven.png │ │ │ ├── rune_gehenna.png │ │ │ ├── rune_gloorx_vloq.png │ │ │ ├── rune_lom_lobon.png │ │ │ ├── rune_mnoleg.png │ │ │ ├── rune_shoals.png │ │ │ ├── rune_slime.png │ │ │ ├── rune_snake.png │ │ │ ├── rune_spider.png │ │ │ ├── rune_swamp.png │ │ │ ├── rune_tartarus.png │ │ │ ├── rune_tomb.png │ │ │ └── rune_vaults.png │ │ ├── uncollected_orb.png │ │ └── uncollected_runes │ │ │ ├── generic.png │ │ │ ├── rune_abyss.png │ │ │ ├── rune_cerebov.png │ │ │ ├── rune_cocytus.png │ │ │ ├── rune_demonic.png │ │ │ ├── rune_dis.png │ │ │ ├── rune_elven.png │ │ │ ├── rune_gehenna.png │ │ │ ├── rune_gloorx_vloq.png │ │ │ ├── rune_lom_lobon.png │ │ │ ├── rune_mnoleg.png │ │ │ ├── rune_shoals.png │ │ │ ├── rune_slime.png │ │ │ ├── rune_snake.png │ │ │ ├── rune_spider.png │ │ │ ├── rune_swamp.png │ │ │ ├── rune_tartarus.png │ │ │ ├── rune_tomb.png │ │ │ └── rune_vaults.png │ ├── potion │ │ ├── black.png │ │ ├── brilliant_blue.png │ │ ├── brown.png │ │ ├── bubbly.png │ │ ├── cloudy.png │ │ ├── cyan.png │ │ ├── dark.png │ │ ├── effervescent.png │ │ ├── emerald.png │ │ ├── fizzy.png │ │ ├── golden.png │ │ ├── i-agility.png │ │ ├── i-ambrosia.png │ │ ├── i-berserk-rage.png │ │ ├── i-blood.png │ │ ├── i-brilliance.png │ │ ├── i-cancel.png │ │ ├── i-coagulated-blood.png │ │ ├── i-confusion.png │ │ ├── i-cure-mutation.png │ │ ├── i-curing.png │ │ ├── i-decay.png │ │ ├── i-degeneration.png │ │ ├── i-experience.png │ │ ├── i-flight.png │ │ ├── i-gain-dexterity.png │ │ ├── i-gain-intelligence.png │ │ ├── i-gain-strength.png │ │ ├── i-good-mutation.png │ │ ├── i-haste.png │ │ ├── i-heal-wounds.png │ │ ├── i-invisibility.png │ │ ├── i-label.png │ │ ├── i-lignify.png │ │ ├── i-magic.png │ │ ├── i-might.png │ │ ├── i-mutation.png │ │ ├── i-paralysis.png │ │ ├── i-poison.png │ │ ├── i-porridge.png │ │ ├── i-resistance.png │ │ ├── i-restore-abilities.png │ │ ├── i-slowing.png │ │ ├── i-strong-poison.png │ │ ├── magenta.png │ │ ├── murky.png │ │ ├── orange.png │ │ ├── pink.png │ │ ├── puce.png │ │ ├── purple_red.png │ │ ├── ruby.png │ │ ├── silver.png │ │ ├── sky_blue.png │ │ ├── unknown.png │ │ ├── white.png │ │ └── yellow.png │ ├── ring │ │ ├── agate.png │ │ ├── artefact │ │ │ ├── urand_mage.png │ │ │ ├── urand_octoring.png │ │ │ ├── urand_phasing.png │ │ │ ├── urand_robustness.png │ │ │ └── urand_shadows.png │ │ ├── brass.png │ │ ├── bronze.png │ │ ├── clay.png │ │ ├── copper.png │ │ ├── coral.png │ │ ├── diamond.png │ │ ├── emerald.png │ │ ├── glass.png │ │ ├── gold.png │ │ ├── gold_blue.png │ │ ├── gold_green.png │ │ ├── gold_red.png │ │ ├── granite.png │ │ ├── i-attention.png │ │ ├── i-c-teleport.png │ │ ├── i-dex.png │ │ ├── i-evasion.png │ │ ├── i-fire.png │ │ ├── i-flight.png │ │ ├── i-ice.png │ │ ├── i-int.png │ │ ├── i-life-protection.png │ │ ├── i-magical-power.png │ │ ├── i-protection.png │ │ ├── i-r-cold.png │ │ ├── i-r-corrosion.png │ │ ├── i-r-elec.png │ │ ├── i-r-fire.png │ │ ├── i-r-magic.png │ │ ├── i-r-poison.png │ │ ├── i-s-attr.png │ │ ├── i-see-invis.png │ │ ├── i-slaying.png │ │ ├── i-stealth.png │ │ ├── i-str.png │ │ ├── i-teleport.png │ │ ├── i-wizardry.png │ │ ├── iron.png │ │ ├── ivory.png │ │ ├── jade.png │ │ ├── moonstone.png │ │ ├── opal.png │ │ ├── pearl.png │ │ ├── plain_black.png │ │ ├── plain_red.png │ │ ├── plain_yellow.png │ │ ├── randarts │ │ │ ├── anvil.png │ │ │ ├── blood.png │ │ │ ├── bronze-flower.png │ │ │ ├── dark.png │ │ │ ├── double.png │ │ │ ├── eye.png │ │ │ ├── fire.png │ │ │ ├── flower.png │ │ │ ├── four-colour.png │ │ │ ├── green.png │ │ │ ├── ice.png │ │ │ ├── pink.png │ │ │ ├── red-blue.png │ │ │ ├── snake.png │ │ │ └── zircon.png │ │ ├── ruby.png │ │ ├── silver.png │ │ ├── steel.png │ │ ├── tiger_eye.png │ │ ├── tourmaline.png │ │ └── wooden.png │ ├── rod │ │ ├── rod00.png │ │ ├── rod01.png │ │ ├── rod02.png │ │ ├── rod03.png │ │ ├── rod04.png │ │ ├── rod05.png │ │ ├── rod06.png │ │ ├── rod07.png │ │ ├── rod08.png │ │ └── rod09.png │ ├── scroll │ │ ├── i-acquirement.png │ │ ├── i-amnesia.png │ │ ├── i-blinking.png │ │ ├── i-brand-weapon.png │ │ ├── i-curse-jewellery.png │ │ ├── i-curse_armour.png │ │ ├── i-curse_weapon.png │ │ ├── i-enchant-weapon.png │ │ ├── i-enchant_armour.png │ │ ├── i-fear.png │ │ ├── i-fog.png │ │ ├── i-holy_word.png │ │ ├── i-identify.png │ │ ├── i-immolation.png │ │ ├── i-magic_mapping.png │ │ ├── i-noise.png │ │ ├── i-random_uselessness.png │ │ ├── i-recharging.png │ │ ├── i-remove_curse.png │ │ ├── i-silence.png │ │ ├── i-teleportation.png │ │ ├── i-torment.png │ │ ├── i-unholy_creation.png │ │ ├── i-vulnerability.png │ │ ├── scroll-blue.png │ │ ├── scroll-brown.png │ │ ├── scroll-cyan.png │ │ ├── scroll-green.png │ │ ├── scroll-grey.png │ │ ├── scroll-purple.png │ │ ├── scroll-red.png │ │ ├── scroll-yellow.png │ │ └── scroll.png │ ├── staff │ │ ├── i-staff_air.png │ │ ├── i-staff_channeling.png │ │ ├── i-staff_cold.png │ │ ├── i-staff_conjuration.png │ │ ├── i-staff_death.png │ │ ├── i-staff_earth.png │ │ ├── i-staff_enchantment.png │ │ ├── i-staff_energy.png │ │ ├── i-staff_fire.png │ │ ├── i-staff_poison.png │ │ ├── i-staff_power.png │ │ ├── i-staff_summoning.png │ │ ├── i-staff_wizardry.png │ │ ├── staff00.png │ │ ├── staff01.png │ │ ├── staff02.png │ │ ├── staff03.png │ │ ├── staff04.png │ │ ├── staff05.png │ │ ├── staff06.png │ │ ├── staff07.png │ │ ├── staff08.png │ │ └── staff09.png │ ├── wand │ │ ├── gem_bone.png │ │ ├── gem_brass.png │ │ ├── gem_bronze.png │ │ ├── gem_copper.png │ │ ├── gem_glass.png │ │ ├── gem_gold.png │ │ ├── gem_iron.png │ │ ├── gem_ivory.png │ │ ├── gem_lead.png │ │ ├── gem_plastic.png │ │ ├── gem_silver.png │ │ ├── gem_wood.png │ │ ├── i-acid.png │ │ ├── i-charming.png │ │ ├── i-clouds.png │ │ ├── i-confusion.png │ │ ├── i-digging.png │ │ ├── i-disintegration.png │ │ ├── i-flame.png │ │ ├── i-hasting.png │ │ ├── i-heal_wounds.png │ │ ├── i-iceblast.png │ │ ├── i-lightning.png │ │ ├── i-paralysis.png │ │ ├── i-polymorph.png │ │ ├── i-random_effects.png │ │ ├── i-scattershot.png │ │ ├── i-slowing.png │ │ └── i-teleportation.png │ └── weapon │ │ ├── artefact │ │ ├── spwpn_demon_axe.png │ │ ├── spwpn_glaive_of_prune.png │ │ ├── spwpn_mace_of_variability.png │ │ ├── spwpn_majin.png │ │ ├── spwpn_sceptre_of_asmodeus.png │ │ ├── spwpn_sceptre_of_torment.png │ │ ├── spwpn_scythe_of_curses.png │ │ ├── spwpn_singing_sword.png │ │ ├── spwpn_staff_of_dispater.png │ │ ├── spwpn_staff_of_olgreb.png │ │ ├── spwpn_sword_of_cerebov.png │ │ ├── spwpn_sword_of_power.png │ │ ├── spwpn_sword_of_zonguldrok.png │ │ ├── spwpn_vampires_tooth.png │ │ ├── spwpn_wrath_of_trog.png │ │ ├── spwpn_wucad_mu.png │ │ ├── urand_arc_blade.png │ │ ├── urand_arga.png │ │ ├── urand_axe_of_woe.png │ │ ├── urand_bloodbane.png │ │ ├── urand_blowgun.png │ │ ├── urand_botono.png │ │ ├── urand_brilliance.png │ │ ├── urand_butterfly_sword.png │ │ ├── urand_chilly_death.png │ │ ├── urand_crystal_spear.png │ │ ├── urand_cutlass.png │ │ ├── urand_damnation.png │ │ ├── urand_dark_maul.png │ │ ├── urand_doom_knight.png │ │ ├── urand_elemental.png │ │ ├── urand_eos.png │ │ ├── urand_finisher.png │ │ ├── urand_firestarter.png │ │ ├── urand_flaming_death.png │ │ ├── urand_frostbite.png │ │ ├── urand_guard.png │ │ ├── urand_gyre.png │ │ ├── urand_hendricks.png │ │ ├── urand_jihad.png │ │ ├── urand_katana.png │ │ ├── urand_knife_of_accuracy.png │ │ ├── urand_leech.png │ │ ├── urand_morg.png │ │ ├── urand_octopus_king.png │ │ ├── urand_order.png │ │ ├── urand_piercer.png │ │ ├── urand_plutonium.png │ │ ├── urand_punk.png │ │ ├── urand_scorpio.png │ │ ├── urand_serpentine_sling.png │ │ ├── urand_sharur.png │ │ ├── urand_shillelagh.png │ │ ├── urand_skullcrusher.png │ │ ├── urand_snakebite.png │ │ ├── urand_sniper.png │ │ ├── urand_spellbinder.png │ │ ├── urand_spriggans_knife.png │ │ ├── urand_staff_of_battle.png │ │ ├── urand_storm_bow.png │ │ ├── urand_thermic_engine.png │ │ ├── urand_wyrmbane.png │ │ ├── urand_wyrmbane1.png │ │ ├── urand_wyrmbane2.png │ │ ├── urand_wyrmbane3.png │ │ ├── urand_wyrmbane4.png │ │ └── urand_zephyr.png │ │ ├── bardiche1.png │ │ ├── bardiche2.png │ │ ├── bardiche3.png │ │ ├── battle_axe1.png │ │ ├── battle_axe2.png │ │ ├── battle_axe3.png │ │ ├── blessed_blade.png │ │ ├── brands │ │ ├── i-antimagic.png │ │ ├── i-chaos.png │ │ ├── i-confusion.png │ │ ├── i-curare.png │ │ ├── i-dispersal.png │ │ ├── i-distortion.png │ │ ├── i-draining.png │ │ ├── i-electrocution.png │ │ ├── i-evasion.png │ │ ├── i-explosion.png │ │ ├── i-flaming.png │ │ ├── i-freezing.png │ │ ├── i-frenzy.png │ │ ├── i-holy_wrath.png │ │ ├── i-pain.png │ │ ├── i-paralysis.png │ │ ├── i-penetration.png │ │ ├── i-petrification.png │ │ ├── i-protection.png │ │ ├── i-reaping.png │ │ ├── i-returning.png │ │ ├── i-seeking.png │ │ ├── i-sickness.png │ │ ├── i-sleep.png │ │ ├── i-slowing.png │ │ ├── i-speed.png │ │ ├── i-vampirism.png │ │ ├── i-venom.png │ │ └── i-vorpal.png │ │ ├── broad_axe1.png │ │ ├── broad_axe2.png │ │ ├── broad_axe3.png │ │ ├── bullwhip.png │ │ ├── bullwhip2.png │ │ ├── bullwhip3.png │ │ ├── club.png │ │ ├── club2.png │ │ ├── dagger.png │ │ ├── dagger2.png │ │ ├── dagger3.png │ │ ├── demon_blade.png │ │ ├── demon_blade2.png │ │ ├── demon_blade3.png │ │ ├── demon_trident.png │ │ ├── demon_trident2.png │ │ ├── demon_trident3.png │ │ ├── demon_whip.png │ │ ├── demon_whip2.png │ │ ├── demon_whip3.png │ │ ├── dire_flail1.png │ │ ├── dire_flail2.png │ │ ├── dire_flail3.png │ │ ├── double_sword.png │ │ ├── double_sword2.png │ │ ├── double_sword3.png │ │ ├── eveningstar1.png │ │ ├── eveningstar2.png │ │ ├── eveningstar3.png │ │ ├── executioner_axe1.png │ │ ├── executioner_axe2.png │ │ ├── executioner_axe3.png │ │ ├── falchion1.png │ │ ├── falchion2.png │ │ ├── falchion3.png │ │ ├── flail1.png │ │ ├── flail2.png │ │ ├── flail3.png │ │ ├── giant_club.png │ │ ├── giant_club2.png │ │ ├── giant_club3.png │ │ ├── giant_spiked_club.png │ │ ├── giant_spiked_club2.png │ │ ├── giant_spiked_club3.png │ │ ├── glaive1.png │ │ ├── glaive2.png │ │ ├── glaive3.png │ │ ├── greatsword1.png │ │ ├── greatsword2.png │ │ ├── greatsword3.png │ │ ├── halberd1.png │ │ ├── halberd2.png │ │ ├── halberd3.png │ │ ├── hand_axe1.png │ │ ├── hand_axe2.png │ │ ├── hand_axe3.png │ │ ├── lajatang1.png │ │ ├── lajatang2.png │ │ ├── lajatang3.png │ │ ├── long_sword1.png │ │ ├── long_sword2.png │ │ ├── long_sword3.png │ │ ├── mace1.png │ │ ├── mace2.png │ │ ├── mace3.png │ │ ├── mace_large1.png │ │ ├── mace_large2.png │ │ ├── mace_large3.png │ │ ├── morningstar1.png │ │ ├── morningstar2.png │ │ ├── morningstar3.png │ │ ├── quarterstaff.png │ │ ├── quarterstaff2.png │ │ ├── quarterstaff3.png │ │ ├── quickblade1.png │ │ ├── quickblade2.png │ │ ├── quickblade3.png │ │ ├── ranged │ │ ├── arbalest1.png │ │ ├── arbalest2.png │ │ ├── arbalest3.png │ │ ├── arrow1.png │ │ ├── arrow2.png │ │ ├── blowgun1.png │ │ ├── blowgun2.png │ │ ├── crossbow_bolt1.png │ │ ├── crossbow_bolt2.png │ │ ├── fustibalus1.png │ │ ├── fustibalus2.png │ │ ├── fustibalus3.png │ │ ├── hand_crossbow.png │ │ ├── hand_crossbow2.png │ │ ├── hand_crossbow3.png │ │ ├── javelin1.png │ │ ├── javelin2.png │ │ ├── longbow1.png │ │ ├── longbow2.png │ │ ├── longbow3.png │ │ ├── needle-c.png │ │ ├── needle-p.png │ │ ├── needle1.png │ │ ├── needle2.png │ │ ├── rock.png │ │ ├── shortbow1.png │ │ ├── shortbow2.png │ │ ├── shortbow3.png │ │ ├── silver_arrow1.png │ │ ├── silver_arrow2.png │ │ ├── silver_crossbow_bolt1.png │ │ ├── silver_crossbow_bolt2.png │ │ ├── silver_javelin1.png │ │ ├── silver_javelin2.png │ │ ├── silver_sling_bullet1.png │ │ ├── silver_sling_bullet2.png │ │ ├── silver_tomahawk.png │ │ ├── sling1.png │ │ ├── sling2.png │ │ ├── sling3.png │ │ ├── sling_bullet1.png │ │ ├── sling_bullet2.png │ │ ├── steel_arrow1.png │ │ ├── steel_arrow2.png │ │ ├── steel_crossbow_bolt1.png │ │ ├── steel_crossbow_bolt2.png │ │ ├── steel_javelin1.png │ │ ├── steel_javelin2.png │ │ ├── steel_sling_bullet1.png │ │ ├── steel_sling_bullet2.png │ │ ├── steel_tomahawk.png │ │ ├── stone.png │ │ ├── throwing_net.png │ │ ├── tomahawk1.png │ │ ├── tomahawk2.png │ │ ├── triple_crossbow.png │ │ └── triple_crossbow2.png │ │ ├── rapier1.png │ │ ├── rapier2.png │ │ ├── rapier3.png │ │ ├── sacred_scourge.png │ │ ├── scimitar1.png │ │ ├── scimitar2.png │ │ ├── scimitar3.png │ │ ├── scythe1.png │ │ ├── scythe2.png │ │ ├── scythe3.png │ │ ├── short_sword1.png │ │ ├── short_sword2.png │ │ ├── short_sword3.png │ │ ├── spear1.png │ │ ├── spear2.png │ │ ├── spear3.png │ │ ├── staff.png │ │ ├── staff_mummy.png │ │ ├── trident1.png │ │ ├── trident2.png │ │ ├── trident3.png │ │ ├── triple_sword.png │ │ ├── triple_sword2.png │ │ ├── triple_sword3.png │ │ ├── trishula.png │ │ ├── war_axe1.png │ │ ├── war_axe2.png │ │ └── war_axe3.png ├── license.txt ├── misc │ ├── blood │ │ ├── blood_green.png │ │ ├── blood_green1.png │ │ ├── blood_green2.png │ │ ├── blood_green3.png │ │ ├── blood_green4.png │ │ ├── blood_puddle_red.png │ │ ├── blood_puddle_red1.png │ │ ├── blood_puddle_red2.png │ │ ├── blood_puddle_red3.png │ │ ├── blood_puddle_red4.png │ │ ├── blood_red00.png │ │ ├── blood_red01.png │ │ ├── blood_red02.png │ │ ├── blood_red03.png │ │ ├── blood_red04.png │ │ ├── blood_red05.png │ │ ├── blood_red06.png │ │ ├── blood_red07.png │ │ ├── blood_red08.png │ │ ├── blood_red09.png │ │ ├── blood_red10.png │ │ ├── blood_red11.png │ │ ├── blood_red12.png │ │ ├── blood_red13.png │ │ ├── blood_red14.png │ │ ├── blood_red15.png │ │ ├── blood_red16.png │ │ ├── blood_red17.png │ │ ├── blood_red18.png │ │ ├── blood_red19.png │ │ ├── blood_red20.png │ │ ├── blood_red21.png │ │ ├── blood_red22.png │ │ ├── blood_red23.png │ │ ├── blood_red24.png │ │ ├── blood_red25.png │ │ ├── blood_red26.png │ │ ├── blood_red27.png │ │ ├── blood_red28.png │ │ ├── blood_red29.png │ │ ├── wall_blood00_e.png │ │ ├── wall_blood00_n.png │ │ ├── wall_blood00_s.png │ │ ├── wall_blood00_w.png │ │ ├── wall_blood01_e.png │ │ ├── wall_blood01_n.png │ │ ├── wall_blood01_s.png │ │ ├── wall_blood01_w.png │ │ ├── wall_blood03_e.png │ │ ├── wall_blood03_n.png │ │ ├── wall_blood03_s.png │ │ ├── wall_blood03_w.png │ │ ├── wall_blood04_e.png │ │ ├── wall_blood04_n.png │ │ ├── wall_blood04_s.png │ │ ├── wall_blood04_w.png │ │ ├── wall_blood05_e.png │ │ ├── wall_blood05_n.png │ │ ├── wall_blood05_s.png │ │ ├── wall_blood05_w.png │ │ ├── wall_blood06_e.png │ │ ├── wall_blood06_n.png │ │ ├── wall_blood06_s.png │ │ ├── wall_blood06_w.png │ │ ├── wall_blood07_e.png │ │ ├── wall_blood07_n.png │ │ ├── wall_blood07_s.png │ │ ├── wall_blood07_w.png │ │ ├── wall_blood08_e.png │ │ ├── wall_blood08_n.png │ │ ├── wall_blood08_s.png │ │ ├── wall_blood08_w.png │ │ ├── wall_blood09_e.png │ │ ├── wall_blood09_n.png │ │ ├── wall_blood09_s.png │ │ ├── wall_blood09_w.png │ │ ├── wall_blood10_e.png │ │ ├── wall_blood10_n.png │ │ ├── wall_blood10_s.png │ │ ├── wall_blood10_w.png │ │ ├── wall_blood11_e.png │ │ ├── wall_blood11_n.png │ │ ├── wall_blood11_s.png │ │ ├── wall_blood11_w.png │ │ ├── wall_blood12_e.png │ │ ├── wall_blood12_n.png │ │ ├── wall_blood12_s.png │ │ ├── wall_blood12_w.png │ │ ├── wall_blood13_e.png │ │ ├── wall_blood13_n.png │ │ ├── wall_blood13_s.png │ │ ├── wall_blood13_w.png │ │ ├── wall_blood14_e.png │ │ ├── wall_blood14_n.png │ │ ├── wall_blood14_s.png │ │ ├── wall_blood14_w.png │ │ ├── wall_blood15_e.png │ │ ├── wall_blood15_n.png │ │ ├── wall_blood15_s.png │ │ ├── wall_blood15_w.png │ │ ├── wall_blood16_e.png │ │ ├── wall_blood16_n.png │ │ ├── wall_blood16_s.png │ │ ├── wall_blood16_w.png │ │ ├── wall_blood17_e.png │ │ ├── wall_blood17_n.png │ │ ├── wall_blood17_s.png │ │ ├── wall_blood17_w.png │ │ ├── wall_blood18_e.png │ │ ├── wall_blood18_n.png │ │ ├── wall_blood18_s.png │ │ ├── wall_blood18_w.png │ │ ├── wall_old_blood00.png │ │ ├── wall_old_blood01.png │ │ ├── wall_old_blood02.png │ │ ├── wall_old_blood03.png │ │ ├── wall_old_blood04.png │ │ ├── wall_old_blood05.png │ │ ├── wall_old_blood06.png │ │ ├── wall_old_blood07.png │ │ ├── wall_old_blood08.png │ │ └── wall_old_blood09.png │ ├── cursor.png │ ├── cursor_green.png │ ├── cursor_red.png │ ├── error.png │ ├── halo_friendly.png │ ├── halo_gd_neutral.png │ ├── halo_neutral.png │ ├── halo_summoner.png │ ├── icons │ │ ├── animated_weapon.png │ │ ├── berserk.png │ │ ├── blind.png │ │ ├── bound_soul.png │ │ ├── constricted.png │ │ ├── corroded.png │ │ ├── deaths_door.png │ │ ├── demon_pentagram1.png │ │ ├── demon_pentagram2.png │ │ ├── demon_pentagram3.png │ │ ├── demon_pentagram4.png │ │ ├── demon_pentagram5.png │ │ ├── drain.png │ │ ├── fleeing.png │ │ ├── friendly.png │ │ ├── glowing.png │ │ ├── good_neutral.png │ │ ├── hasted.png │ │ ├── idealised.png │ │ ├── infested.png │ │ ├── inner_flame.png │ │ ├── may_stab_brand.png │ │ ├── might.png │ │ ├── neutral.png │ │ ├── new_stair.png │ │ ├── new_transporter.png │ │ ├── pain_mirror.png │ │ ├── petrified.png │ │ ├── petrifying.png │ │ ├── pinned.png │ │ ├── poison.png │ │ ├── possessable.png │ │ ├── recall.png │ │ ├── shackle.png │ │ ├── sleeping.png │ │ ├── slowed.png │ │ ├── something_under.png │ │ ├── sticky_flame.png │ │ ├── summoned.png │ │ ├── summoned_durable.png │ │ ├── swift.png │ │ └── vile_clutch.png │ ├── landing.png │ ├── magicmap.png │ ├── mask_deep_water.png │ ├── mask_deep_water_murky.png │ ├── mask_deep_water_shoals.png │ ├── mask_lava.png │ ├── mask_shallow_water.png │ ├── mask_shallow_water_murky.png │ ├── mask_shallow_water_shoals.png │ ├── mdam_almost_dead.png │ ├── mdam_heavily_damaged.png │ ├── mdam_lightly_damaged.png │ ├── mdam_moderately_damaged.png │ ├── mdam_severely_damaged.png │ ├── mold_glowing1.png │ ├── mold_glowing2.png │ ├── mold_glowing3.png │ ├── mold_glowing4.png │ ├── mold_small1.png │ ├── mold_small2.png │ ├── mold_small3.png │ ├── mold_small4.png │ ├── numbers │ │ ├── minus1.png │ │ ├── minus2.png │ │ ├── minus3.png │ │ ├── minus4.png │ │ ├── minus5.png │ │ ├── num0.png │ │ ├── num1.png │ │ ├── num2.png │ │ ├── num3.png │ │ ├── num4.png │ │ ├── num5.png │ │ ├── num6.png │ │ ├── num7.png │ │ ├── num8.png │ │ ├── num9.png │ │ ├── plus1.png │ │ ├── plus2.png │ │ ├── plus3.png │ │ ├── plus4.png │ │ ├── plus5.png │ │ └── zero.png │ ├── out_of_range.png │ ├── out_of_sight.png │ ├── ray.png │ ├── ray_multi.png │ ├── ray_out_of_range.png │ ├── sensed_monster_easy.png │ ├── sensed_monster_friendly.png │ ├── sensed_monster_nasty.png │ ├── sensed_monster_tough.png │ ├── sensed_monster_trivial.png │ ├── slot.png │ ├── slot_cursed.png │ ├── slot_eq.png │ ├── slot_eq_cursed.png │ ├── slot_vehumet.png │ ├── todo.png │ ├── travel_exclusion.png │ ├── travel_exclusion_centre.png │ ├── travel_path_from1.png │ ├── travel_path_from2.png │ ├── travel_path_from3.png │ ├── travel_path_from4.png │ ├── travel_path_from5.png │ ├── travel_path_from6.png │ ├── travel_path_from7.png │ ├── travel_path_from8.png │ ├── travel_path_to1.png │ ├── travel_path_to2.png │ ├── travel_path_to3.png │ ├── travel_path_to4.png │ ├── travel_path_to5.png │ ├── travel_path_to6.png │ ├── travel_path_to7.png │ ├── travel_path_to8.png │ ├── tutorial_cursor.png │ ├── unseen.png │ ├── unseen_armour.png │ ├── unseen_item.png │ ├── unseen_monster.png │ └── unseen_weapon.png ├── mon │ ├── aberrations │ │ ├── abomination_large.png │ │ ├── abomination_large1.png │ │ ├── abomination_large2.png │ │ ├── abomination_large3.png │ │ ├── abomination_large4.png │ │ ├── abomination_large5.png │ │ ├── abomination_large6.png │ │ ├── abomination_large7.png │ │ ├── abomination_large8.png │ │ ├── abomination_large9.png │ │ ├── abomination_small.png │ │ ├── abomination_small1.png │ │ ├── glowing_orange_brain.png │ │ ├── orb_guardian.png │ │ ├── tentacled_monstrosity.png │ │ ├── ugly_thing.png │ │ ├── ugly_thing1.png │ │ ├── ugly_thing2.png │ │ ├── ugly_thing3.png │ │ ├── ugly_thing4.png │ │ ├── ugly_thing5.png │ │ ├── unseen_horror.png │ │ ├── very_ugly_thing.png │ │ ├── very_ugly_thing1.png │ │ ├── very_ugly_thing2.png │ │ ├── very_ugly_thing3.png │ │ ├── very_ugly_thing4.png │ │ └── very_ugly_thing5.png │ ├── abyss │ │ ├── ancient_zyme.png │ │ ├── apocalypse_crab.png │ │ ├── lurking_horror.png │ │ ├── starcursed_mass.png │ │ ├── tentacled_starspawn.png │ │ ├── thrashing_horror.png │ │ ├── worldbinder.png │ │ └── wretched_star.png │ ├── amorphous │ │ ├── acid_blob.png │ │ ├── azure_jelly.png │ │ ├── death_ooze.png │ │ ├── glowing_shapeshifter.png │ │ ├── jelly.png │ │ ├── ooze.png │ │ ├── rockslime.png │ │ ├── shapeshifter.png │ │ ├── slime_creature.png │ │ ├── slime_creature2.png │ │ ├── slime_creature3.png │ │ ├── slime_creature4.png │ │ └── slime_creature5.png │ ├── animals │ │ ├── adder.png │ │ ├── alligator.png │ │ ├── alligator_snapping_turtle.png │ │ ├── anaconda.png │ │ ├── ball_python.png │ │ ├── basilisk.png │ │ ├── bat.png │ │ ├── bennu.png │ │ ├── black_bear.png │ │ ├── black_mamba.png │ │ ├── blink_frog.png │ │ ├── bullfrog.png │ │ ├── butterfly.png │ │ ├── butterfly1.png │ │ ├── butterfly10.png │ │ ├── butterfly2.png │ │ ├── butterfly3.png │ │ ├── butterfly4.png │ │ ├── butterfly5.png │ │ ├── butterfly6.png │ │ ├── butterfly7.png │ │ ├── butterfly8.png │ │ ├── butterfly9.png │ │ ├── cane_toad.png │ │ ├── catoblepas.png │ │ ├── caustic_shrike.png │ │ ├── crocodile.png │ │ ├── dart_slug.png │ │ ├── death_yak.png │ │ ├── doom_hound.png │ │ ├── dream_sheep.png │ │ ├── elephant.png │ │ ├── elephant_demonic.png │ │ ├── elephant_dire.png │ │ ├── elephant_slug.png │ │ ├── emperor_scorpion.png │ │ ├── fire_bat.png │ │ ├── fire_crab.png │ │ ├── frilled_lizard.png │ │ ├── ghost_crab.png │ │ ├── ghost_moth.png │ │ ├── giant_cockroach.png │ │ ├── goliath_beetle.png │ │ ├── goliath_frog.png │ │ ├── green_rat.png │ │ ├── hell_hog.png │ │ ├── hell_hound.png │ │ ├── hippogriff.png │ │ ├── hog.png │ │ ├── holy_swine.png │ │ ├── hornet.png │ │ ├── hound.png │ │ ├── howler.png │ │ ├── ice_beast.png │ │ ├── iguana.png │ │ ├── jackal.png │ │ ├── jumping_spider.png │ │ ├── killer_bee.png │ │ ├── komodo_dragon.png │ │ ├── leopard_gecko.png │ │ ├── mana_viper.png │ │ ├── manticore.png │ │ ├── moth_of_wrath.png │ │ ├── orange_rat.png │ │ ├── orb_spider.png │ │ ├── polar_bear.png │ │ ├── porcupine.png │ │ ├── queen_ant.png │ │ ├── queen_bee.png │ │ ├── quokka.png │ │ ├── raiju.png │ │ ├── rat.png │ │ ├── redback.png │ │ ├── scorpion.png │ │ ├── sea_snake.png │ │ ├── shard_shrike.png │ │ ├── shock_serpent.png │ │ ├── sky_beast.png │ │ ├── snapping_turtle.png │ │ ├── soldier_ant.png │ │ ├── spark_wasp.png │ │ ├── tarantella.png │ │ ├── torpor_snail.png │ │ ├── tyrant_leech.png │ │ ├── vampire_bat.png │ │ ├── vampire_mosquito.png │ │ ├── warg.png │ │ ├── water_moccasin.png │ │ ├── wolf.png │ │ ├── wolf_spider.png │ │ ├── worker_ant.png │ │ ├── worm.png │ │ └── yak.png │ ├── aquatic │ │ ├── electric_eel.png │ │ ├── kraken_head.png │ │ ├── lava_snake.png │ │ ├── octopode.png │ │ ├── swamp_worm.png │ │ └── swamp_worm_water.png │ ├── demihumanoids │ │ ├── entropy_weaver.png │ │ ├── faun.png │ │ ├── formicid.png │ │ ├── greenwood_witch.png │ │ ├── guardian_serpent.png │ │ ├── harpy.png │ │ ├── meliai.png │ │ ├── merfolk │ │ │ ├── merfolk.png │ │ │ ├── merfolk_aquamancer.png │ │ │ ├── merfolk_aquamancer_water.png │ │ │ ├── merfolk_avatar.png │ │ │ ├── merfolk_avatar_water.png │ │ │ ├── merfolk_impaler.png │ │ │ ├── merfolk_impaler_water.png │ │ │ ├── merfolk_javelineer.png │ │ │ ├── merfolk_javelineer_water.png │ │ │ ├── merfolk_siren.png │ │ │ ├── merfolk_siren_water.png │ │ │ └── merfolk_water.png │ │ ├── minotaur.png │ │ ├── naga │ │ │ ├── naga.png │ │ │ ├── naga_mage.png │ │ │ ├── naga_ritualist.png │ │ │ ├── naga_sharpshooter.png │ │ │ ├── naga_warrior.png │ │ │ └── nagaraja.png │ │ ├── salamander.png │ │ ├── salamander_mystic.png │ │ ├── satyr.png │ │ ├── sphinx.png │ │ ├── taurs │ │ │ ├── centaur-melee.png │ │ │ ├── centaur.png │ │ │ ├── centaur_warrior-melee.png │ │ │ ├── centaur_warrior.png │ │ │ ├── yaktaur-melee.png │ │ │ ├── yaktaur.png │ │ │ ├── yaktaur_captain-melee.png │ │ │ └── yaktaur_captain.png │ │ ├── tengu.png │ │ ├── tengu_conjurer.png │ │ ├── tengu_reaver.png │ │ └── tengu_warrior.png │ ├── demons │ │ ├── balrug.png │ │ ├── blizzard_demon.png │ │ ├── brimstone_fiend.png │ │ ├── cacodemon.png │ │ ├── chaos_spawn1.png │ │ ├── chaos_spawn2.png │ │ ├── chaos_spawn3.png │ │ ├── chaos_spawn4.png │ │ ├── chaos_spawn5.png │ │ ├── crimson_imp.png │ │ ├── demonic_crawler.png │ │ ├── efreet.png │ │ ├── executioner.png │ │ ├── green_death.png │ │ ├── hell_beast.png │ │ ├── hell_sentinel.png │ │ ├── hellion.png │ │ ├── hellwing.png │ │ ├── ice_devil.png │ │ ├── ice_fiend.png │ │ ├── iron_imp.png │ │ ├── lorocyproca.png │ │ ├── neqoxec.png │ │ ├── orange_demon.png │ │ ├── orb_demon.png │ │ ├── quasit.png │ │ ├── rakshasa.png │ │ ├── reaper.png │ │ ├── red_devil.png │ │ ├── rust_devil.png │ │ ├── shadow_demon.png │ │ ├── shadow_fiend.png │ │ ├── shadow_imp.png │ │ ├── sixfirhy.png │ │ ├── smoke_demon.png │ │ ├── soul_eater.png │ │ ├── sun_demon.png │ │ ├── tormentor.png │ │ ├── ufetubus.png │ │ ├── white_imp.png │ │ └── ynoxinul.png │ ├── draco │ │ ├── draco-base-black.png │ │ ├── draco-base-brown.png │ │ ├── draco-base-green.png │ │ ├── draco-base-grey.png │ │ ├── draco-base-mottle.png │ │ ├── draco-base-pale.png │ │ ├── draco-base-purple.png │ │ ├── draco-base-red.png │ │ ├── draco-base-white.png │ │ ├── draco-base-yellow.png │ │ ├── draco-job-annihilator.png │ │ ├── draco-job-knight.png │ │ ├── draco-job-monk.png │ │ ├── draco-job-scorcher.png │ │ ├── draco-job-shifter.png │ │ └── draco-job-stormcaller.png │ ├── dragons │ │ ├── acid_dragon.png │ │ ├── death_drake.png │ │ ├── fire_dragon.png │ │ ├── fire_drake.png │ │ ├── golden_dragon.png │ │ ├── hydra1.png │ │ ├── hydra2.png │ │ ├── hydra3.png │ │ ├── hydra4.png │ │ ├── hydra5.png │ │ ├── ice_dragon.png │ │ ├── iron_dragon.png │ │ ├── lindwurm.png │ │ ├── quicksilver_dragon.png │ │ ├── rime_drake.png │ │ ├── shadow_dragon.png │ │ ├── steam_dragon.png │ │ ├── storm_dragon.png │ │ ├── swamp_dragon.png │ │ ├── swamp_drake.png │ │ ├── wind_drake.png │ │ └── wyvern.png │ ├── eyes │ │ ├── eye_of_devastation.png │ │ ├── eye_of_draining.png │ │ ├── floating_eye.png │ │ ├── golden_eye.png │ │ ├── great_orb_of_eyes.png │ │ └── shining_eye.png │ ├── fungi_plants │ │ ├── active_ballistomycete.png │ │ ├── ballistomycete.png │ │ ├── ballistomycete_spore.png │ │ ├── briar_patch.png │ │ ├── bush.png │ │ ├── bush2.png │ │ ├── bush3.png │ │ ├── bush4.png │ │ ├── bush_burning.png │ │ ├── deathcap.png │ │ ├── fungus1.png │ │ ├── fungus2.png │ │ ├── fungus3.png │ │ ├── fungus4.png │ │ ├── fungus5.png │ │ ├── fungus6.png │ │ ├── fungus7.png │ │ ├── fungus8.png │ │ ├── fungus9.png │ │ ├── hyperactive_ballistomycete.png │ │ ├── oklob_plant.png │ │ ├── oklob_sapling.png │ │ ├── plant_01.png │ │ ├── plant_02.png │ │ ├── plant_03.png │ │ ├── plant_04.png │ │ ├── plant_05.png │ │ ├── plant_06.png │ │ ├── plant_07.png │ │ ├── plant_08.png │ │ ├── plant_09.png │ │ ├── plant_10.png │ │ ├── plant_crypt.png │ │ ├── plant_demonic.png │ │ ├── thorn_hunter.png │ │ ├── toadstool_left.png │ │ ├── toadstool_right.png │ │ ├── treant.png │ │ ├── vine_stalker.png │ │ └── wandering_mushroom.png │ ├── holy │ │ ├── angel.png │ │ ├── apis.png │ │ ├── cherub.png │ │ ├── daeva.png │ │ ├── ophan.png │ │ ├── pearl_dragon.png │ │ └── seraph.png │ ├── humanoids │ │ ├── boggart.png │ │ ├── deep_dwarf.png │ │ ├── deep_troll.png │ │ ├── deep_troll_earth_mage.png │ │ ├── deep_troll_shaman.png │ │ ├── demigod.png │ │ ├── demonspawn │ │ │ ├── black_sun.png │ │ │ ├── blood_saint.png │ │ │ ├── corrupter.png │ │ │ ├── demonspawn.png │ │ │ ├── gelid.png │ │ │ ├── infernal.png │ │ │ ├── monstrous.png │ │ │ ├── torturous.png │ │ │ └── warmonger.png │ │ ├── dryad.png │ │ ├── dwarf.png │ │ ├── elves │ │ │ ├── deep_elf_annihilator.png │ │ │ ├── deep_elf_archer.png │ │ │ ├── deep_elf_blademaster.png │ │ │ ├── deep_elf_death_mage.png │ │ │ ├── deep_elf_demonologist.png │ │ │ ├── deep_elf_elementalist1.png │ │ │ ├── deep_elf_elementalist2.png │ │ │ ├── deep_elf_elementalist3.png │ │ │ ├── deep_elf_elementalist4.png │ │ │ ├── deep_elf_high_priest.png │ │ │ ├── deep_elf_knight.png │ │ │ ├── deep_elf_mage.png │ │ │ ├── deep_elf_master_archer.png │ │ │ ├── deep_elf_sorcerer.png │ │ │ └── elf.png │ │ ├── giants │ │ │ ├── cyclops.png │ │ │ ├── ettin.png │ │ │ ├── fire_giant.png │ │ │ ├── frost_giant.png │ │ │ ├── iron_giant.png │ │ │ ├── juggernaut.png │ │ │ ├── stone_giant.png │ │ │ └── titan.png │ │ ├── gnoll.png │ │ ├── gnoll_sergeant.png │ │ ├── gnoll_shaman.png │ │ ├── goblin.png │ │ ├── halfling.png │ │ ├── hobgoblin.png │ │ ├── humans │ │ │ ├── death_knight.png │ │ │ ├── hell_knight.png │ │ │ ├── human.png │ │ │ ├── human2.png │ │ │ ├── human3.png │ │ │ ├── imperial_myrmidon.png │ │ │ ├── ironheart_beastmaster.png │ │ │ ├── ironheart_convoker.png │ │ │ ├── ironheart_preserver.png │ │ │ ├── killer_klown_blue.png │ │ │ ├── killer_klown_green.png │ │ │ ├── killer_klown_purple.png │ │ │ ├── killer_klown_red.png │ │ │ ├── killer_klown_yellow.png │ │ │ ├── necromancer.png │ │ │ ├── ragged_hierophant.png │ │ │ ├── servant_of_whispers.png │ │ │ ├── slave.png │ │ │ ├── slave_freed.png │ │ │ ├── vault_guard.png │ │ │ ├── vault_sentinel.png │ │ │ ├── vault_warden.png │ │ │ └── wizard.png │ │ ├── iron_troll.png │ │ ├── kobold.png │ │ ├── kobold_brigand.png │ │ ├── kobold_demonologist.png │ │ ├── ogre.png │ │ ├── ogre_mage.png │ │ ├── orcs │ │ │ ├── orc.png │ │ │ ├── orc_high_priest.png │ │ │ ├── orc_knight.png │ │ │ ├── orc_priest.png │ │ │ ├── orc_sorcerer.png │ │ │ ├── orc_warlord.png │ │ │ ├── orc_warrior.png │ │ │ └── orc_wizard.png │ │ ├── spriggans │ │ │ ├── spriggan.png │ │ │ ├── spriggan_air_mage.png │ │ │ ├── spriggan_berserker.png │ │ │ ├── spriggan_defender.png │ │ │ ├── spriggan_druid.png │ │ │ └── spriggan_rider.png │ │ ├── troll.png │ │ ├── two_headed_ogre.png │ │ └── water_nymph.png │ ├── mutantbeast │ │ ├── base1.png │ │ ├── base2.png │ │ ├── base3.png │ │ ├── base4.png │ │ ├── base5.png │ │ ├── bwing1.png │ │ ├── bwing2.png │ │ ├── bwing3.png │ │ ├── bwing4.png │ │ ├── bwing5.png │ │ ├── fire1.png │ │ ├── fire2.png │ │ ├── fire3.png │ │ ├── fire4.png │ │ ├── fire5.png │ │ ├── horn1.png │ │ ├── horn2.png │ │ ├── horn3.png │ │ ├── horn4.png │ │ ├── horn5.png │ │ ├── ox1.png │ │ ├── ox2.png │ │ ├── ox3.png │ │ ├── ox4.png │ │ ├── ox5.png │ │ ├── shock1.png │ │ ├── shock2.png │ │ ├── shock3.png │ │ ├── shock4.png │ │ ├── shock5.png │ │ ├── sting1.png │ │ ├── sting2.png │ │ ├── sting3.png │ │ ├── sting4.png │ │ ├── sting5.png │ │ ├── twing1.png │ │ ├── twing2.png │ │ ├── twing3.png │ │ ├── twing4.png │ │ ├── twing5.png │ │ ├── weird1.png │ │ ├── weird2.png │ │ ├── weird3.png │ │ ├── weird4.png │ │ └── weird5.png │ ├── nonliving │ │ ├── air_elemental.png │ │ ├── ancestor.png │ │ ├── ancestor_battlemage.png │ │ ├── ancestor_hexer.png │ │ ├── ancestor_knight.png │ │ ├── ball_lightning.png │ │ ├── battlesphere.png │ │ ├── crystal_guardian.png │ │ ├── earth_elemental.png │ │ ├── electric_golem.png │ │ ├── fire_elemental.png │ │ ├── fire_vortex1.png │ │ ├── fire_vortex2.png │ │ ├── fire_vortex3.png │ │ ├── fire_vortex4.png │ │ ├── flesh_golem.png │ │ ├── fulminant_prism1.png │ │ ├── fulminant_prism2.png │ │ ├── fulminant_prism3.png │ │ ├── fulminant_prism4.png │ │ ├── gargoyle.png │ │ ├── guardian_golem.png │ │ ├── insubstantial_wisp.png │ │ ├── iron_elemental.png │ │ ├── iron_golem.png │ │ ├── maelstrom1.png │ │ ├── maelstrom2.png │ │ ├── maelstrom3.png │ │ ├── maelstrom4.png │ │ ├── molten_gargoyle.png │ │ ├── orb_of_destruction1.png │ │ ├── orb_of_destruction2.png │ │ ├── orb_of_destruction3.png │ │ ├── orb_of_fire.png │ │ ├── peacekeeper.png │ │ ├── saltling.png │ │ ├── spatial_vortex1.png │ │ ├── spatial_vortex2.png │ │ ├── spatial_vortex3.png │ │ ├── spatial_vortex4.png │ │ ├── spectral_axe.png │ │ ├── spectral_lbl.png │ │ ├── spectral_mace.png │ │ ├── spectral_sbl.png │ │ ├── spectral_spear.png │ │ ├── spectral_staff.png │ │ ├── spectral_whip.png │ │ ├── spellforged_servitor.png │ │ ├── test_spawner.png │ │ ├── toenail_golem.png │ │ ├── twister1.png │ │ ├── twister2.png │ │ ├── twister3.png │ │ ├── twister4.png │ │ ├── ushabti.png │ │ ├── war_gargoyle.png │ │ ├── water_elemental.png │ │ └── wellspring.png │ ├── panlord │ │ ├── demon_body_armour.png │ │ ├── demon_body_caterpillar.png │ │ ├── demon_body_crouch.png │ │ ├── demon_body_fat.png │ │ ├── demon_body_fatter.png │ │ ├── demon_body_mantis.png │ │ ├── demon_body_normal.png │ │ ├── demon_body_skeletal.png │ │ ├── demon_body_spiked.png │ │ ├── demon_body_spotty.png │ │ ├── demon_body_succubus.png │ │ ├── demon_body_tentacley.png │ │ ├── demon_body_thin.png │ │ ├── demon_head_bird.png │ │ ├── demon_head_boxes.png │ │ ├── demon_head_brain.png │ │ ├── demon_head_butterfly.png │ │ ├── demon_head_cow_skull.png │ │ ├── demon_head_cthulhu.png │ │ ├── demon_head_elephant.png │ │ ├── demon_head_eyeball.png │ │ ├── demon_head_fly.png │ │ ├── demon_head_frog.png │ │ ├── demon_head_fungus.png │ │ ├── demon_head_hair.png │ │ ├── demon_head_helmet.png │ │ ├── demon_head_horn.png │ │ ├── demon_head_horns.png │ │ ├── demon_head_horse.png │ │ ├── demon_head_incubus.png │ │ ├── demon_head_medusa.png │ │ ├── demon_head_monkey.png │ │ ├── demon_head_mouse.png │ │ ├── demon_head_ram.png │ │ ├── demon_head_rhino.png │ │ ├── demon_head_skull.png │ │ ├── demon_head_succubus.png │ │ ├── demon_head_teeth.png │ │ ├── demon_head_tentacles.png │ │ ├── demon_head_worm.png │ │ ├── demon_wings_bat.png │ │ ├── demon_wings_bones.png │ │ ├── demon_wings_butterfly.png │ │ ├── demon_wings_butterfly_small.png │ │ ├── demon_wings_demonic.png │ │ ├── demon_wings_dragonfly.png │ │ ├── demon_wings_hooked.png │ │ ├── demon_wings_knobs.png │ │ ├── demon_wings_large.png │ │ ├── demon_wings_medium.png │ │ ├── demon_wings_red.png │ │ ├── demon_wings_sparrow.png │ │ ├── demon_wings_torn.png │ │ └── pandemonium_lord.png │ ├── player │ │ ├── giaggostuono.png │ │ ├── jormungandr.png │ │ ├── lamia.png │ │ ├── maud.png │ │ ├── old-serpent-coc.png │ │ ├── old-serpent-dis.png │ │ ├── old-serpent-geh.png │ │ ├── old-serpent-tar.png │ │ ├── orb_guardian_fetus.png │ │ ├── polymoth.png │ │ └── wiglaf.png │ ├── sprint │ │ ├── dimme.png │ │ ├── orb_of_electricity.png │ │ ├── orb_of_ice.png │ │ └── unspeakable.png │ ├── statues │ │ ├── block_of_ice.png │ │ ├── block_of_ice2.png │ │ ├── dark_vine_statue_base.png │ │ ├── firespitter_statue.png │ │ ├── ice_statue.png │ │ ├── light_vine_statue_base.png │ │ ├── lightning_spire.png │ │ ├── obelisk.png │ │ ├── obsidian_statue.png │ │ ├── orange_crystal_statue.png │ │ ├── overlay_axe.png │ │ ├── overlay_bow.png │ │ ├── overlay_crossbow.png │ │ ├── overlay_mace.png │ │ ├── overlay_mage_hat.png │ │ ├── overlay_scythe.png │ │ ├── overlay_sword.png │ │ ├── overlay_whip.png │ │ ├── pillar_of_salt.png │ │ ├── statue_base.png │ │ ├── training_dummy.png │ │ └── wucad_mu_statue.png │ ├── tentacles │ │ ├── eldritch_corners │ │ │ ├── eldritch_corner_NE.png │ │ │ ├── eldritch_corner_NW.png │ │ │ ├── eldritch_corner_SE.png │ │ │ └── eldritch_corner_SW.png │ │ ├── eldritch_ends │ │ │ ├── eldritch_tentacle1.png │ │ │ ├── eldritch_tentacle10.png │ │ │ ├── eldritch_tentacle2.png │ │ │ ├── eldritch_tentacle3.png │ │ │ ├── eldritch_tentacle4.png │ │ │ ├── eldritch_tentacle5.png │ │ │ ├── eldritch_tentacle6.png │ │ │ ├── eldritch_tentacle7.png │ │ │ ├── eldritch_tentacle8.png │ │ │ ├── eldritch_tentacle9.png │ │ │ ├── eldritch_tentacle_E.png │ │ │ ├── eldritch_tentacle_N.png │ │ │ ├── eldritch_tentacle_NE.png │ │ │ ├── eldritch_tentacle_NW.png │ │ │ ├── eldritch_tentacle_S.png │ │ │ ├── eldritch_tentacle_SE.png │ │ │ ├── eldritch_tentacle_SW.png │ │ │ └── eldritch_tentacle_W.png │ │ ├── eldritch_portal │ │ │ ├── eldritch_tentacle_portal_E.png │ │ │ ├── eldritch_tentacle_portal_N.png │ │ │ ├── eldritch_tentacle_portal_NE.png │ │ │ ├── eldritch_tentacle_portal_NW.png │ │ │ ├── eldritch_tentacle_portal_S.png │ │ │ ├── eldritch_tentacle_portal_SE.png │ │ │ ├── eldritch_tentacle_portal_SW.png │ │ │ └── eldritch_tentacle_portal_W.png │ │ ├── eldritch_segments │ │ │ ├── eldritch_tentacle_segment_E_N.png │ │ │ ├── eldritch_tentacle_segment_E_NW.png │ │ │ ├── eldritch_tentacle_segment_E_S.png │ │ │ ├── eldritch_tentacle_segment_E_SW.png │ │ │ ├── eldritch_tentacle_segment_E_W.png │ │ │ ├── eldritch_tentacle_segment_NE_NW.png │ │ │ ├── eldritch_tentacle_segment_NE_SE.png │ │ │ ├── eldritch_tentacle_segment_NE_SW.png │ │ │ ├── eldritch_tentacle_segment_NW_SE.png │ │ │ ├── eldritch_tentacle_segment_NW_SW.png │ │ │ ├── eldritch_tentacle_segment_N_S.png │ │ │ ├── eldritch_tentacle_segment_N_SE.png │ │ │ ├── eldritch_tentacle_segment_N_SW.png │ │ │ ├── eldritch_tentacle_segment_N_W.png │ │ │ ├── eldritch_tentacle_segment_SE_SW.png │ │ │ ├── eldritch_tentacle_segment_S_NE.png │ │ │ ├── eldritch_tentacle_segment_S_NW.png │ │ │ ├── eldritch_tentacle_segment_S_W.png │ │ │ ├── eldritch_tentacle_segment_W_NE.png │ │ │ └── eldritch_tentacle_segment_W_SE.png │ │ ├── kraken_corners │ │ │ ├── kraken_corner_NE.png │ │ │ ├── kraken_corner_NW.png │ │ │ ├── kraken_corner_SE.png │ │ │ └── kraken_corner_SW.png │ │ ├── kraken_ends │ │ │ ├── kraken_tentacle1.png │ │ │ ├── kraken_tentacle2.png │ │ │ ├── kraken_tentacle3.png │ │ │ ├── kraken_tentacle4.png │ │ │ ├── kraken_tentacle5.png │ │ │ ├── kraken_tentacle6.png │ │ │ ├── kraken_tentacle_E.png │ │ │ ├── kraken_tentacle_N.png │ │ │ ├── kraken_tentacle_NE.png │ │ │ ├── kraken_tentacle_NW.png │ │ │ ├── kraken_tentacle_S.png │ │ │ ├── kraken_tentacle_SE.png │ │ │ ├── kraken_tentacle_SW.png │ │ │ └── kraken_tentacle_W.png │ │ ├── kraken_segments │ │ │ ├── kraken_tentacle_segment_E_N.png │ │ │ ├── kraken_tentacle_segment_E_NW.png │ │ │ ├── kraken_tentacle_segment_E_S.png │ │ │ ├── kraken_tentacle_segment_E_SW.png │ │ │ ├── kraken_tentacle_segment_E_W.png │ │ │ ├── kraken_tentacle_segment_NE_NW.png │ │ │ ├── kraken_tentacle_segment_NE_SE.png │ │ │ ├── kraken_tentacle_segment_NE_SW.png │ │ │ ├── kraken_tentacle_segment_NW_SE.png │ │ │ ├── kraken_tentacle_segment_NW_SW.png │ │ │ ├── kraken_tentacle_segment_N_S.png │ │ │ ├── kraken_tentacle_segment_N_SE.png │ │ │ ├── kraken_tentacle_segment_N_SW.png │ │ │ ├── kraken_tentacle_segment_N_W.png │ │ │ ├── kraken_tentacle_segment_SE_SW.png │ │ │ ├── kraken_tentacle_segment_S_NE.png │ │ │ ├── kraken_tentacle_segment_S_NW.png │ │ │ ├── kraken_tentacle_segment_S_W.png │ │ │ ├── kraken_tentacle_segment_W_NE.png │ │ │ ├── kraken_tentacle_segment_W_SE.png │ │ │ ├── kraken_tentacle_segment_water_E.png │ │ │ ├── kraken_tentacle_segment_water_N.png │ │ │ ├── kraken_tentacle_segment_water_NE.png │ │ │ ├── kraken_tentacle_segment_water_NW.png │ │ │ ├── kraken_tentacle_segment_water_S.png │ │ │ ├── kraken_tentacle_segment_water_SE.png │ │ │ ├── kraken_tentacle_segment_water_SW.png │ │ │ ├── kraken_tentacle_segment_water_W.png │ │ │ └── kraken_tentacle_segment_water_water.png │ │ ├── kraken_simulacrum_corners │ │ │ ├── kraken_simulacrum_corner_NE.png │ │ │ ├── kraken_simulacrum_corner_NW.png │ │ │ ├── kraken_simulacrum_corner_SE.png │ │ │ └── kraken_simulacrum_corner_SW.png │ │ ├── kraken_simulacrum_ends │ │ │ ├── kraken_simulacrum_tentacle1.png │ │ │ ├── kraken_simulacrum_tentacle2.png │ │ │ ├── kraken_simulacrum_tentacle3.png │ │ │ ├── kraken_simulacrum_tentacle4.png │ │ │ ├── kraken_simulacrum_tentacle5.png │ │ │ ├── kraken_simulacrum_tentacle6.png │ │ │ ├── kraken_simulacrum_tentacle_E.png │ │ │ ├── kraken_simulacrum_tentacle_N.png │ │ │ ├── kraken_simulacrum_tentacle_NE.png │ │ │ ├── kraken_simulacrum_tentacle_NW.png │ │ │ ├── kraken_simulacrum_tentacle_S.png │ │ │ ├── kraken_simulacrum_tentacle_SE.png │ │ │ ├── kraken_simulacrum_tentacle_SW.png │ │ │ └── kraken_simulacrum_tentacle_W.png │ │ ├── kraken_simulacrum_segments │ │ │ ├── kraken_simulacrum_tentacle_segment_E_N.png │ │ │ ├── kraken_simulacrum_tentacle_segment_E_NW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_E_S.png │ │ │ ├── kraken_simulacrum_tentacle_segment_E_SW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_E_W.png │ │ │ ├── kraken_simulacrum_tentacle_segment_NE_NW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_NE_SE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_NE_SW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_NW_SE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_NW_SW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_N_S.png │ │ │ ├── kraken_simulacrum_tentacle_segment_N_SE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_N_SW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_N_W.png │ │ │ ├── kraken_simulacrum_tentacle_segment_SE_SW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_S_NE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_S_NW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_S_W.png │ │ │ ├── kraken_simulacrum_tentacle_segment_W_NE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_W_SE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_E.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_N.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_NE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_NW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_S.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_SE.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_SW.png │ │ │ ├── kraken_simulacrum_tentacle_segment_water_W.png │ │ │ └── kraken_simulacrum_tentacle_segment_water_water.png │ │ ├── kraken_spectral_corners │ │ │ ├── kraken_spectral_corner_NE.png │ │ │ ├── kraken_spectral_corner_NW.png │ │ │ ├── kraken_spectral_corner_SE.png │ │ │ └── kraken_spectral_corner_SW.png │ │ ├── kraken_spectral_ends │ │ │ ├── kraken_spectral_tentacle1.png │ │ │ ├── kraken_spectral_tentacle2.png │ │ │ ├── kraken_spectral_tentacle3.png │ │ │ ├── kraken_spectral_tentacle4.png │ │ │ ├── kraken_spectral_tentacle5.png │ │ │ ├── kraken_spectral_tentacle6.png │ │ │ ├── kraken_spectral_tentacle_E.png │ │ │ ├── kraken_spectral_tentacle_N.png │ │ │ ├── kraken_spectral_tentacle_NE.png │ │ │ ├── kraken_spectral_tentacle_NW.png │ │ │ ├── kraken_spectral_tentacle_S.png │ │ │ ├── kraken_spectral_tentacle_SE.png │ │ │ ├── kraken_spectral_tentacle_SW.png │ │ │ └── kraken_spectral_tentacle_W.png │ │ ├── kraken_spectral_segments │ │ │ ├── kraken_spectral_tentacle_segment_E_N.png │ │ │ ├── kraken_spectral_tentacle_segment_E_NW.png │ │ │ ├── kraken_spectral_tentacle_segment_E_S.png │ │ │ ├── kraken_spectral_tentacle_segment_E_SW.png │ │ │ ├── kraken_spectral_tentacle_segment_E_W.png │ │ │ ├── kraken_spectral_tentacle_segment_NE_NW.png │ │ │ ├── kraken_spectral_tentacle_segment_NE_SE.png │ │ │ ├── kraken_spectral_tentacle_segment_NE_SW.png │ │ │ ├── kraken_spectral_tentacle_segment_NW_SE.png │ │ │ ├── kraken_spectral_tentacle_segment_NW_SW.png │ │ │ ├── kraken_spectral_tentacle_segment_N_S.png │ │ │ ├── kraken_spectral_tentacle_segment_N_SE.png │ │ │ ├── kraken_spectral_tentacle_segment_N_SW.png │ │ │ ├── kraken_spectral_tentacle_segment_N_W.png │ │ │ ├── kraken_spectral_tentacle_segment_SE_SW.png │ │ │ ├── kraken_spectral_tentacle_segment_S_NE.png │ │ │ ├── kraken_spectral_tentacle_segment_S_NW.png │ │ │ ├── kraken_spectral_tentacle_segment_S_W.png │ │ │ ├── kraken_spectral_tentacle_segment_W_NE.png │ │ │ ├── kraken_spectral_tentacle_segment_W_SE.png │ │ │ ├── kraken_spectral_tentacle_segment_water_E.png │ │ │ ├── kraken_spectral_tentacle_segment_water_N.png │ │ │ ├── kraken_spectral_tentacle_segment_water_NE.png │ │ │ ├── kraken_spectral_tentacle_segment_water_NW.png │ │ │ ├── kraken_spectral_tentacle_segment_water_S.png │ │ │ ├── kraken_spectral_tentacle_segment_water_SE.png │ │ │ ├── kraken_spectral_tentacle_segment_water_SW.png │ │ │ ├── kraken_spectral_tentacle_segment_water_W.png │ │ │ └── kraken_spectral_tentacle_segment_water_water.png │ │ ├── kraken_zombie_corners │ │ │ ├── kraken_zombie_corner_NE.png │ │ │ ├── kraken_zombie_corner_NW.png │ │ │ ├── kraken_zombie_corner_SE.png │ │ │ └── kraken_zombie_corner_SW.png │ │ ├── kraken_zombie_ends │ │ │ ├── kraken_zombie_tentacle1.png │ │ │ ├── kraken_zombie_tentacle2.png │ │ │ ├── kraken_zombie_tentacle3.png │ │ │ ├── kraken_zombie_tentacle4.png │ │ │ ├── kraken_zombie_tentacle5.png │ │ │ ├── kraken_zombie_tentacle6.png │ │ │ ├── kraken_zombie_tentacle_E.png │ │ │ ├── kraken_zombie_tentacle_N.png │ │ │ ├── kraken_zombie_tentacle_NE.png │ │ │ ├── kraken_zombie_tentacle_NW.png │ │ │ ├── kraken_zombie_tentacle_S.png │ │ │ ├── kraken_zombie_tentacle_SE.png │ │ │ ├── kraken_zombie_tentacle_SW.png │ │ │ └── kraken_zombie_tentacle_W.png │ │ ├── kraken_zombie_segments │ │ │ ├── kraken_zombie_tentacle_segment_E_N.png │ │ │ ├── kraken_zombie_tentacle_segment_E_NW.png │ │ │ ├── kraken_zombie_tentacle_segment_E_S.png │ │ │ ├── kraken_zombie_tentacle_segment_E_SW.png │ │ │ ├── kraken_zombie_tentacle_segment_E_W.png │ │ │ ├── kraken_zombie_tentacle_segment_NE_NW.png │ │ │ ├── kraken_zombie_tentacle_segment_NE_SE.png │ │ │ ├── kraken_zombie_tentacle_segment_NE_SW.png │ │ │ ├── kraken_zombie_tentacle_segment_NW_SE.png │ │ │ ├── kraken_zombie_tentacle_segment_NW_SW.png │ │ │ ├── kraken_zombie_tentacle_segment_N_S.png │ │ │ ├── kraken_zombie_tentacle_segment_N_SE.png │ │ │ ├── kraken_zombie_tentacle_segment_N_SW.png │ │ │ ├── kraken_zombie_tentacle_segment_N_W.png │ │ │ ├── kraken_zombie_tentacle_segment_SE_SW.png │ │ │ ├── kraken_zombie_tentacle_segment_S_NE.png │ │ │ ├── kraken_zombie_tentacle_segment_S_NW.png │ │ │ ├── kraken_zombie_tentacle_segment_S_W.png │ │ │ ├── kraken_zombie_tentacle_segment_W_NE.png │ │ │ ├── kraken_zombie_tentacle_segment_W_SE.png │ │ │ ├── kraken_zombie_tentacle_segment_water_E.png │ │ │ ├── kraken_zombie_tentacle_segment_water_N.png │ │ │ ├── kraken_zombie_tentacle_segment_water_NE.png │ │ │ ├── kraken_zombie_tentacle_segment_water_NW.png │ │ │ ├── kraken_zombie_tentacle_segment_water_S.png │ │ │ ├── kraken_zombie_tentacle_segment_water_SE.png │ │ │ ├── kraken_zombie_tentacle_segment_water_SW.png │ │ │ ├── kraken_zombie_tentacle_segment_water_W.png │ │ │ └── kraken_zombie_tentacle_segment_water_water.png │ │ ├── starspawn_corners │ │ │ ├── starspawn_corner_NE.png │ │ │ ├── starspawn_corner_NW.png │ │ │ ├── starspawn_corner_SE.png │ │ │ └── starspawn_corner_SW.png │ │ ├── starspawn_ends │ │ │ ├── starspawn_tentacle_E.png │ │ │ ├── starspawn_tentacle_N.png │ │ │ ├── starspawn_tentacle_NE.png │ │ │ ├── starspawn_tentacle_NW.png │ │ │ ├── starspawn_tentacle_S.png │ │ │ ├── starspawn_tentacle_SE.png │ │ │ ├── starspawn_tentacle_SW.png │ │ │ └── starspawn_tentacle_W.png │ │ ├── starspawn_segments │ │ │ ├── starspawn_tentacle_segment_E_N.png │ │ │ ├── starspawn_tentacle_segment_E_NW.png │ │ │ ├── starspawn_tentacle_segment_E_S.png │ │ │ ├── starspawn_tentacle_segment_E_SW.png │ │ │ ├── starspawn_tentacle_segment_E_W.png │ │ │ ├── starspawn_tentacle_segment_NE_NW.png │ │ │ ├── starspawn_tentacle_segment_NE_SE.png │ │ │ ├── starspawn_tentacle_segment_NE_SW.png │ │ │ ├── starspawn_tentacle_segment_NW_SE.png │ │ │ ├── starspawn_tentacle_segment_NW_SW.png │ │ │ ├── starspawn_tentacle_segment_N_S.png │ │ │ ├── starspawn_tentacle_segment_N_SE.png │ │ │ ├── starspawn_tentacle_segment_N_SW.png │ │ │ ├── starspawn_tentacle_segment_N_W.png │ │ │ ├── starspawn_tentacle_segment_SE_SW.png │ │ │ ├── starspawn_tentacle_segment_S_NE.png │ │ │ ├── starspawn_tentacle_segment_S_NW.png │ │ │ ├── starspawn_tentacle_segment_S_W.png │ │ │ ├── starspawn_tentacle_segment_W_NE.png │ │ │ └── starspawn_tentacle_segment_W_SE.png │ │ ├── vine_corners │ │ │ ├── vine_corner_NE.png │ │ │ ├── vine_corner_NW.png │ │ │ ├── vine_corner_SE.png │ │ │ └── vine_corner_SW.png │ │ ├── vine_ends │ │ │ ├── vine_E.png │ │ │ ├── vine_N.png │ │ │ ├── vine_NE.png │ │ │ ├── vine_NW.png │ │ │ ├── vine_S.png │ │ │ ├── vine_SE.png │ │ │ ├── vine_SW.png │ │ │ └── vine_W.png │ │ └── vine_segments │ │ │ ├── vine_segment_E_N.png │ │ │ ├── vine_segment_E_NE.png │ │ │ ├── vine_segment_E_NW.png │ │ │ ├── vine_segment_E_S.png │ │ │ ├── vine_segment_E_SE.png │ │ │ ├── vine_segment_E_SW.png │ │ │ ├── vine_segment_E_W.png │ │ │ ├── vine_segment_NE_NW.png │ │ │ ├── vine_segment_NE_SE.png │ │ │ ├── vine_segment_NE_SW.png │ │ │ ├── vine_segment_NW_SE.png │ │ │ ├── vine_segment_NW_SW.png │ │ │ ├── vine_segment_N_NE.png │ │ │ ├── vine_segment_N_NW.png │ │ │ ├── vine_segment_N_S.png │ │ │ ├── vine_segment_N_SE.png │ │ │ ├── vine_segment_N_SW.png │ │ │ ├── vine_segment_N_W.png │ │ │ ├── vine_segment_SE_SW.png │ │ │ ├── vine_segment_S_NE.png │ │ │ ├── vine_segment_S_NW.png │ │ │ ├── vine_segment_S_SE.png │ │ │ ├── vine_segment_S_SW.png │ │ │ ├── vine_segment_S_W.png │ │ │ ├── vine_segment_W_NE.png │ │ │ ├── vine_segment_W_NW.png │ │ │ ├── vine_segment_W_SE.png │ │ │ └── vine_segment_W_SW.png │ ├── undead │ │ ├── ancient_champion.png │ │ ├── ancient_lich.png │ │ ├── bog_body.png │ │ ├── bone_dragon.png │ │ ├── crawling_corpse.png │ │ ├── curse_skull.png │ │ ├── curse_toe.png │ │ ├── death_cob.png │ │ ├── death_scarab.png │ │ ├── drowned_soul.png │ │ ├── eidolon.png │ │ ├── flayed_ghost.png │ │ ├── flying_skull.png │ │ ├── freezing_wraith.png │ │ ├── ghost.png │ │ ├── ghoul.png │ │ ├── greater_mummy.png │ │ ├── guardian_mummy.png │ │ ├── halazid_warlock.png │ │ ├── hungry_ghost.png │ │ ├── jiangshi.png │ │ ├── lich.png │ │ ├── lost_soul.png │ │ ├── macabre_mass.png │ │ ├── missing_ghost.png │ │ ├── mummy.png │ │ ├── mummy_priest.png │ │ ├── necrophage.png │ │ ├── phantasmal_warrior.png │ │ ├── phantom.png │ │ ├── profane_servitor.png │ │ ├── revenant.png │ │ ├── shadow.png │ │ ├── shadow_wraith.png │ │ ├── silent_spectre.png │ │ ├── simulacra │ │ │ ├── simulacrum_ant.png │ │ │ ├── simulacrum_bat.png │ │ │ ├── simulacrum_bee.png │ │ │ ├── simulacrum_centaur.png │ │ │ ├── simulacrum_dragon.png │ │ │ ├── simulacrum_drake.png │ │ │ ├── simulacrum_fish.png │ │ │ ├── simulacrum_hydra1.png │ │ │ ├── simulacrum_hydra2.png │ │ │ ├── simulacrum_hydra3.png │ │ │ ├── simulacrum_hydra4.png │ │ │ ├── simulacrum_hydra5.png │ │ │ ├── simulacrum_kraken.png │ │ │ ├── simulacrum_large.png │ │ │ ├── simulacrum_lizard.png │ │ │ ├── simulacrum_naga.png │ │ │ ├── simulacrum_quadruped_large.png │ │ │ ├── simulacrum_quadruped_small.png │ │ │ ├── simulacrum_shrike.png │ │ │ ├── simulacrum_small.png │ │ │ ├── simulacrum_snake.png │ │ │ └── simulacrum_spider.png │ │ ├── skeletal_warrior.png │ │ ├── skeletons │ │ │ ├── skeleton_bat.png │ │ │ ├── skeleton_bird.png │ │ │ ├── skeleton_centaur.png │ │ │ ├── skeleton_draconian.png │ │ │ ├── skeleton_dragon.png │ │ │ ├── skeleton_drake.png │ │ │ ├── skeleton_fish.png │ │ │ ├── skeleton_frog.png │ │ │ ├── skeleton_humanoid_large.png │ │ │ ├── skeleton_humanoid_medium.png │ │ │ ├── skeleton_humanoid_small.png │ │ │ ├── skeleton_hydra1.png │ │ │ ├── skeleton_hydra2.png │ │ │ ├── skeleton_hydra3.png │ │ │ ├── skeleton_hydra4.png │ │ │ ├── skeleton_hydra5.png │ │ │ ├── skeleton_lizard.png │ │ │ ├── skeleton_naga.png │ │ │ ├── skeleton_quadruped_large.png │ │ │ ├── skeleton_quadruped_small.png │ │ │ ├── skeleton_quadruped_winged.png │ │ │ ├── skeleton_snake.png │ │ │ ├── skeleton_troll.png │ │ │ ├── skeleton_turtle.png │ │ │ └── skeleton_ugly_thing.png │ │ ├── spectrals │ │ │ ├── spectral_ant.png │ │ │ ├── spectral_bat.png │ │ │ ├── spectral_bee.png │ │ │ ├── spectral_centaur.png │ │ │ ├── spectral_dragon.png │ │ │ ├── spectral_drake.png │ │ │ ├── spectral_fish.png │ │ │ ├── spectral_frog.png │ │ │ ├── spectral_hydra1.png │ │ │ ├── spectral_hydra2.png │ │ │ ├── spectral_hydra3.png │ │ │ ├── spectral_hydra4.png │ │ │ ├── spectral_hydra5.png │ │ │ ├── spectral_kraken.png │ │ │ ├── spectral_large.png │ │ │ ├── spectral_lizard.png │ │ │ ├── spectral_naga.png │ │ │ ├── spectral_quadruped_large.png │ │ │ ├── spectral_quadruped_small.png │ │ │ ├── spectral_small.png │ │ │ ├── spectral_snake.png │ │ │ └── spectral_spider.png │ │ ├── vampire.png │ │ ├── vampire_knight.png │ │ ├── vampire_mage.png │ │ ├── wendigo.png │ │ ├── wight.png │ │ ├── wraith.png │ │ └── zombies │ │ │ ├── zombie_adder.png │ │ │ ├── zombie_bat.png │ │ │ ├── zombie_bear.png │ │ │ ├── zombie_bee.png │ │ │ ├── zombie_beetle.png │ │ │ ├── zombie_bird.png │ │ │ ├── zombie_bug.png │ │ │ ├── zombie_centaur.png │ │ │ ├── zombie_crab.png │ │ │ ├── zombie_draconian.png │ │ │ ├── zombie_dragon.png │ │ │ ├── zombie_drake.png │ │ │ ├── zombie_elephant.png │ │ │ ├── zombie_elf.png │ │ │ ├── zombie_fawn.png │ │ │ ├── zombie_fish.png │ │ │ ├── zombie_frog.png │ │ │ ├── zombie_gnoll.png │ │ │ ├── zombie_goblin.png │ │ │ ├── zombie_golden_dragon.png │ │ │ ├── zombie_guardian_serpent.png │ │ │ ├── zombie_harpy.png │ │ │ ├── zombie_hobgoblin.png │ │ │ ├── zombie_hound.png │ │ │ ├── zombie_human.png │ │ │ ├── zombie_hydra1.png │ │ │ ├── zombie_hydra2.png │ │ │ ├── zombie_hydra3.png │ │ │ ├── zombie_hydra4.png │ │ │ ├── zombie_hydra5.png │ │ │ ├── zombie_iron_dragon.png │ │ │ ├── zombie_jackal.png │ │ │ ├── zombie_juggernaut.png │ │ │ ├── zombie_kobold.png │ │ │ ├── zombie_kraken_head.png │ │ │ ├── zombie_large.png │ │ │ ├── zombie_lernaean_hydra01.png │ │ │ ├── zombie_lernaean_hydra02.png │ │ │ ├── zombie_lernaean_hydra03.png │ │ │ ├── zombie_lernaean_hydra04.png │ │ │ ├── zombie_lernaean_hydra05.png │ │ │ ├── zombie_lernaean_hydra06.png │ │ │ ├── zombie_lernaean_hydra07.png │ │ │ ├── zombie_lernaean_hydra08.png │ │ │ ├── zombie_lernaean_hydra09.png │ │ │ ├── zombie_lernaean_hydra10.png │ │ │ ├── zombie_lindwurm.png │ │ │ ├── zombie_lizard.png │ │ │ ├── zombie_meliai.png │ │ │ ├── zombie_merfolk.png │ │ │ ├── zombie_minotaur.png │ │ │ ├── zombie_monkey.png │ │ │ ├── zombie_naga.png │ │ │ ├── zombie_octopode.png │ │ │ ├── zombie_ogre.png │ │ │ ├── zombie_orc.png │ │ │ ├── zombie_quadruped_large.png │ │ │ ├── zombie_quadruped_small.png │ │ │ ├── zombie_quadruped_winged.png │ │ │ ├── zombie_quicksilver_dragon.png │ │ │ ├── zombie_quokka.png │ │ │ ├── zombie_rat.png │ │ │ ├── zombie_roach.png │ │ │ ├── zombie_salamander.png │ │ │ ├── zombie_scorpion.png │ │ │ ├── zombie_small.png │ │ │ ├── zombie_snail.png │ │ │ ├── zombie_snake.png │ │ │ ├── zombie_spider_large.png │ │ │ ├── zombie_spider_small.png │ │ │ ├── zombie_spriggan.png │ │ │ ├── zombie_troll.png │ │ │ ├── zombie_turtle.png │ │ │ ├── zombie_ugly_thing.png │ │ │ ├── zombie_worm.png │ │ │ ├── zombie_wyvern.png │ │ │ ├── zombie_yak.png │ │ │ └── zombie_yaktaur.png │ ├── unique │ │ ├── agnes.png │ │ ├── agnes_staveless.png │ │ ├── aizul.png │ │ ├── antaeus.png │ │ ├── arachne.png │ │ ├── arachne_staveless.png │ │ ├── asmodeus.png │ │ ├── asterion.png │ │ ├── azrael.png │ │ ├── bai_suizhen.png │ │ ├── bai_suizhen_dragon.png │ │ ├── blork_the_orc.png │ │ ├── boris.png │ │ ├── cerebov.png │ │ ├── cerebov_swordless.png │ │ ├── chuck.png │ │ ├── crazy_yiuf.png │ │ ├── dispater.png │ │ ├── dissolution.png │ │ ├── donald.png │ │ ├── dowan.png │ │ ├── dowan2.png │ │ ├── duvessa.png │ │ ├── duvessa2.png │ │ ├── edmund.png │ │ ├── edmund_weaponless.png │ │ ├── enchantress.png │ │ ├── ereshkigal.png │ │ ├── erica.png │ │ ├── erica_swordless.png │ │ ├── erolcha.png │ │ ├── eustachio.png │ │ ├── fannar.png │ │ ├── frances.png │ │ ├── frederick.png │ │ ├── gastronok.png │ │ ├── geryon.png │ │ ├── gloorx_vloq.png │ │ ├── grinder.png │ │ ├── grum.png │ │ ├── harold.png │ │ ├── ignacio.png │ │ ├── ijyb.png │ │ ├── ilsuiw.png │ │ ├── ilsuiw_water.png │ │ ├── jessica.png │ │ ├── jorgrun.png │ │ ├── jory.png │ │ ├── joseph.png │ │ ├── josephine.png │ │ ├── khufu.png │ │ ├── kirke.png │ │ ├── lernaean_hydra01.png │ │ ├── lernaean_hydra02.png │ │ ├── lernaean_hydra03.png │ │ ├── lernaean_hydra04.png │ │ ├── lernaean_hydra05.png │ │ ├── lernaean_hydra06.png │ │ ├── lernaean_hydra07.png │ │ ├── lernaean_hydra08.png │ │ ├── lernaean_hydra09.png │ │ ├── lernaean_hydra10.png │ │ ├── lom_lobon.png │ │ ├── louise.png │ │ ├── mara.png │ │ ├── margery.png │ │ ├── maurice.png │ │ ├── menkaure.png │ │ ├── mennas.png │ │ ├── mnoleg.png │ │ ├── murray.png │ │ ├── natasha.png │ │ ├── nellie.png │ │ ├── nergalle.png │ │ ├── nessos.png │ │ ├── nikola.png │ │ ├── pikel.png │ │ ├── polyphemus.png │ │ ├── prince_ribbit.png │ │ ├── psyche.png │ │ ├── purgy.png │ │ ├── robin.png │ │ ├── roxanne.png │ │ ├── royal_jelly.png │ │ ├── rupert.png │ │ ├── saint_roka.png │ │ ├── serpent_of_hell-coc.png │ │ ├── serpent_of_hell-dis.png │ │ ├── serpent_of_hell-geh.png │ │ ├── serpent_of_hell-tar.png │ │ ├── sigmund.png │ │ ├── snorg.png │ │ ├── sojobo.png │ │ ├── sonja.png │ │ ├── terence.png │ │ ├── tiamat_black.png │ │ ├── tiamat_green.png │ │ ├── tiamat_purple.png │ │ ├── tiamat_red.png │ │ ├── tiamat_white.png │ │ ├── tiamat_yellow.png │ │ ├── urug.png │ │ ├── vashnia.png │ │ ├── vv.png │ │ ├── xtahua.png │ │ └── zenata.png │ └── vault │ │ ├── air_elementalist_statue.png │ │ ├── cigotuvis_monster.png │ │ ├── cloud_mage.png │ │ ├── deep_troll_monk_ghost.png │ │ ├── deformed_elf.png │ │ ├── deformed_human.png │ │ ├── deformed_orc.png │ │ ├── demonspawn_monk_ghost.png │ │ ├── draconian_monk_ghost.png │ │ ├── earth_elementalist_statue.png │ │ ├── fire_elementalist_statue.png │ │ ├── gigabat.png │ │ ├── hell_wizard_100.png │ │ ├── hell_wizard_50.png │ │ ├── hell_wizard_75.png │ │ ├── hellbinder.png │ │ ├── master_elementalist.png │ │ ├── megabat.png │ │ ├── microbat.png │ │ ├── moon_troll.png │ │ ├── phase_bat.png │ │ ├── water_elementalist_statue.png │ │ ├── zonguldrok_lich.png │ │ └── zot_statue.png ├── player │ ├── barding │ │ ├── black_knight.png │ │ ├── centaur_barding_blue.png │ │ ├── centaur_barding_magenta.png │ │ ├── centaur_barding_metal.png │ │ ├── centaur_barding_red.png │ │ ├── lightning_scales.png │ │ ├── naga_barding_blue.png │ │ ├── naga_barding_magenta.png │ │ ├── naga_barding_metal.png │ │ └── naga_barding_red.png │ ├── base │ │ ├── centaur_brown_f.png │ │ ├── centaur_brown_m.png │ │ ├── centaur_darkbrown_f.png │ │ ├── centaur_darkbrown_m.png │ │ ├── centaur_darkgrey_f.png │ │ ├── centaur_darkgrey_m.png │ │ ├── centaur_lightbrown_f.png │ │ ├── centaur_lightbrown_m.png │ │ ├── centaur_lightgrey_f.png │ │ ├── centaur_lightgrey_m.png │ │ ├── deep_dwarf_f.png │ │ ├── deep_dwarf_m.png │ │ ├── deep_elf_f.png │ │ ├── deep_elf_m.png │ │ ├── demigod_f.png │ │ ├── demigod_m.png │ │ ├── demonspawn_black_f.png │ │ ├── demonspawn_black_m.png │ │ ├── demonspawn_pink.png │ │ ├── demonspawn_red_f.png │ │ ├── demonspawn_red_m.png │ │ ├── djinni_f.png │ │ ├── djinni_m.png │ │ ├── draconian_black_f.png │ │ ├── draconian_black_m.png │ │ ├── draconian_f.png │ │ ├── draconian_gold_f.png │ │ ├── draconian_gold_m.png │ │ ├── draconian_gray_f.png │ │ ├── draconian_gray_m.png │ │ ├── draconian_green_f.png │ │ ├── draconian_green_m.png │ │ ├── draconian_m.png │ │ ├── draconian_mottled_f.png │ │ ├── draconian_mottled_m.png │ │ ├── draconian_pale_f.png │ │ ├── draconian_pale_m.png │ │ ├── draconian_purple_f.png │ │ ├── draconian_purple_m.png │ │ ├── draconian_red_f.png │ │ ├── draconian_red_m.png │ │ ├── draconian_white_f.png │ │ ├── draconian_white_m.png │ │ ├── dusk_walker.png │ │ ├── dwarf_f.png │ │ ├── dwarf_m.png │ │ ├── elf_f.png │ │ ├── elf_m.png │ │ ├── ent.png │ │ ├── ent2.png │ │ ├── faerie_dragon.png │ │ ├── formicid.png │ │ ├── frog2_f.png │ │ ├── frog2_m.png │ │ ├── frog_f.png │ │ ├── frog_m.png │ │ ├── gargoyle_brown_f.png │ │ ├── gargoyle_brown_m.png │ │ ├── gargoyle_f.png │ │ ├── gargoyle_m.png │ │ ├── gargoyle_red_f.png │ │ ├── gargoyle_red_m.png │ │ ├── ghoul2_f.png │ │ ├── ghoul2_m.png │ │ ├── ghoul_m.png │ │ ├── gnoll2_f.png │ │ ├── gnoll2_m.png │ │ ├── gnoll3_f.png │ │ ├── gnoll3_m.png │ │ ├── gnoll4_f.png │ │ ├── gnoll4_m.png │ │ ├── gnoll_f.png │ │ ├── gnoll_m.png │ │ ├── gnome_f.png │ │ ├── gnome_m.png │ │ ├── halfling_f.png │ │ ├── halfling_m.png │ │ ├── human2_f.png │ │ ├── human2_m.png │ │ ├── human3_f.png │ │ ├── human3_m.png │ │ ├── human_f.png │ │ ├── human_m.png │ │ ├── kobold2_f.png │ │ ├── kobold2_m.png │ │ ├── kobold_f.png │ │ ├── kobold_m.png │ │ ├── lorc_f0.png │ │ ├── lorc_f1.png │ │ ├── lorc_f2.png │ │ ├── lorc_f3.png │ │ ├── lorc_f4.png │ │ ├── lorc_f5.png │ │ ├── lorc_f6.png │ │ ├── lorc_m0.png │ │ ├── lorc_m1.png │ │ ├── lorc_m2.png │ │ ├── lorc_m3.png │ │ ├── lorc_m4.png │ │ ├── lorc_m5.png │ │ ├── lorc_m6.png │ │ ├── merfolk_f.png │ │ ├── merfolk_m.png │ │ ├── merfolk_water_f.png │ │ ├── merfolk_water_m.png │ │ ├── minotaur_brown1_m.png │ │ ├── minotaur_brown2_m.png │ │ ├── minotaur_f.png │ │ ├── minotaur_m.png │ │ ├── mummy_f.png │ │ ├── mummy_m.png │ │ ├── naga_blue_f.png │ │ ├── naga_blue_m.png │ │ ├── naga_darkgreen_f.png │ │ ├── naga_darkgreen_m.png │ │ ├── naga_f.png │ │ ├── naga_lightgreen_f.png │ │ ├── naga_lightgreen_m.png │ │ ├── naga_m.png │ │ ├── naga_red_f.png │ │ ├── naga_red_m.png │ │ ├── octopode1.png │ │ ├── octopode2.png │ │ ├── octopode3.png │ │ ├── octopode4.png │ │ ├── octopode5.png │ │ ├── ogre_f.png │ │ ├── ogre_m.png │ │ ├── oni2_f.png │ │ ├── oni2_m.png │ │ ├── oni_f.png │ │ ├── oni_m.png │ │ ├── orc_f.png │ │ ├── orc_m.png │ │ ├── shadow.png │ │ ├── skeleton.png │ │ ├── spriggan_f.png │ │ ├── spriggan_m.png │ │ ├── tengu_winged_f.png │ │ ├── tengu_winged_m.png │ │ ├── tengu_wingless_brown_f.png │ │ ├── tengu_wingless_brown_m.png │ │ ├── tengu_wingless_f.png │ │ ├── tengu_wingless_m.png │ │ ├── troll_f.png │ │ ├── troll_m.png │ │ ├── vampire_f.png │ │ ├── vampire_m.png │ │ ├── vine_stalker_f.png │ │ └── vine_stalker_m.png │ ├── beard │ │ ├── bushy_green.png │ │ ├── full_black.png │ │ ├── full_blonde.png │ │ ├── full_brown.png │ │ ├── full_green.png │ │ ├── full_red.png │ │ ├── full_white.png │ │ ├── garibaldi_black.png │ │ ├── garibaldi_blonde.png │ │ ├── garibaldi_brown.png │ │ ├── garibaldi_green.png │ │ ├── garibaldi_red.png │ │ ├── garibaldi_white.png │ │ ├── medium_black.png │ │ ├── medium_blonde.png │ │ ├── medium_brown.png │ │ ├── medium_green.png │ │ ├── medium_red.png │ │ ├── medium_white.png │ │ ├── muttonchops_green.png │ │ ├── pj.png │ │ ├── scarf.png │ │ ├── short_black.png │ │ ├── short_blonde.png │ │ ├── short_brown.png │ │ ├── short_green.png │ │ ├── short_red.png │ │ ├── short_white.png │ │ ├── stubble_black.png │ │ ├── stubble_blonde.png │ │ ├── stubble_brown.png │ │ ├── stubble_green.png │ │ ├── stubble_red.png │ │ ├── stubble_white.png │ │ └── wizard.png │ ├── body │ │ ├── animal_skin.png │ │ ├── aragorn.png │ │ ├── aragorn2.png │ │ ├── armour_blue_gold.png │ │ ├── armour_mummy.png │ │ ├── arwen.png │ │ ├── belt1.png │ │ ├── belt2.png │ │ ├── bikini_red.png │ │ ├── bloody.png │ │ ├── boromir.png │ │ ├── bplate_green.png │ │ ├── bplate_metal1.png │ │ ├── breast_black.png │ │ ├── chainmail.png │ │ ├── chainmail2.png │ │ ├── chainmail3.png │ │ ├── china_red.png │ │ ├── china_red2.png │ │ ├── chunli.png │ │ ├── coat_black.png │ │ ├── coat_red.png │ │ ├── crystal_plate.png │ │ ├── crystal_plate2.png │ │ ├── crystal_plate3.png │ │ ├── deep_troll_leather.png │ │ ├── dragonarm_blue.png │ │ ├── dragonarm_brown.png │ │ ├── dragonarm_cyan.png │ │ ├── dragonarm_gold.png │ │ ├── dragonarm_iron.png │ │ ├── dragonarm_pearl.png │ │ ├── dragonarm_quicksilver.png │ │ ├── dragonarm_red.png │ │ ├── dragonarm_shadow.png │ │ ├── dragonarm_white.png │ │ ├── dragonarm_yellow.png │ │ ├── dress_green.png │ │ ├── dress_white.png │ │ ├── faerie_dragon_armour.png │ │ ├── frodo.png │ │ ├── gandalf_g.png │ │ ├── gil-galad.png │ │ ├── gimli.png │ │ ├── green_chain.png │ │ ├── green_susp.png │ │ ├── half_plate.png │ │ ├── half_plate2.png │ │ ├── half_plate3.png │ │ ├── iron_troll_leather.png │ │ ├── isildur.png │ │ ├── jacket2.png │ │ ├── jacket3.png │ │ ├── jacket_stud.png │ │ ├── jessica.png │ │ ├── karate.png │ │ ├── karate2.png │ │ ├── kryias.png │ │ ├── lears_hauberk.png │ │ ├── leather2.png │ │ ├── leather_armour.png │ │ ├── leather_armour2.png │ │ ├── leather_armour3.png │ │ ├── leather_green.png │ │ ├── leather_heavy.png │ │ ├── leather_jacket.png │ │ ├── leather_metal.png │ │ ├── leather_red.png │ │ ├── leather_short.png │ │ ├── leather_stud.png │ │ ├── legolas.png │ │ ├── maxwell.png │ │ ├── merry.png │ │ ├── mesh_black.png │ │ ├── mesh_red.png │ │ ├── metal_blue.png │ │ ├── monk_black.png │ │ ├── monk_blue.png │ │ ├── moon_troll_leather_armour.png │ │ ├── neck.png │ │ ├── orange_crystal.png │ │ ├── pipin.png │ │ ├── pj.png │ │ ├── plate.png │ │ ├── plate2.png │ │ ├── plate3.png │ │ ├── plate_and_cloth.png │ │ ├── plate_and_cloth2.png │ │ ├── plate_black.png │ │ ├── ringmail.png │ │ ├── ringmail2.png │ │ ├── ringmail3.png │ │ ├── robe_black.png │ │ ├── robe_black_gold.png │ │ ├── robe_black_hood.png │ │ ├── robe_black_red.png │ │ ├── robe_blue.png │ │ ├── robe_blue_green.png │ │ ├── robe_blue_white.png │ │ ├── robe_brown.png │ │ ├── robe_brown2.png │ │ ├── robe_brown3.png │ │ ├── robe_clouds.png │ │ ├── robe_cyan.png │ │ ├── robe_gray2.png │ │ ├── robe_green.png │ │ ├── robe_green_gold.png │ │ ├── robe_jester.png │ │ ├── robe_misfortune.png │ │ ├── robe_of_night.png │ │ ├── robe_purple.png │ │ ├── robe_rainbow.png │ │ ├── robe_red.png │ │ ├── robe_red2.png │ │ ├── robe_red3.png │ │ ├── robe_red_gold.png │ │ ├── robe_white.png │ │ ├── robe_white2.png │ │ ├── robe_white_blue.png │ │ ├── robe_white_green.png │ │ ├── robe_white_red.png │ │ ├── robe_yellow.png │ │ ├── sam.png │ │ ├── saruman.png │ │ ├── scalemail.png │ │ ├── scalemail2.png │ │ ├── scalemail3.png │ │ ├── scalemail_light.png │ │ ├── shirt_black.png │ │ ├── shirt_black3.png │ │ ├── shirt_black_and_cloth.png │ │ ├── shirt_blue.png │ │ ├── shirt_check.png │ │ ├── shirt_hawaii.png │ │ ├── shirt_vest.png │ │ ├── shirt_white1.png │ │ ├── shirt_white2.png │ │ ├── shirt_white3.png │ │ ├── shirt_white_yellow.png │ │ ├── shoulder_pad.png │ │ ├── skirt_onep_grey.png │ │ ├── slit_black.png │ │ ├── susp_black.png │ │ ├── talos.png │ │ ├── troll_hide.png │ │ ├── troll_leather.png │ │ ├── vanhel1.png │ │ ├── vest_red.png │ │ ├── vest_red2.png │ │ ├── vines.png │ │ ├── xtahua_scales.png │ │ └── zhor.png │ ├── boots │ │ ├── blue_gold.png │ │ ├── hooves.png │ │ ├── long_red.png │ │ ├── long_white.png │ │ ├── mesh_black.png │ │ ├── mesh_blue.png │ │ ├── mesh_red.png │ │ ├── mesh_white.png │ │ ├── middle_brown.png │ │ ├── middle_brown2.png │ │ ├── middle_brown3.png │ │ ├── middle_gold.png │ │ ├── middle_gray.png │ │ ├── middle_green.png │ │ ├── middle_purple.png │ │ ├── middle_ybrown.png │ │ ├── pj.png │ │ ├── short_brown.png │ │ ├── short_brown2.png │ │ ├── short_purple.png │ │ ├── short_red.png │ │ └── spider.png │ ├── cloak │ │ ├── black.png │ │ ├── blue.png │ │ ├── brown.png │ │ ├── cyan.png │ │ ├── dragonskin.png │ │ ├── gray.png │ │ ├── green.png │ │ ├── magenta.png │ │ ├── ratskin.png │ │ ├── red.png │ │ ├── scarf_cyan.png │ │ ├── scarf_green.png │ │ ├── scarf_magenta.png │ │ ├── scarf_red.png │ │ ├── scarf_white.png │ │ ├── white.png │ │ └── yellow.png │ ├── drchead │ │ ├── drchead_black.png │ │ ├── drchead_brown.png │ │ ├── drchead_green.png │ │ ├── drchead_grey.png │ │ ├── drchead_mottled.png │ │ ├── drchead_pale.png │ │ ├── drchead_purple.png │ │ ├── drchead_red.png │ │ ├── drchead_white.png │ │ └── drchead_yellow.png │ ├── drcwing │ │ ├── drcwing_black.png │ │ ├── drcwing_brown.png │ │ ├── drcwing_green.png │ │ ├── drcwing_grey.png │ │ ├── drcwing_mottled.png │ │ ├── drcwing_pale.png │ │ ├── drcwing_purple.png │ │ ├── drcwing_red.png │ │ ├── drcwing_white.png │ │ └── drcwing_yellow.png │ ├── ench │ │ └── sticky_flame.png │ ├── felids │ │ ├── cat1.png │ │ ├── cat10.png │ │ ├── cat2.png │ │ ├── cat3.png │ │ ├── cat4.png │ │ ├── cat5.png │ │ ├── cat6.png │ │ ├── cat7.png │ │ ├── cat8.png │ │ └── cat9.png │ ├── gloves │ │ ├── claws.png │ │ ├── gauntlet_blue.png │ │ ├── glove_black.png │ │ ├── glove_black2.png │ │ ├── glove_blue.png │ │ ├── glove_brown.png │ │ ├── glove_chunli.png │ │ ├── glove_gold.png │ │ ├── glove_gray.png │ │ ├── glove_grayfist.png │ │ ├── glove_orange.png │ │ ├── glove_purple.png │ │ ├── glove_red.png │ │ ├── glove_short_blue.png │ │ ├── glove_short_gray.png │ │ ├── glove_short_green.png │ │ ├── glove_short_red.png │ │ ├── glove_short_white.png │ │ ├── glove_short_yellow.png │ │ ├── glove_white.png │ │ └── glove_wrist_purple.png │ ├── hair │ │ ├── aragorn.png │ │ ├── arwen.png │ │ ├── boromir.png │ │ ├── brown1.png │ │ ├── brown2.png │ │ ├── chopsticks.png │ │ ├── curly_yellow.png │ │ ├── djinn1.png │ │ ├── djinn2.png │ │ ├── elf_black.png │ │ ├── elf_brown.png │ │ ├── elf_red.png │ │ ├── elf_white.png │ │ ├── elf_yellow.png │ │ ├── fem_black.png │ │ ├── fem_red.png │ │ ├── fem_white.png │ │ ├── fem_yellow.png │ │ ├── frodo.png │ │ ├── full_brown.png │ │ ├── green.png │ │ ├── headband.png │ │ ├── hightail.png │ │ ├── hightails_brown.png │ │ ├── knot_red.png │ │ ├── legolas.png │ │ ├── long_black.png │ │ ├── long_red.png │ │ ├── long_white.png │ │ ├── long_yellow.png │ │ ├── merry.png │ │ ├── mountain_man.png │ │ ├── part2_red.png │ │ ├── part_blue.png │ │ ├── pigtail_red.png │ │ ├── pigtails_brown.png │ │ ├── pigtails_green.png │ │ ├── pigtails_yellow.png │ │ ├── pj.png │ │ ├── ponytail_yellow.png │ │ ├── queue.png │ │ ├── ribbons_black.png │ │ ├── sam.png │ │ ├── short_black.png │ │ ├── short_brown.png │ │ ├── short_red.png │ │ ├── short_white.png │ │ ├── short_yellow.png │ │ ├── spriggan1.png │ │ ├── spriggan2.png │ │ ├── spriggan3.png │ │ ├── sweep.png │ │ ├── tengu_comb.png │ │ ├── topknot.png │ │ ├── topknot2.png │ │ └── troll.png │ ├── halo │ │ └── halo_player.png │ ├── hand1 │ │ ├── aragorn.png │ │ ├── arbalest.png │ │ ├── arbalest_four.png │ │ ├── arbalest_three.png │ │ ├── arbalest_two.png │ │ ├── artefact │ │ │ ├── arc_blade.png │ │ │ ├── arga.png │ │ │ ├── asmodeus.png │ │ │ ├── axe_of_woe.png │ │ │ ├── axe_trog.png │ │ │ ├── battle_staff.png │ │ │ ├── bloodbane.png │ │ │ ├── blowgun_assassin.png │ │ │ ├── botono.png │ │ │ ├── capt_cutlass.png │ │ │ ├── chilly_death.png │ │ │ ├── crossbow_fire.png │ │ │ ├── crystal_spear.png │ │ │ ├── dark_maul.png │ │ │ ├── demon_axe.png │ │ │ ├── dispater.png │ │ │ ├── doom_knight.png │ │ │ ├── elemental_staff.png │ │ │ ├── eos.png │ │ │ ├── finisher.png │ │ │ ├── firestarter.png │ │ │ ├── flaming_death.png │ │ │ ├── frostbite.png │ │ │ ├── glaive_of_prune.png │ │ │ ├── glaive_of_the_guard.png │ │ │ ├── gyre.png │ │ │ ├── hendricks.png │ │ │ ├── jihad.png │ │ │ ├── knife_of_accuracy.png │ │ │ ├── leech.png │ │ │ ├── mace_of_brilliance.png │ │ │ ├── mace_of_variability.png │ │ │ ├── majin.png │ │ │ ├── morg.png │ │ │ ├── olgreb.png │ │ │ ├── order.png │ │ │ ├── plutonium_sword.png │ │ │ ├── punk.png │ │ │ ├── sceptre_of_torment.png │ │ │ ├── sharur.png │ │ │ ├── shillelagh.png │ │ │ ├── singing_sword.png │ │ │ ├── snakebite.png │ │ │ ├── sniper.png │ │ │ ├── spellbinder.png │ │ │ ├── spriggans_knife.png │ │ │ ├── sword_of_power.png │ │ │ ├── thermic_engine.png │ │ │ ├── trident_octopus_king.png │ │ │ ├── vampires_tooth.png │ │ │ ├── wucad_mu.png │ │ │ ├── wyrmbane.png │ │ │ ├── zephyr.png │ │ │ └── zonguldrok.png │ │ ├── arwen.png │ │ ├── axe_blood.png │ │ ├── axe_double.png │ │ ├── axe_executioner.png │ │ ├── axe_executioner2.png │ │ ├── axe_short.png │ │ ├── axe_small.png │ │ ├── battleaxe.png │ │ ├── battleaxe2.png │ │ ├── black_sword.png │ │ ├── black_whip.png │ │ ├── blessed_blade.png │ │ ├── blowgun.png │ │ ├── boromir.png │ │ ├── bow.png │ │ ├── bow_three.png │ │ ├── bow_two.png │ │ ├── broad_axe.png │ │ ├── broad_axe2.png │ │ ├── broadsword.png │ │ ├── club.png │ │ ├── club_slant.png │ │ ├── club_three.png │ │ ├── club_two.png │ │ ├── d_glaive.png │ │ ├── dagger.png │ │ ├── dagger2.png │ │ ├── dagger_slant.png │ │ ├── dagger_slant2.png │ │ ├── dart.png │ │ ├── demonblade.png │ │ ├── double_sword.png │ │ ├── double_sword2.png │ │ ├── double_sword3.png │ │ ├── enchantress_dagger.png │ │ ├── eveningstar.png │ │ ├── eveningstar2.png │ │ ├── eveningstar3.png │ │ ├── falchion.png │ │ ├── falchion2.png │ │ ├── flail_ball.png │ │ ├── flail_ball2.png │ │ ├── flail_ball_four.png │ │ ├── flail_ball_three.png │ │ ├── flail_ball_two.png │ │ ├── flail_balls.png │ │ ├── flail_great.png │ │ ├── flail_great2.png │ │ ├── flail_stick.png │ │ ├── flail_stick_slant.png │ │ ├── fork.png │ │ ├── frodo.png │ │ ├── fustibalus.png │ │ ├── gandalf.png │ │ ├── giant_club.png │ │ ├── giant_club_plain.png │ │ ├── giant_club_slant.png │ │ ├── giant_club_spike.png │ │ ├── giant_club_spike_slant.png │ │ ├── gimli.png │ │ ├── glaive.png │ │ ├── glaive2.png │ │ ├── glaive_three.png │ │ ├── glaive_three2.png │ │ ├── glaive_two.png │ │ ├── great_bow.png │ │ ├── great_mace.png │ │ ├── great_mace2.png │ │ ├── great_staff.png │ │ ├── great_sword_slant.png │ │ ├── great_sword_slant2.png │ │ ├── halberd.png │ │ ├── halberd2.png │ │ ├── hand_axe.png │ │ ├── hand_axe2.png │ │ ├── hand_crossbow.png │ │ ├── heavy_sword.png │ │ ├── hook.png │ │ ├── katana_slant.png │ │ ├── knife.png │ │ ├── lajatang1.png │ │ ├── lajatang2.png │ │ ├── lajatang3.png │ │ ├── lance.png │ │ ├── lance_two.png │ │ ├── large_mace.png │ │ ├── legolas.png │ │ ├── long_sword_slant.png │ │ ├── long_sword_slant2.png │ │ ├── mace.png │ │ ├── mace2.png │ │ ├── mace_ruby.png │ │ ├── mace_two.png │ │ ├── misc │ │ │ ├── bladehands.png │ │ │ ├── bladehands_fe.png │ │ │ ├── bladehands_op.png │ │ │ ├── bone_lantern.png │ │ │ ├── bottle.png │ │ │ ├── box.png │ │ │ ├── crystal.png │ │ │ ├── deck.png │ │ │ ├── fan.png │ │ │ ├── fire_blue.png │ │ │ ├── fire_cyan.png │ │ │ ├── fire_dark.png │ │ │ ├── fire_green.png │ │ │ ├── fire_red.png │ │ │ ├── fire_white.png │ │ │ ├── fire_white2.png │ │ │ ├── head.png │ │ │ ├── horn.png │ │ │ ├── lantern.png │ │ │ ├── light_blue.png │ │ │ ├── light_red.png │ │ │ ├── light_yellow.png │ │ │ ├── orb.png │ │ │ ├── skull.png │ │ │ ├── spark.png │ │ │ └── stone.png │ │ ├── morningstar.png │ │ ├── morningstar2.png │ │ ├── morningstar_two.png │ │ ├── nunchaku.png │ │ ├── pick_axe.png │ │ ├── pike.png │ │ ├── pole_forked.png │ │ ├── quarterstaff.png │ │ ├── quarterstaff2.png │ │ ├── quarterstaff_four.png │ │ ├── quarterstaff_jester.png │ │ ├── quarterstaff_three.png │ │ ├── quarterstaff_two.png │ │ ├── rapier.png │ │ ├── rapier2.png │ │ ├── rod_aries.png │ │ ├── rod_blue.png │ │ ├── rod_brown.png │ │ ├── rod_emerald.png │ │ ├── rod_forked.png │ │ ├── rod_hammer.png │ │ ├── rod_magenta.png │ │ ├── rod_moon.png │ │ ├── rod_ruby.png │ │ ├── rod_thick.png │ │ ├── sacred_scourge.png │ │ ├── sacred_scourge_two.png │ │ ├── saruman.png │ │ ├── sceptre.png │ │ ├── scimitar.png │ │ ├── scimitar2.png │ │ ├── scythe.png │ │ ├── scythe2.png │ │ ├── scythe_slant.png │ │ ├── short_sword.png │ │ ├── short_sword_slant.png │ │ ├── short_sword_slant2.png │ │ ├── short_sword_slant3.png │ │ ├── short_sword_two.png │ │ ├── sickle.png │ │ ├── sling.png │ │ ├── spear.png │ │ ├── spear2.png │ │ ├── spear_five.png │ │ ├── spear_four.png │ │ ├── spear_three.png │ │ ├── spear_two.png │ │ ├── staff.png │ │ ├── staff_evil.png │ │ ├── staff_fancy.png │ │ ├── staff_fork.png │ │ ├── staff_large.png │ │ ├── staff_mage.png │ │ ├── staff_mage_two.png │ │ ├── staff_mummy.png │ │ ├── staff_organic.png │ │ ├── staff_plain.png │ │ ├── staff_ring_blue.png │ │ ├── staff_ruby.png │ │ ├── staff_sceptre.png │ │ ├── staff_skull.png │ │ ├── stick.png │ │ ├── storm_bow.png │ │ ├── sword_black.png │ │ ├── sword_breaker.png │ │ ├── sword_jag.png │ │ ├── sword_thief.png │ │ ├── sword_three.png │ │ ├── sword_twist.png │ │ ├── sword_two.png │ │ ├── trident.png │ │ ├── trident_demon.png │ │ ├── trident_elec.png │ │ ├── trident_three.png │ │ ├── trident_two.png │ │ ├── trident_two2.png │ │ ├── triple_crossbow.png │ │ ├── triple_sword.png │ │ ├── triple_sword2.png │ │ ├── trishula.png │ │ ├── war_axe.png │ │ ├── war_axe2.png │ │ ├── whip.png │ │ └── whip2.png │ ├── hand2 │ │ ├── buckler_green.png │ │ ├── buckler_rb.png │ │ ├── buckler_round.png │ │ ├── buckler_round2.png │ │ ├── buckler_round3.png │ │ ├── buckler_spiral.png │ │ ├── buckler_spriggan.png │ │ ├── buckler_warlock.png │ │ ├── doll_only │ │ │ ├── boromir.png │ │ │ ├── gil-galad.png │ │ │ ├── lshield_dd_dk.png │ │ │ ├── shield_dd.png │ │ │ ├── shield_dd_scion.png │ │ │ ├── shield_diamond_yellow.png │ │ │ ├── shield_long_cross.png │ │ │ ├── shield_middle_black.png │ │ │ ├── shield_middle_brown.png │ │ │ ├── shield_middle_cyan.png │ │ │ ├── shield_middle_ethn.png │ │ │ ├── shield_middle_gray.png │ │ │ ├── shield_middle_round.png │ │ │ ├── shield_middle_unicorn.png │ │ │ ├── shield_round1.png │ │ │ ├── shield_round2.png │ │ │ ├── shield_round3.png │ │ │ ├── shield_round4.png │ │ │ ├── shield_round5.png │ │ │ ├── shield_round6.png │ │ │ ├── shield_round7.png │ │ │ ├── shield_round_white.png │ │ │ ├── shield_shaman.png │ │ │ └── shield_skull.png │ │ ├── lshield_gold.png │ │ ├── lshield_green.png │ │ ├── lshield_long_red.png │ │ ├── lshield_louise.png │ │ ├── lshield_of_ignorance.png │ │ ├── lshield_quartered.png │ │ ├── lshield_spiral.png │ │ ├── lshield_teal.png │ │ ├── misc │ │ │ ├── bladehands.png │ │ │ ├── book_black.png │ │ │ ├── book_blue.png │ │ │ ├── book_blue_dim.png │ │ │ ├── book_cyan.png │ │ │ ├── book_cyan_dim.png │ │ │ ├── book_green.png │ │ │ ├── book_green_dim.png │ │ │ ├── book_magenta.png │ │ │ ├── book_magenta_dim.png │ │ │ ├── book_red.png │ │ │ ├── book_red_dim.png │ │ │ ├── book_sky.png │ │ │ ├── book_white.png │ │ │ ├── book_yellow.png │ │ │ ├── book_yellow_dim.png │ │ │ ├── dagger.png │ │ │ ├── dagger2.png │ │ │ ├── fire_cyan.png │ │ │ ├── fire_dark.png │ │ │ ├── fire_green.png │ │ │ ├── fire_white.png │ │ │ ├── fire_white2.png │ │ │ ├── flail_great.png │ │ │ ├── flail_great2.png │ │ │ ├── giant_club.png │ │ │ ├── giant_club_plain.png │ │ │ ├── giant_club_slant.png │ │ │ ├── giant_club_spike.png │ │ │ ├── giant_club_spike_slant.png │ │ │ ├── great_mace.png │ │ │ ├── great_mace2.png │ │ │ ├── lantern.png │ │ │ ├── light_blue.png │ │ │ ├── light_red.png │ │ │ ├── light_yellow.png │ │ │ ├── pj.png │ │ │ ├── rapier.png │ │ │ ├── rapier2.png │ │ │ ├── short_sword_slant.png │ │ │ ├── short_sword_slant2.png │ │ │ ├── spark.png │ │ │ ├── tentacle.png │ │ │ ├── torch.png │ │ │ └── torch2.png │ │ ├── shield_bullseye.png │ │ ├── shield_donald.png │ │ ├── shield_gong.png │ │ ├── shield_kite1.png │ │ ├── shield_kite2.png │ │ ├── shield_kite3.png │ │ ├── shield_kite4.png │ │ ├── shield_knight_blue.png │ │ ├── shield_knight_gray.png │ │ ├── shield_knight_rw.png │ │ └── shield_of_resistance.png │ ├── head │ │ ├── art_dragonhelm.png │ │ ├── band_blue.png │ │ ├── band_magenta.png │ │ ├── band_red.png │ │ ├── band_white.png │ │ ├── band_yellow.png │ │ ├── bandana_ybrown.png │ │ ├── bear.png │ │ ├── black_horn.png │ │ ├── black_horn2.png │ │ ├── blue_horn_gold.png │ │ ├── brown_gold.png │ │ ├── cap_black1.png │ │ ├── cap_blue.png │ │ ├── chain.png │ │ ├── cheek_red.png │ │ ├── clown1.png │ │ ├── clown2.png │ │ ├── cone_blue.png │ │ ├── cone_red.png │ │ ├── crown_gold1.png │ │ ├── crown_gold2.png │ │ ├── crown_gold3.png │ │ ├── dyrovepreva.png │ │ ├── eternal_torment.png │ │ ├── etheric_cage.png │ │ ├── feather_blue.png │ │ ├── feather_green.png │ │ ├── feather_red.png │ │ ├── feather_white.png │ │ ├── feather_yellow.png │ │ ├── fhelm_gray3.png │ │ ├── fhelm_horn2.png │ │ ├── fhelm_horn_yellow.png │ │ ├── full_black.png │ │ ├── full_gold.png │ │ ├── gandalf.png │ │ ├── hat_black.png │ │ ├── healer.png │ │ ├── helm_gimli.png │ │ ├── helm_green.png │ │ ├── helm_plume.png │ │ ├── helm_red.png │ │ ├── hood_black2.png │ │ ├── hood_cyan.png │ │ ├── hood_gray.png │ │ ├── hood_green.png │ │ ├── hood_green2.png │ │ ├── hood_orange.png │ │ ├── hood_red.png │ │ ├── hood_red2.png │ │ ├── hood_white.png │ │ ├── hood_white2.png │ │ ├── hood_ybrown.png │ │ ├── horn_evil.png │ │ ├── horn_gray.png │ │ ├── horned.png │ │ ├── horns1.png │ │ ├── horns2.png │ │ ├── horns3.png │ │ ├── iron1.png │ │ ├── iron2.png │ │ ├── iron3.png │ │ ├── iron_red.png │ │ ├── isildur.png │ │ ├── mummy.png │ │ ├── ninja_black.png │ │ ├── pumpkin.png │ │ ├── straw.png │ │ ├── taiso_blue.png │ │ ├── taiso_magenta.png │ │ ├── taiso_red.png │ │ ├── taiso_white.png │ │ ├── taiso_yellow.png │ │ ├── turban_brown.png │ │ ├── turban_purple.png │ │ ├── turban_white.png │ │ ├── viking_brown1.png │ │ ├── viking_brown2.png │ │ ├── viking_gold.png │ │ ├── wizard_blackgold.png │ │ ├── wizard_blackred.png │ │ ├── wizard_blue.png │ │ ├── wizard_bluegreen.png │ │ ├── wizard_brown.png │ │ ├── wizard_darkgreen.png │ │ ├── wizard_lightgreen.png │ │ ├── wizard_purple.png │ │ ├── wizard_red.png │ │ ├── wizard_white.png │ │ └── yellow_wing.png │ ├── legs │ │ ├── belt_gray.png │ │ ├── belt_redbrown.png │ │ ├── bikini_red.png │ │ ├── chunli.png │ │ ├── garter.png │ │ ├── leg_armour00.png │ │ ├── leg_armour01.png │ │ ├── leg_armour02.png │ │ ├── leg_armour03.png │ │ ├── leg_armour04.png │ │ ├── leg_armour05.png │ │ ├── loincloth_red.png │ │ ├── long_red.png │ │ ├── metal_gray.png │ │ ├── metal_green.png │ │ ├── pants16.png │ │ ├── pants_black.png │ │ ├── pants_blue.png │ │ ├── pants_brown.png │ │ ├── pants_darkgreen.png │ │ ├── pants_l_white.png │ │ ├── pants_orange.png │ │ ├── pants_red.png │ │ ├── pants_short_brown.png │ │ ├── pants_short_brown3.png │ │ ├── pants_short_darkbrown.png │ │ ├── pants_short_gray.png │ │ ├── pj.png │ │ ├── skirt_blue.png │ │ ├── skirt_green.png │ │ ├── skirt_red.png │ │ ├── skirt_white.png │ │ ├── skirt_white2.png │ │ └── trouser_green.png │ ├── mutations │ │ ├── cat1.png │ │ ├── cat10.png │ │ ├── cat2.png │ │ ├── cat3.png │ │ ├── cat4.png │ │ ├── cat5.png │ │ ├── cat6.png │ │ ├── cat7.png │ │ ├── cat8.png │ │ ├── cat9.png │ │ ├── draconian1.png │ │ └── octopode1.png │ └── transform │ │ ├── bat_form.png │ │ ├── dragon_form.png │ │ ├── dragon_form_black.png │ │ ├── dragon_form_faerie.png │ │ ├── dragon_form_green.png │ │ ├── dragon_form_grey.png │ │ ├── dragon_form_mottled.png │ │ ├── dragon_form_pale.png │ │ ├── dragon_form_purple.png │ │ ├── dragon_form_red.png │ │ ├── dragon_form_white.png │ │ ├── dragon_form_yellow.png │ │ ├── ice_form.png │ │ ├── lich_form_centaur.png │ │ ├── lich_form_djinn.png │ │ ├── lich_form_faerie_dragon.png │ │ ├── lich_form_felid.png │ │ ├── lich_form_humanoid.png │ │ ├── lich_form_naga.png │ │ ├── lich_form_octopode.png │ │ ├── mushroom_form.png │ │ ├── pig_form.png │ │ ├── shadow_form.png │ │ ├── spider_form.png │ │ ├── statue_form_centaur.png │ │ ├── statue_form_djinn.png │ │ ├── statue_form_faerie_dragon.png │ │ ├── statue_form_felid.png │ │ ├── statue_form_humanoid.png │ │ ├── statue_form_naga.png │ │ ├── statue_form_octopode.png │ │ └── tree_form.png ├── tiledef-unrand.h ├── tiledef_defines.h ├── tilegen-Info.plist └── tool │ ├── .gitignore │ ├── main.cc │ ├── tile.cc │ ├── tile.h │ ├── tile_colour.cc │ ├── tile_colour.h │ ├── tile_list_processor.cc │ ├── tile_list_processor.h │ ├── tile_page.cc │ └── tile_page.h ├── rng-type.h ├── rot.cc ├── rot.h ├── sacrifice-data.h ├── score-format-type.h ├── screen-mode.h ├── scripts ├── csim.lua ├── genlevel.lua ├── genmap.lua ├── place-population.lua ├── placement.lua ├── seed_explorer.lua └── training_simu.lua ├── scroller.cc ├── scroller.h ├── seen-context-type.h ├── sense-type.h ├── shop-type.h ├── shopping.cc ├── shopping.h ├── shout.cc ├── shout.h ├── show.cc ├── show.h ├── showsymb.cc ├── showsymb.h ├── size-part-type.h ├── size-type.h ├── skill-focus-mode.h ├── skill-menu-state.h ├── skill-menu.cc ├── skill-menu.h ├── skill-type.h ├── skills.cc ├── skills.h ├── slot-select-mode.h ├── sound.cc ├── sound.h ├── species-data.h ├── species-def.h ├── species-type.h ├── species.cc ├── species.h ├── spell-type.h ├── spl-book.cc ├── spl-book.h ├── spl-cast.cc ├── spl-cast.h ├── spl-clouds.cc ├── spl-clouds.h ├── spl-damage.cc ├── spl-damage.h ├── spl-data.h ├── spl-goditem.cc ├── spl-goditem.h ├── spl-miscast.cc ├── spl-miscast.h ├── spl-monench.cc ├── spl-monench.h ├── spl-other.cc ├── spl-other.h ├── spl-pick.cc ├── spl-pick.h ├── spl-selfench.cc ├── spl-selfench.h ├── spl-summoning.cc ├── spl-summoning.h ├── spl-tornado.cc ├── spl-transloc.cc ├── spl-transloc.h ├── spl-util.cc ├── spl-util.h ├── spl-wpnench.cc ├── spl-wpnench.h ├── spl-zap.cc ├── spl-zap.h ├── sprint.cc ├── sprint.h ├── sqldbm.cc ├── sqldbm.h ├── stairs.cc ├── stairs.h ├── startup.cc ├── startup.h ├── stash.cc ├── stash.h ├── stat-type.h ├── state.cc ├── state.h ├── status.cc ├── status.h ├── stepdown.cc ├── stepdown.h ├── store.cc ├── store.h ├── stringutil.cc ├── stringutil.h ├── syscalls.cc ├── syscalls.h ├── tag-pref.h ├── tag-version.h ├── tags.cc ├── tags.h ├── targ-mode-type.h ├── target.cc ├── target.h ├── targeting-type.h ├── teleport.cc ├── teleport.h ├── terrain-change-type.h ├── terrain.cc ├── terrain.h ├── test ├── abyss_shift.lua ├── big │ └── README ├── bounce.lua ├── bounce2.lua ├── bstair-gen.lua ├── corpse.lua ├── eyecandy │ └── fireworks.rc ├── fsim.lua ├── item_curse.lua ├── los_csc.lua ├── los_maps.lua ├── los_symm.lua ├── monplace.lua ├── monster-name.lua ├── monster-plant-pathfind.lua.disabled ├── mut_species.lua ├── mutation.lua ├── rng_test.lua ├── rune-gen.lua ├── seed_explorer.lua ├── shoal-hut.lua ├── snake-rune.lua ├── stress │ ├── abyss │ ├── abyss.rc │ ├── abyss_short_run.rc │ ├── abyss_short_wait.rc │ ├── fireworks.rc │ ├── qw.rc │ ├── run │ ├── timeall │ ├── unwoken_rest.rc │ └── woken_rest.rc ├── unique.lua ├── uniquegen.lua ├── vault_catalog.lua ├── vault_generation.lua └── youdie.lua ├── text-tag-type.h ├── threads.h ├── throw.cc ├── throw.h ├── tile-flags.h ├── tile-inventory-flags.h ├── tile-player-flag-cut.h ├── tile-player-flags.h ├── tilebuf.cc ├── tilebuf.h ├── tilecell.cc ├── tilecell.h ├── tiledgnbuf.cc ├── tiledgnbuf.h ├── tiledoll.cc ├── tiledoll.h ├── tilefont.cc ├── tilefont.h ├── tilemcache.cc ├── tilemcache.h ├── tilepick-p.cc ├── tilepick-p.h ├── tilepick.cc ├── tilepick.h ├── tilereg-abl.cc ├── tilereg-abl.h ├── tilereg-cmd.cc ├── tilereg-cmd.h ├── tilereg-crt.cc ├── tilereg-crt.h ├── tilereg-dgn.cc ├── tilereg-dgn.h ├── tilereg-doll.cc ├── tilereg-doll.h ├── tilereg-grid.cc ├── tilereg-grid.h ├── tilereg-inv.cc ├── tilereg-inv.h ├── tilereg-map.cc ├── tilereg-map.h ├── tilereg-mem.cc ├── tilereg-mem.h ├── tilereg-mon.cc ├── tilereg-mon.h ├── tilereg-msg.cc ├── tilereg-msg.h ├── tilereg-skl.cc ├── tilereg-skl.h ├── tilereg-spl.cc ├── tilereg-spl.h ├── tilereg-stat.cc ├── tilereg-stat.h ├── tilereg-tab.cc ├── tilereg-tab.h ├── tilereg-text.cc ├── tilereg-text.h ├── tilereg.cc ├── tilereg.h ├── tiles-build-specific.h ├── tiles.h ├── tilesdl.cc ├── tilesdl.h ├── tiletex.cc ├── tiletex.h ├── tileview.cc ├── tileview.h ├── tileweb-text.cc ├── tileweb-text.h ├── tileweb.cc ├── tileweb.h ├── timed-effect-type.h ├── timed-effects.cc ├── timed-effects.h ├── torment-source-type.h ├── transform.cc ├── transform.h ├── transformation.h ├── trap-def.h ├── trap-type.h ├── traps.cc ├── traps.h ├── travel-defs.h ├── travel.cc ├── travel.h ├── tutorial.cc ├── tutorial.h ├── ui.cc ├── ui.h ├── uncancel.cc ├── uncancel.h ├── uncancellable-type.h ├── undead-state-type.h ├── unicode.cc ├── unicode.h ├── unique-item-status-type.h ├── unwind.h ├── util ├── FAQ2html.pl ├── Makefile ├── art-data.pl ├── checkcommit ├── checkwhite ├── cmd-name.pl ├── config.ld ├── configure ├── cpp_version ├── crawl.ico ├── crawl.nsi ├── crawl.rc ├── db_lint ├── db_splice ├── db_split ├── dcss.svg ├── descript-sort.pl ├── docs │ ├── README.tex │ ├── key_changes.tex │ ├── quickstart.tex │ ├── screen.eps │ ├── screen.fig │ └── screen.pdf ├── edit_vault ├── fake_pty.c ├── find_font ├── gather_abilities ├── gather_backgrounds ├── gather_branches ├── gather_cards ├── gather_clouds ├── gather_features ├── gather_items ├── gather_mons ├── gather_species ├── gather_spells ├── gather_tiles_gui ├── gather_tiles_mons ├── gen-all.cmd ├── gen-apt.pl ├── gen-cflg.pl ├── gen-luatags.pl ├── gen-mi-enum ├── gen-mst.pl ├── gen_ver.pl ├── gen_ver_msvc.pl ├── generate_zombie_tile.sh ├── good-depfile ├── includes.sh ├── levcomp.lpp ├── levcomp.ypp ├── list_merged_branches.pl ├── logotype.psd ├── mac-crawl-build-update-cdo ├── makedb.pl ├── monster │ └── monster-main.cc ├── optimize-pngs ├── remove_unused_headers.pl ├── rotate-tile.pl ├── salvage-credits.pl ├── split-enum.py ├── tag-major-upgrade ├── testdb.pl ├── tiledef_lint ├── tiles_unused ├── txc ├── unbrace ├── undoku.sed ├── unrest.pl └── webtiles-init-player.sh ├── version.cc ├── version.h ├── view.cc ├── view.h ├── viewchar.cc ├── viewchar.h ├── viewgeom.cc ├── viewgeom.h ├── viewmap.cc ├── viewmap.h ├── wcwidth.cc ├── webserver ├── README ├── checkoutput.py ├── config.py ├── connection.py ├── game_data │ ├── static │ │ ├── cell_renderer.js │ │ ├── debug.js │ │ ├── display.js │ │ ├── dungeon_renderer.js │ │ ├── enums.js │ │ ├── game.js │ │ ├── map_knowledge.js │ │ ├── menu.js │ │ ├── messages.js │ │ ├── minimap.js │ │ ├── monster_list.js │ │ ├── mouse_control.js │ │ ├── options.js │ │ ├── player.js │ │ ├── scroller.js │ │ ├── simplebar.css │ │ ├── simplebar.js │ │ ├── style.css │ │ ├── text.js │ │ ├── textinput.js │ │ ├── tileinfos.js │ │ ├── ui-layouts.js │ │ ├── ui.js │ │ ├── util.js │ │ └── view_data.js │ └── templates │ │ └── game.html ├── game_data_handler.py ├── inotify.py ├── process_handler.py ├── server.py ├── static │ ├── asc.gif │ ├── desc.gif │ ├── scripts │ │ ├── app.js │ │ ├── chat.js │ │ ├── client.js │ │ ├── comm.js │ │ ├── contrib │ │ │ ├── ba-linkify.min.js │ │ │ ├── inflate.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ ├── jquery.json.js │ │ │ ├── jquery.tablesorter.js │ │ │ ├── jquery.waitforimages.js │ │ │ └── require.js │ │ ├── key_conversion.js │ │ └── linkify.js │ └── style.css ├── templates │ ├── banner.html │ ├── client.html │ ├── footer.html │ ├── game_links.html │ └── shutdown.html ├── terminal.py ├── userdb.py ├── util.py └── ws_handler.py ├── windowmanager-sdl.cc ├── windowmanager-sdl.h ├── windowmanager.h ├── wiz-dgn.cc ├── wiz-dgn.h ├── wiz-dump.cc ├── wiz-dump.h ├── wiz-fsim.cc ├── wiz-fsim.h ├── wiz-item.cc ├── wiz-item.h ├── wiz-mon.cc ├── wiz-mon.h ├── wiz-you.cc ├── wiz-you.h ├── wizard-option-type.h ├── wizard.cc ├── wizard.h ├── worley.cc ├── worley.h ├── wu-jian-attack-type.h ├── xom.cc ├── xom.h ├── xp-tracking-type.h ├── zap-data.h └── zap-type.h /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis/apt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/.travis/apt.pl -------------------------------------------------------------------------------- /.travis/build.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/.travis/build.pl -------------------------------------------------------------------------------- /.travis/deps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/.travis/deps.pl -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/README.md -------------------------------------------------------------------------------- /crawl-ref/.gitattributes: -------------------------------------------------------------------------------- 1 | *.des diff=des 2 | -------------------------------------------------------------------------------- /crawl-ref/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/.gitignore -------------------------------------------------------------------------------- /crawl-ref/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/CREDITS.txt -------------------------------------------------------------------------------- /crawl-ref/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/INSTALL.md -------------------------------------------------------------------------------- /crawl-ref/docs/arena.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/arena.txt -------------------------------------------------------------------------------- /crawl-ref/docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/changelog.txt -------------------------------------------------------------------------------- /crawl-ref/docs/crawl.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/crawl.6 -------------------------------------------------------------------------------- /crawl-ref/docs/crawl_manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/crawl_manual.rst -------------------------------------------------------------------------------- /crawl-ref/docs/develop/IRC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/IRC.txt -------------------------------------------------------------------------------- /crawl-ref/docs/develop/android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/android.txt -------------------------------------------------------------------------------- /crawl-ref/docs/develop/ctags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/ctags.txt -------------------------------------------------------------------------------- /crawl-ref/docs/develop/gdb_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/gdb_tips.txt -------------------------------------------------------------------------------- /crawl-ref/docs/develop/keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/keys.txt -------------------------------------------------------------------------------- /crawl-ref/docs/develop/spells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/spells.txt -------------------------------------------------------------------------------- /crawl-ref/docs/develop/testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/develop/testing.txt -------------------------------------------------------------------------------- /crawl-ref/docs/fight_simulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/fight_simulator.txt -------------------------------------------------------------------------------- /crawl-ref/docs/keybind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/keybind.txt -------------------------------------------------------------------------------- /crawl-ref/docs/license/cc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/license/cc0.txt -------------------------------------------------------------------------------- /crawl-ref/docs/license/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/license/lgpl.txt -------------------------------------------------------------------------------- /crawl-ref/docs/license/worley.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/license/worley.txt -------------------------------------------------------------------------------- /crawl-ref/docs/macros_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/macros_guide.txt -------------------------------------------------------------------------------- /crawl-ref/docs/obsolete/spl-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/obsolete/spl-data.txt -------------------------------------------------------------------------------- /crawl-ref/docs/obsolete/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/obsolete/versions.txt -------------------------------------------------------------------------------- /crawl-ref/docs/options_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/options_guide.txt -------------------------------------------------------------------------------- /crawl-ref/docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/quickstart.md -------------------------------------------------------------------------------- /crawl-ref/docs/quickstart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/quickstart.pdf -------------------------------------------------------------------------------- /crawl-ref/docs/ssh_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/ssh_guide.txt -------------------------------------------------------------------------------- /crawl-ref/docs/template/apt-tmpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/template/apt-tmpl.txt -------------------------------------------------------------------------------- /crawl-ref/docs/tiles_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/docs/tiles_help.txt -------------------------------------------------------------------------------- /crawl-ref/git-hooks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/git-hooks/README.txt -------------------------------------------------------------------------------- /crawl-ref/git-hooks/crawl-ref-email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/git-hooks/crawl-ref-email -------------------------------------------------------------------------------- /crawl-ref/settings/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/settings/init.txt -------------------------------------------------------------------------------- /crawl-ref/source/AppHdr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/AppHdr.cc -------------------------------------------------------------------------------- /crawl-ref/source/AppHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/AppHdr.h -------------------------------------------------------------------------------- /crawl-ref/source/KeymapContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/KeymapContext.h -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/.gitignore -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Common.props -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Common.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Common.vsprops -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Console.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Console.props -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Debug.props -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Debug.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Debug.vsprops -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Release.props -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Tiles.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Tiles.props -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/Tiles.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/Tiles.vsprops -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/crawl-ref.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/crawl-ref.sln -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/crawl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/crawl.vcxproj -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/dat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/dat.csproj -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/fresh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/fresh.bat -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/inttypes.h -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/stdint.h -------------------------------------------------------------------------------- /crawl-ref/source/MSVC/tilegen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/MSVC/tilegen.vcproj -------------------------------------------------------------------------------- /crawl-ref/source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/Makefile -------------------------------------------------------------------------------- /crawl-ref/source/Makefile.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/Makefile.obj -------------------------------------------------------------------------------- /crawl-ref/source/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/SDLMain.h -------------------------------------------------------------------------------- /crawl-ref/source/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/SDLMain.m -------------------------------------------------------------------------------- /crawl-ref/source/ability-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ability-type.h -------------------------------------------------------------------------------- /crawl-ref/source/ability.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ability.cc -------------------------------------------------------------------------------- /crawl-ref/source/ability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ability.h -------------------------------------------------------------------------------- /crawl-ref/source/abyss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/abyss.cc -------------------------------------------------------------------------------- /crawl-ref/source/abyss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/abyss.h -------------------------------------------------------------------------------- /crawl-ref/source/ac-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ac-type.h -------------------------------------------------------------------------------- /crawl-ref/source/acquire.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/acquire.cc -------------------------------------------------------------------------------- /crawl-ref/source/acquire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/acquire.h -------------------------------------------------------------------------------- /crawl-ref/source/act-iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/act-iter.cc -------------------------------------------------------------------------------- /crawl-ref/source/act-iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/act-iter.h -------------------------------------------------------------------------------- /crawl-ref/source/actor-los.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/actor-los.cc -------------------------------------------------------------------------------- /crawl-ref/source/actor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/actor.cc -------------------------------------------------------------------------------- /crawl-ref/source/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/actor.h -------------------------------------------------------------------------------- /crawl-ref/source/adjust.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/adjust.cc -------------------------------------------------------------------------------- /crawl-ref/source/adjust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/adjust.h -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/SDL2: -------------------------------------------------------------------------------- 1 | ../../contrib/sdl2 -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/SDL2_image: -------------------------------------------------------------------------------- 1 | ../../contrib/sdl2-image -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/SDL2_mixer: -------------------------------------------------------------------------------- 1 | ../../contrib/sdl2-mixer -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/freetype: -------------------------------------------------------------------------------- 1 | ../../contrib/freetype -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/lua: -------------------------------------------------------------------------------- 1 | ../../contrib/lua -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/mikmod: -------------------------------------------------------------------------------- 1 | SDL2_mixer/external/libmikmod-3.1.12 -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/pcre: -------------------------------------------------------------------------------- 1 | ../../contrib/pcre -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/smpeg: -------------------------------------------------------------------------------- 1 | SDL2_mixer/external/smpeg2-2.0.0 -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/sqlite: -------------------------------------------------------------------------------- 1 | ../../contrib/sqlite -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/webp: -------------------------------------------------------------------------------- 1 | ../../contrib/sdl2-image/external/libwebp-0.3.0 -------------------------------------------------------------------------------- /crawl-ref/source/android-project/jni/zlib: -------------------------------------------------------------------------------- 1 | ../../contrib/zlib -------------------------------------------------------------------------------- /crawl-ref/source/aptitudes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/aptitudes.h -------------------------------------------------------------------------------- /crawl-ref/source/areas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/areas.cc -------------------------------------------------------------------------------- /crawl-ref/source/areas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/areas.h -------------------------------------------------------------------------------- /crawl-ref/source/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/arena.cc -------------------------------------------------------------------------------- /crawl-ref/source/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/arena.h -------------------------------------------------------------------------------- /crawl-ref/source/art-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/art-data.txt -------------------------------------------------------------------------------- /crawl-ref/source/art-func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/art-func.h -------------------------------------------------------------------------------- /crawl-ref/source/artefact.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/artefact.cc -------------------------------------------------------------------------------- /crawl-ref/source/artefact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/artefact.h -------------------------------------------------------------------------------- /crawl-ref/source/attack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/attack.cc -------------------------------------------------------------------------------- /crawl-ref/source/attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/attack.h -------------------------------------------------------------------------------- /crawl-ref/source/attitude-change.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/attitude-change.cc -------------------------------------------------------------------------------- /crawl-ref/source/attitude-change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/attitude-change.h -------------------------------------------------------------------------------- /crawl-ref/source/attribute-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/attribute-type.h -------------------------------------------------------------------------------- /crawl-ref/source/beam-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/beam-type.h -------------------------------------------------------------------------------- /crawl-ref/source/beam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/beam.cc -------------------------------------------------------------------------------- /crawl-ref/source/beam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/beam.h -------------------------------------------------------------------------------- /crawl-ref/source/beh-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/beh-type.h -------------------------------------------------------------------------------- /crawl-ref/source/behold.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/behold.cc -------------------------------------------------------------------------------- /crawl-ref/source/bitary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/bitary.cc -------------------------------------------------------------------------------- /crawl-ref/source/bitary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/bitary.h -------------------------------------------------------------------------------- /crawl-ref/source/bloodspatter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/bloodspatter.cc -------------------------------------------------------------------------------- /crawl-ref/source/bloodspatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/bloodspatter.h -------------------------------------------------------------------------------- /crawl-ref/source/book-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/book-data.h -------------------------------------------------------------------------------- /crawl-ref/source/book-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/book-type.h -------------------------------------------------------------------------------- /crawl-ref/source/branch-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/branch-data.h -------------------------------------------------------------------------------- /crawl-ref/source/branch-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/branch-type.h -------------------------------------------------------------------------------- /crawl-ref/source/branch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/branch.cc -------------------------------------------------------------------------------- /crawl-ref/source/branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/branch.h -------------------------------------------------------------------------------- /crawl-ref/source/butcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/butcher.cc -------------------------------------------------------------------------------- /crawl-ref/source/butcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/butcher.h -------------------------------------------------------------------------------- /crawl-ref/source/caction-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/caction-type.h -------------------------------------------------------------------------------- /crawl-ref/source/char-set-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/char-set-type.h -------------------------------------------------------------------------------- /crawl-ref/source/chardump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/chardump.cc -------------------------------------------------------------------------------- /crawl-ref/source/chardump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/chardump.h -------------------------------------------------------------------------------- /crawl-ref/source/cio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cio.cc -------------------------------------------------------------------------------- /crawl-ref/source/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cio.h -------------------------------------------------------------------------------- /crawl-ref/source/cloud-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cloud-type.h -------------------------------------------------------------------------------- /crawl-ref/source/cloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cloud.cc -------------------------------------------------------------------------------- /crawl-ref/source/cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cloud.h -------------------------------------------------------------------------------- /crawl-ref/source/clua.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/clua.cc -------------------------------------------------------------------------------- /crawl-ref/source/clua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/clua.h -------------------------------------------------------------------------------- /crawl-ref/source/cluautil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cluautil.cc -------------------------------------------------------------------------------- /crawl-ref/source/cluautil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cluautil.h -------------------------------------------------------------------------------- /crawl-ref/source/cmd-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cmd-keys.h -------------------------------------------------------------------------------- /crawl-ref/source/colour.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/colour.cc -------------------------------------------------------------------------------- /crawl-ref/source/colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/colour.h -------------------------------------------------------------------------------- /crawl-ref/source/command-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/command-type.h -------------------------------------------------------------------------------- /crawl-ref/source/command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/command.cc -------------------------------------------------------------------------------- /crawl-ref/source/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/command.h -------------------------------------------------------------------------------- /crawl-ref/source/conduct-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/conduct-type.h -------------------------------------------------------------------------------- /crawl-ref/source/contrib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/contrib/.gitignore -------------------------------------------------------------------------------- /crawl-ref/source/contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/contrib/Makefile -------------------------------------------------------------------------------- /crawl-ref/source/coord-circle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/coord-circle.cc -------------------------------------------------------------------------------- /crawl-ref/source/coord-circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/coord-circle.h -------------------------------------------------------------------------------- /crawl-ref/source/coord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/coord.cc -------------------------------------------------------------------------------- /crawl-ref/source/coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/coord.h -------------------------------------------------------------------------------- /crawl-ref/source/coordit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/coordit.cc -------------------------------------------------------------------------------- /crawl-ref/source/coordit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/coordit.h -------------------------------------------------------------------------------- /crawl-ref/source/crash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/crash.cc -------------------------------------------------------------------------------- /crawl-ref/source/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/crash.h -------------------------------------------------------------------------------- /crawl-ref/source/crawl-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/crawl-gdb.py -------------------------------------------------------------------------------- /crawl-ref/source/crawl_all.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/crawl_all.doxy -------------------------------------------------------------------------------- /crawl-ref/source/crawl_simple.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/crawl_simple.doxy -------------------------------------------------------------------------------- /crawl-ref/source/ctest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ctest.cc -------------------------------------------------------------------------------- /crawl-ref/source/ctest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifdef DEBUG_TESTS 4 | NORETURN void run_tests(); 5 | #endif 6 | -------------------------------------------------------------------------------- /crawl-ref/source/cursor-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/cursor-type.h -------------------------------------------------------------------------------- /crawl-ref/source/daction-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/daction-type.h -------------------------------------------------------------------------------- /crawl-ref/source/dactions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dactions.cc -------------------------------------------------------------------------------- /crawl-ref/source/dactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dactions.h -------------------------------------------------------------------------------- /crawl-ref/source/dat/clua/delays.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/clua/delays.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/clua/kills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/clua/kills.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/clua/stash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/clua/stash.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/des/guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/des/guide.txt -------------------------------------------------------------------------------- /crawl-ref/source/dat/des/test.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/des/test.des -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/cs/gods.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/fi/cards.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/it/items.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/lv/branches.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/lv/cards.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/lv/gods.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/pl/cards.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/pl/gods.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/sv/cards.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | Famine card 3 | 4 | Detta kort svälter dig. 5 | %%%% 6 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/tr/gods.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/descript/tr/unident.txt: -------------------------------------------------------------------------------- 1 | %%%% 2 | wand 3 | 4 | Bir değnek. Belki sihirlidir. 5 | %%%% 6 | -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/debug.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/fnwrap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/fnwrap.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/ghost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/ghost.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/init.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/iter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/iter.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/lm_fog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/lm_fog.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/macro.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/macro.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/point.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/point.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/sanity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/sanity.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/sprint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/sprint.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/stress.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/stress.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/test.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/util.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/dlua/vault.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/dlua/vault.lua -------------------------------------------------------------------------------- /crawl-ref/source/dat/tiles/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dat/tiles/logo.png -------------------------------------------------------------------------------- /crawl-ref/source/database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/database.cc -------------------------------------------------------------------------------- /crawl-ref/source/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/database.h -------------------------------------------------------------------------------- /crawl-ref/source/dbg-asrt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-asrt.cc -------------------------------------------------------------------------------- /crawl-ref/source/dbg-maps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-maps.cc -------------------------------------------------------------------------------- /crawl-ref/source/dbg-maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-maps.h -------------------------------------------------------------------------------- /crawl-ref/source/dbg-objstat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-objstat.cc -------------------------------------------------------------------------------- /crawl-ref/source/dbg-objstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-objstat.h -------------------------------------------------------------------------------- /crawl-ref/source/dbg-scan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-scan.cc -------------------------------------------------------------------------------- /crawl-ref/source/dbg-scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-scan.h -------------------------------------------------------------------------------- /crawl-ref/source/dbg-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-util.cc -------------------------------------------------------------------------------- /crawl-ref/source/dbg-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dbg-util.h -------------------------------------------------------------------------------- /crawl-ref/source/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/changelog -------------------------------------------------------------------------------- /crawl-ref/source/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /crawl-ref/source/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/control -------------------------------------------------------------------------------- /crawl-ref/source/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/copyright -------------------------------------------------------------------------------- /crawl-ref/source/debian/crawl-common.docs: -------------------------------------------------------------------------------- 1 | CREDITS.txt 2 | docs/*.pdf 3 | -------------------------------------------------------------------------------- /crawl-ref/source/debian/crawl.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/crawl.menu -------------------------------------------------------------------------------- /crawl-ref/source/debian/crawl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/crawl.png -------------------------------------------------------------------------------- /crawl-ref/source/debian/crawl.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/crawl.xpm -------------------------------------------------------------------------------- /crawl-ref/source/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/rules -------------------------------------------------------------------------------- /crawl-ref/source/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /crawl-ref/source/debian/source/include-binaries: -------------------------------------------------------------------------------- 1 | debian/crawl.png 2 | -------------------------------------------------------------------------------- /crawl-ref/source/debian/source/options: -------------------------------------------------------------------------------- 1 | single-debian-patch 2 | -------------------------------------------------------------------------------- /crawl-ref/source/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debian/watch -------------------------------------------------------------------------------- /crawl-ref/source/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/debug.h -------------------------------------------------------------------------------- /crawl-ref/source/deck-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/deck-type.h -------------------------------------------------------------------------------- /crawl-ref/source/decks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/decks.cc -------------------------------------------------------------------------------- /crawl-ref/source/decks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/decks.h -------------------------------------------------------------------------------- /crawl-ref/source/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/defines.h -------------------------------------------------------------------------------- /crawl-ref/source/delay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/delay.cc -------------------------------------------------------------------------------- /crawl-ref/source/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/delay.h -------------------------------------------------------------------------------- /crawl-ref/source/describe-god.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/describe-god.cc -------------------------------------------------------------------------------- /crawl-ref/source/describe-god.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/describe-god.h -------------------------------------------------------------------------------- /crawl-ref/source/describe-spells.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/describe-spells.cc -------------------------------------------------------------------------------- /crawl-ref/source/describe-spells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/describe-spells.h -------------------------------------------------------------------------------- /crawl-ref/source/describe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/describe.cc -------------------------------------------------------------------------------- /crawl-ref/source/describe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/describe.h -------------------------------------------------------------------------------- /crawl-ref/source/dgl-message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgl-message.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgl-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgl-message.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-delve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-delve.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-delve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-delve.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-event.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-event.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-height.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-height.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-height.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-height.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-irregular-box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-irregular-box.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-layouts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-layouts.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-layouts.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-overview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-overview.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-overview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-overview.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-proclayouts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-proclayouts.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-proclayouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-proclayouts.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-shoals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-shoals.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-shoals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-shoals.h -------------------------------------------------------------------------------- /crawl-ref/source/dgn-swamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dgn-swamp.cc -------------------------------------------------------------------------------- /crawl-ref/source/dgn-swamp.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void dgn_build_swamp_level(); 4 | -------------------------------------------------------------------------------- /crawl-ref/source/directn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/directn.cc -------------------------------------------------------------------------------- /crawl-ref/source/directn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/directn.h -------------------------------------------------------------------------------- /crawl-ref/source/disable-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/disable-type.h -------------------------------------------------------------------------------- /crawl-ref/source/dlua.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dlua.cc -------------------------------------------------------------------------------- /crawl-ref/source/dlua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dlua.h -------------------------------------------------------------------------------- /crawl-ref/source/domino-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/domino-data.h -------------------------------------------------------------------------------- /crawl-ref/source/domino.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/domino.cc -------------------------------------------------------------------------------- /crawl-ref/source/domino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/domino.h -------------------------------------------------------------------------------- /crawl-ref/source/dungeon-char-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dungeon-char-type.h -------------------------------------------------------------------------------- /crawl-ref/source/dungeon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dungeon.cc -------------------------------------------------------------------------------- /crawl-ref/source/dungeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/dungeon.h -------------------------------------------------------------------------------- /crawl-ref/source/duration-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/duration-data.h -------------------------------------------------------------------------------- /crawl-ref/source/duration-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/duration-type.h -------------------------------------------------------------------------------- /crawl-ref/source/enchant-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/enchant-type.h -------------------------------------------------------------------------------- /crawl-ref/source/end.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/end.cc -------------------------------------------------------------------------------- /crawl-ref/source/end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/end.h -------------------------------------------------------------------------------- /crawl-ref/source/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/endianness.h -------------------------------------------------------------------------------- /crawl-ref/source/energy-use-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/energy-use-type.h -------------------------------------------------------------------------------- /crawl-ref/source/english.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/english.cc -------------------------------------------------------------------------------- /crawl-ref/source/english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/english.h -------------------------------------------------------------------------------- /crawl-ref/source/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/enum.h -------------------------------------------------------------------------------- /crawl-ref/source/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/env.h -------------------------------------------------------------------------------- /crawl-ref/source/eq-type-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/eq-type-flags.h -------------------------------------------------------------------------------- /crawl-ref/source/eq-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/eq-type.h -------------------------------------------------------------------------------- /crawl-ref/source/equipment-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/equipment-type.h -------------------------------------------------------------------------------- /crawl-ref/source/errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/errors.cc -------------------------------------------------------------------------------- /crawl-ref/source/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/errors.h -------------------------------------------------------------------------------- /crawl-ref/source/evoke.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/evoke.cc -------------------------------------------------------------------------------- /crawl-ref/source/evoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/evoke.h -------------------------------------------------------------------------------- /crawl-ref/source/exclude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/exclude.cc -------------------------------------------------------------------------------- /crawl-ref/source/exclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/exclude.h -------------------------------------------------------------------------------- /crawl-ref/source/exercise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/exercise.cc -------------------------------------------------------------------------------- /crawl-ref/source/exercise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/exercise.h -------------------------------------------------------------------------------- /crawl-ref/source/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/externs.h -------------------------------------------------------------------------------- /crawl-ref/source/fearmonger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fearmonger.cc -------------------------------------------------------------------------------- /crawl-ref/source/feature-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/feature-data.h -------------------------------------------------------------------------------- /crawl-ref/source/feature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/feature.cc -------------------------------------------------------------------------------- /crawl-ref/source/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/feature.h -------------------------------------------------------------------------------- /crawl-ref/source/fight.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fight.cc -------------------------------------------------------------------------------- /crawl-ref/source/fight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fight.h -------------------------------------------------------------------------------- /crawl-ref/source/files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/files.cc -------------------------------------------------------------------------------- /crawl-ref/source/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/files.h -------------------------------------------------------------------------------- /crawl-ref/source/fineff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fineff.cc -------------------------------------------------------------------------------- /crawl-ref/source/fineff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fineff.h -------------------------------------------------------------------------------- /crawl-ref/source/fixedarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fixedarray.h -------------------------------------------------------------------------------- /crawl-ref/source/fixedvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fixedvector.h -------------------------------------------------------------------------------- /crawl-ref/source/flang-t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/flang-t.h -------------------------------------------------------------------------------- /crawl-ref/source/flood-find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/flood-find.h -------------------------------------------------------------------------------- /crawl-ref/source/flush-reason-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/flush-reason-type.h -------------------------------------------------------------------------------- /crawl-ref/source/fontwrapper-ft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fontwrapper-ft.cc -------------------------------------------------------------------------------- /crawl-ref/source/fontwrapper-ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fontwrapper-ft.h -------------------------------------------------------------------------------- /crawl-ref/source/food.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/food.cc -------------------------------------------------------------------------------- /crawl-ref/source/food.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/food.h -------------------------------------------------------------------------------- /crawl-ref/source/form-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/form-data.h -------------------------------------------------------------------------------- /crawl-ref/source/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/format.cc -------------------------------------------------------------------------------- /crawl-ref/source/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/format.h -------------------------------------------------------------------------------- /crawl-ref/source/fprop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fprop.cc -------------------------------------------------------------------------------- /crawl-ref/source/fprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/fprop.h -------------------------------------------------------------------------------- /crawl-ref/source/game-chapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/game-chapter.h -------------------------------------------------------------------------------- /crawl-ref/source/game-exit-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/game-exit-type.h -------------------------------------------------------------------------------- /crawl-ref/source/game-options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/game-options.cc -------------------------------------------------------------------------------- /crawl-ref/source/game-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/game-options.h -------------------------------------------------------------------------------- /crawl-ref/source/game-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/game-type.h -------------------------------------------------------------------------------- /crawl-ref/source/gender-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/gender-type.h -------------------------------------------------------------------------------- /crawl-ref/source/geom2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/geom2d.cc -------------------------------------------------------------------------------- /crawl-ref/source/geom2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/geom2d.h -------------------------------------------------------------------------------- /crawl-ref/source/ghost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ghost.cc -------------------------------------------------------------------------------- /crawl-ref/source/ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ghost.h -------------------------------------------------------------------------------- /crawl-ref/source/glwrapper-ogl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/glwrapper-ogl.cc -------------------------------------------------------------------------------- /crawl-ref/source/glwrapper-ogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/glwrapper-ogl.h -------------------------------------------------------------------------------- /crawl-ref/source/glwrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/glwrapper.cc -------------------------------------------------------------------------------- /crawl-ref/source/glwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/glwrapper.h -------------------------------------------------------------------------------- /crawl-ref/source/god-abil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-abil.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-abil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-abil.h -------------------------------------------------------------------------------- /crawl-ref/source/god-blessing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-blessing.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-blessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-blessing.h -------------------------------------------------------------------------------- /crawl-ref/source/god-companions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-companions.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-companions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-companions.h -------------------------------------------------------------------------------- /crawl-ref/source/god-conduct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-conduct.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-conduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-conduct.h -------------------------------------------------------------------------------- /crawl-ref/source/god-item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-item.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-item.h -------------------------------------------------------------------------------- /crawl-ref/source/god-menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-menu.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-menu.h -------------------------------------------------------------------------------- /crawl-ref/source/god-passive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-passive.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-passive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-passive.h -------------------------------------------------------------------------------- /crawl-ref/source/god-prayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-prayer.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-prayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-prayer.h -------------------------------------------------------------------------------- /crawl-ref/source/god-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-type.h -------------------------------------------------------------------------------- /crawl-ref/source/god-wrath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-wrath.cc -------------------------------------------------------------------------------- /crawl-ref/source/god-wrath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/god-wrath.h -------------------------------------------------------------------------------- /crawl-ref/source/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hash.cc -------------------------------------------------------------------------------- /crawl-ref/source/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hash.h -------------------------------------------------------------------------------- /crawl-ref/source/hints.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hints.cc -------------------------------------------------------------------------------- /crawl-ref/source/hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hints.h -------------------------------------------------------------------------------- /crawl-ref/source/hiscores.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hiscores.cc -------------------------------------------------------------------------------- /crawl-ref/source/hiscores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hiscores.h -------------------------------------------------------------------------------- /crawl-ref/source/hunger-state-t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/hunger-state-t.h -------------------------------------------------------------------------------- /crawl-ref/source/initfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/initfile.cc -------------------------------------------------------------------------------- /crawl-ref/source/initfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/initfile.h -------------------------------------------------------------------------------- /crawl-ref/source/invent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/invent.cc -------------------------------------------------------------------------------- /crawl-ref/source/invent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/invent.h -------------------------------------------------------------------------------- /crawl-ref/source/item-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-name.cc -------------------------------------------------------------------------------- /crawl-ref/source/item-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-name.h -------------------------------------------------------------------------------- /crawl-ref/source/item-prop-enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-prop-enum.h -------------------------------------------------------------------------------- /crawl-ref/source/item-prop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-prop.cc -------------------------------------------------------------------------------- /crawl-ref/source/item-prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-prop.h -------------------------------------------------------------------------------- /crawl-ref/source/item-use.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-use.cc -------------------------------------------------------------------------------- /crawl-ref/source/item-use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/item-use.h -------------------------------------------------------------------------------- /crawl-ref/source/items.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/items.cc -------------------------------------------------------------------------------- /crawl-ref/source/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/items.h -------------------------------------------------------------------------------- /crawl-ref/source/job-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/job-data.h -------------------------------------------------------------------------------- /crawl-ref/source/job-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/job-type.h -------------------------------------------------------------------------------- /crawl-ref/source/jobs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/jobs.cc -------------------------------------------------------------------------------- /crawl-ref/source/jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/jobs.h -------------------------------------------------------------------------------- /crawl-ref/source/json-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/json-wrapper.h -------------------------------------------------------------------------------- /crawl-ref/source/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/json.cc -------------------------------------------------------------------------------- /crawl-ref/source/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/json.h -------------------------------------------------------------------------------- /crawl-ref/source/kill-category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/kill-category.h -------------------------------------------------------------------------------- /crawl-ref/source/killer-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/killer-type.h -------------------------------------------------------------------------------- /crawl-ref/source/kills.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/kills.cc -------------------------------------------------------------------------------- /crawl-ref/source/kills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/kills.h -------------------------------------------------------------------------------- /crawl-ref/source/l-colour.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-colour.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-crawl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-crawl.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-debug.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-defs.h -------------------------------------------------------------------------------- /crawl-ref/source/l-dgn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgn.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgnbld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgnbld.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgnevt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgnevt.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgngrd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgngrd.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgnit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgnit.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgnlvl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgnlvl.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgnmon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgnmon.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-dgntil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-dgntil.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-feat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-feat.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-file.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-food.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-food.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-global.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-item.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-libs.h -------------------------------------------------------------------------------- /crawl-ref/source/l-los.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-los.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-mapgrd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-mapgrd.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-mapmrk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-mapmrk.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-moninf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-moninf.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-mons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-mons.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-option.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-spells.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-spells.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-subvault.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-subvault.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-travel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-travel.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-view.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-wiz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-wiz.cc -------------------------------------------------------------------------------- /crawl-ref/source/l-you.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/l-you.cc -------------------------------------------------------------------------------- /crawl-ref/source/lang-fake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lang-fake.cc -------------------------------------------------------------------------------- /crawl-ref/source/lang-fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lang-fake.h -------------------------------------------------------------------------------- /crawl-ref/source/lang-t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lang-t.h -------------------------------------------------------------------------------- /crawl-ref/source/lev-pand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lev-pand.cc -------------------------------------------------------------------------------- /crawl-ref/source/lev-pand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lev-pand.h -------------------------------------------------------------------------------- /crawl-ref/source/level-state-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/level-state-type.h -------------------------------------------------------------------------------- /crawl-ref/source/libconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libconsole.h -------------------------------------------------------------------------------- /crawl-ref/source/libgui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libgui.cc -------------------------------------------------------------------------------- /crawl-ref/source/libunix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libunix.cc -------------------------------------------------------------------------------- /crawl-ref/source/libunix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libunix.h -------------------------------------------------------------------------------- /crawl-ref/source/libutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libutil.cc -------------------------------------------------------------------------------- /crawl-ref/source/libutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libutil.h -------------------------------------------------------------------------------- /crawl-ref/source/libw32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/libw32c.cc -------------------------------------------------------------------------------- /crawl-ref/source/libw32c.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void w32_insert_escape(); 4 | -------------------------------------------------------------------------------- /crawl-ref/source/loading-screen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/loading-screen.cc -------------------------------------------------------------------------------- /crawl-ref/source/loading-screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/loading-screen.h -------------------------------------------------------------------------------- /crawl-ref/source/lookup-help.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lookup-help.cc -------------------------------------------------------------------------------- /crawl-ref/source/lookup-help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/lookup-help.h -------------------------------------------------------------------------------- /crawl-ref/source/los-def.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/los-def.cc -------------------------------------------------------------------------------- /crawl-ref/source/los-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/los-def.h -------------------------------------------------------------------------------- /crawl-ref/source/los-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/los-type.h -------------------------------------------------------------------------------- /crawl-ref/source/los.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/los.cc -------------------------------------------------------------------------------- /crawl-ref/source/los.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/los.h -------------------------------------------------------------------------------- /crawl-ref/source/losglobal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/losglobal.cc -------------------------------------------------------------------------------- /crawl-ref/source/losglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/losglobal.h -------------------------------------------------------------------------------- /crawl-ref/source/losparam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/losparam.cc -------------------------------------------------------------------------------- /crawl-ref/source/losparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/losparam.h -------------------------------------------------------------------------------- /crawl-ref/source/luaterp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/luaterp.cc -------------------------------------------------------------------------------- /crawl-ref/source/luaterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/luaterp.h -------------------------------------------------------------------------------- /crawl-ref/source/mac/Crawl.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mac/Crawl.icns -------------------------------------------------------------------------------- /crawl-ref/source/mac/crawl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mac/crawl -------------------------------------------------------------------------------- /crawl-ref/source/macro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/macro.cc -------------------------------------------------------------------------------- /crawl-ref/source/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/macro.h -------------------------------------------------------------------------------- /crawl-ref/source/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/main.cc -------------------------------------------------------------------------------- /crawl-ref/source/makeitem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/makeitem.cc -------------------------------------------------------------------------------- /crawl-ref/source/makeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/makeitem.h -------------------------------------------------------------------------------- /crawl-ref/source/map-cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/map-cell.h -------------------------------------------------------------------------------- /crawl-ref/source/map-feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/map-feature.h -------------------------------------------------------------------------------- /crawl-ref/source/map-knowledge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/map-knowledge.cc -------------------------------------------------------------------------------- /crawl-ref/source/map-knowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/map-knowledge.h -------------------------------------------------------------------------------- /crawl-ref/source/map-marker-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/map-marker-type.h -------------------------------------------------------------------------------- /crawl-ref/source/mapdef.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mapdef.cc -------------------------------------------------------------------------------- /crawl-ref/source/mapdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mapdef.h -------------------------------------------------------------------------------- /crawl-ref/source/mapmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mapmark.cc -------------------------------------------------------------------------------- /crawl-ref/source/mapmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mapmark.h -------------------------------------------------------------------------------- /crawl-ref/source/maps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/maps.cc -------------------------------------------------------------------------------- /crawl-ref/source/maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/maps.h -------------------------------------------------------------------------------- /crawl-ref/source/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/matrix.h -------------------------------------------------------------------------------- /crawl-ref/source/maybe-bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/maybe-bool.h -------------------------------------------------------------------------------- /crawl-ref/source/melee-attack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/melee-attack.cc -------------------------------------------------------------------------------- /crawl-ref/source/melee-attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/melee-attack.h -------------------------------------------------------------------------------- /crawl-ref/source/menu-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/menu-type.h -------------------------------------------------------------------------------- /crawl-ref/source/menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/menu.cc -------------------------------------------------------------------------------- /crawl-ref/source/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/menu.h -------------------------------------------------------------------------------- /crawl-ref/source/message-stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/message-stream.cc -------------------------------------------------------------------------------- /crawl-ref/source/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/message.cc -------------------------------------------------------------------------------- /crawl-ref/source/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/message.h -------------------------------------------------------------------------------- /crawl-ref/source/mgen-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mgen-data.h -------------------------------------------------------------------------------- /crawl-ref/source/mgen-enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mgen-enum.h -------------------------------------------------------------------------------- /crawl-ref/source/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/misc.cc -------------------------------------------------------------------------------- /crawl-ref/source/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/misc.h -------------------------------------------------------------------------------- /crawl-ref/source/misc/CP437: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/misc/CP437 -------------------------------------------------------------------------------- /crawl-ref/source/misc/WGL-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/misc/WGL-4 -------------------------------------------------------------------------------- /crawl-ref/source/misc/grep-mon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/misc/grep-mon.pl -------------------------------------------------------------------------------- /crawl-ref/source/misc/grind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/misc/grind.sh -------------------------------------------------------------------------------- /crawl-ref/source/mon-abil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-abil.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-abil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-abil.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-act.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-act.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-act.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-attitude-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-attitude-type.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-behv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-behv.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-behv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-behv.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-book.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-cast.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-cast.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-clone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-clone.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-clone.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-data.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-death.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-death.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-death.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-death.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-ench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-ench.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-ench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-ench.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-enum.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-flags.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-gear.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-gear.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-gear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-gear.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-grow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-grow.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-grow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-grow.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-holy-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-holy-type.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-info.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-info.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-inv-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-inv-type.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-movetarget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-movetarget.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-movetarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-movetarget.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-pathfind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-pathfind.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-pathfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-pathfind.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-pick-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-pick-data.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-pick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-pick.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-pick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-pick.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-place.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-place.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-place.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-poly.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-poly.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-poly.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-project.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-project.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-project.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-speak.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-speak.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-speak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-speak.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-spell.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-tentacle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-tentacle.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-tentacle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-tentacle.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-transit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-transit.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-transit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-transit.h -------------------------------------------------------------------------------- /crawl-ref/source/mon-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-util.cc -------------------------------------------------------------------------------- /crawl-ref/source/mon-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mon-util.h -------------------------------------------------------------------------------- /crawl-ref/source/monster-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/monster-type.h -------------------------------------------------------------------------------- /crawl-ref/source/monster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/monster.cc -------------------------------------------------------------------------------- /crawl-ref/source/monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/monster.h -------------------------------------------------------------------------------- /crawl-ref/source/movement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/movement.cc -------------------------------------------------------------------------------- /crawl-ref/source/movement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/movement.h -------------------------------------------------------------------------------- /crawl-ref/source/mpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mpr.h -------------------------------------------------------------------------------- /crawl-ref/source/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/msvc.h -------------------------------------------------------------------------------- /crawl-ref/source/mutant-beast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mutant-beast.h -------------------------------------------------------------------------------- /crawl-ref/source/mutation-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mutation-data.h -------------------------------------------------------------------------------- /crawl-ref/source/mutation-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mutation-type.h -------------------------------------------------------------------------------- /crawl-ref/source/mutation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mutation.cc -------------------------------------------------------------------------------- /crawl-ref/source/mutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/mutation.h -------------------------------------------------------------------------------- /crawl-ref/source/nearby-danger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/nearby-danger.cc -------------------------------------------------------------------------------- /crawl-ref/source/nearby-danger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/nearby-danger.h -------------------------------------------------------------------------------- /crawl-ref/source/newgame-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/newgame-def.h -------------------------------------------------------------------------------- /crawl-ref/source/newgame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/newgame.cc -------------------------------------------------------------------------------- /crawl-ref/source/newgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/newgame.h -------------------------------------------------------------------------------- /crawl-ref/source/ng-init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-init.cc -------------------------------------------------------------------------------- /crawl-ref/source/ng-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-init.h -------------------------------------------------------------------------------- /crawl-ref/source/ng-input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-input.cc -------------------------------------------------------------------------------- /crawl-ref/source/ng-input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-input.h -------------------------------------------------------------------------------- /crawl-ref/source/ng-restr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-restr.cc -------------------------------------------------------------------------------- /crawl-ref/source/ng-restr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-restr.h -------------------------------------------------------------------------------- /crawl-ref/source/ng-setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-setup.cc -------------------------------------------------------------------------------- /crawl-ref/source/ng-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-setup.h -------------------------------------------------------------------------------- /crawl-ref/source/ng-wanderer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-wanderer.cc -------------------------------------------------------------------------------- /crawl-ref/source/ng-wanderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ng-wanderer.h -------------------------------------------------------------------------------- /crawl-ref/source/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/noise.h -------------------------------------------------------------------------------- /crawl-ref/source/notes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/notes.cc -------------------------------------------------------------------------------- /crawl-ref/source/notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/notes.h -------------------------------------------------------------------------------- /crawl-ref/source/object-class-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/object-class-type.h -------------------------------------------------------------------------------- /crawl-ref/source/operation-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/operation-types.h -------------------------------------------------------------------------------- /crawl-ref/source/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/options.h -------------------------------------------------------------------------------- /crawl-ref/source/orb-type.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum orb_type 4 | { 5 | ORB_ZOT, 6 | }; 7 | -------------------------------------------------------------------------------- /crawl-ref/source/orb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/orb.cc -------------------------------------------------------------------------------- /crawl-ref/source/orb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/orb.h -------------------------------------------------------------------------------- /crawl-ref/source/ouch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ouch.cc -------------------------------------------------------------------------------- /crawl-ref/source/ouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ouch.h -------------------------------------------------------------------------------- /crawl-ref/source/output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/output.cc -------------------------------------------------------------------------------- /crawl-ref/source/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/output.h -------------------------------------------------------------------------------- /crawl-ref/source/package.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/package.cc -------------------------------------------------------------------------------- /crawl-ref/source/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/package.h -------------------------------------------------------------------------------- /crawl-ref/source/pattern.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/pattern.cc -------------------------------------------------------------------------------- /crawl-ref/source/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/pattern.h -------------------------------------------------------------------------------- /crawl-ref/source/pcg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/pcg.cc -------------------------------------------------------------------------------- /crawl-ref/source/pcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/pcg.h -------------------------------------------------------------------------------- /crawl-ref/source/perlin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/perlin.cc -------------------------------------------------------------------------------- /crawl-ref/source/perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/perlin.h -------------------------------------------------------------------------------- /crawl-ref/source/place-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/place-info.cc -------------------------------------------------------------------------------- /crawl-ref/source/place-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/place-info.h -------------------------------------------------------------------------------- /crawl-ref/source/place.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/place.cc -------------------------------------------------------------------------------- /crawl-ref/source/place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/place.h -------------------------------------------------------------------------------- /crawl-ref/source/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/platform.h -------------------------------------------------------------------------------- /crawl-ref/source/playable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/playable.cc -------------------------------------------------------------------------------- /crawl-ref/source/playable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/playable.h -------------------------------------------------------------------------------- /crawl-ref/source/player-act.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-act.cc -------------------------------------------------------------------------------- /crawl-ref/source/player-equip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-equip.cc -------------------------------------------------------------------------------- /crawl-ref/source/player-equip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-equip.h -------------------------------------------------------------------------------- /crawl-ref/source/player-reacts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-reacts.cc -------------------------------------------------------------------------------- /crawl-ref/source/player-reacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-reacts.h -------------------------------------------------------------------------------- /crawl-ref/source/player-save-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-save-info.h -------------------------------------------------------------------------------- /crawl-ref/source/player-stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-stats.cc -------------------------------------------------------------------------------- /crawl-ref/source/player-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player-stats.h -------------------------------------------------------------------------------- /crawl-ref/source/player.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player.cc -------------------------------------------------------------------------------- /crawl-ref/source/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/player.h -------------------------------------------------------------------------------- /crawl-ref/source/potion-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/potion-type.h -------------------------------------------------------------------------------- /crawl-ref/source/potion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/potion.cc -------------------------------------------------------------------------------- /crawl-ref/source/potion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/potion.h -------------------------------------------------------------------------------- /crawl-ref/source/prompt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/prompt.cc -------------------------------------------------------------------------------- /crawl-ref/source/prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/prompt.h -------------------------------------------------------------------------------- /crawl-ref/source/pronoun-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/pronoun-type.h -------------------------------------------------------------------------------- /crawl-ref/source/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/props.h -------------------------------------------------------------------------------- /crawl-ref/source/quiver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/quiver.cc -------------------------------------------------------------------------------- /crawl-ref/source/quiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/quiver.h -------------------------------------------------------------------------------- /crawl-ref/source/randbook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/randbook.cc -------------------------------------------------------------------------------- /crawl-ref/source/randbook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/randbook.h -------------------------------------------------------------------------------- /crawl-ref/source/random-pick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/random-pick.h -------------------------------------------------------------------------------- /crawl-ref/source/random-var.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/random-var.cc -------------------------------------------------------------------------------- /crawl-ref/source/random-var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/random-var.h -------------------------------------------------------------------------------- /crawl-ref/source/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/random.cc -------------------------------------------------------------------------------- /crawl-ref/source/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/random.h -------------------------------------------------------------------------------- /crawl-ref/source/ranged-attack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ranged-attack.cc -------------------------------------------------------------------------------- /crawl-ref/source/ranged-attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ranged-attack.h -------------------------------------------------------------------------------- /crawl-ref/source/ray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ray.cc -------------------------------------------------------------------------------- /crawl-ref/source/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ray.h -------------------------------------------------------------------------------- /crawl-ref/source/reach-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/reach-type.h -------------------------------------------------------------------------------- /crawl-ref/source/recite-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/recite-type.h -------------------------------------------------------------------------------- /crawl-ref/source/religion-enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/religion-enum.h -------------------------------------------------------------------------------- /crawl-ref/source/religion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/religion.cc -------------------------------------------------------------------------------- /crawl-ref/source/religion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/religion.h -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/.gitignore -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/Makefile -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-dngn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-dngn.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-feat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-feat.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-gui.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-item.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-item.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-main.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-misc.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-mon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-mon.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/dc-wall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rltiles/dc-wall.txt -------------------------------------------------------------------------------- /crawl-ref/source/rltiles/tool/.gitignore: -------------------------------------------------------------------------------- 1 | /*.[od] 2 | -------------------------------------------------------------------------------- /crawl-ref/source/rng-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rng-type.h -------------------------------------------------------------------------------- /crawl-ref/source/rot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rot.cc -------------------------------------------------------------------------------- /crawl-ref/source/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/rot.h -------------------------------------------------------------------------------- /crawl-ref/source/sacrifice-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sacrifice-data.h -------------------------------------------------------------------------------- /crawl-ref/source/screen-mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/screen-mode.h -------------------------------------------------------------------------------- /crawl-ref/source/scripts/csim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/scripts/csim.lua -------------------------------------------------------------------------------- /crawl-ref/source/scroller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/scroller.cc -------------------------------------------------------------------------------- /crawl-ref/source/scroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/scroller.h -------------------------------------------------------------------------------- /crawl-ref/source/sense-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sense-type.h -------------------------------------------------------------------------------- /crawl-ref/source/shop-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/shop-type.h -------------------------------------------------------------------------------- /crawl-ref/source/shopping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/shopping.cc -------------------------------------------------------------------------------- /crawl-ref/source/shopping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/shopping.h -------------------------------------------------------------------------------- /crawl-ref/source/shout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/shout.cc -------------------------------------------------------------------------------- /crawl-ref/source/shout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/shout.h -------------------------------------------------------------------------------- /crawl-ref/source/show.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/show.cc -------------------------------------------------------------------------------- /crawl-ref/source/show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/show.h -------------------------------------------------------------------------------- /crawl-ref/source/showsymb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/showsymb.cc -------------------------------------------------------------------------------- /crawl-ref/source/showsymb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/showsymb.h -------------------------------------------------------------------------------- /crawl-ref/source/size-part-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/size-part-type.h -------------------------------------------------------------------------------- /crawl-ref/source/size-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/size-type.h -------------------------------------------------------------------------------- /crawl-ref/source/skill-menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/skill-menu.cc -------------------------------------------------------------------------------- /crawl-ref/source/skill-menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/skill-menu.h -------------------------------------------------------------------------------- /crawl-ref/source/skill-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/skill-type.h -------------------------------------------------------------------------------- /crawl-ref/source/skills.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/skills.cc -------------------------------------------------------------------------------- /crawl-ref/source/skills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/skills.h -------------------------------------------------------------------------------- /crawl-ref/source/sound.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sound.cc -------------------------------------------------------------------------------- /crawl-ref/source/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sound.h -------------------------------------------------------------------------------- /crawl-ref/source/species-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/species-data.h -------------------------------------------------------------------------------- /crawl-ref/source/species-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/species-def.h -------------------------------------------------------------------------------- /crawl-ref/source/species-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/species-type.h -------------------------------------------------------------------------------- /crawl-ref/source/species.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/species.cc -------------------------------------------------------------------------------- /crawl-ref/source/species.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/species.h -------------------------------------------------------------------------------- /crawl-ref/source/spell-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spell-type.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-book.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-book.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-book.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-cast.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-cast.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-clouds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-clouds.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-clouds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-clouds.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-damage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-damage.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-damage.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-data.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-goditem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-goditem.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-goditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-goditem.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-miscast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-miscast.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-miscast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-miscast.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-monench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-monench.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-monench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-monench.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-other.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-other.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-other.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-pick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-pick.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-pick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-pick.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-selfench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-selfench.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-selfench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-selfench.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-summoning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-summoning.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-summoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-summoning.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-tornado.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-tornado.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-transloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-transloc.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-transloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-transloc.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-util.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-util.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-wpnench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-wpnench.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-wpnench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-wpnench.h -------------------------------------------------------------------------------- /crawl-ref/source/spl-zap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-zap.cc -------------------------------------------------------------------------------- /crawl-ref/source/spl-zap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/spl-zap.h -------------------------------------------------------------------------------- /crawl-ref/source/sprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sprint.cc -------------------------------------------------------------------------------- /crawl-ref/source/sprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sprint.h -------------------------------------------------------------------------------- /crawl-ref/source/sqldbm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sqldbm.cc -------------------------------------------------------------------------------- /crawl-ref/source/sqldbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/sqldbm.h -------------------------------------------------------------------------------- /crawl-ref/source/stairs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stairs.cc -------------------------------------------------------------------------------- /crawl-ref/source/stairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stairs.h -------------------------------------------------------------------------------- /crawl-ref/source/startup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/startup.cc -------------------------------------------------------------------------------- /crawl-ref/source/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/startup.h -------------------------------------------------------------------------------- /crawl-ref/source/stash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stash.cc -------------------------------------------------------------------------------- /crawl-ref/source/stash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stash.h -------------------------------------------------------------------------------- /crawl-ref/source/stat-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stat-type.h -------------------------------------------------------------------------------- /crawl-ref/source/state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/state.cc -------------------------------------------------------------------------------- /crawl-ref/source/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/state.h -------------------------------------------------------------------------------- /crawl-ref/source/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/status.cc -------------------------------------------------------------------------------- /crawl-ref/source/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/status.h -------------------------------------------------------------------------------- /crawl-ref/source/stepdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stepdown.cc -------------------------------------------------------------------------------- /crawl-ref/source/stepdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stepdown.h -------------------------------------------------------------------------------- /crawl-ref/source/store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/store.cc -------------------------------------------------------------------------------- /crawl-ref/source/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/store.h -------------------------------------------------------------------------------- /crawl-ref/source/stringutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stringutil.cc -------------------------------------------------------------------------------- /crawl-ref/source/stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/stringutil.h -------------------------------------------------------------------------------- /crawl-ref/source/syscalls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/syscalls.cc -------------------------------------------------------------------------------- /crawl-ref/source/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/syscalls.h -------------------------------------------------------------------------------- /crawl-ref/source/tag-pref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tag-pref.h -------------------------------------------------------------------------------- /crawl-ref/source/tag-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tag-version.h -------------------------------------------------------------------------------- /crawl-ref/source/tags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tags.cc -------------------------------------------------------------------------------- /crawl-ref/source/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tags.h -------------------------------------------------------------------------------- /crawl-ref/source/targ-mode-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/targ-mode-type.h -------------------------------------------------------------------------------- /crawl-ref/source/target.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/target.cc -------------------------------------------------------------------------------- /crawl-ref/source/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/target.h -------------------------------------------------------------------------------- /crawl-ref/source/targeting-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/targeting-type.h -------------------------------------------------------------------------------- /crawl-ref/source/teleport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/teleport.cc -------------------------------------------------------------------------------- /crawl-ref/source/teleport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/teleport.h -------------------------------------------------------------------------------- /crawl-ref/source/terrain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/terrain.cc -------------------------------------------------------------------------------- /crawl-ref/source/terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/terrain.h -------------------------------------------------------------------------------- /crawl-ref/source/test/big/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/big/README -------------------------------------------------------------------------------- /crawl-ref/source/test/bounce.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/bounce.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/bounce2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/bounce2.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/corpse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/corpse.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/fsim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/fsim.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/los_csc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/los_csc.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/los_maps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/los_maps.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/los_symm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/los_symm.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/monplace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/monplace.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/mutation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/mutation.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/rng_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/rng_test.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/rune-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/rune-gen.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/stress/abyss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/stress/abyss -------------------------------------------------------------------------------- /crawl-ref/source/test/stress/qw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/stress/qw.rc -------------------------------------------------------------------------------- /crawl-ref/source/test/stress/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/stress/run -------------------------------------------------------------------------------- /crawl-ref/source/test/unique.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/unique.lua -------------------------------------------------------------------------------- /crawl-ref/source/test/youdie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/test/youdie.lua -------------------------------------------------------------------------------- /crawl-ref/source/text-tag-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/text-tag-type.h -------------------------------------------------------------------------------- /crawl-ref/source/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/threads.h -------------------------------------------------------------------------------- /crawl-ref/source/throw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/throw.cc -------------------------------------------------------------------------------- /crawl-ref/source/throw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/throw.h -------------------------------------------------------------------------------- /crawl-ref/source/tile-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tile-flags.h -------------------------------------------------------------------------------- /crawl-ref/source/tilebuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilebuf.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilebuf.h -------------------------------------------------------------------------------- /crawl-ref/source/tilecell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilecell.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilecell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilecell.h -------------------------------------------------------------------------------- /crawl-ref/source/tiledgnbuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiledgnbuf.cc -------------------------------------------------------------------------------- /crawl-ref/source/tiledgnbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiledgnbuf.h -------------------------------------------------------------------------------- /crawl-ref/source/tiledoll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiledoll.cc -------------------------------------------------------------------------------- /crawl-ref/source/tiledoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiledoll.h -------------------------------------------------------------------------------- /crawl-ref/source/tilefont.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilefont.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilefont.h -------------------------------------------------------------------------------- /crawl-ref/source/tilemcache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilemcache.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilemcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilemcache.h -------------------------------------------------------------------------------- /crawl-ref/source/tilepick-p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilepick-p.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilepick-p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilepick-p.h -------------------------------------------------------------------------------- /crawl-ref/source/tilepick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilepick.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilepick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilepick.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-abl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-abl.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-abl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-abl.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-cmd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-cmd.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-cmd.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-crt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-crt.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-crt.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-dgn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-dgn.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-dgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-dgn.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-doll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-doll.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-doll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-doll.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-grid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-grid.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-grid.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-inv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-inv.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-inv.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-map.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-map.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-mem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-mem.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-mem.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-mon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-mon.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-mon.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-msg.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-msg.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-skl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-skl.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-skl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-skl.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-spl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-spl.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-spl.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-stat.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-stat.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-tab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-tab.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-tab.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-text.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-text.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg-text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg-text.h -------------------------------------------------------------------------------- /crawl-ref/source/tilereg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilereg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilereg.h -------------------------------------------------------------------------------- /crawl-ref/source/tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiles.h -------------------------------------------------------------------------------- /crawl-ref/source/tilesdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilesdl.cc -------------------------------------------------------------------------------- /crawl-ref/source/tilesdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tilesdl.h -------------------------------------------------------------------------------- /crawl-ref/source/tiletex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiletex.cc -------------------------------------------------------------------------------- /crawl-ref/source/tiletex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tiletex.h -------------------------------------------------------------------------------- /crawl-ref/source/tileview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tileview.cc -------------------------------------------------------------------------------- /crawl-ref/source/tileview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tileview.h -------------------------------------------------------------------------------- /crawl-ref/source/tileweb-text.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tileweb-text.cc -------------------------------------------------------------------------------- /crawl-ref/source/tileweb-text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tileweb-text.h -------------------------------------------------------------------------------- /crawl-ref/source/tileweb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tileweb.cc -------------------------------------------------------------------------------- /crawl-ref/source/tileweb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tileweb.h -------------------------------------------------------------------------------- /crawl-ref/source/timed-effects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/timed-effects.cc -------------------------------------------------------------------------------- /crawl-ref/source/timed-effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/timed-effects.h -------------------------------------------------------------------------------- /crawl-ref/source/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/transform.cc -------------------------------------------------------------------------------- /crawl-ref/source/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/transform.h -------------------------------------------------------------------------------- /crawl-ref/source/transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/transformation.h -------------------------------------------------------------------------------- /crawl-ref/source/trap-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/trap-def.h -------------------------------------------------------------------------------- /crawl-ref/source/trap-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/trap-type.h -------------------------------------------------------------------------------- /crawl-ref/source/traps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/traps.cc -------------------------------------------------------------------------------- /crawl-ref/source/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/traps.h -------------------------------------------------------------------------------- /crawl-ref/source/travel-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/travel-defs.h -------------------------------------------------------------------------------- /crawl-ref/source/travel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/travel.cc -------------------------------------------------------------------------------- /crawl-ref/source/travel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/travel.h -------------------------------------------------------------------------------- /crawl-ref/source/tutorial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tutorial.cc -------------------------------------------------------------------------------- /crawl-ref/source/tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/tutorial.h -------------------------------------------------------------------------------- /crawl-ref/source/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ui.cc -------------------------------------------------------------------------------- /crawl-ref/source/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/ui.h -------------------------------------------------------------------------------- /crawl-ref/source/uncancel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/uncancel.cc -------------------------------------------------------------------------------- /crawl-ref/source/uncancel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/uncancel.h -------------------------------------------------------------------------------- /crawl-ref/source/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/unicode.cc -------------------------------------------------------------------------------- /crawl-ref/source/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/unicode.h -------------------------------------------------------------------------------- /crawl-ref/source/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/unwind.h -------------------------------------------------------------------------------- /crawl-ref/source/util/FAQ2html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/FAQ2html.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/Makefile -------------------------------------------------------------------------------- /crawl-ref/source/util/art-data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/art-data.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/checkcommit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/checkcommit -------------------------------------------------------------------------------- /crawl-ref/source/util/checkwhite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/checkwhite -------------------------------------------------------------------------------- /crawl-ref/source/util/cmd-name.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/cmd-name.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/config.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/config.ld -------------------------------------------------------------------------------- /crawl-ref/source/util/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/configure -------------------------------------------------------------------------------- /crawl-ref/source/util/cpp_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/cpp_version -------------------------------------------------------------------------------- /crawl-ref/source/util/crawl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/crawl.ico -------------------------------------------------------------------------------- /crawl-ref/source/util/crawl.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/crawl.nsi -------------------------------------------------------------------------------- /crawl-ref/source/util/crawl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/crawl.rc -------------------------------------------------------------------------------- /crawl-ref/source/util/db_lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/db_lint -------------------------------------------------------------------------------- /crawl-ref/source/util/db_splice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/db_splice -------------------------------------------------------------------------------- /crawl-ref/source/util/db_split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/db_split -------------------------------------------------------------------------------- /crawl-ref/source/util/dcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/dcss.svg -------------------------------------------------------------------------------- /crawl-ref/source/util/edit_vault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/edit_vault -------------------------------------------------------------------------------- /crawl-ref/source/util/fake_pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/fake_pty.c -------------------------------------------------------------------------------- /crawl-ref/source/util/find_font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/find_font -------------------------------------------------------------------------------- /crawl-ref/source/util/gather_cards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gather_cards -------------------------------------------------------------------------------- /crawl-ref/source/util/gather_items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gather_items -------------------------------------------------------------------------------- /crawl-ref/source/util/gather_mons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gather_mons -------------------------------------------------------------------------------- /crawl-ref/source/util/gen-all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gen-all.cmd -------------------------------------------------------------------------------- /crawl-ref/source/util/gen-apt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gen-apt.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/gen-cflg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gen-cflg.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/gen-mi-enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gen-mi-enum -------------------------------------------------------------------------------- /crawl-ref/source/util/gen-mst.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gen-mst.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/gen_ver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/gen_ver.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/good-depfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/good-depfile -------------------------------------------------------------------------------- /crawl-ref/source/util/includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/includes.sh -------------------------------------------------------------------------------- /crawl-ref/source/util/levcomp.lpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/levcomp.lpp -------------------------------------------------------------------------------- /crawl-ref/source/util/levcomp.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/levcomp.ypp -------------------------------------------------------------------------------- /crawl-ref/source/util/logotype.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/logotype.psd -------------------------------------------------------------------------------- /crawl-ref/source/util/makedb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/makedb.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/testdb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/testdb.pl -------------------------------------------------------------------------------- /crawl-ref/source/util/tiledef_lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/tiledef_lint -------------------------------------------------------------------------------- /crawl-ref/source/util/tiles_unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/tiles_unused -------------------------------------------------------------------------------- /crawl-ref/source/util/txc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/txc -------------------------------------------------------------------------------- /crawl-ref/source/util/unbrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/unbrace -------------------------------------------------------------------------------- /crawl-ref/source/util/undoku.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/undoku.sed -------------------------------------------------------------------------------- /crawl-ref/source/util/unrest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/util/unrest.pl -------------------------------------------------------------------------------- /crawl-ref/source/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/version.cc -------------------------------------------------------------------------------- /crawl-ref/source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/version.h -------------------------------------------------------------------------------- /crawl-ref/source/view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/view.cc -------------------------------------------------------------------------------- /crawl-ref/source/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/view.h -------------------------------------------------------------------------------- /crawl-ref/source/viewchar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/viewchar.cc -------------------------------------------------------------------------------- /crawl-ref/source/viewchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/viewchar.h -------------------------------------------------------------------------------- /crawl-ref/source/viewgeom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/viewgeom.cc -------------------------------------------------------------------------------- /crawl-ref/source/viewgeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/viewgeom.h -------------------------------------------------------------------------------- /crawl-ref/source/viewmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/viewmap.cc -------------------------------------------------------------------------------- /crawl-ref/source/viewmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/viewmap.h -------------------------------------------------------------------------------- /crawl-ref/source/wcwidth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wcwidth.cc -------------------------------------------------------------------------------- /crawl-ref/source/webserver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/webserver/README -------------------------------------------------------------------------------- /crawl-ref/source/webserver/templates/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawl-ref/source/webserver/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/webserver/util.py -------------------------------------------------------------------------------- /crawl-ref/source/windowmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/windowmanager.h -------------------------------------------------------------------------------- /crawl-ref/source/wiz-dgn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-dgn.cc -------------------------------------------------------------------------------- /crawl-ref/source/wiz-dgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-dgn.h -------------------------------------------------------------------------------- /crawl-ref/source/wiz-dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-dump.cc -------------------------------------------------------------------------------- /crawl-ref/source/wiz-dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-dump.h -------------------------------------------------------------------------------- /crawl-ref/source/wiz-fsim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-fsim.cc -------------------------------------------------------------------------------- /crawl-ref/source/wiz-fsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-fsim.h -------------------------------------------------------------------------------- /crawl-ref/source/wiz-item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-item.cc -------------------------------------------------------------------------------- /crawl-ref/source/wiz-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-item.h -------------------------------------------------------------------------------- /crawl-ref/source/wiz-mon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-mon.cc -------------------------------------------------------------------------------- /crawl-ref/source/wiz-mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-mon.h -------------------------------------------------------------------------------- /crawl-ref/source/wiz-you.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-you.cc -------------------------------------------------------------------------------- /crawl-ref/source/wiz-you.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wiz-you.h -------------------------------------------------------------------------------- /crawl-ref/source/wizard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wizard.cc -------------------------------------------------------------------------------- /crawl-ref/source/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/wizard.h -------------------------------------------------------------------------------- /crawl-ref/source/worley.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/worley.cc -------------------------------------------------------------------------------- /crawl-ref/source/worley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/worley.h -------------------------------------------------------------------------------- /crawl-ref/source/xom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/xom.cc -------------------------------------------------------------------------------- /crawl-ref/source/xom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/xom.h -------------------------------------------------------------------------------- /crawl-ref/source/zap-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/zap-data.h -------------------------------------------------------------------------------- /crawl-ref/source/zap-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-crawl/bcrawl/HEAD/crawl-ref/source/zap-type.h --------------------------------------------------------------------------------