Files
DiceCloud/rpg-docs/Model/Character/SubSchemas/DeathSaves.js
2015-04-22 12:44:25 +02:00

23 lines
294 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,
},
stable: {
type: Boolean,
defaultValue: false,
},
});