Advertisement
Zhuofan

Untitled

Feb 25th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. {
  2. "startingRoom": "IT11thFloorLobby",
  3. "endingRoom": "Grainger4thFloor",
  4. "rooms": [
  5. {
  6. "name": "IT11thFloorLobby",
  7. "description": "You are on the 11th floor of Illini Tower, an excellent place for making friends.",
  8. "items": ["chair", "sofa"],
  9. "directions": [
  10. {
  11. "directionName": "Down",
  12. "room": "ITDiningRoom"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "ITDiningRoom",
  18. "description": "You are in the dining room of Illini Tower. You can see residents enjoying their meals.",
  19. "items": ["dishes", "fruits", "drinks"],
  20. "directions": [
  21. {
  22. "directionName": "Out",
  23. "room": "EastChalmersStreet"
  24. },
  25. {
  26. "directionName": "Up",
  27. "room": "IT11thFloorLobby"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "EastChalmersStreet",
  33. "description": "You are on East Chalmers Street. You can see Illini Tower in front of you.",
  34. "items": [],
  35. "directions": [
  36. {
  37. "directionName": "East",
  38. "room": "MainQuad"
  39. },
  40. {
  41. "directionName": "South",
  42. "room": "IceArena"
  43. },
  44. {
  45. "directionName": "North",
  46. "room": "GreenStreet"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "MainQuad",
  52. "description": "You are at the Main Quad. You can see a lot of buildings around it.",
  53. "items": ["squirrel", "rabbit"],
  54. "directions": [
  55. {
  56. "directionName": "West",
  57. "room": "EastChalmersStreet"
  58. },
  59. {
  60. "directionName": "South",
  61. "room": "UndergraduateLibrary"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "IceArena",
  67. "description": "You are at the UI Ice Arena. There is a place for students to have fun ice skating!",
  68. "items": ["skates"],
  69. "directions": [
  70. {
  71. "directionName": "North",
  72. "room": "EastChalmersStreet"
  73. }
  74. ]
  75. },
  76. {
  77. "name": "UndergraduateLibrary",
  78. "description": "You are in the Undergraduate Library. You can see students studying by themselves on the lower floor and students studying in groups on the upper floor.",
  79. "items": ["sandwich", "coffee", "book"],
  80. "directions": [
  81. {
  82. "directionName": "North",
  83. "room": "MainQuad"
  84. },
  85. {
  86. "directionName": "South",
  87. "room": "SouthQuad"
  88. }
  89. ]
  90. },
  91. {
  92. "name": "SouthQuad",
  93. "description": "You are at the South Quad. You can see Gies College of Business here.",
  94. "items": ["bell tower"],
  95. "directions": [
  96. {
  97. "directionName": "North",
  98. "room": "UndergraduateLibrary"
  99. }
  100. ]
  101. },
  102. {
  103. "name": "GreenStreet",
  104. "description": "You are on the Green Street. You can see various of restaurant here. Sounds awesome right?",
  105. "items": ["key", "food"],
  106. "directions": [
  107. {
  108. "directionName": "South",
  109. "room": "EastChalmersStreet"
  110. },
  111. {
  112. "directionName": "East",
  113. "room": "Teamoji"
  114. }
  115. ]
  116. },
  117. {
  118. "name": "Teamoji",
  119. "description": "You are at Teamoji. Enjoy bubble tea! Yeah:)",
  120. "items": ["bubble tea", "fruit tea"],
  121. "directions": [
  122. {
  123. "directionName": "West",
  124. "room": "GreenStreet"
  125. },
  126. {
  127. "directionName": "North",
  128. "room": "GraingerLibrary"
  129. }
  130. ]
  131. },
  132. {
  133. "name": "GraingerLibrary",
  134. "description": "You are on the entrance of Grainger Library. You can see Starbucks here.",
  135. "items": ["computers", "coffee"],
  136. "directions": [
  137. {
  138. "directionName": "Up",
  139. "room": "Grainger4thFloor"
  140. },
  141. {
  142. "directionName": "Down",
  143. "room": "CBTF"
  144. }
  145. ]
  146. },
  147. {
  148. "name": "Grainger4thFloor",
  149. "description": "You are on 4th floor of Grainger. You can see Engineering students working together in groups.",
  150. "items": ["table", "laptop"],
  151. "directions": [
  152. {
  153. "directionName": "Down",
  154. "room": "GraingerLibrary"
  155. }
  156. ]
  157. },
  158. {
  159. "name": "CBTF",
  160. "description": "You are in the basement of Grainger. You can see students preparing for CBTF exams.",
  161. "items": ["vending machine", "laptop"],
  162. "directions": [
  163. {
  164. "directionName": "Up",
  165. "room": "GraingerLibrary"
  166. }
  167. ]
  168. }
  169. ]
  170. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement