0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 02:02:43 +00:00

have part of the random encoutner generator working, should move over to flux before continuing

This commit is contained in:
Scott Tolksdorf
2015-11-23 13:29:50 -05:00
parent 4abee31892
commit cd3c111aa5
7 changed files with 212 additions and 35 deletions

View File

@@ -0,0 +1,47 @@
module.exports = {
goblin : {
hp : 40,
mov: 30,
cr : 0.25,
ac : 13,
attr : {
str : 8,
con : 8,
dex : 8,
int : 8,
wis : 8,
cha : 8
},
attacks : {
dagger : {
atk : "1d20-5",
dmg : "1d4+5",
type : "pierce",
notes : "Super cool"
},
bow : {
atk : "1d20+2",
dmg : "6d6",
rng : "30"
}
},
spells : {
fireball: {
dmg : "6d6",
uses : 4
},
"healing bolt" : {
heal : "2d8+4",
uses : 6
}
},
abilities : {
"pack tactics" : "Does a thing"
},
items : ['healing_potion', 'healing_potion', 'ring']
},
"Goat Slime" : {
}
}