Added attunement to items

This commit is contained in:
Thaum
2015-03-30 09:45:59 +00:00
parent 91fd56f828
commit 5ae7df8856
5 changed files with 26 additions and 6 deletions

View File

@@ -9,6 +9,7 @@ Schemas.Item = new SimpleSchema({
weight: {type: Number, min: 0, defaultValue: 0, decimal: true},
value: {type: Number, min: 0, defaultValue: 0, decimal: true},
enabled: {type: Boolean, defaultValue: false},
requiresAttunement: {type: Boolean, defaultValue: false},
color: {type: String, allowedValues: _.pluck(colorOptions, "key"), defaultValue: "q"}
});