Implemented and cleaned up character schemas
This commit is contained in:
18
rpg-docs/Model/Character/SubSchemas/DeathSaves.js
Normal file
18
rpg-docs/Model/Character/SubSchemas/DeathSaves.js
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user