Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.49 KB | None | 0 0
  1. {
  2. "startingRoom": "MatthewsStreet",
  3. "endingRoom": "Siebel1314",
  4. "player": {
  5. "items": []
  6. },
  7. "rooms": [
  8. {
  9. "name": "MatthewsStreet",
  10. "description": "You are on Matthews, outside the Siebel Center",
  11. "items": [
  12. {
  13. "name": "RedKey",
  14. "question": "What is the answer to the ultimate question of life, the universe, and everything?",
  15. "answer": "42"
  16. }
  17. ],
  18. "directions": [
  19. {
  20. "directionName": "East",
  21. "room": "SiebelEntry",
  22. "enabled": "false",
  23. "validKeyNames": [
  24. "RedKey", "BlueKey"
  25. ]
  26. }
  27. ]
  28. },
  29. {
  30. "name": "SiebelEntry",
  31. "description": "You are in the west entry of Siebel Center. You can see the elevator, the ACM office, and hallways to the north and east.",
  32. "directions": [
  33. {
  34. "directionName": "West",
  35. "room": "MatthewsStreet",
  36. "enabled": "true",
  37. "validKeyNames": [
  38. "RedKey", "BlueKey"
  39. ]
  40. },
  41. {
  42. "directionName": "Northeast",
  43. "room": "AcmOffice",
  44. "enabled": "true",
  45. "validKeyNames": [
  46. "RedKey", "BlueKey"
  47. ]
  48. },
  49. {
  50. "directionName": "North",
  51. "room": "SiebelNorthHallway",
  52. "enabled": "true",
  53. "validKeyNames": [
  54. "RedKey", "BlueKey"
  55. ]
  56. },
  57. {
  58. "directionName": "East",
  59. "room": "SiebelEastHallway",
  60. "enabled": "true",
  61. "validKeyNames": [
  62. "RedKey", "BlueKey"
  63. ]
  64. }
  65. ]
  66. },
  67. {
  68. "name": "AcmOffice",
  69. "description": "You are in the ACM office. There are lots of friendly ACM people.",
  70. "directions": [
  71. {
  72. "directionName": "South",
  73. "room": "SiebelEntry",
  74. "enabled": "true",
  75. "validKeyNames": [
  76. "RedKey", "BlueKey"
  77. ]
  78. }
  79. ]
  80. },
  81. {
  82. "name": "SiebelNorthHallway",
  83. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  84. "directions": [
  85. {
  86. "directionName": "South",
  87. "room": "SiebelEntry",
  88. "enabled": "true",
  89. "validKeyNames": [
  90. "RedKey", "BlueKey"
  91. ]
  92. },
  93. {
  94. "directionName": "NorthEast",
  95. "room": "Siebel1112",
  96. "enabled": "true",
  97. "validKeyNames": [
  98. "RedKey", "BlueKey"
  99. ]
  100. }
  101. ]
  102. },
  103. {
  104. "name": "Siebel1112",
  105. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  106. "directions": [
  107. {
  108. "directionName": "West",
  109. "room": "SiebelNorthHallway",
  110. "enabled": "true",
  111. "validKeyNames": [
  112. "RedKey", "BlueKey"
  113. ]
  114. }
  115. ]
  116. },
  117. {
  118. "name": "SiebelEastHallway",
  119. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  120. "directions": [
  121. {
  122. "directionName": "West",
  123. "room": "SiebelEntry",
  124. "enabled": "true",
  125. "validKeyNames": [
  126. "RedKey", "BlueKey"
  127. ]
  128. },
  129. {
  130. "directionName": "South",
  131. "room": "Siebel1314",
  132. "enabled": "true",
  133. "validKeyNames": [
  134. "RedKey", "BlueKey"
  135. ]
  136. },
  137. {
  138. "directionName": "Down",
  139. "room": "SiebelBasement",
  140. "enabled": "true",
  141. "validKeyNames": [
  142. "RedKey", "BlueKey"
  143. ]
  144. }
  145. ]
  146. },
  147. {
  148. "name": "Siebel1314",
  149. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  150. "directions": [
  151. {
  152. "directionName": "North",
  153. "room": "SiebelEastHallway",
  154. "enabled": "true",
  155. "validKeyNames": [
  156. "RedKey", "BlueKey"
  157. ]
  158. }
  159. ]
  160. },
  161. {
  162. "name": "SiebelBasement",
  163. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  164. "directions": [
  165. {
  166. "directionName": "Up",
  167. "room": "SiebelEastHallway",
  168. "enabled": "true",
  169. "validKeyNames": [
  170. "RedKey", "BlueKey"
  171. ]
  172. }
  173. ]
  174. },
  175. {
  176. "name": "Island",
  177. "description": "It is impossible for you to get here",
  178. "directions": []
  179. }
  180. ]
  181. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement