mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-18 12:13:27 +02:00
24 lines
480 B
Python
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"]
|