Files
DiceCloud/rpg-docs/Model/Character/SubSchemas/Attribute.js
2015-03-11 07:52:30 +00:00

14 lines
266 B
JavaScript

Schemas.Attribute = new SimpleSchema({
//the temporary shift of the attribute
//should be zero after reset
adjustment: {
type: Number,
defaultValue: 0
},
reset: {
type: String,
defaultValue: "longRest",
allowedValues: ["longRest", "shortRest"]
}
});