Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.26 KB | None | 0 0
  1.  
  2. {
  3.   "startingRoom": "Your Home",
  4.   "endingRoom": "Texas Roadhouse",
  5.   "rooms": [
  6.     {
  7.       "name": "Your Home",
  8.       "description": "You are at your house, and very hungry. Hotel in the East, movie theater to your North and high school to your West.",
  9.       "items": [
  10.         "car","money"
  11.       ],
  12.       "directions": [
  13.             {
  14.  
  15.               "directionName": "North",
  16.               "room": "Movie Theater"
  17.             },
  18.             {
  19.               "directionName": "East",
  20.               "room": "Four Seasons"
  21.             },
  22.             {
  23.               "directionName": "West",
  24.               "room": "High School"
  25.             }
  26.           ]
  27.         },
  28.  
  29.  
  30.     {
  31.       "name": "Four Seasons",
  32.       "description": "You are in the Four Seasons Hotel. You can see the gas station to your north, and your house to the west.",
  33.       "items": [
  34.         "sweatshirt",
  35.         "key"
  36.       ],
  37.       "directions": [
  38.         {
  39.           "directionName": "North",
  40.           "room": "Gas Station"
  41.         },
  42.         {
  43.           "directionName": "West",
  44.           "room": "Your Home"
  45.         }
  46.  
  47.       ]
  48.     },
  49.     {
  50.       "name": "Gas Station",
  51.       "description": "You are in the Gas Station.  You see the hotel in the south and a Movie theater to the west.",
  52.       "items": [
  53.         "pizza",
  54.         "swag"
  55.       ],
  56.       "directions": [
  57.         {
  58.           "directionName": "South",
  59.           "room": "Four Seasons"
  60.         },
  61.         {
  62.           "directionName": "West",
  63.           "room": "Movie Theater"
  64.         }
  65.  
  66.       ]
  67.     },
  68.     {
  69.       "name": "Movie Theater",
  70.       "description": "You are in the Movie theater.  You can see gas station to your east and your home to the south and the mall to the west.",
  71.  
  72.       "directions": [
  73.         {
  74.           "directionName": "South",
  75.           "room": "Your Home"
  76.         },
  77.         {
  78.           "directionName": "East",
  79.           "room": "Gas Station"
  80.         },
  81.         {
  82.           "directionName": "West",
  83.           "room": "Mall"
  84.         }
  85.       ]
  86.     },
  87.     {
  88.       "name": "Mall",
  89.       "description": "You are in Mall.  You see the High school to the south and movie theater to the east",
  90.       "items": [
  91.         "USB-C connector",
  92.         "grading rubric"
  93.       ],
  94.       "directions": [
  95.         {
  96.           "directionName": "South",
  97.           "room": "High School"
  98.         },
  99.         {
  100.           "directionName": "East",
  101.           "room": "Movie Theater"
  102.         }
  103.       ]
  104.     },
  105.     {
  106.       "name": "High School",
  107.       "description": "You are in the High School.  You can see your home to the east and a Texas Roadhouse to the west.",
  108.       "items": [
  109.         "bagel",
  110.         "coffee"
  111.       ],
  112.       "directions": [
  113.         {
  114.           "directionName": "West",
  115.           "room": "Texas Roadhouse"
  116.         },
  117.         {
  118.           "directionName": "East",
  119.           "room": "Your Home"
  120.         },
  121.         {
  122.           "directionName": "North",
  123.           "room": "Mall"
  124.         }
  125.       ]
  126.     },
  127.     {
  128.       "name": "Texas Roadhouse",
  129.       "description": "You are in Texas Roadhouse.  There are lots of food",
  130.       "directions": [
  131.         {
  132.           "directionName": "East",
  133.           "room": "High School"
  134.         }
  135.       ]
  136.     }
  137.   ]
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement