Files
dungeon-sheets/examples/gm-campaign-notes.py
T
2021-09-30 21:10:34 -05:00

24 lines
466 B
Python

"""This file describes game-manager notes.
It's used for creating notes for the GM to keep track of various
monsters, etc.
"""
from dungeonsheets import mechanics, monsters
dungeonsheets_version = "0.14.0"
sheet_type = "gm"
session_title = "Objects in Space"
# Simple character definition
haryk_omanie = mechanics.Character(
name="Haryk Omanie",
)
party = ["rogue1.py", "paladin2.py", haryk_omanie, monsters.Veteran]
random_tables = ["conjure animals"]