Advertisement
Grenadilla

siebel.json

Sep 20th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.47 KB | None | 0 0
  1. {
  2.   "startingRoom": "MatthewsStreet",
  3.   "endingRoom": "Siebel1314",
  4.   "rooms": [
  5.     {
  6.       "name": "MatthewsStreet",
  7.       "description": "You are on Matthews, outside the Siebel Center",
  8.       "items": [
  9.         {"name": "coin"}
  10.       ],
  11.       "directions": [
  12.         {
  13.           "directionName": "East",
  14.           "room": "SiebelEntry"
  15.         }
  16.       ]
  17.     },
  18.     {
  19.       "name": "SiebelEntry",
  20.       "description": "You are in the west entry of Siebel Center. You can see the elevator, the ACM office, and hallways to the north and east.",
  21.       "items": [
  22.         {
  23.           "name": "sweatshirt"
  24.         },
  25.         {
  26.           "name": "key"
  27.         }
  28.       ],
  29.       "directions": [
  30.         {
  31.           "directionName": "West",
  32.           "room": "MatthewsStreet"
  33.         },
  34.         {
  35.           "directionName": "Northeast",
  36.           "room": "AcmOffice"
  37.         },
  38.         {
  39.           "directionName": "North",
  40.           "room": "SiebelNorthHallway"
  41.         },
  42.         {
  43.           "directionName": "East",
  44.           "room": "SiebelEastHallway"
  45.         }
  46.       ]
  47.     },
  48.     {
  49.       "name": "AcmOffice",
  50.       "description": "You are in the ACM office.  There are lots of friendly ACM people.",
  51.       "items": [
  52.         {
  53.           "name": "pizza"
  54.         },
  55.         {
  56.           "name": "swag"
  57.         }
  58.       ],
  59.       "directions": [
  60.         {
  61.           "directionName": "South",
  62.           "room": "SiebelEntry"
  63.         }
  64.       ]
  65.     },
  66.     {
  67.       "name": "SiebelNorthHallway",
  68.       "description": "You are in the north hallway.  You can see Siebel 1112 and the door toward NCSA.",
  69.       "directions": [
  70.         {
  71.           "directionName": "South",
  72.           "room": "SiebelEntry"
  73.         },
  74.         {
  75.           "directionName": "NorthEast",
  76.           "room": "Siebel1112"
  77.         }
  78.       ]
  79.     },
  80.     {
  81.       "name": "Siebel1112",
  82.       "description": "You are in Siebel 1112.  There is space for two code reviews in this room.",
  83.       "items": [
  84.         {
  85.           "name": "USB-C connector"
  86.         },
  87.         {
  88.           "name": "grading rubric"
  89.         }
  90.       ],
  91.       "directions": [
  92.         {
  93.           "directionName": "West",
  94.           "room": "SiebelNorthHallway"
  95.         }
  96.       ]
  97.     },
  98.     {
  99.       "name": "SiebelEastHallway",
  100.       "description": "You are in the east hallway.  You can see Einstein Bros' Bagels and a stairway.",
  101.       "items": [
  102.         {
  103.           "name": "bagel"
  104.         },
  105.         {
  106.           "name": "coffee"
  107.         }
  108.       ],
  109.       "directions": [
  110.         {
  111.           "directionName": "West",
  112.           "room": "SiebelEntry"
  113.         },
  114.         {
  115.           "directionName": "South",
  116.           "room": "Siebel1314"
  117.         },
  118.         {
  119.           "directionName": "Down",
  120.           "room": "SiebelBasement"
  121.         }
  122.       ]
  123.     },
  124.     {
  125.       "name": "Siebel1314",
  126.       "description": "You are in Siebel 1314.  There are happy CS 126 students doing a code review.",
  127.       "directions": [
  128.         {
  129.           "directionName": "North",
  130.           "room": "SiebelEastHallway"
  131.         }
  132.       ]
  133.     },
  134.     {
  135.       "name": "SiebelBasement",
  136.       "description": "You are in the basement of Siebel.  You see tables with students working and door to computer labs.",
  137.       "items": [
  138.         {
  139.         "name": "pencil"
  140.         }
  141.       ],
  142.       "directions": [
  143.         {
  144.           "directionName": "Up",
  145.           "room": "SiebelEastHallway"
  146.         }
  147.       ]
  148.     }
  149.   ]
  150. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement