Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.20 KB | None | 0 0
  1. {
  2. "startingRoom": "Your Cell",
  3. "endingRoom": "The Getaway Car",
  4. "player": {
  5. "items": []
  6. },
  7. "rooms": [
  8. {
  9. "name": "Your Cell",
  10. "description": "You're currently inside of your cell.",
  11. "directions": [
  12. {
  13. "directionName": "forward",
  14. "room": "The Cell Block",
  15. "enabled": "true",
  16. "validKeyNames": []
  17. }
  18. ],
  19. "items": []
  20. },
  21. {
  22. "name": "The Cell Block",
  23. "description": "You're standing outside of all of the prison cells. The other inmates are asleep, so they don't notice you.",
  24. "directions": [
  25. {
  26. "directionName": "forward",
  27. "room": "The Main Hallway",
  28. "enabled": "true",
  29. "validKeyNames": []
  30. },
  31. {
  32. "directionName": "back",
  33. "room": "Your Cell",
  34. "enabled": "true",
  35. "validKeyNames": []
  36. }
  37. ],
  38. "items": []
  39. },
  40. {
  41. "name": "The Main Hallway",
  42. "description": "You're in the main hallway. The air is cold and there is a noticeable draft.",
  43. "directions": [
  44. {
  45. "directionName": "left",
  46. "room": "The Mess Hall",
  47. "enabled": "true",
  48. "validKeyNames": []
  49. },
  50. {
  51. "directionName": "right",
  52. "room": "The Yard",
  53. "enabled": "true",
  54. "validKeyNames": []
  55. },
  56. {
  57. "directionName": "forward",
  58. "room": "The Warden's Office",
  59. "enabled": "true",
  60. "validKeyNames": []
  61. },
  62. {
  63. "directionName": "down",
  64. "room": "The Exit",
  65. "enabled": "true",
  66. "validKeyNames": []
  67. }
  68. ],
  69. "items": []
  70. },
  71. {
  72. "name": "The Mess Hall",
  73. "description": "You're in the mess hall. There are tables lined up against the walls. It's much quieter at nighttime. You notice a wire cutter on one of the tables and decide to pick it up. It could be useful for later.",
  74. "directions": [
  75. {
  76. "directionName": "back",
  77. "room": "The Main Hallway",
  78. "enabled": "true",
  79. "validKeyNames": []
  80. }
  81. ],
  82. "items": [
  83. {
  84. "name": "A Wirecutter"
  85. }
  86. ]
  87. },
  88. {
  89. "name": "The Yard",
  90. "description": "You're outside in the yard. There are barbells and other weights in the far corner, and a basketball hoop serves as the centerpiece of the area.",
  91. "directions": [
  92. {
  93. "directionName": "back",
  94. "room": "The Main Hallway",
  95. "enabled": "true",
  96. "validKeyNames": []
  97. },
  98. {
  99. "directionName": "forward",
  100. "room": "The Fence",
  101. "enabled": "true",
  102. "validKeyNames": []
  103. }
  104. ],
  105. "items": []
  106. },
  107. {
  108. "name": "The Fence",
  109. "description": "You've arrived at the outermost fence. You can see your getaway car from here! If only there was some way to reach it...",
  110. "directions": [
  111. {
  112. "directionName": "back",
  113. "room": "The Yard",
  114. "enabled": "true",
  115. "validKeyNames": []
  116. },
  117. {
  118. "directionName": "forward",
  119. "room": "The Getaway Car",
  120. "enabled": "false",
  121. "validKeyNames": [
  122. "A Wire Cutter"
  123. ]
  124. }
  125. ],
  126. "items": []
  127. },
  128. {
  129. "name": "The Warden's Office",
  130. "description": "You're in the Warden's Office. Even though she's not here, you're still nervous at the prospect of her finding you in here.",
  131. "directions": [
  132. {
  133. "directionName": "back",
  134. "room": "The Main Hallway",
  135. "enabled": "true",
  136. "validKeyNames": []
  137. },
  138. {
  139. "directionName": "forward",
  140. "room": "The Security Room",
  141. "enabled": "true",
  142. "validKeyNames": []
  143. }
  144. ],
  145. "items": []
  146. },
  147. {
  148. "name": "The Security Room",
  149. "description": "You're finally in the Security Room. Now that the lock on the Exit is disabled, go and make your way out of here!",
  150. "directions": [
  151. {
  152. "directionName": "back",
  153. "room": "The Warden's Office",
  154. "enabled": "true",
  155. "validKeyNames": []
  156. }
  157. ],
  158. "items": [
  159. {
  160. "name": "Exit Keys"
  161. }
  162. ]
  163. },
  164. {
  165. "name": "The Exit",
  166. "description": "You're at the Exit. Your escape awaits. If the door is unlocked, you may proceed.",
  167. "directions": [
  168. {
  169. "directionName": "back",
  170. "room": "The Main Hallway",
  171. "enabled": "true",
  172. "validKeyNames": []
  173. },
  174. {
  175. "directionName": "forward",
  176. "room": "The Getaway Car",
  177. "enabled": "false",
  178. "validKeyNames": [
  179. "Exit Keys"
  180. ]
  181. }
  182. ],
  183. "items": []
  184. },
  185. {
  186. "name": "The Getaway Car",
  187. "description": "Success! You've arrived at your getaway car. Your freedom is now your own.",
  188. "directions": [],
  189. "items": []
  190. }
  191. ]
  192. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement