Moved subschema folder

This commit is contained in:
Stefan Zermatten
2019-09-16 10:24:13 +02:00
parent 88a2a506b0
commit 63a20b2bef
8 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,26 @@
import SimpleSchema from 'simpl-schema';
const DeathSavesSchema = new SimpleSchema({
pass: {
type: SimpleSchema.Integer,
min: 0,
max: 3,
defaultValue: 0,
},
fail: {
type: SimpleSchema.Integer,
min: 0,
max: 3,
defaultValue: 0,
},
canDeathSave: {
type: Boolean,
defaultValue: true,
},
stable: {
type: Boolean,
defaultValue: false,
},
});
export default DeathSavesSchema;