Advertisement
Guest User

Untitled

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