Files
dungeon-sheets/examples/gm-campaign-notes.py

24 lines
480 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 as _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"]