Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.12 KB | None | 0 0
  1. {
  2. "startingRoom": "Dungeon Entrance",
  3. "endingRoom": "Siebel 1314",
  4. "rooms": [
  5. {
  6. "name" : "Dungeon Entrance",
  7. "description" : "You stand in a dank dungeon, your memory hazy. Before you is a great green door.",
  8. "directions" : [
  9. {
  10. "directionName" : "North",
  11. "room" : "Cave Tunnel"
  12. },
  13. {
  14. "directionName" : "East",
  15. "room" : "Cell Block"
  16. },
  17. {
  18. "directionName" : "West",
  19. "room" : "Mess Hall"
  20. }
  21. ]
  22. },
  23. {
  24. "name" : "Cell Block",
  25. "description" : "You enter a hallway lined with jail cells. Curled up in one of the many cells is an old woman. She looks like she hasn't been fed in days.",
  26. "directions" : [
  27. {
  28. "directionName" : "West",
  29. "room" : "Dungeon Entrance"
  30. }
  31. ]
  32. },
  33. {
  34. "name" : "Mess Hall",
  35. "description" : "The dungeon brightens a bit. A long table is lined with chairs. It looks like you've stumbled into a commons area of some kind.",
  36. "items" : ["cheese"],
  37. "directions" : [
  38. {
  39. "directionName" : "East",
  40. "room" : "Dungeon Entrance"
  41. }
  42. ]
  43. },
  44. {
  45. "name" : "Cave Tunnel",
  46. "description" : "The dungeon opens up into a cave. Stalagmites rise off of the floor beyond the green door. \nA large, grey troll stands before one of the tunnel's few pathways. To the east there seems to be a tower of some kind.",
  47. "items" : ["torch"],
  48. "directions" : [
  49. {
  50. "directionName" : "South",
  51. "room" : "Dungeon Entrance"
  52. },
  53. {
  54. "directionName" : "West",
  55. "room" : "Treasure Room"
  56. },
  57. {
  58. "directionName": "North",
  59. "room" : "Troll Pit"
  60. },
  61. {
  62. "directionName" : "East",
  63. "room" : "Spiral Stairs"
  64. }
  65. ]
  66. },
  67. {
  68. "name" : "Treasure Room",
  69. "description" : "You enter a room filled with treasure. Gold coins and gemstones sparkle before your eyes.",
  70. "items" : ["blue key", "treasure chest"],
  71. "directions" : [
  72. {
  73. "directionName" : "East",
  74. "room" : "Cave Tunnel"
  75. }
  76. ]
  77. },
  78. {
  79. "name" : "Troll Pit",
  80. "description" : "The room is hot and humid, and the stench is awful. The skeletons covering the floor lead you to believe this is where the troll lives.",
  81. "items" : ["skull", "red key"],
  82. "directions" : [
  83. {
  84. "directionName" : "South",
  85. "room" : "Cave Tunnel"
  86. }
  87. ]
  88. },
  89. {
  90. "name" : "Spiral Stairs",
  91. "description" : "Upon entering the tower, you are intrigued to see stairs spiralling above you. Atop the stairs sits a mystical red door, which almost looks to be shimmering.",
  92. "directions" : [
  93. {
  94. "directionName" : "Up",
  95. "room" : "Matthews Street"
  96. },
  97. {
  98. "directionName" : "West",
  99. "room" : "Cave Tunnel"
  100. }
  101. ]
  102. },
  103. {
  104. "name": "Matthews Street",
  105. "description": "The red door you came through is nowhere to be seen. You look around and realize... You're on Matthews Street? \nThe Siebel Center stands before you, but it looks abandoned. This place has certainly seen better days...",
  106. "directions": [
  107. {
  108. "directionName": "East",
  109. "room": "Siebel Entry"
  110. }
  111. ]
  112. },
  113. {
  114. "name": "Siebel Entry",
  115. "description": "You are in the west entry of Siebel Center. The air seems... dry. A sense of foreboding fills your chest. What happened here?!",
  116. "items": ["sweatshirt", "debris"],
  117. "directions": [
  118. {
  119. "directionName": "West",
  120. "room": "Matthews Street"
  121. },
  122. {
  123. "directionName": "Northeast",
  124. "room": "Acm Office"
  125. },
  126. {
  127. "directionName": "North",
  128. "room": "Siebel North Hallway"
  129. },
  130. {
  131. "directionName": "East",
  132. "room": "Siebel East Hallway"
  133. }
  134. ]
  135. },
  136. {
  137. "name": "Acm Office",
  138. "description": "The ACM office is abandoned, papers strewn about everywhere. You know something is seriously wrong because people seem to have left their laptops unwatched in the room.",
  139. "items": ["laptop", "swag"],
  140. "directions": [
  141. {
  142. "directionName": "South",
  143. "room": "Siebel Entry"
  144. }
  145. ]
  146. },
  147. {
  148. "name": "Siebel North Hallway",
  149. "description": "You are in the north hallway. You can see what's left of Siebel 1112: the rooms are nothing but rubble. At least you see a friendly face: your code mod greets you.",
  150. "directions": [
  151. {
  152. "directionName": "South",
  153. "room": "Siebel Entry"
  154. }
  155. ]
  156. },
  157. {
  158. "name": "Siebel East Hallway",
  159. "description": "You are in the east hallway. A huge dragon sleeps in a pile of wreckage and gold. At least now you know what happened to this place.",
  160. "items": ["gold piece", "goblet"],
  161. "directions": [
  162. {
  163. "directionName": "West",
  164. "room": "Siebel Entry"
  165. },
  166. {
  167. "directionName": "South",
  168. "room": "Siebel 1314"
  169. },
  170. {
  171. "directionName": "Down",
  172. "room": "Siebel Basement"
  173. }
  174. ]
  175. },
  176. {
  177. "name": "Siebel 1314",
  178. "description": "You are in Siebel 1314. You feel a sense of remorse as you realize you are the only student who could made it to code review today, \nbut, somehow, you feel your quest has been finished.",
  179. "directions": [
  180. {
  181. "directionName": "North",
  182. "room": "Siebel East Hallway"
  183. }
  184. ]
  185. },
  186. {
  187. "name": "Siebel Basement",
  188. "description": "You are in the basement of Siebel. You see Professor Woodley hiding in a corner, looking very unhappy.",
  189. "directions": [
  190. {
  191. "directionName": "Up",
  192. "room": "Siebel East Hallway"
  193. }
  194. ]
  195. }
  196. ]
  197. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement