room001.py 696 Bytes
from .baseroom import BaseRoom

class Room001(BaseRoom):

  def __init__(self):
    
    title = "Behind the bar"
    description = "The back of the bar gives a full view of the tavern. The bar\r\n top is a large wooden plank thrown across some barrels."
    exits = {"tavern": "Tavern"}
    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."
    }

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