Skip to content

Ability Scores

The ability block is used to generate a 6 column grid of your ability scores and their saving throws. Fill in the code block with your abilities, proficiencies, and any bonuses that are applied to either the ability scores themselves or their saving throws.

Rendered Example

Example

yaml
```ability
abilities:
  strength: 9
  dexterity: 14
  constitution: 14
  intelligence: 19
  wisdom: 12
  charisma: 10

bonuses:
  - name: Right of Power
    target: strength
    value: 2
    modifies: saving_throw  # Optional: defaults to saving_throw

proficiencies:
  - intelligence
  - wisdom
```

Configuration

PropertyTypeDescription
abilitiesObjectAbility score values (strength, dexterity, constitution, intelligence, wisdom, charisma)
bonusesArrayList of bonuses to apply to ability scores or saving throws
proficienciesArrayList of abilities you are proficient in for saving throws

Bonus Object

PropertyTypeDescription
nameStringName of the bonus (for display purposes)
targetStringWhich ability the bonus applies to
valueNumberThe bonus value to add
modifiesStringOptional. Either "score" or "saving_throw". Defaults to "saving_throw"