Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.48 KB | None | 0 0
  1. {
  2. "startingRoom": "Foyer",
  3. "endingRoom": "Outside",
  4. "rooms": [
  5. {
  6. "name": "Foyer",
  7. "description": "You stand in the foyer of Grisbane Manor. The main entrance slams shut. There is a small closet to your left and a portrait gallery ahead.",
  8. "items": ["old coat"],
  9. "directions": [
  10. {
  11. "directionName": "West",
  12. "room": "Closet"
  13. },
  14. {
  15. "directionName": "North",
  16. "room": "Gallery"
  17. }
  18. ]
  19. },
  20. {
  21. "name": "Closet",
  22. "description": "The shelves are dusty and barren. A mouse darts by. You are not alone. The carpet has deteriorated enough to reveal a trap door, but you have a bad feeling about it.",
  23. "items": ["jam", "spiderwebs"],
  24. "directions": [
  25. {
  26. "directionName": "East",
  27. "room": "Foyer"
  28. },
  29. {
  30. "directionName": "Down",
  31. "room": "Cellar"
  32. }
  33. ]
  34. },
  35. {
  36. "name": "Cellar",
  37. "description": "You kick through the rotting trapdoor and fall into the cellar. It reeks of something long dead. ",
  38. "items": ["femur", "wine"],
  39. "directions": [
  40. {
  41. "directionName": "Up",
  42. "room": "Closet"
  43. }
  44. ]
  45. },
  46. {
  47. "name": "Gallery",
  48. "description": "You enter a once decadent portrait gallery. The gold frames have lost their luster and some of the portraits have been torn to ribbons. Ahead you see a dining room, and to your right a hallway shimmers brightly",
  49. "items": ["canvas", "empty goblet"],
  50. "directions": [
  51. {
  52. "directionName": "East",
  53. "room": "HallOfMirrors"
  54. },
  55. {
  56. "directionName": "North",
  57. "room": "DiningRoom"
  58. },
  59. {
  60. "directionName": "South",
  61. "room": "Foyer"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "HallOfMirrors",
  67. "description": "You have entered the manor's famed Hall of Mirrors. .gnidnilb si thgil ehT .ecrof elbisivni na yb til fi sa enihs senap revlis evitcelfer gnol ehT",
  68. "directions": [
  69. {
  70. "directionName": "tsaE",
  71. "room": "RoomOfMirrors"
  72. },
  73. {
  74. "directionName": "tseW",
  75. "room": "Gallery"
  76. }
  77. ]
  78. },
  79. {
  80. "name": "RoomOfMirrors",
  81. "description": "You nearly walk into a mirror blocking the hallway. .illusion an just is it clearly but ,forever on stretch to looks It Did something just move?",
  82. "directions": [
  83. {
  84. "directionName": "tseW",
  85. "room": "HallOfMirrors"
  86. }
  87. ]
  88. },
  89. {
  90. "name": "Dining Room",
  91. "description": "A high table surrounded by six imposing chairs takes up most of the room. You can smell a feast, but nothing is there. A collapsed hallway lies to the left and a small kitchen to the right.",
  92. "directions": [
  93. {
  94. "directionName": "South",
  95. "room": "Gallery"
  96. },
  97. {
  98. "directionName": "East",
  99. "room": "Kitchen"
  100. }
  101. ]
  102. },
  103. {
  104. "name": "Kitchen",
  105. "description": "You enter a rather humble kitchen. Dishes pile high in the sink, fostering a dull rainbow of molds. Part of the wall has collapsed and a staircase is visible. You feel eyes on the back of your head.",
  106. "items": ["dish towel", "carving knife"],
  107. "directions": [
  108. {
  109. "directionName": "Up",
  110. "room": "SiebelEastHallway"
  111. },
  112. {
  113. "directionName": "West",
  114. "room": "DiningRoom"
  115. }
  116. ]
  117. },
  118. {
  119. "name": "MasterBedroom",
  120. "description": "The stairway emerges into a high-ceiling bedroom, complete with a large mattress piled with furs. A skeleton lies just next to the bed. Ahead you can see a nursery, a foul presence giving you a bad feeling. To your left is a hallway.",
  121. "directions": [
  122. {
  123. "directionName": "Down",
  124. "room": "Kitchen"
  125. },
  126. {
  127. "directionName": "West",
  128. "room": "Hallway"
  129. },
  130. {
  131. "directionName": "North",
  132. "room": "Nursery"
  133. }
  134. ]
  135. },
  136. {
  137. "name": "Nursery",
  138. "description": "You walk into the nursery. An intricate wooden crib sits in one corner while a chair rocks in another. You can see your breath. A massive window frames a tree outside.",
  139. "items": ["small blanket", "wooden trinket"],
  140. "directions": [
  141. {
  142. "directionName": "south",
  143. "room": "MasterBedroom"
  144. },
  145. {
  146. "directionName": "Out",
  147. "room": "Tree"
  148. }
  149. ]
  150. },
  151. {
  152. "name": "Tree",
  153. "description": "You throw the rocking chair through the window and leap out into the tree.",
  154. "directions": [
  155. {
  156. "directionName": "West",
  157. "room": "Nursery"
  158. },
  159. {
  160. "directionName": "Down",
  161. "room": "Outside"
  162. }
  163. ]
  164. },
  165. {
  166. "name": "Outside",
  167. "description": "You have found your way out. You take a deep breath of the night air, but can find no relief in the action. You just feel cold.",
  168. "directions": [
  169. {
  170. "directionName": "Up",
  171. "room": "Tree"
  172. },
  173. {
  174. "directionName": "North",
  175. "room": "HiddenRoom"
  176. }
  177. ]
  178. },
  179. {
  180. "name": "Hallway",
  181. "description": "You step into a dark hallway. To your right, a large hole blocks your path. In front of you lies another door. ",
  182. "directions": [
  183. {
  184. "directionName": "West",
  185. "room": "Library"
  186. },
  187. {
  188. "directionName": "East",
  189. "room": "MasterBedroom"
  190. }
  191. ]
  192. },
  193. {
  194. "name": "Library",
  195. "description": "Hundreds of books line the wide shelves of a homey library. An armchair sits next to a raging fireplace. To the north lies a small office.",
  196. "items": ["'Tome for the Recently Deceased'", "fire poker"],
  197. "monster": {
  198. "name": "Fire Sprite",
  199. "description": "A small creature of flame shoots towards you with cunning eyes and a wicked smile.",
  200. "attackDescription": "A piece of the Fire Sprite splits off and slams into you.",
  201. "healthPoints": 30,
  202. "attackStat" : 10,
  203. "isAggro": false
  204. },
  205. "directions": [
  206. {
  207. "directionName": "North",
  208. "room": "Office"
  209. },
  210. {
  211. "directionName": "East",
  212. "room": "Hallway"
  213. }
  214. ]
  215. },
  216. {
  217. "name": "Office",
  218. "description": "The door creaks open, revealing what could be a closet. A desk and oil lamp are crammed against the wall. A bookshelf fill the wall to your west.",
  219. "items": ["Unfinished Letter"],
  220. "directions": [
  221. {
  222. "directionName": "South",
  223. "room": "Library"
  224. },
  225. {
  226. "directionName": "West",
  227. "room": "HiddenRoom"
  228. }
  229. ]
  230. },
  231. {
  232. "name": "HiddenRoom",
  233. "description": "While looking through the books, you hear a click. The bookshelf spins around and plunges you into darkness. The path slopes down, but you can feel a draft. ",
  234. "directions": [
  235. {
  236. "directionName": "Out",
  237. "room": "Outside"
  238. },
  239. {
  240. "directionName": "East",
  241. "room": "Office"
  242. }
  243. ]
  244. }
  245. ]
  246. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement