mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-18 20:23:27 +02:00
21 lines
863 B
Python
21 lines
863 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on Tue Feb 22 01:04:23 2022
|
|
|
|
@author: mauricio
|
|
"""
|
|
|
|
explorers_pack = """backpack, bedroll, mess kit, tinderbox, {torches} torches,
|
|
{rations} days of rations, waterskin, {rope} feet of hempen rope"""
|
|
dungeoneers_pack = """backpack, crowbar, hammer, {pitons} pitons,
|
|
{torches} torches, tinderbox, {rations} days of rations, waterskin,
|
|
{rope} feet of hempen rope"""
|
|
priests_pack = """backpack, blanket, {candles} candles, tinderbox, alms box,
|
|
{incense} blocks of incense, censer, vestments, {rations} days of rations,
|
|
waterskin"""
|
|
scholars_pack = """backpack, book of lore, bottle of ink, ink pen,
|
|
{parchment} sheets of parchment, little bag of sand, small knife"""
|
|
entertainers_pack = """backpack, bedroll, {costumes} costumes,
|
|
{candles} candles, {rations} days of rations, waterskin, disguise kit"""
|