Files
DiceCloud/rpg-docs/Model/Character/SubSchemas/DeathSaves.js
2014-11-13 09:30:54 +00:00

18 lines
234 B
JavaScript

Schemas.DeathSave = new SimpleSchema({
pass: {
type: Number,
min: 0,
max: 3,
defaultValue: 0
},
fail: {
type: Number,
min: 0,
max: 3,
defaultValue: 0
},
canDeathSave: {
type: Boolean,
defaultValue: true
}
});