Created
January 26, 2010 20:56
-
-
Save tmountain/287218 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns monsters | |
(:use weapons) | |
(:use abilities)) | |
(def grid-bug | |
{:level 0, | |
:exp 4, | |
:ac 9, | |
:mr 0, | |
:weapon (bite 1 1), | |
:speed 12, | |
:name "grid-bug"}) | |
(def jackal | |
{:level 1, | |
:exp 1, | |
:ac 7, | |
:mr 0, | |
:weapon (bite 1 2), | |
:speed 12, | |
:name "jackal"}) | |
(def newt | |
{:level 1, | |
:exp 1, | |
:ac 8, | |
:mr 0, | |
:weapon (bite 1 2), | |
:speed 6, | |
:name "newt"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment