Advertisement
Guest User

Htown!

a guest
Feb 26th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.73 KB | None | 0 0
  1. {
  2.   "startingRoom": "Americana",
  3.   "endingRoom": "Bowling",
  4.   "rooms": [
  5.     {
  6.       "name": "Americana",
  7.       "description": "You are at Americana Diner for breakfast fueling up to go around my hometown!",
  8.       "items": ["delicious rainbow sprinkles cookies", "waffles", "pancakes", "eggs"],
  9.       "directions": [
  10.         {
  11.           "directionName": "East",
  12.           "room": "Movies"
  13.         }
  14.       ]
  15.     },
  16.     {
  17.       "name": "Movies",
  18.       "description": "You are at the movies because you want to see the new release ASAP.",
  19.       "items": ["popcorn", "nachos", "candy"],
  20.       "directions": [
  21.         {
  22.           "directionName": "West",
  23.           "room": "Americana"
  24.         },
  25.         {
  26.           "directionName": "South",
  27.           "room": "Princeton"
  28.         }
  29.       ]
  30.     },
  31.     {
  32.       "name": "Princeton",
  33.       "description": "You are on Nassau Street in Princeton! You wanted to check out some of the exquisite food scene for lunch.",
  34.       "items": ["pizza", "pasta", "crepes", "noodles"],
  35.       "directions": [
  36.         {
  37.           "directionName": "South",
  38.           "room": "Thomas Sweet"
  39.         },
  40.         {
  41.           "directionName": "North",
  42.           "room": "Movies"
  43.         }
  44.       ]
  45.     },
  46.     {
  47.       "name": "Thomas Sweet",
  48.       "description": "You are at one of the best ice cream places in the area! Enjoy the treat.",
  49.       "items": ["mint chocolate chip", "chocolate", "creme brulee", "mango"],
  50.       "directions": [
  51.         {
  52.           "directionName": "North",
  53.           "room": "Princeton"
  54.         },
  55.         {
  56.           "directionName": "West",
  57.           "room": "Six Flags"
  58.         }
  59.       ]
  60.     },
  61.     {
  62.       "name": "Six Flags",
  63.       "description": "You felt extra energized and wanted some extra thrill in your day, so hop on some roller-coasters!",
  64.       "items": ["funnel cake", "Superman", "Batman", "Kingda Ka"],
  65.       "directions": [
  66.         {
  67.           "directionName": "East",
  68.           "room": "Thomas Sweet"
  69.         },
  70.         {
  71.           "directionName": "North",
  72.           "room": "Village Park"
  73.         },
  74.         {
  75.           "directionName": "West",
  76.           "room": "Golfing"
  77.         },
  78.         {
  79.           "directionName": "South",
  80.           "room": "Point Pleasant Beach"
  81.         }
  82.       ]
  83.     },
  84.     {
  85.       "name": "Point Pleasant Beach",
  86.       "description": "You made it to the Jersey shore!",
  87.       "items": ["boardwalk", "sand", "sun", "waves", "games"],
  88.       "directions": [
  89.         {
  90.           "directionName": "North",
  91.           "room": "Six Flags"
  92.         }
  93.       ]
  94.     },
  95.     {
  96.       "name": "Village Park",
  97.       "description": "You are at my favorite place! Enjoy the nature at Village Park and soak in the rays while you take a stroll.",
  98.       "items": ["lake", "greenery", "sun"],
  99.       "directions": [
  100.         {
  101.           "directionName": "South",
  102.           "room": "Six Flags"
  103.         },
  104.         {
  105.           "directionName": "Southwest",
  106.           "room": "Golfing"
  107.         }
  108.       ]
  109.     },
  110.     {
  111.       "name": "Golfing",
  112.       "description": "You decided to go out for some putt-putt golfing! Enjoy the colorful greens.",
  113.       "directions": [
  114.         {
  115.           "directionName": "Northeast",
  116.           "room": "Village Park"
  117.         },
  118.         {
  119.           "directionName": "East",
  120.           "room": "Six Flags"
  121.         },
  122.         {
  123.           "directionName": "South",
  124.           "room": "Bowling"
  125.         }
  126.       ]
  127.     },
  128.     {
  129.       "name": "Bowling",
  130.       "description": "You made it to your last destination for the night. Enjoy bowling!",
  131.       "items": ["bowling shoes", "wings", "bowling balls", "pins"],
  132.       "directions": [
  133.         {
  134.           "directionName": "North",
  135.           "room": "Golfing"
  136.         }
  137.       ]
  138.     }
  139.   ]
  140. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement