updated create-character to include weapons and armor

This commit is contained in:
Ben Cook
2019-01-02 17:55:22 -05:00
parent d723a047c6
commit a80fa81993
4 changed files with 114 additions and 21 deletions
+3 -3
View File
@@ -69,10 +69,10 @@ gp = 0
pp = 0
# TODO: Put your equipped weapons and armor here
weapons = () # Example: ('shortsword', 'longsword')
weapons = {{ char.weapons }} # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "leather armor"
shield = "" # Eg "shield"
armor = "{{ char.armor }}" # Eg "leather armor"
shield = "{{ char.shield }}" # Eg "shield"
equipment = """TODO: list the equipment and magic items your character carries"""