diff --git a/app/imports/api/creature/DEFAULT_CHARACTER_DOCS.js b/app/imports/api/creature/DEFAULT_CHARACTER_DOCS.js index a34290d4..d1c61c69 100644 --- a/app/imports/api/creature/DEFAULT_CHARACTER_DOCS.js +++ b/app/imports/api/creature/DEFAULT_CHARACTER_DOCS.js @@ -39,7 +39,7 @@ export default () => ({ {"name": "Level 9 Spell Slots", "variableName": "level9SpellSlots", "type": "spellSlot"}, {"name": "Proficiency Bonus", "variableName": "proficiencyBonus", "type": "modifier"}, - {"name": "initiative", "variableName": "initiative", "type": "modifier"}, + {"name": "Initiative", "variableName": "initiative", "type": "modifier"}, {"name": "Carry Capacity Multiplier", "variableName": "carryMultiplier", "type": "utility", "baseValue": 1}, {"name": "Rage Damage", "variableName": "rageDamage", "type": "utility"}, diff --git a/app/imports/ui/components/AbilityListTile.Story.vue b/app/imports/ui/components/AbilityListTile.Story.vue index e3308698..782ce219 100644 --- a/app/imports/ui/components/AbilityListTile.Story.vue +++ b/app/imports/ui/components/AbilityListTile.Story.vue @@ -27,43 +27,43 @@ { name: "Ghost Touch", operation: "add", - value: -2, + result: -2, enabled: true, _id: Random.id(), },{ name: "Some Base", operation: "base", - value: 15, + result: 15, enabled: true, _id: Random.id(), },{ name: "Some Multiply", operation: "mul", - value: 1.5, + result: 1.5, enabled: true, _id: Random.id(), },{ name: "Some Min", operation: "min", - value: 8, + result: 8, enabled: true, _id: Random.id(), },{ name: "Some Advantage", operation: "advantage", - value: 1, + result: 1, enabled: true, _id: Random.id(), },{ name: "Some Disadvantage", operation: "disadvantage", - value: 1, + result: 1, enabled: true, _id: Random.id(), },{ name: "Some Passive", operation: "passiveAdd", - value: -2, + result: -2, calculation: "3-5", _id: Random.id(), },{ diff --git a/app/imports/ui/components/AttributeDialog.vue b/app/imports/ui/components/AttributeDialog.vue index b9f9d4c6..f13b2d58 100644 --- a/app/imports/ui/components/AttributeDialog.vue +++ b/app/imports/ui/components/AttributeDialog.vue @@ -20,6 +20,7 @@