outside.py 455 Bytes
from .baseroom import BaseRoom

class Outside(BaseRoom):

  def __init__(self):
    
    title = "Outside the Tavern"
    description = "You are standing outside of a simple tavern made of pressed clay and shale roof. \r\nThe door becons you to come in and have a drink."
    exits = {"tavern": "Tavern"}
    look_items = {
      "tavern": "A roughly constructed building.",
    }

    super(Outside, self).__init__(title, description, exits, look_items)