Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.43 KB | None | 0 0
  1. {
  2. "startingRoom": "Entrance",
  3. "endingRoom": "Attic",
  4. "rooms": [
  5. {
  6. "name": "Entrance",
  7. "description": "You are inside the entrance of the Haunted House. You stop to notice a key on the ground",
  8. "directions": [
  9. {
  10. "directionName" : "North",
  11. "room": "DiningRoom",
  12. "enabled": true,
  13. "validKeyNames": [
  14. ""
  15. ]
  16. },
  17. {
  18. "directionName" : "NorthWest",
  19. "room": "Kitchen",
  20. "enabled": true,
  21. "validKeyNames": [
  22. ""
  23. ]
  24. }
  25. ],
  26. "items": [
  27. {
  28. "name": "key"
  29. }
  30. ],
  31. "monster": false
  32. },
  33. {
  34. "name": "DiningRoom",
  35. "description": "You are now inside the Dining Room and notice a crowbar on the table.",
  36. "directions": [
  37. {
  38. "directionName" : "South",
  39. "room": "EntranceRoom",
  40. "enabled": true,
  41. "validKeyNames": [
  42. ""
  43. ]
  44. },
  45. {
  46. "directionName" : "SouthWest",
  47. "room": "Kitchen",
  48. "enabled": true,
  49. "validKeyNames": [
  50. ""
  51. ]
  52. }
  53. ],
  54. "items": [
  55. {
  56. "name": "crowbar"
  57. }
  58. ],
  59. "monster": false
  60. },
  61. {
  62. "name": "Kitchen",
  63. "description": "You are now inside the Kitchen and realize that a murder has been committed. You see a sword unattended.",
  64. "directions": [
  65. {
  66. "directionName" : "NorthEast",
  67. "room": "DiningRoom",
  68. "enabled": true,
  69. "validKeyNames": [
  70. ""
  71. ]
  72. },
  73. {
  74. "directionName" : "SouthEast",
  75. "room": "Entrance",
  76. "enabled": true,
  77. "validKeyNames": [
  78. ""
  79. ]
  80. },
  81. {
  82. "directionName" : "NorthWest",
  83. "room": "BallRoom",
  84. "enabled": false,
  85. "validKeyNames": [
  86. "key"
  87. ]
  88. },
  89.  
  90. {
  91. "directionName" : "SouthWest",
  92. "room": "LivingRoom",
  93. "enabled": true,
  94. "validKeyNames": [
  95. ""
  96. ]
  97. }
  98. ],
  99. "items": [
  100. {
  101. "name": "sword"
  102. }
  103. ],
  104. "monster": false
  105. },
  106. {
  107. "name": "BallRoom",
  108. "description": "You are now inside the BallRoom and hear screaming nearby. You turn to see an abandoned elevator.",
  109. "directions": [
  110. {
  111. "directionName" : "SouthEast",
  112. "room": "Kitchen",
  113. "enabled": true,
  114. "validKeyNames": [
  115. ""
  116. ]
  117. },
  118. {
  119. "directionName" : "South",
  120. "room": "LivingRoom",
  121. "enabled": true,
  122. "validKeyNames": [
  123. ""
  124. ]
  125. },
  126. {
  127. "directionName" : "Up",
  128. "room": "Office",
  129. "enabled": false,
  130. "validKeyNames": [
  131. "cardkey"
  132. ]
  133. }
  134. ],
  135. "items": [
  136. {
  137. "name": ""
  138. }
  139. ],
  140. "monster": false
  141. },
  142. {
  143. "name": "LivingRoom",
  144. "description": "You walk into the Living Room and see a monster. You realize you need to defend yourself fast.",
  145. "directions": [
  146. {
  147. "directionName" : "North",
  148. "room": "BallRoom",
  149. "enabled": false,
  150. "validKeyNames": [
  151. "key"
  152. ]
  153. },
  154. {
  155. "directionName" : "NorthEast",
  156. "room": "Kitchen",
  157. "enabled": true,
  158. "validKeyNames": [
  159. ""
  160. ]
  161. }
  162. ],
  163. "items": [
  164. {
  165. "name": "cardkey"
  166. }
  167. ],
  168. "monster": true
  169. },
  170. {
  171. "name": "Office",
  172. "description": "You are now in the Office and start looking for clues. You happen to find a piece of paper with a mysterious saying and a flashlight.",
  173. "directions": [
  174. {
  175. "directionName" : "Down",
  176. "room": "BallRoom",
  177. "enabled": false,
  178. "validKeyNames": [
  179. "cardkey"
  180. ]
  181. },
  182. {
  183. "directionName" : "East",
  184. "room": "Bedroom",
  185. "enabled": false,
  186. "validKeyNames": [
  187. "key"
  188. ]
  189. }
  190. ],
  191. "items": [
  192. {
  193. "name": "flashlight"
  194. }
  195. ],
  196. "monster": false
  197. },
  198. {
  199. "name": "Bedroom",
  200. "description": "Inside the Bedroom, you look up and see a small handle but cannot make out what the words next to it say. You also notice a small door falling apart to your left.",
  201. "directions": [
  202. {
  203. "directionName" : "Up",
  204. "room": "Attic",
  205. "enabled": false,
  206. "validKeyNames": [
  207. "flashlight"
  208. ]
  209. },
  210. {
  211. "directionName" : "South",
  212. "room": "Bathroom",
  213. "enabled": false,
  214. "validKeyNames": [
  215. "crowbar"
  216. ]
  217. },
  218. {
  219. "directionName" : "West",
  220. "room": "Office",
  221. "enabled": true,
  222. "validKeyNames": [
  223. ""
  224. ]
  225. }
  226. ],
  227. "items": [
  228. {
  229. "name": ""
  230. }
  231. ],
  232. "monster": false
  233. },
  234. {
  235. "name": "Bathroom",
  236. "description": "You pry the door of the bathroom open only to find another monster. You need to defend yourself.",
  237. "directions": [
  238. {
  239. "directionName" : "East",
  240. "room": "Bedroom",
  241. "enabled": true,
  242. "validKeyNames": [
  243. ""
  244. ]
  245. }
  246. ],
  247. "items": [
  248. {
  249. "name": ""
  250. }
  251. ],
  252. "monster": true
  253. },
  254. {
  255. "name": "Attic",
  256. "description": "You managed to make your way up to the attic only to find the murder! You know that the only way to leave is to defeat him.",
  257. "directions": [
  258. {
  259. "directionName" : "Down",
  260. "room": "Bedroom",
  261. "enabled": true,
  262. "validKeyNames": [
  263. ""
  264. ]
  265. }
  266. ],
  267. "items": [
  268. {
  269. "name": ""
  270. }
  271. ],
  272. "monster": true
  273. }
  274. ],
  275. "player" : {
  276. "items" : [
  277. {
  278. "name": ""
  279. }
  280. ],
  281. "health" : 100
  282. }
  283. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement