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:
Mark Wolfman
2018-10-21 02:09:15 -05:00
parent 0140290b51
commit 0e543deee9
20 changed files with 592 additions and 50 deletions
Binary file not shown.
+72
View File
@@ -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
View File
@@ -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.