Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
1,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. {
  2. "startingRoom": "Altgeld",
  3. "endingRoom": "DunkinDonuts",
  4. "rooms": [
  5. {
  6. "name": "Altgeld",
  7. "description": "You are in the Mathematics Library. Hope you've been studying hard for your midterm!",
  8. "items": ["math notebook", "pencil", "sadness", "calculator"],
  9. "directions": [
  10. {
  11. "directionName": "Right",
  12. "room": "Union"
  13. },
  14. {
  15. "directionName": "Forward",
  16. "room": "Everitt"
  17. },
  18. {
  19. "directionName": "Left",
  20. "room": "Green&WrightIntersection"
  21. }
  22. ]
  23. },
  24. {
  25. "name": "Union",
  26. "description": "You are in the lobby of the union. You can hear students playing the guitar on the stage.",
  27. "items": ["cash", "backpack", "Starbucks"],
  28. "directions": [
  29. {
  30. "directionName": "Forward",
  31. "room": "BardeenQuad"
  32. },
  33. {
  34. "directionName": "Back",
  35. "room": "Altgeld"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "Everitt",
  41. "description": "You are in Everitt. Up the stairs, you can see the cool room with spinny chairs and a bunch of TVs.",
  42. "items": ["sweatshirt", "water bottle"],
  43. "directions": [
  44. {
  45. "directionName": "Forward",
  46. "room": "GraingerLibrary"
  47. },
  48. {
  49. "directionName": "Right",
  50. "room": "BardeenQuad"
  51. },
  52. {
  53. "directionName": "Back",
  54. "room": "Altgeld"
  55. }
  56. ]
  57. },
  58. {
  59. "name": "Green&WrightIntersection",
  60. "description": "You are at the intersection of Green Street. Watch out for the drivers so you don't get run over!",
  61. "items": ["phone", "flashlight"],
  62. "directions": [
  63. {
  64. "directionName": "Forward",
  65. "room": "MiaZas"
  66. },
  67. {
  68. "directionName": "Backward",
  69. "room": "Altgeld"
  70. }
  71. ]
  72. },
  73. {
  74. "name": "MiaZas",
  75. "description": "You are at Mia Za's. Maybe you can stop and get some pizza or pasta?",
  76. "items": ["credit card", "water bottle"],
  77. "directions": [
  78. {
  79. "directionName": "Forward",
  80. "room": "DunkinDonuts"
  81. },
  82. {
  83. "directionName": "Backward",
  84. "room": "Green&WrightIntersection"
  85. }
  86. ]
  87. },
  88. {
  89. "name": "GraingerLibrary",
  90. "description": "You are at the Grainger Library. Maybe you should take a CBTF quiz today ;)",
  91. "items": ["phone", "flashlight"],
  92. "directions": [
  93. {
  94. "directionName": "Left",
  95. "room": "MiaZas"
  96. },
  97. {
  98. "directionName": "Backward",
  99. "room": "Everitt"
  100. }
  101. ]
  102. },
  103. {
  104. "name": "BardeenQuad",
  105. "description": "You are at the Bardeen Quad. You can watch snow fall on the beautiful creek!",
  106. "items": ["phone", "flashlight"],
  107. "directions": [
  108. {
  109. "directionName": "Back Right",
  110. "room": "Everitt"
  111. },
  112. {
  113. "directionName": "Back Left",
  114. "room": "Union"
  115. }
  116. ]
  117. },
  118. {
  119. "name": "DunkinDonuts",
  120. "description": "You made it! Get yourself some coffee and a donut!",
  121. "items": ["cash", "coffe mug", "reusable straw"],
  122. "directions": [
  123. {
  124. "directionName": "Backward",
  125. "room": "MiaZas"
  126. }
  127. ]
  128. }
  129. ]
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement