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.
1234567891011 |
- ;;;; 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 ("cl-bearlibterminal")
- :serial t
- :components ((:file "package")
- (:file "crypts-and-corpses")))
|