Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. {
  2. "startingRoom": "ChalmersStreet",
  3. "endingRoom": "Room1410",
  4. "rooms": [
  5. {
  6. "name": "ChalmersStreet",
  7. "description": "You are on Chalmers, across the Illini Tower entry porch",
  8. "items": ["entrance card", "trash can"],
  9. "directions": [
  10. {
  11. "directionName": "North",
  12. "room": "IlliniTowerEntry",
  13. "enabled": false,
  14. "validKeyNames": ["entrance card"]
  15. }
  16. ]
  17. },
  18. {
  19. "name": "IlliniTowerEntry",
  20. "description": "You are on the Illini Tower entry porch, outside Illini Tower",
  21. "items": ["meal card", "building ID", "bonfire", "couch pillow"],
  22. "directions": [
  23. {
  24. "directionName": "South",
  25. "room": "ChalmersStreet",
  26. "enabled": true,
  27. "validKeyNames": []
  28. },
  29. {
  30. "directionName": "West",
  31. "room": "MainElevator",
  32. "enabled": true,
  33. "validKeyNames": []
  34. },
  35. {
  36. "directionName": "Southwest",
  37. "room": "DiningHall",
  38. "enabled": false,
  39. "validKeyNames": ["meal card"]
  40. },
  41. {
  42. "directionName": "North",
  43. "room": "StudyLounge",
  44. "enabled": false,
  45. "validKeyNames": ["building ID"]
  46. }
  47. ]
  48. },
  49. {
  50. "name": "MainElevator",
  51. "description": "You are on the main elevator, on the first floor",
  52. "items": ["room map", "lost key"],
  53. "directions": [
  54. {
  55. "directionName": "Down",
  56. "room": "Basement",
  57. "enabled": true,
  58. "validKeyNames": []
  59. },
  60. {
  61. "directionName": "Up",
  62. "room": "14thFloor",
  63. "enabled": false,
  64. "validKeyNames": ["room map"]
  65. },
  66. {
  67. "directionName": "East",
  68. "room": "IlliniTowerEntry",
  69. "enabled": false,
  70. "validKeyNames": ["entrance card"]
  71. }
  72. ]
  73. },
  74. {
  75. "name": "DiningHall",
  76. "description": "You are in the dining hall. You can see delicious food.",
  77. "items": ["pizza", "waffles"],
  78. "directions": [
  79. {
  80. "directionName": "Northeast",
  81. "room": "IlliniTowerEntry",
  82. "enabled": false,
  83. "validKeyNames": ["entrance card"]
  84. }
  85. ]
  86. },
  87. {
  88. "name": "StudyLounge",
  89. "description": "You are in the study lounge. There are lots of hardworking people.",
  90. "items": ["printer", "television", "charger"],
  91. "directions": [
  92. {
  93. "directionName": "South",
  94. "room": "IlliniTowerEntry",
  95. "enabled": false,
  96. "validKeyNames":["entrance card"]
  97. }
  98. ]
  99. },
  100. {
  101. "name": "Basement",
  102. "description": "You are in the basement. It is very cold down here.",
  103. "items": ["piano", "water bottle", "HDMI cable", "chair"],
  104. "directions": [
  105. {
  106. "directionName": "Northeast",
  107. "room": "SweatGym",
  108. "enabled": false,
  109. "validKeyNames": ["water bottle"]
  110. },
  111. {
  112. "directionName": "West",
  113. "room": "FlixMovieRoom",
  114. "enabled": false,
  115. "validKeyNames": ["HDMI cable"]
  116. },
  117. {
  118. "directionName": "Up",
  119. "room": "MainElevator",
  120. "enabled": true,
  121. "validKeyNames": []
  122. }
  123. ]
  124. },
  125. {
  126. "name": "14thFloor",
  127. "description": "You are on the 14th floor. The best floor of all 16 floors!",
  128. "items": ["meeting area", "rooms", "room key"],
  129. "directions": [
  130. {
  131. "directionName": "East",
  132. "room": "Room1410",
  133. "enabled": false,
  134. "validKeyNames": ["room key"]
  135. },
  136. {
  137. "directionName": "Down",
  138. "room": "MainElevator",
  139. "enabled": true,
  140. "validKeyNames": []
  141. }
  142. ]
  143. },
  144. {
  145. "name": "SweatGym",
  146. "description": "You are in the sweat room. There are a lot of weights and yoga mats in here.",
  147. "items": ["sweater", "headphone"],
  148. "directions": [
  149. {
  150. "directionName": "Southwest",
  151. "room": "Basement",
  152. "enabled": true,
  153. "validKeyNames": []
  154. }
  155. ]
  156. },
  157. {
  158. "name": "FlixMovieRoom",
  159. "description": "You are in the flix movie room. There are students watching a horror movie. You should leave.",
  160. "items": ["screen", "remote"],
  161. "directions": [
  162. {
  163. "directionName": "East",
  164. "room": "Basement",
  165. "enabled": true,
  166. "validKeyNames": []
  167. }
  168. ]
  169. },
  170. {
  171. "name": "Room1410",
  172. "description": "You have reached Room 1410! There is one CS 126 student in here who is obviously working on her code.",
  173. "items": ["laptop"],
  174. "directions": [
  175. {
  176. "directionName": "West",
  177. "room": "14thFloor",
  178. "enabled": false,
  179. "validKeyNames": ["room map"]
  180. }
  181. ]
  182. }
  183. ],
  184. "player": {
  185. "items": [
  186. ]
  187. }
  188. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement