Made unprepared spells hidable

This commit is contained in:
Thaum
2015-02-16 10:28:44 +00:00
parent 826575263e
commit 28aed14cda
5 changed files with 60 additions and 23 deletions

View File

@@ -6,7 +6,7 @@ Schemas.Spell = new SimpleSchema({
prepared: {type: String, defaultValue: "unprepared", allowedValues: ["prepared","unprepared","always"]},
name: {type: String},
description: {type: String, optional: true},
castingTime: {type: String, defaultValue: "action"},
castingTime: {type: String, optional: true, defaultValue: "action"},
range: {type: String, optional: true},
duration: {type: String, optional: true},
"components.verbal": {type: Boolean, defaultValue: false},