├── .astylerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md └── workflows │ ├── Build-CI-make-dbg.yml │ ├── Build-CI-make-noanvil-dbg.yml │ ├── Build-CI-make-noanvil.yml │ ├── Build-CI-make.yml │ ├── make-anviltest.yml │ └── make-doc.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── Makefile.am ├── README.md ├── bin ├── stego.lock ├── v0.2.0 │ ├── helapordo.c │ ├── myutils.h │ └── typedefs.h ├── v0.3.1 │ ├── helapordo.c │ ├── myutils.h │ └── typedefs.h ├── v0.4.7 │ ├── helapordo.c │ ├── myutils.h │ └── typedefs.h ├── v0.5.3 │ ├── helapordo.c │ ├── myutils.h │ └── typedefs.h ├── v1.0.0 │ ├── .gitignore │ └── static ├── v1.0.1 │ ├── .gitignore │ └── static ├── v1.0.10 │ ├── .gitignore │ └── static ├── v1.0.11 │ ├── .gitignore │ └── static ├── v1.0.2 │ ├── .gitignore │ └── static ├── v1.0.3 │ ├── .gitignore │ └── static ├── v1.0.4 │ ├── .gitignore │ └── static ├── v1.0.5 │ ├── .gitignore │ └── static ├── v1.0.6 │ ├── .gitignore │ └── static ├── v1.0.7 │ ├── .gitignore │ └── static ├── v1.0.8 │ ├── .gitignore │ └── static ├── v1.0.9 │ ├── .gitignore │ └── static ├── v1.1.0 │ ├── .gitignore │ └── static ├── v1.1.1 │ ├── .gitignore │ └── static ├── v1.1.2 │ ├── .gitignore │ └── static ├── v1.1.3 │ ├── .gitignore │ └── static ├── v1.1.4 │ ├── .gitignore │ └── static ├── v1.1.5 │ ├── .gitignore │ └── static ├── v1.1.6 │ ├── .gitignore │ └── static ├── v1.1.7 │ ├── .gitignore │ └── static ├── v1.1.8 │ ├── .gitignore │ └── static ├── v1.1.9 │ ├── .gitignore │ └── static ├── v1.2.0 │ ├── .gitignore │ └── static ├── v1.2.1 │ ├── .gitignore │ └── static ├── v1.2.10 │ ├── .gitignore │ └── static ├── v1.2.2 │ ├── .gitignore │ └── static ├── v1.2.3 │ ├── .gitignore │ └── static ├── v1.2.4 │ ├── .gitignore │ └── static ├── v1.2.5 │ ├── .gitignore │ └── static ├── v1.2.6 │ ├── .gitignore │ └── static ├── v1.2.7 │ ├── .gitignore │ └── static ├── v1.2.8 │ ├── .gitignore │ └── static ├── v1.2.9 │ ├── .gitignore │ └── static ├── v1.3.0 │ ├── .gitignore │ └── static ├── v1.3.1 │ ├── .gitignore │ └── static ├── v1.3.2 │ ├── .gitignore │ └── static ├── v1.3.4 │ ├── .gitignore │ └── static ├── v1.3.5 │ ├── .gitignore │ └── static ├── v1.3.6 │ ├── .gitignore │ └── static ├── v1.4.0 │ ├── .gitignore │ └── static ├── v1.4.1 │ ├── .gitignore │ └── static ├── v1.4.2 │ ├── .gitignore │ └── static ├── v1.4.3 │ ├── .gitignore │ └── static └── v1.4.4 │ ├── .gitignore │ └── static ├── configure.ac ├── docs ├── README.md └── helapordo.doxyfile ├── format ├── installer ├── kazoj ├── .gitignore ├── bone │ ├── check_format.k │ ├── check_format.k.stderr │ ├── check_format.k.stdout │ ├── const.c │ ├── const.k.stderr │ ├── const.k.stdout │ ├── const_rl.c │ ├── const_rl.k.stderr │ ├── const_rl.k.stdout │ ├── test_const.c │ ├── test_const.k.stderr │ └── test_const.k.stdout ├── kazoj.lock └── kulpo │ ├── fail_const.c │ ├── fail_const.k.stderr │ └── fail_const.k.stdout ├── scripts ├── bootstrap_anvil.sh └── save2l │ ├── save2l.c │ └── save2l.h ├── src ├── animations │ ├── alt_chest_opening.c │ ├── alt_chest_opening.h │ ├── archer_drop.c │ ├── archer_drop.h │ ├── assassin_poof.c │ ├── assassin_poof.h │ ├── bluetroll_wonder.c │ ├── bluetroll_wonder.h │ ├── boar_scream.c │ ├── boar_scream.h │ ├── crawlingdude_crawl.c │ ├── crawlingdude_crawl.h │ ├── enter_door.c │ ├── enter_door.h │ ├── ghost_spell.c │ ├── ghost_spell.h │ ├── goblin_shoot.c │ ├── goblin_shoot.h │ ├── headlessninja_throw.c │ ├── headlessninja_throw.h │ ├── imp_fireball.c │ ├── imp_fireball.h │ ├── knight_tapis.c │ ├── knight_tapis.h │ ├── mage_spark.c │ ├── mage_spark.h │ ├── mummy_shuffle.c │ ├── mummy_shuffle.h │ ├── srwarthog_square.c │ ├── srwarthog_square.h │ ├── troll_club.c │ ├── troll_club.h │ ├── werewolf_transform.c │ ├── werewolf_transform.h │ ├── zombie_walk.c │ └── zombie_walk.h ├── bsp │ ├── bsp.c │ └── bsp.h ├── build-nc-w64 │ ├── floor_tester.c │ ├── floor_tester.h │ ├── helapordo_win.c │ └── helapordo_win.h ├── build-nc │ ├── game_curses.c │ ├── game_curses.h │ ├── helapordo.c │ └── helapordo.h ├── build-rl │ ├── game_rl.c │ ├── game_rl.h │ ├── helapordo_raylib.c │ └── helapordo_raylib.h ├── core │ ├── equips.c │ ├── equips.h │ ├── game_animations.c │ ├── game_animations.h │ ├── game_core.c │ ├── game_core.h │ ├── game_lore.c │ ├── game_lore.h │ ├── game_lore_alt.c │ ├── game_lore_alt.h │ ├── sprites.c │ └── sprites.h ├── main.c ├── release_data │ ├── release_data.c │ └── release_data.h ├── ser │ ├── ser_core.c │ └── ser_core.h └── utils │ ├── artifacts.c │ ├── artifacts.h │ ├── floors.c │ ├── floors.h │ ├── game_debug.c │ ├── game_debug.h │ ├── game_fight.c │ ├── game_fight.h │ ├── game_init.c │ ├── game_init.h │ ├── game_utils.c │ ├── game_utils.h │ ├── rooms.c │ ├── rooms.h │ ├── saves.c │ ├── saves.h │ ├── specials.c │ ├── specials.h │ ├── turn_op.c │ └── turn_op.h ├── static ├── animations │ └── chest_opening.txt └── palette.gpl └── stego.lock /.astylerc: -------------------------------------------------------------------------------- 1 | --style=linux 2 | -s4 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Build-CI-make-dbg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/workflows/Build-CI-make-dbg.yml -------------------------------------------------------------------------------- /.github/workflows/Build-CI-make-noanvil-dbg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/workflows/Build-CI-make-noanvil-dbg.yml -------------------------------------------------------------------------------- /.github/workflows/Build-CI-make-noanvil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/workflows/Build-CI-make-noanvil.yml -------------------------------------------------------------------------------- /.github/workflows/Build-CI-make.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/workflows/Build-CI-make.yml -------------------------------------------------------------------------------- /.github/workflows/make-anviltest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/workflows/make-anviltest.yml -------------------------------------------------------------------------------- /.github/workflows/make-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.github/workflows/make-doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/README.md -------------------------------------------------------------------------------- /bin/stego.lock: -------------------------------------------------------------------------------- 1 | ../stego.lock -------------------------------------------------------------------------------- /bin/v0.2.0/helapordo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.2.0/helapordo.c -------------------------------------------------------------------------------- /bin/v0.2.0/myutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.2.0/myutils.h -------------------------------------------------------------------------------- /bin/v0.2.0/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.2.0/typedefs.h -------------------------------------------------------------------------------- /bin/v0.3.1/helapordo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.3.1/helapordo.c -------------------------------------------------------------------------------- /bin/v0.3.1/myutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.3.1/myutils.h -------------------------------------------------------------------------------- /bin/v0.3.1/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.3.1/typedefs.h -------------------------------------------------------------------------------- /bin/v0.4.7/helapordo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.4.7/helapordo.c -------------------------------------------------------------------------------- /bin/v0.4.7/myutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.4.7/myutils.h -------------------------------------------------------------------------------- /bin/v0.4.7/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.4.7/typedefs.h -------------------------------------------------------------------------------- /bin/v0.5.3/helapordo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.5.3/helapordo.c -------------------------------------------------------------------------------- /bin/v0.5.3/myutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.5.3/myutils.h -------------------------------------------------------------------------------- /bin/v0.5.3/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v0.5.3/typedefs.h -------------------------------------------------------------------------------- /bin/v1.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.0/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.0/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.1/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.1/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.10/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.10/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.11/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.11/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.2/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.2/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.3/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.3/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.4/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.4/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.5/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.5/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.6/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.6/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.7/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.7/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.8/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.8/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.0.9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.0.9/.gitignore -------------------------------------------------------------------------------- /bin/v1.0.9/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.0/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.0/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.1/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.1/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.2/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.2/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.3/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.3/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.4/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.4/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.5/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.5/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.6/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.6/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.7/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.7/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.8/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.8/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.1.9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.1.9/.gitignore -------------------------------------------------------------------------------- /bin/v1.1.9/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.0/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.0/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.1/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.1/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.10/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.10/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.2/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.2/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.3/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.3/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.4/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.4/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.5/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.5/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.6/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.6/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.7/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.7/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.8/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.8/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.2.9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.2.9/.gitignore -------------------------------------------------------------------------------- /bin/v1.2.9/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.3.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.3.0/.gitignore -------------------------------------------------------------------------------- /bin/v1.3.0/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.3.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.3.1/.gitignore -------------------------------------------------------------------------------- /bin/v1.3.1/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.3.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.3.2/.gitignore -------------------------------------------------------------------------------- /bin/v1.3.2/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.3.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.3.4/.gitignore -------------------------------------------------------------------------------- /bin/v1.3.4/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.3.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.3.5/.gitignore -------------------------------------------------------------------------------- /bin/v1.3.5/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.3.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.3.6/.gitignore -------------------------------------------------------------------------------- /bin/v1.3.6/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.4.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.4.0/.gitignore -------------------------------------------------------------------------------- /bin/v1.4.0/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.4.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.4.1/.gitignore -------------------------------------------------------------------------------- /bin/v1.4.1/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.4.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.4.2/.gitignore -------------------------------------------------------------------------------- /bin/v1.4.2/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.4.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.4.3/.gitignore -------------------------------------------------------------------------------- /bin/v1.4.3/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /bin/v1.4.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/bin/v1.4.4/.gitignore -------------------------------------------------------------------------------- /bin/v1.4.4/static: -------------------------------------------------------------------------------- 1 | ../../static/ -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/helapordo.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/docs/helapordo.doxyfile -------------------------------------------------------------------------------- /format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/format -------------------------------------------------------------------------------- /installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/installer -------------------------------------------------------------------------------- /kazoj/.gitignore: -------------------------------------------------------------------------------- 1 | #ignore test executables 2 | *.k 3 | -------------------------------------------------------------------------------- /kazoj/bone/check_format.k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/kazoj/bone/check_format.k -------------------------------------------------------------------------------- /kazoj/bone/check_format.k.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/check_format.k.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/kazoj/bone/const.c -------------------------------------------------------------------------------- /kazoj/bone/const.k.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/const.k.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/const_rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/kazoj/bone/const_rl.c -------------------------------------------------------------------------------- /kazoj/bone/const_rl.k.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/const_rl.k.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/test_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/kazoj/bone/test_const.c -------------------------------------------------------------------------------- /kazoj/bone/test_const.k.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/bone/test_const.k.stdout: -------------------------------------------------------------------------------- 1 | [SUCCESS] GAMEMODE_MAX was 1!$ 2 | -------------------------------------------------------------------------------- /kazoj/kazoj.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/kazoj/kazoj.lock -------------------------------------------------------------------------------- /kazoj/kulpo/fail_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/kazoj/kulpo/fail_const.c -------------------------------------------------------------------------------- /kazoj/kulpo/fail_const.k.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kazoj/kulpo/fail_const.k.stdout: -------------------------------------------------------------------------------- 1 | $ 2 | [SUCCESS] Assertion success: GAMEMODE_MAX is not 2 !$ 3 | -------------------------------------------------------------------------------- /scripts/bootstrap_anvil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/scripts/bootstrap_anvil.sh -------------------------------------------------------------------------------- /scripts/save2l/save2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/scripts/save2l/save2l.c -------------------------------------------------------------------------------- /scripts/save2l/save2l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/scripts/save2l/save2l.h -------------------------------------------------------------------------------- /src/animations/alt_chest_opening.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/alt_chest_opening.c -------------------------------------------------------------------------------- /src/animations/alt_chest_opening.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/alt_chest_opening.h -------------------------------------------------------------------------------- /src/animations/archer_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/archer_drop.c -------------------------------------------------------------------------------- /src/animations/archer_drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/archer_drop.h -------------------------------------------------------------------------------- /src/animations/assassin_poof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/assassin_poof.c -------------------------------------------------------------------------------- /src/animations/assassin_poof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/assassin_poof.h -------------------------------------------------------------------------------- /src/animations/bluetroll_wonder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/bluetroll_wonder.c -------------------------------------------------------------------------------- /src/animations/bluetroll_wonder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/bluetroll_wonder.h -------------------------------------------------------------------------------- /src/animations/boar_scream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/boar_scream.c -------------------------------------------------------------------------------- /src/animations/boar_scream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/boar_scream.h -------------------------------------------------------------------------------- /src/animations/crawlingdude_crawl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/crawlingdude_crawl.c -------------------------------------------------------------------------------- /src/animations/crawlingdude_crawl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/crawlingdude_crawl.h -------------------------------------------------------------------------------- /src/animations/enter_door.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/enter_door.c -------------------------------------------------------------------------------- /src/animations/enter_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/enter_door.h -------------------------------------------------------------------------------- /src/animations/ghost_spell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/ghost_spell.c -------------------------------------------------------------------------------- /src/animations/ghost_spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/ghost_spell.h -------------------------------------------------------------------------------- /src/animations/goblin_shoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/goblin_shoot.c -------------------------------------------------------------------------------- /src/animations/goblin_shoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/goblin_shoot.h -------------------------------------------------------------------------------- /src/animations/headlessninja_throw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/headlessninja_throw.c -------------------------------------------------------------------------------- /src/animations/headlessninja_throw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/headlessninja_throw.h -------------------------------------------------------------------------------- /src/animations/imp_fireball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/imp_fireball.c -------------------------------------------------------------------------------- /src/animations/imp_fireball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/imp_fireball.h -------------------------------------------------------------------------------- /src/animations/knight_tapis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/knight_tapis.c -------------------------------------------------------------------------------- /src/animations/knight_tapis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/knight_tapis.h -------------------------------------------------------------------------------- /src/animations/mage_spark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/mage_spark.c -------------------------------------------------------------------------------- /src/animations/mage_spark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/mage_spark.h -------------------------------------------------------------------------------- /src/animations/mummy_shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/mummy_shuffle.c -------------------------------------------------------------------------------- /src/animations/mummy_shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/mummy_shuffle.h -------------------------------------------------------------------------------- /src/animations/srwarthog_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/srwarthog_square.c -------------------------------------------------------------------------------- /src/animations/srwarthog_square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/srwarthog_square.h -------------------------------------------------------------------------------- /src/animations/troll_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/troll_club.c -------------------------------------------------------------------------------- /src/animations/troll_club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/troll_club.h -------------------------------------------------------------------------------- /src/animations/werewolf_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/werewolf_transform.c -------------------------------------------------------------------------------- /src/animations/werewolf_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/werewolf_transform.h -------------------------------------------------------------------------------- /src/animations/zombie_walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/zombie_walk.c -------------------------------------------------------------------------------- /src/animations/zombie_walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/animations/zombie_walk.h -------------------------------------------------------------------------------- /src/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/bsp/bsp.c -------------------------------------------------------------------------------- /src/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/bsp/bsp.h -------------------------------------------------------------------------------- /src/build-nc-w64/floor_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc-w64/floor_tester.c -------------------------------------------------------------------------------- /src/build-nc-w64/floor_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc-w64/floor_tester.h -------------------------------------------------------------------------------- /src/build-nc-w64/helapordo_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc-w64/helapordo_win.c -------------------------------------------------------------------------------- /src/build-nc-w64/helapordo_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc-w64/helapordo_win.h -------------------------------------------------------------------------------- /src/build-nc/game_curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc/game_curses.c -------------------------------------------------------------------------------- /src/build-nc/game_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc/game_curses.h -------------------------------------------------------------------------------- /src/build-nc/helapordo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc/helapordo.c -------------------------------------------------------------------------------- /src/build-nc/helapordo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-nc/helapordo.h -------------------------------------------------------------------------------- /src/build-rl/game_rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-rl/game_rl.c -------------------------------------------------------------------------------- /src/build-rl/game_rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-rl/game_rl.h -------------------------------------------------------------------------------- /src/build-rl/helapordo_raylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-rl/helapordo_raylib.c -------------------------------------------------------------------------------- /src/build-rl/helapordo_raylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/build-rl/helapordo_raylib.h -------------------------------------------------------------------------------- /src/core/equips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/equips.c -------------------------------------------------------------------------------- /src/core/equips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/equips.h -------------------------------------------------------------------------------- /src/core/game_animations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_animations.c -------------------------------------------------------------------------------- /src/core/game_animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_animations.h -------------------------------------------------------------------------------- /src/core/game_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_core.c -------------------------------------------------------------------------------- /src/core/game_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_core.h -------------------------------------------------------------------------------- /src/core/game_lore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_lore.c -------------------------------------------------------------------------------- /src/core/game_lore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_lore.h -------------------------------------------------------------------------------- /src/core/game_lore_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_lore_alt.c -------------------------------------------------------------------------------- /src/core/game_lore_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/game_lore_alt.h -------------------------------------------------------------------------------- /src/core/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/sprites.c -------------------------------------------------------------------------------- /src/core/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/core/sprites.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/main.c -------------------------------------------------------------------------------- /src/release_data/release_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/release_data/release_data.c -------------------------------------------------------------------------------- /src/release_data/release_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/release_data/release_data.h -------------------------------------------------------------------------------- /src/ser/ser_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/ser/ser_core.c -------------------------------------------------------------------------------- /src/ser/ser_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/ser/ser_core.h -------------------------------------------------------------------------------- /src/utils/artifacts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/artifacts.c -------------------------------------------------------------------------------- /src/utils/artifacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/artifacts.h -------------------------------------------------------------------------------- /src/utils/floors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/floors.c -------------------------------------------------------------------------------- /src/utils/floors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/floors.h -------------------------------------------------------------------------------- /src/utils/game_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_debug.c -------------------------------------------------------------------------------- /src/utils/game_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_debug.h -------------------------------------------------------------------------------- /src/utils/game_fight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_fight.c -------------------------------------------------------------------------------- /src/utils/game_fight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_fight.h -------------------------------------------------------------------------------- /src/utils/game_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_init.c -------------------------------------------------------------------------------- /src/utils/game_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_init.h -------------------------------------------------------------------------------- /src/utils/game_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_utils.c -------------------------------------------------------------------------------- /src/utils/game_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/game_utils.h -------------------------------------------------------------------------------- /src/utils/rooms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/rooms.c -------------------------------------------------------------------------------- /src/utils/rooms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/rooms.h -------------------------------------------------------------------------------- /src/utils/saves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/saves.c -------------------------------------------------------------------------------- /src/utils/saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/saves.h -------------------------------------------------------------------------------- /src/utils/specials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/specials.c -------------------------------------------------------------------------------- /src/utils/specials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/specials.h -------------------------------------------------------------------------------- /src/utils/turn_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/turn_op.c -------------------------------------------------------------------------------- /src/utils/turn_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/src/utils/turn_op.h -------------------------------------------------------------------------------- /static/animations/chest_opening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/static/animations/chest_opening.txt -------------------------------------------------------------------------------- /static/palette.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/static/palette.gpl -------------------------------------------------------------------------------- /stego.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgabaut/helapordo/HEAD/stego.lock --------------------------------------------------------------------------------