Advertisement
Txemin

Untitled

May 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. from room import Room
  2. kitchen = Room("Kitchen")
  3. kitchen.set_description("A dark and dirty room buzzing with flies.")
  4. kitchen.get_description
  5. kitchen.describe(kitchen)
  6.  
  7. dining_room = Room("Dinig room")
  8. dining_room.set_description("A well illuminated room with a long table and 12 chairs.")
  9. dining_room.get_description
  10. dining_room.describe(dining_room)
  11.  
  12. ballroom = Room("Ball room")
  13. ballroom.set_description("A vast room with a shiny wooden floor. Huge candlesticks guard the entrance.")
  14. ballroom.get_description
  15. ballroom.describe(dining_room)
  16.  
  17. kitchen.linked_room(dining_room, "south")
  18. dining_room.linked_room(kitchen, "north")
  19. dining_room.link_room(ballroom, "west")
  20. ballroom.linked_room(dining_room, "east")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement