1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-18 13:21:28 +00:00
Files
homebrewery/shared/naturalCrit/defaultMonsterManual.js
Scott Tolksdorf f3e0d9fab3 Fixed the default
2015-11-23 13:35:37 -05:00

129 lines
1.9 KiB
JavaScript

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"
}
},
abilities : {
"pack tactics" : "Does a thing"
},
items : ['rat on a stick']
},
"Goat Slime" : {
hp : 80,
mov: 10,
cr : 0.5,
ac : 16,
attr : {
str : 8,
con : 8,
dex : 6,
int : 4,
wis : 8,
cha : 8
},
attacks : {
caress : {
atk : "1d20+1",
dmg : "3d4+1",
type : "sensual"
},
},
abilities : {
"Agnostic Gel" : "Immune to magical damage"
},
items : []
},
"badass psycho" : {
hp : 100,
mov: 50,
ac : 14,
cr : 5,
attr : {
str : 17,
con : 18,
dex : 16,
int : 7,
wis : 7,
cha : 7
},
attacks : {
"throwing axe" : {
atk : "1d20+5",
dmg : "1d12+5",
type : "piercing",
rng : "30",
notes : "returns to baddie after throw"
},
shoot : {
atk : "1d20+2",
dmg : "4d4",
rng : "120"
}
},
spells : {
"meat popsicle" : {
dmg : "4d6",
uses : 8
},
"sanity check" : {
dmg : "2d8+4",
uses : 6
}
},
abilities : {
"rampage" : "when damaged, can choose to take damage from opportunity attacks for allies"
},
items : ['buzz_axe', 'healing_potion', 'tuna_fish']
},
toxicologist : {
hp : 40,
mov: 30,
ac : 11,
cr : 0.5,
attr : {
str : 7,
con : 11,
dex : 10,
int : 18,
wis : 15,
cha : 7
},
spells : {
"publish paper" : {
dmg : "4d6",
uses : 4
},
"tox test" : {
heal : "2d8+4",
uses : 6
}
},
abilities : {
"conference" : "when around more than 30 other toxicologists, consume 1 drink every 15 minutes"
},
items : ['grad_student', 'imposter_syndrome', 'ring']
},
}