Advertisement
Guest User

Ikenberry

a guest
Feb 24th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.55 KB | None | 0 0
  1. {
  2.   "startingRoom": "IkenberryDiningCenter",
  3.   "endingRoom": "ARC",
  4.   "rooms": [
  5.     {
  6.       "name": "IkenberryDiningCenter",
  7.       "description": "You are in the dining hall, inside Ikenberry Commons.",
  8.       "items": ["plate", "ice cream", "fork"],
  9.       "directions": [
  10.         {
  11.           "directionName": "East",
  12.           "room": "57 North"
  13.         }
  14.       ]
  15.     },
  16.     {
  17.       "name": "57 North",
  18.       "description": "You are in 57 north,  inside of the Ikenberry commons. You can see Weston Hall and the mailroom.",
  19.       "items": ["chips", "burger"],
  20.       "directions": [
  21.         {
  22.           "directionName": "North",
  23.           "room": "Weston Hall"
  24.         },
  25.         {
  26.           "directionName": "South",
  27.           "room": "MailRoom"
  28.         },
  29.         {
  30.           "directionName": "West",
  31.           "room": "IkenberryDiningCenter"
  32.         }
  33.       ]
  34.     },
  35.     {
  36.       "name": "MailRoom",
  37.       "description": "You are in the mail room, inside of the Ikenberry commons. There seems to be many packages.",
  38.       "items": ["amazon prime package"],
  39.       "directions": [
  40.         {
  41.           "directionName": "North",
  42.           "room": "57 North"
  43.         }
  44.       ]
  45.     },
  46.     {
  47.       "name": "Weston Hall",
  48.       "description": "You are in the dorm Weston Hall, there are a lot of students.",
  49.       "items": ["i - card"],
  50.       "directions": [
  51.         {
  52.           "directionName": "South",
  53.           "room": "57 North"
  54.         },
  55.         {
  56.           "directionName": "West",
  57.           "room": "Snyder"
  58.         }
  59.       ]
  60.     },
  61.     {
  62.       "name": "Snyder",
  63.       "description": "You are in the dorm Snyder, there are not that many students",
  64.       "directions": [
  65.         {
  66.           "directionName": "East",
  67.           "room": "Weston Hall"
  68.         },
  69.         {
  70.           "directionName": "North",
  71.           "room": "Hopkins"
  72.         },
  73.         {
  74.           "directionName": "South",
  75.           "room": "ARC"
  76.         }
  77.       ]
  78.     },
  79.     {
  80.       "name": "Hopkins",
  81.       "description": "You are in Hopkins.  There is space for two kitchens in this building.",
  82.       "items": ["IPhone Charger", "Laptop"],
  83.       "directions": [
  84.         {
  85.           "directionName": "South",
  86.           "room": "Snyder"
  87.         }
  88.       ]
  89.     },
  90.     {
  91.       "name": "ARC",
  92.       "description": "You are in the gym.  You can see many students working out.",
  93.       "items": ["dumbbell", "basketball"],
  94.       "directions": [
  95.         {
  96.           "directionName": "North",
  97.           "room": "Snyder"
  98.         }
  99.       ]
  100.     }
  101.   ]
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement