Advertisement
Guest User

SearchForGym

a guest
Feb 25th, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.11 KB | None | 0 0
  1. {
  2.   "startingRoom": "Home",
  3.   "endingRoom": "Gym",
  4.   "rooms": [
  5.     {
  6.       "name": "Home",
  7.       "description": "Ah, sweet home. I really need to workout.",
  8.       "items": ["keys", "car", "magazines"],
  9.       "directions": [
  10.         {
  11.           "directionName": "East",
  12.           "room": "Zoo"
  13.         },
  14.         {
  15.           "directionName": "West",
  16.           "room": "ConvenienceStore"
  17.         }
  18.       ]
  19.     },
  20.     {
  21.       "name": "Zoo",
  22.       "description": "Oh cool, a zoo. Wow, so many animals. Wish I had the build of that gorilla.",
  23.       "items": ["monkeys", "giraffes", "dolphins", "tigers", "gorillas"],
  24.       "directions": [
  25.         {
  26.           "directionName": "Northeast",
  27.           "room": "School"
  28.         },
  29.         {
  30.           "directionName": "Southeast",
  31.           "room": "Park"
  32.         }
  33.       ]
  34.     },
  35.     {
  36.       "name": "ConvenienceStore",
  37.       "description": "Oh cool, a convenience store. So many snacks! Must... resist...",
  38.       "items": ["gatorade", "hotdog", "pretzels", "cashier"],
  39.       "directions": [
  40.         {
  41.           "directionName": "North",
  42.           "room": "Arcade"
  43.         },
  44.         {
  45.           "directionName": "South",
  46.           "room": "Theater"
  47.         }
  48.       ]
  49.     },
  50.     {
  51.       "name": "Arcade",
  52.       "description": "Oh cool, an arcade. Wow they have guitar hero here? The gym can wait 30 min.",
  53.       "items": ["pacman", "basketball", "coins", "guitar"],
  54.       "directions": [
  55.         {
  56.           "directionName": "East",
  57.           "room": "School"
  58.         },
  59.         {
  60.           "directionName": "South",
  61.           "room": "ConvenienceStore"
  62.         }
  63.       ]
  64.     },
  65.     {
  66.       "name": "Theater",
  67.       "description": "Oh cool, a theater. The new sonic movie looks great.",
  68.       "items": ["popcorn", "candy", "screen"],
  69.       "directions": [
  70.         {
  71.           "directionName": "East",
  72.           "room": "Gym"
  73.         },
  74.         {
  75.           "directionName": "North",
  76.           "room": "ConvenienceStore"
  77.         }
  78.       ]
  79.     },
  80.     {
  81.       "name": "School",
  82.       "description": "Oh cool, a school. Look at all these wonderful children learning.",
  83.       "items": ["students", "pencils", "markers", "textbooks"],
  84.       "directions": [
  85.         {
  86.           "directionName": "Southwest",
  87.           "room": "Zoo"
  88.         }
  89.         {
  90.           "directionName": "West",
  91.           "room": "Arcade"
  92.         }
  93.       ]
  94.     },
  95.     {
  96.       "name": "Park",
  97.       "description": "Oh cool, a park. I think I'll ride the swings for some time.",
  98.       "items": ["swings", "tire", "woodchips", "slides"],
  99.       "directions": [
  100.         {
  101.           "directionName": "Northwest",
  102.           "room": "Zoo"
  103.         },
  104.         {
  105.           "directionName": "West",
  106.           "room": "Gym"
  107.         }
  108.       ]
  109.     },
  110.     {
  111.       "name": "Gym",
  112.       "description": "Here's the gym! All that walking made me too tired though...",
  113.       "directions": [
  114.         {
  115.           "directionName": "East",
  116.           "room": "Park"
  117.         },
  118.         {
  119.           "directionName": "West",
  120.           "room": "Theater"
  121.         }
  122.       ]
  123.     }
  124.   ]
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement