Added Soft remove and a character asset parenting system
This commit is contained in:
22
rpg-docs/Model/Character/SubSchemas/DeathSaves.js
Normal file
22
rpg-docs/Model/Character/SubSchemas/DeathSaves.js
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user