For the lisp game jam http://itch.io/jam/january-2016-lisp-game-jam. Also practice for my future forever project game (not yet named). This is a roguelike where you play a necromancer able to summon skeletons and any other powers I have time for.

crypts-and-corpses.asd 434B

12345678910111213141516
  1. ;;;; crypts-and-corpses.asd
  2. (asdf:defsystem #:crypts-and-corpses
  3. :description "A necromancer themed roguelike."
  4. :author "Lily Carpenter <lily-license@azrazalea.net>"
  5. :license "AGPLv3"
  6. :depends-on ("bearlibterminal"
  7. "split-sequence"
  8. "crawler"
  9. "alexandria"
  10. "cl-heap")
  11. :serial t
  12. :pathname "src"
  13. :components ((:file "package")
  14. (:file "internal")))