Added UI for weakness/resistance

This commit is contained in:
Thaum
2015-03-11 07:52:30 +00:00
parent ec78db7b10
commit a387ce1c8b
6 changed files with 77 additions and 30 deletions

View File

@@ -11,17 +11,3 @@ Schemas.Attribute = new SimpleSchema({
allowedValues: ["longRest", "shortRest"]
}
});
//note that to make an invulnerability add a new max of zero value
Schemas.Vulnerability = new SimpleSchema({
//same as attribute
adjustment: {
type: Number,
defaultValue: 0
},
reset: {
type: String,
defaultValue: "longRest",
allowedValues: ["longRest", "shortRest"]
}
});