mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-24 06:38:28 +02:00
Added Druid wild shapes, tweaked armor, and fixed some bugs.
Druid's can now add ``wild_shapes = `` to their character file. "Light leather armor" is now just "Leather Armor".
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,72 @@
|
||||
"""This file describes the heroic adventurer Dain Torunn.
|
||||
|
||||
Modify this file as you level up and then re-generate the character
|
||||
sheet by running ``makesheets`` from the command line.
|
||||
|
||||
"""
|
||||
|
||||
dungeonsheets_version = "0.5.0"
|
||||
|
||||
name = 'Dain Torunn'
|
||||
character_class = 'Druid'
|
||||
player_name = 'Emily'
|
||||
background = "Sailor"
|
||||
race = "Hill Dwarf"
|
||||
level = 2
|
||||
alignment = "Neutral good"
|
||||
xp = 1176
|
||||
hp_max = 18
|
||||
|
||||
# Ability Scores
|
||||
strength = 10
|
||||
dexterity = 14
|
||||
constitution = 15
|
||||
intelligence = 11
|
||||
wisdom = 16
|
||||
charisma = 13
|
||||
skill_proficiencies = ('nature', 'insight', 'athletics', 'perception')
|
||||
|
||||
# Proficiencies and languages
|
||||
languages = "Common, Dwarvish"
|
||||
|
||||
# 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 Druid class and Sailor background."
|
||||
|
||||
attacks_and_spellcasting = "TODO: Describe specifics for how your Druid attacks."
|
||||
wild_shapes = ["wolf", "crocodile", "giant eagle"]
|
||||
|
||||
# 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 = """
|
||||
"""
|
||||
Binary file not shown.
+1
-1
@@ -36,7 +36,7 @@ ep = 50
|
||||
gp = 120
|
||||
pp = 0
|
||||
weapons = ('shortsword', 'shortbow')
|
||||
armor = 'light leather armor'
|
||||
armor = 'leather armor'
|
||||
shield = 'shield'
|
||||
equipment = (
|
||||
"""Shortsword, shortbow, 20 arrows, leather armor, thieves’ tools,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user