Skip to content

Instantly share code, notes, and snippets.

@tmountain
Created January 26, 2010 20:59
Show Gist options
  • Save tmountain/287222 to your computer and use it in GitHub Desktop.
Save tmountain/287222 to your computer and use it in GitHub Desktop.
(ns weapons)
(def dagger
; 1d3 dagger
{:dmg [1 3],
:name "dagger"})
(def short-sword
; 1d6 short sword
{:dmg [1 6]
:name "short sword"})
(def long-sword
; 1d8 long sword
{:dmg [1 8],
:name "long sword"})
(def axe
; 1d6 axe
{:dmg [1 6],
:name "axe"})
(def scimitar
; 1d8 scimitar
{:dmg [1 8],
:name "scimitar"})
(def quarterstaff
; 1d6 staff
{:dmg [1 6],
:name "quarterstaff"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment