Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.15 KB | None | 0 0
  1. {
  2. "startingRoom" : "Lobby",
  3. "endingRoom": "Computer",
  4. "rooms": [
  5. {
  6. "name": "Lobby",
  7. "description": "You've entered the Lobby of the hotel.",
  8. "directions": [
  9. {
  10. "directionName": "North",
  11. "room": "Sitting Area",
  12. "enabled": true
  13. },
  14. {
  15. "directionName": "East",
  16. "room": "Manager's Office",
  17. "enabled": true
  18. },
  19. {
  20. "directionName": "South",
  21. "room": "Maintenance Room",
  22. "enabled": false,
  23. "validKey": "Maintenance Key"
  24. },
  25. {
  26. "directionName": "West",
  27. "room": "Elevator",
  28. "enabled": true
  29. }
  30. ],
  31. "items": ["Candy"]
  32. },
  33. {
  34. "name": "Sitting Area",
  35. "description": "You've entered the Sitting Area with several chairs.",
  36. "directions": [
  37. {
  38. "directionName": "South",
  39. "room": "Lobby",
  40. "enabled": true
  41. }
  42. ],
  43. "items": ["Magazine"]
  44. },
  45. {
  46. "name": "Manager's Office",
  47. "description": "You've entered the Manager's Office.",
  48. "directions": [
  49. {
  50. "directionName": "West",
  51. "room": "Lobby",
  52. "enabled": true
  53. }
  54. ],
  55. "monster" : "Huge Spider",
  56. "items": ["Maintenance Key", "Garlic Bread", "Water Bottle"]
  57. },
  58. {
  59. "name": "Maintenance Room",
  60. "description": "You've entered the Maintenance Room.",
  61. "directions": [
  62. {
  63. "directionName": "North",
  64. "room": "Lobby",
  65. "enabled": true
  66. }
  67. ],
  68. "monster" : "Vampire",
  69. "items": ["Arcade Key"]
  70. },
  71. {
  72. "name": "Elevator",
  73. "description": "You've entered the Elevator. There is nothing of note in it.",
  74. "directions": [
  75. {
  76. "directionName": "First Floor",
  77. "room": "Lobby",
  78. "enabled": true
  79. },
  80. {
  81. "directionName": "Second Floor",
  82. "room": "Rec Room",
  83. "enabled": true
  84. },
  85. {
  86. "directionName": "Third Floor",
  87. "room": "Computer Room",
  88. "enabled": false,
  89. "validKey": "Note"
  90. }
  91. ]
  92. },
  93. {
  94. "name": "Rec Room",
  95. "description": "You've entered the Rec Room that has several game tables and chairs.",
  96. "directions": [
  97. {
  98. "directionName": "East",
  99. "room": "Arcade",
  100. "enabled": false,
  101. "validKey": "Arcade Key"
  102. },
  103. {
  104. "directionName": "West",
  105. "room": "Elevator",
  106. "enabled": true
  107. }
  108. ],
  109. "monster": "Zombie",
  110. "items": ["Coins"]
  111. },
  112. {
  113. "name": "Arcade",
  114. "description": "You've entered the arcade. There are several machines but only one of them is on.",
  115. "directions": [
  116. {
  117. "name": "To the video game",
  118. "room": "Video Game",
  119. "enabled": false,
  120. "validKey": "Coins"
  121. },
  122. {
  123. "name": "West",
  124. "room": "Rec Room",
  125. "enabled": true
  126. }
  127. ],
  128. "monster": "Kid"
  129. },
  130. {
  131. "name": "Video Game",
  132. "description": "You play the Video Game for about 10 minutes until you win the game. Then something falls out of the machine.",
  133. "directions": [
  134. {
  135. "name": "Back to the Arcade",
  136. "room": "Arcade",
  137. "enabled": true
  138. }
  139. ],
  140. "items" : ["Note"]
  141. },
  142. {
  143. "name": "Computer Room",
  144. "description": "You find a room full of computers and finally feel at home.",
  145. "directions": [
  146. {
  147. "name": "West",
  148. "room": "Elevator",
  149. "enabled": true
  150. },
  151. {
  152. "name": "To a computer",
  153. "room": "Computer",
  154. "enabled": false,
  155. "validKey": "Note"
  156. }
  157. ]
  158. },
  159. {
  160. "name": "Computer",
  161. "description": "You are finally able to do what you do best, use a computer.",
  162. "directions": [
  163. {
  164. "name": "Back to the computer room",
  165. "room": "Computer Room",
  166. "enabled": true
  167. }
  168. ]
  169. }
  170. ],
  171. "player": {
  172. },
  173. "monsters": [
  174. {
  175. "name": "Huge Spider",
  176. "weakness": "Magazine",
  177. "description": "A Huge Spider has taken up residence in here."
  178. },
  179. {
  180. "name": "Kid",
  181. "weakness": "Candy",
  182. "description": "However, there is a kid standing between you and the video game."
  183. },
  184. {
  185. "name": "Zombie",
  186. "weakness": "Water Bottle",
  187. "description": "You are immediately attacked by a Zombie."
  188. },
  189. {
  190. "name": "Vampire",
  191. "weakness": "Garlic Bread",
  192. "description": "But as soon as you enter, you notice a vampire in the middle of the room, crouched over something."
  193. }
  194. ],
  195. "items": [
  196. {
  197. "name": "Candy",
  198. "monster": "Kid",
  199. "description": "You notice some candy on the table in the middle of the room."
  200. },
  201. {
  202. "name": "Magazine",
  203. "monster": "Huge Spider",
  204. "description": "A colorful magazine on one of the seats catches your eye."
  205. },
  206. {
  207. "name": "Maintenance Key",
  208. "room": "Maintenance Room",
  209. "description": "There is a very organized desk. You open all of the drawers and you find a single key."
  210. },
  211. {
  212. "name": "Garlic Bread",
  213. "monster": "Vampire",
  214. "description": "You also notice a fridge that, upon further inspection, contains a piece of garlic bread."
  215. },
  216. {
  217. "name": "Water Bottle",
  218. "monster": "Zombie",
  219. "description": "Also on the desk is a sealed water bottle."
  220. },
  221. {
  222. "name": "Arcade Key",
  223. "room": "Arcade",
  224. "description": "You notice a key on the floor."
  225. },
  226. {
  227. "name": "Coins",
  228. "room": "Video Game",
  229. "description": "You notice some coins on one of the tables."
  230. },
  231. {
  232. "name": "Note",
  233. "room": "Computer",
  234. "description": "On the note is a long string of seemingly random numbers and letters."
  235. }
  236. ]
  237. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement