def __init__(self, player):
     Room.__init__(self, "Treasure Room", "The castle's treasure room.  There's a chest"
                                          "in the corner of the room.")
     self.player = player
Esempio n. 2
0
 def __init__(self, player):
     Room.__init__(self, "Barracks", "The castle's barracks.  It has some beds"
                                     "laid out in rows.")
     self.player = player
 def __init__(self, player):
     Room.__init__(self, "Dining Room", "A large dining room fit for a king."
                                        "An enormous table sits in the center.")
     self.player = player
 def __init__(self, player):
     Room.__init__(self, "Death Scene", "You have died.  This is hell.")
     self.player = player