Added saving throws, messed with data structure a bunch, and updated forms to suit

This commit is contained in:
Stefan Zermatten
2019-09-25 14:38:20 +02:00
parent 4fcae9b3f9
commit 21030d186a
18 changed files with 262 additions and 155 deletions

View File

@@ -1,7 +1,6 @@
import ActionForm from '/imports/ui/properties/forms/ActionForm.vue';
import AttackForm from '/imports/ui/properties/forms/AttackForm.vue';
import AttributeForm from '/imports/ui/properties/forms/AttributeForm.vue';
import BuffForm from '/imports/ui/properties/forms/BuffForm.vue';
import ContainerForm from '/imports/ui/properties/forms/ContainerForm.vue';
import ClassLevelForm from '/imports/ui/properties/forms/ClassLevelForm.vue';
import DamageMultiplierForm from '/imports/ui/properties/forms/DamageMultiplierForm.vue';
@@ -13,6 +12,7 @@ import ItemForm from '/imports/ui/properties/forms/ItemForm.vue';
import NoteForm from '/imports/ui/properties/forms/NoteForm.vue';
import ProficiencyForm from '/imports/ui/properties/forms/ProficiencyForm.vue';
import RollForm from '/imports/ui/properties/forms/RollForm.vue';
import SavingThrowForm from '/imports/ui/properties/forms/SavingThrowForm.vue';
import SkillForm from '/imports/ui/properties/forms/SkillForm.vue';
import SpellListForm from '/imports/ui/properties/forms/SpellListForm.vue';
import SpellForm from '/imports/ui/properties/forms/SpellForm.vue';
@@ -21,7 +21,6 @@ export default {
action: ActionForm,
attack: AttackForm,
attribute: AttributeForm,
buff: BuffForm,
container: ContainerForm,
classLevel: ClassLevelForm,
damageMultiplier: DamageMultiplierForm,
@@ -33,6 +32,7 @@ export default {
note: NoteForm,
proficiency: ProficiencyForm,
roll: RollForm,
savingThrow: SavingThrowForm,
skill: SkillForm,
spellList: SpellListForm,
spell: SpellForm,