Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
88
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. "player": {
  5. "items": [
  6. {"itemName": "chainsaw"},
  7. {"itemName": "knife"},
  8. {"itemName": "money"},
  9. {"itemName": "wrecking ball"}
  10. ]
  11. },
  12. "rooms": [
  13. {
  14. "name": "MatthewsStreet",
  15. "description": "You are on Matthews, outside the Siebel Center",
  16. "directions": [
  17. {
  18. "directionName": "East",
  19. "room": "SiebelEntry",
  20. "enabled": "true",
  21. "validKeyNames": [
  22. "chainsaw", "hammer"
  23. ]
  24. }
  25. ]
  26. },
  27. {
  28. "name": "SiebelEntry",
  29. "items": [
  30. {"itemName": "hammer"},
  31. {"itemName": "ICard"},
  32. {"itemName": "big brain"}
  33. ],
  34. "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.",
  35. "directions": [
  36. {
  37. "directionName": "West",
  38. "room": "MatthewsStreet",
  39. "enabled": "true",
  40. "validKeyNames": []
  41. },
  42. {
  43. "directionName": "Northeast",
  44. "room": "AcmOffice",
  45. "enabled": "false",
  46. "validKeyNames": [
  47. "big brain", "money"
  48. ]
  49. },
  50. {
  51. "directionName": "North",
  52. "room": "SiebelNorthHallway",
  53. "enabled": "true",
  54. "validKeyNames": []
  55. },
  56. {
  57. "directionName": "East",
  58. "room": "SiebelEastHallway",
  59. "enabled": "true",
  60. "validKeyNames": []
  61. }
  62. ]
  63. },
  64. {
  65. "name": "AcmOffice",
  66. "description": "You are in the ACM office. There are lots of friendly ACM people.",
  67. "directions": [
  68. {
  69. "directionName": "South",
  70. "room": "SiebelEntry",
  71. "enabled": "false",
  72. "validKeyNames": [
  73. "big brain", "wrecking ball"
  74. ]
  75. }
  76. ]
  77. },
  78. {
  79. "name": "SiebelNorthHallway",
  80. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  81. "directions": [
  82. {
  83. "directionName": "South",
  84. "room": "SiebelEntry",
  85. "enabled": "true",
  86. "validKeyNames": [
  87. ]
  88. },
  89. {
  90. "directionName": "NorthEast",
  91. "room": "Siebel1112",
  92. "enabled": "false",
  93. "validKeyNames": [
  94. "ICard"
  95. ]
  96. }
  97. ]
  98. },
  99. {
  100. "name": "Siebel1112",
  101. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  102. "directions": [
  103. {
  104. "directionName": "West",
  105. "room": "SiebelNorthHallway",
  106. "enabled": "false"
  107. }
  108. ]
  109. },
  110. {
  111. "name": "SiebelEastHallway",
  112. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  113. "directions": [
  114. {
  115. "directionName": "West",
  116. "room": "SiebelEntry",
  117. "enabled": "false"
  118. },
  119. {
  120. "directionName": "South",
  121. "room": "Siebel1314",
  122. "enabled": "false"
  123. },
  124. {
  125. "directionName": "Down",
  126. "room": "SiebelBasement",
  127. "enabled": "false"
  128. }
  129. ]
  130. },
  131. {
  132. "name": "Siebel1314",
  133. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  134. "directions": [
  135. {
  136. "directionName": "North",
  137. "room": "SiebelEastHallway",
  138. "enabled": "false"
  139. }
  140. ]
  141. },
  142. {
  143. "name": "SiebelBasement",
  144. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  145. "directions": [
  146. {
  147. "directionName": "Up",
  148. "room": "SiebelEastHallway",
  149. "enabled": "false"
  150. }
  151. ]
  152. }
  153. ]
  154. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement