Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. {
  2. "startingRoom": "Mounika's Room",
  3. "endingRoom": "UIUC",
  4. "rooms": [
  5. {
  6. "name": "Mounika's Room",
  7. "description": "You are in Mounika's Room, in San Ramon California",
  8. "items": ["passport", "suitcase"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "SFOAirport"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "SFOAirport",
  18. "description": "You are in the San Francisco Int Airport, where you would be able to fly to UIUC",
  19. "items": ["cellphone"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "Mounika's Room"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "SecurityCheckPoint"
  28. },
  29. {
  30. "directionName": "North",
  31. "room": "Bathrooms"
  32. },
  33. {
  34. "directionName": "East",
  35. "room": "Plane"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "SecurityCheckPoint",
  41. "description": "You are in the Security Checkpoint, there's always a crowd here....",
  42. "items": ["laptops", "electronics", "liquids"],
  43. "directions": [
  44. {
  45. "directionName": "South",
  46. "room": "SFOAirport"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "Bathrooms",
  52. "description": "You are in the Bathroom at the airport.",
  53. "directions": [
  54. {
  55. "directionName": "South",
  56. "room": "SFOAirport"
  57. },
  58. {
  59. "directionName": "NorthEast",
  60. "room": "WaitingArea"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "WaitingArea",
  66. "description": "You are in Waiting Area, chill out and take a nap!",
  67. "items": ["USB-C connector", "headphones"],
  68. "directions": [
  69. {
  70. "directionName": "West",
  71. "room": "Bathrooms"
  72. }
  73. ]
  74. },
  75. {
  76. "name": "Plane",
  77. "description": "You are in the plane to Champaign Illinois!! Almost there!",
  78. "items": ["Textbooks", "Stress"],
  79. "directions": [
  80. {
  81. "directionName": "West",
  82. "room": "SFOAirport"
  83. },
  84. {
  85. "directionName": "South",
  86. "room": "UIUC"
  87. },
  88. {
  89. "directionName": "Down",
  90. "room": "GreeenStreet"
  91. }
  92. ]
  93. },
  94. {
  95. "name": "UIUC",
  96. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  97. "directions": [
  98. {
  99. "directionName": "North",
  100. "room": "Plane"
  101. }
  102. ]
  103. },
  104. {
  105. "name": "GreeenStreet",
  106. "description": "You are in GreenStreet. Stop eating food and go to class!!",
  107. "items": ["Tacos", "Sprite"],
  108. "directions": [
  109. {
  110. "directionName": "Up",
  111. "room": "Plane"
  112. }
  113. ]
  114. }
  115. ]
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement