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.
12345678910111213141516 |
- ;;;; crypts-and-corpses.asd
- (asdf:defsystem #:crypts-and-corpses
- :description "A necromancer themed roguelike."
- :author "Lily Carpenter <lily-license@azrazalea.net>"
- :license "AGPLv3"
- :depends-on ("bearlibterminal"
- "split-sequence"
- "crawler"
- "alexandria"
- "cl-heap")
- :serial t
- :pathname "src"
- :components ((:file "package")
- (:file "internal")))
|