Advertisement
Guest User

Untitled

a guest
Oct 14th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.99 KB | None | 0 0
  1. rooms = {
  2.         'Foyer': {
  3.         'South': 'Kitchen',
  4.         'North': 'Guest Bedroom',
  5.         'East': 'Master Bedroom',
  6.         'West': 'Living Room'},
  7.        
  8.         'Kitchen': {
  9.         'North': 'Foyer',
  10.         'East': 'Garage',
  11.         'item': 'Flashlight'},
  12.        
  13.         'Garage': {
  14.         'West': 'Kitchen',
  15.         'item': 'Crucifix'},
  16.        
  17.         'Master Bedroom' : {
  18.         'item': 'Candles',
  19.         'West': 'Foyer',
  20.         'North' :
  21.         'Master Bathroom',
  22.         'item' : 'Ghost'},
  23.        
  24.         'Master Bathroom' : {
  25.         'item': 'Ghost',
  26.         'South' : 'Master Bedroom'},
  27.         'Living Room' : {
  28.         'item': 'Spirit Box',
  29.         'East': 'Foyer' },
  30.        
  31.         'Guest Bedroom': {
  32.         'item': 'Prayer Book',
  33.         'South': 'Foyer',
  34.         'East': 'Guest Bathroom', 'item' : 'Thermometer'},
  35.        
  36.         'Guest Bathroom' : {
  37.         'item' : 'Thermometer',
  38.         'West' : 'Guest Bedroom'},
  39.        
  40.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement