Files
dungeon-sheets/dungeonsheets/character_template.txt
T

80 lines
2.2 KiB
Plaintext

"""This file describes the heroic adventurer {{ char.name }}.
Modify this file as you level up and then re-generate the character
sheet by running ``makesheets`` from the command line.
"""
dungeonsheets_version = "{{ char.dungeonsheets_version }}"
name = "{{ char.name }}"
classes_levels = {{ char.classes_levels }}
player_name = "{{ char.player_name }}"
background = "{{ char.background.name }}"
race = "{{ char.race.name }}"
alignment = "{{ char.alignment }}"
xp = {{ char.xp }}
hp_max = {{ char.hp_max }}
# Ability Scores
strength = {{ char.strength.value }}
dexterity = {{ char.dexterity.value }}
constitution = {{ char.constitution.value }}
intelligence = {{ char.intelligence.value }}
wisdom = {{ char.wisdom.value }}
charisma = {{ char.charisma.value }}
# Select what skills you're proficient with
skill_proficiencies = {{ char.skill_proficiencies }}
# Named features / feats that aren't part of your classes,
# race, or background.
# Example:
# features = ('Tavern Brawler',) # take the optional Feat from PHB
features = {{ char.custom_features }}
# If selecting among multiple feature options: ex Fighting Style
# Example (Fighting Style):
# feature_choices = ('Archery',)
feature_choices = {{ char.feature_choices }}
# Proficiencies and languages
languages = """{{ char.languages }}"""
# Inventory
# TODO: Get yourself some money
cp = 0
sp = 0
ep = 0
gp = 0
pp = 0
# TODO: Put your equipped weapons and armor here
weapons = {{ char.weapons }} # Example: ('shortsword', 'longsword')
armor = "{{ char.armor }}" # Eg "light leather armor"
shield = "{{ char.shield }}" # Eg "shield"
equipment = """{{ char.equipment }}"""
attacks_and_spellcasting = """{{ char.attacks_and_spellcasting }}"""
# List of known spells
# Example: spells = ('magic missile', 'mage armor')
spells = {{ char.spells }} # Todo: Learn some spells
# Which spells have been prepared (not including cantrips)
spells_prepared = {{ char.spells_prepared }}
# Backstory
# Describe your backstory here
personality_traits = """{{ char.personality_traits}}"""
ideals = """{{ char.ideals }}"""
bonds = """{{ char.bonds }}"""
flaws = """{{ char.flaws }}"""
features_and_traits = """{{ char.features_and_traits }}"""