Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.22 KB | None | 0 0
  1. {
  2.   "startingRoom": "Room1",
  3.   "endingRoom": "Room5",
  4.   "rooms": [
  5.     {
  6.       "name": "Room1",
  7.       "description": "The first room.",
  8.       "directions": [
  9.         {
  10.           "directionName": "East",
  11.           "room": "Room2"
  12.         }
  13.       ]
  14.     },
  15.     {
  16.       "name": "Room2",
  17.       "description": "The second room.",
  18.       "directions": [
  19.         {
  20.           "directionName": "West",
  21.           "room": "Room1"
  22.         },
  23.         {
  24.           "directionName": "North",
  25.           "room": "Room3"
  26.         },
  27.         {
  28.           "directionName": "East",
  29.           "room": "Room4"
  30.         }
  31.       ]
  32.     },
  33.     {
  34.       "name": "Room3",
  35.       "description": "Oh wow, the third room.",
  36.       "directions": [
  37.         {
  38.           "directionName": "South",
  39.           "room": "Room2"
  40.         }
  41.       ]
  42.     },
  43.     {
  44.       "name": "Room4",
  45.       "description": "Yet another generic room.",
  46.       "directions": [
  47.         {
  48.           "directionName": "East",
  49.           "room": "Room5"
  50.         }
  51.       ]
  52.     },
  53.     {
  54.       "name": "Room5",
  55.       "description": "The last generic room, finally.",
  56.       "directions": [
  57.         {
  58.           "directionName": "West",
  59.           "room": "Room4"
  60.         }
  61.       ]
  62.     }
  63.   ]
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement