Skip to content

Instantly share code, notes, and snippets.

@tmountain
Created January 26, 2010 20:56
Show Gist options
  • Save tmountain/287218 to your computer and use it in GitHub Desktop.
Save tmountain/287218 to your computer and use it in GitHub Desktop.
(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