Implemented very basic value-auditing for skills/abilities

This commit is contained in:
Thaum
2014-11-18 12:01:02 +00:00
parent d0e5a1a378
commit 5c99530077
13 changed files with 251 additions and 68 deletions

View File

@@ -21,5 +21,11 @@ Schemas.Effect = new SimpleSchema({
calculation: {
type: String,
optional: true
},
//indicates what the effect originated from
type: {
type: String,
defaultValue: "default",
allowedValues: ["default", "class", "race", "feat", "equippedMagic", "equippedMundane", "external"]
}
});