Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 KB | None | 0 0
  1. {
  2. "startingRoom": "MatthewsStreet",
  3. "endingRoom": "Siebel1314",
  4. "rooms": [
  5. {
  6. "name": "MatthewsStreet",
  7. "description": "You are on Matthews, outside the Siebel Center",
  8. "items": [
  9. "coin",
  10. "waterBucket"
  11. ],
  12. "directions": [
  13. {
  14. "directionName": "East",
  15. "room": "SiebelEntry"
  16. }
  17. ]
  18. },
  19. {
  20. "name": "SiebelEntry",
  21. "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.",
  22. "items": [
  23. "sweatshirt",
  24. "key",
  25. "sword"
  26. ],
  27. "directions": [
  28. {
  29. "directionName": "West",
  30. "room": "MatthewsStreet"
  31. },
  32. {
  33. "directionName": "Northeast",
  34. "room": "AcmOffice"
  35. },
  36. {
  37. "directionName": "North",
  38. "room": "SiebelNorthHallway"
  39. },
  40. {
  41. "directionName": "East",
  42. "room": "SiebelEastHallway"
  43. },
  44. {
  45. "directionName": "Up",
  46. "room": "SiebelHigherUp"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "SiebelHigherUp",
  52. "description": "You are in a bright room. You see a fountain.",
  53. "items": [
  54. "burnWater"
  55. ],
  56. "directions": [
  57. {
  58. "directionName": "Down",
  59. "room": "SiebelEntry"
  60. }
  61. ]
  62. },
  63. {
  64. "name": "AcmOffice",
  65. "description": "You are in the ACM office. There are lots of friendly ACM people.",
  66. "items": [
  67. "pizza",
  68. "swag"
  69. ],
  70. "directions": [
  71. {
  72. "directionName": "South",
  73. "room": "SiebelEntry"
  74. }
  75. ]
  76. },
  77. {
  78. "name": "SiebelNorthHallway",
  79. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  80. "directions": [
  81. {
  82. "directionName": "South",
  83. "room": "SiebelEntry"
  84. },
  85. {
  86. "directionName": "NorthEast",
  87. "room": "Siebel1112"
  88. }
  89. ]
  90. },
  91. {
  92. "name": "Siebel1112",
  93. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  94. "items": [
  95. "USB-C connector",
  96. "grading rubric"
  97. ],
  98. "directions": [
  99. {
  100. "directionName": "West",
  101. "room": "SiebelNorthHallway"
  102. }
  103. ]
  104. },
  105. {
  106. "name": "SiebelEastHallway",
  107. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  108. "items": [
  109. "bagel",
  110. "coffee"
  111. ],
  112. "directions": [
  113. {
  114. "directionName": "West",
  115. "room": "SiebelEntry"
  116. },
  117. {
  118. "directionName": "South",
  119. "room": "Siebel1314"
  120. },
  121. {
  122. "directionName": "Down",
  123. "room": "SiebelBasement"
  124. }
  125. ]
  126. },
  127. {
  128. "name": "Siebel1314",
  129. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  130. "directions": [
  131. {
  132. "directionName": "North",
  133. "room": "SiebelEastHallway"
  134. }
  135. ]
  136. },
  137. {
  138. "name": "SiebelBasement",
  139. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  140. "items": [
  141. "pencil"
  142. ],
  143. "directions": [
  144. {
  145. "directionName": "Up",
  146. "room": "SiebelEastHallway"
  147. },
  148. {
  149. "directionName": "Down",
  150. "room": "SiebelDungeon"
  151. }
  152. ]
  153. },
  154. {
  155. "name": "SiebelDungeon",
  156. "description": "You are in the dungeon of Siebel. It is dark.",
  157. "items": [
  158. "medallion"
  159. ],
  160. "directions": [
  161. {
  162. "directionName": "Up",
  163. "room": "SiebelBasement"
  164. }
  165. ]
  166. }
  167. ]
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement