diff --git a/app/imports/api/properties/Spells.js b/app/imports/api/properties/Spells.js index 831fac0c..8467b7e1 100644 --- a/app/imports/api/properties/Spells.js +++ b/app/imports/api/properties/Spells.js @@ -25,6 +25,10 @@ let SpellSchema = new SimpleSchema({}) type: Boolean, optional: true, }, + prepared: { + type: Boolean, + optional: true, + }, // This spell ignores spell slot rules castWithoutSpellSlots: { type: Boolean, diff --git a/app/imports/ui/properties/forms/SpellForm.vue b/app/imports/ui/properties/forms/SpellForm.vue index f975578e..ac5b9bce 100644 --- a/app/imports/ui/properties/forms/SpellForm.vue +++ b/app/imports/ui/properties/forms/SpellForm.vue @@ -1,5 +1,23 @@