tavern.py
741 Bytes
from .baseroom import BaseRoom
class Tavern(BaseRoom):
def __init__(self):
title = "Tavern"
description = "You're in a cozy tavern warmed by an open fire."
exits = {"outside": "Outside", "behind bar": "Room001"}
look_items = {
"bar": "The bar is a long wooden plank thrown over roughly hewn barrels.",
"barrel,barrels": "The old barrels bands are thick with oxidation and stained\r\n with the purple of spilled wine.",
"wooden,oak,plank": "An old solid oak plank that has a large number of chips\r\n and drink marks.",
"fire": "The fire crackles quietly in the corner providing a small amount of light and heat."
}
super(Tavern, self).__init__(title, description, exits, look_items)