Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.59 KB | None | 0 0
  1. {
  2. "startingRoom":"PrisonCell",
  3. "endingRoom":"ExitPath",
  4. "player":{
  5. "items":[]
  6. },
  7. "rooms":[
  8. {
  9. "name":"PrisonCell",
  10. "description":"You are locked in a prison cell, outside the Siebel Center",
  11. "items":[
  12. {"name": "key"}
  13. ],
  14. "directions":[
  15. {
  16. "directionName":"East",
  17. "room":"PrisonHallway",
  18. "enabled":"true"
  19. }
  20. ]
  21. },
  22. {
  23. "name":"PrisonHallway",
  24. "description":"You are in the west entry of the prison. You can see the Prison cell, the Prison office, and hallways to the north and east.",
  25. "items":[
  26. {"name": "key"}
  27. ],
  28. "directions":[
  29. {
  30. "directionName":"West",
  31. "room":"PrisonCell",
  32. "enabled":"true"
  33. },
  34. {
  35. "directionName":"Northeast",
  36. "room":"PrisonOffice",
  37. "enabled":"false",
  38. "validKeyNames":[
  39. "key",
  40. "bar"
  41. ]
  42. },
  43. {
  44. "directionName":"North",
  45. "room":"PrisonNorthHallway",
  46. "enabled":"true"
  47. },
  48. {
  49. "directionName":"East",
  50. "room":"PrisonEastHallway",
  51. "enabled":"true"
  52. }
  53. ]
  54. },
  55. {
  56. "name":"PrisonOffice",
  57. "description":"You are in the prison office. There is a shattered window.",
  58. "items":[
  59. {"name": "bar"}
  60. ],
  61. "directions":[
  62. {
  63. "directionName":"South",
  64. "room":"MessHall",
  65. "enabled":"true"
  66. }
  67. ]
  68. },
  69. {
  70. "name":"MessHall",
  71. "description":"You are in the mess hall. There are utensils lying around.",
  72. "items":[
  73. {"name": "knife"}
  74. ],
  75. "directions":[
  76. {
  77. "directionName":"North",
  78. "room":"PrisonOffice",
  79. "enabled": "true"
  80. },
  81. {
  82. "directionName":"Northeast",
  83. "room":"PrisonEastHallway",
  84. "enabled": "true"
  85. }
  86. ]
  87. },
  88. {
  89. "name":"NorthHallway",
  90. "description":"You are in the north hallway. You can see Armory and the door toward NCSA.",
  91. "items":[
  92. {"name": "rod"}
  93. ],
  94. "directions":[
  95. {
  96. "directionName":"South",
  97. "room":"MessHall",
  98. "enabled":"true"
  99. },
  100. {
  101. "directionName":"NorthEast",
  102. "room":"Armory",
  103. "enabled":"true"
  104. }
  105. ]
  106. },
  107. {
  108. "name":"Armory",
  109. "description":"You are in Armory. There is space for two code reviews in this room.",
  110. "items":[
  111. {"name": "gun"}
  112. ],
  113. "directions":[
  114. {
  115. "directionName":"West",
  116. "room":"NorthHallway",
  117. "enabled":"true"
  118. }
  119. ]
  120. },
  121. {
  122. "name":"PrisonEastHallway",
  123. "description":"You are in the east hallway. You can see the mess hall, a dark room, and a stairway.",
  124. "items":[
  125. {"name": "piston"}
  126. ],
  127. "directions":[
  128. {
  129. "directionName":"SouthWest",
  130. "room":"MessHall",
  131. "enabled":"true"
  132. },
  133. {
  134. "directionName":"South",
  135. "room":"ExitPath",
  136. "enabled":"true"
  137. },
  138. {
  139. "directionName":"Down",
  140. "room":"SolitaryConfinement",
  141. "enabled":"true"
  142. }
  143. ]
  144. },
  145. {
  146. "name":"ExitPath",
  147. "description":"You are at the exit. There are happy CS 126 students doing a code review.",
  148. "police": {
  149. "policeName":"Warden"
  150. },
  151. "directions":[
  152. {
  153. "directionName":"North",
  154. "room":"PrisonEastHallway",
  155. "enabled":"true"
  156. }
  157. ]
  158. },
  159. {
  160. "name":"SolitaryConfinement",
  161. "description":"You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  162. "items":[
  163. {"name":"wand"}
  164. ],
  165. "directions":[
  166. {
  167. "directionName":"Up",
  168. "room":"PrisonEastHallway",
  169. "enabled":"true"
  170. },
  171. {
  172. "directionName":"Down",
  173. "room":"Hospital",
  174. "enabled":"true"
  175. }
  176. ]
  177. },
  178. {
  179. "name":"Hospital",
  180. "description":"You are now in the hospital. There seems to be a syringe on the floor.",
  181. "items":[
  182. {"name": "syringe"}
  183. ],
  184. "directions":[
  185. {
  186. "directionName":"Up",
  187. "room":"SolitaryConfinement",
  188. "enabled":"true"
  189. }
  190. ]
  191. }
  192. ]
  193. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement