Files
dungeon-sheets/dungeonsheets/character_template.txt
T

71 lines
1.7 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.
"""
name = '{{ char.name }}'
character_class = '{{ char.class_name }}'
player_name = '{{ char.player_name }}'
background = "{{ char.background.name }}"
race = "{{ char.race.name }}"
level = {{ char.level }}
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 }}
skill_proficiencies = {{ char.skill_proficiencies }}
# 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 = () # Example: ('shortsword', 'longsword')
armor = "" # Eg "light leather armor"
shield = "" # Eg "shield"
equipment = "TODO: Describe your equipment from your {{ char.class_name }} class and {{ char.background.name }} background."
attacks_and_spellcasting = "TODO: Describe specifics for how your {{ char.class_name }} attacks."
# List of known spells
# Example: spells = ('magic missile', 'mage armor')
spells = () # Todo: Learn some spells
# Which spells have been prepared (not including cantrips)
spells_prepared = ()
# Backstory
# TODO: Describe your backstory here
personality_traits = """I am a leaf on the wind,
watch how I...
"""
ideals = """
"""
bonds = """
"""
flaws = """
"""
features_and_traits = """
"""