Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.76 KB | None | 0 0
  1. {
  2. "startingRoom": "Dungeon",
  3. "endingRoom": "Tower",
  4. "player":
  5. {
  6. "health": 100,
  7. "attack": 10,
  8. "items": [
  9. {
  10. "name": "RedKey"
  11. }
  12. ]
  13. },
  14. "rooms": [
  15. {
  16. "name": "Dungeon",
  17. "description": "You are in the cold and damp dungeons of Castle Rose. All you can see is a dark hallway.",
  18. "directions": [
  19. {
  20. "directionName": "North",
  21. "room": "NorthHallway",
  22. "enabled": "true",
  23. "validKeyNames": []
  24. }
  25. ],
  26. "items": [
  27. {
  28. "name": "GreenKey"
  29. },
  30. {
  31. "name": "BirdFood"
  32. }
  33. ],
  34. "monster": {}
  35. },
  36. {
  37. "name": "NorthHallway",
  38. "description": "You are in North Hallway. The ravens keep attacking you! But you can see the Treasure Room ahead, it's so close!",
  39. "directions": [
  40. {
  41. "directionName": "North",
  42. "room": "TreasureRoom",
  43. "enabled": "true",
  44. "validKeyNames": []
  45. }
  46. ],
  47. "items": [
  48. {
  49. "name": "RedKey"
  50. },
  51. {
  52. "name": "Butter"
  53. }
  54. ],
  55. "monster":
  56. {
  57. "name": "Ravens",
  58. "health": 10,
  59. "attack": 5
  60. }
  61. },
  62. {
  63. "name": "TreasureRoom",
  64. "description": "You are in the Treasure Room. There are mountains of gold coins and jewels. You can see the Great Hall.",
  65. "directions": [
  66. {
  67. "directionName": "East",
  68. "room": "GreatHall",
  69. "enabled": "true",
  70. "validKeyNames": []
  71. }
  72. ],
  73. "items": [
  74. {
  75. "name": "Potion"
  76. },
  77. {
  78. "name": "BlackKey"
  79. }
  80. ],
  81. "monster": {}
  82. },
  83. {
  84. "name": "GreatHall",
  85. "description": "You are in the Great Hall. You can see the Kitchen, Throne Room and Aurora's Bedroom, but there's a Dragon in the way!",
  86. "directions": [
  87. {
  88. "directionName": "North",
  89. "room": "Kitchen",
  90. "enabled": "false",
  91. "validKeyNames": [
  92. "BlackKey",
  93. "Butter"
  94. ]
  95. },
  96. {
  97. "directionName": "East",
  98. "room": "AurorasBedroom",
  99. "enabled": "false",
  100. "validKeyNames": [
  101. "RedKey"
  102. ]
  103. },
  104. {
  105. "directionName": "South",
  106. "room": "ThroneRoom",
  107. "enabled": "true",
  108. "validKeyNames": []
  109. },
  110. {
  111. "directionName": "West",
  112. "room": "TreasureRoom",
  113. "enabled": "true",
  114. "validKeyNames": []
  115. }
  116. ],
  117. "items": [
  118. {
  119. "name": "SwordOfTruth"
  120. },
  121. {
  122. "name": "BlueKey"
  123. }
  124. ],
  125. "monster":
  126. {
  127. "name": "Dragon",
  128. "health": 25,
  129. "attack": 10
  130. }
  131. },
  132. {
  133. "name": "Kitchen",
  134. "description": "You are in the Kitchen. You can see servants working, and the Buttery.",
  135. "directions": [
  136. {
  137. "directionName": "East",
  138. "room": "Buttery",
  139. "enabled": "true",
  140. "validKeyNames": []
  141. }
  142. ],
  143. "items": [
  144. {
  145. "name": "Potion"
  146. }
  147. ]
  148. },
  149. {
  150. "name": "Buttery",
  151. "description": "You are in the Buttery. You see a lot of stale food and wine.",
  152. "directions": [
  153. {
  154. "directionName": "West",
  155. "room": "Kitchen",
  156. "enabled": "true",
  157. "validKeyNames": []
  158. }
  159. ],
  160. "items": [],
  161. "monster": {}
  162. },
  163. {
  164. "name": "AurorasBedroom",
  165. "description": "You are in Aurora's Bedroom. There's no one here. You can see a hidden Stairwell.",
  166. "directions": [
  167. {
  168. "directionName": "East",
  169. "room": "Stairwell",
  170. "enabled": "false",
  171. "validKeyNames": [
  172. "GreenKey"
  173. ]
  174. },
  175. {
  176. "directionName": "West",
  177. "room": "GreatHall",
  178. "enabled": "true",
  179. "validKeyNames": []
  180. }
  181. ],
  182. "items": [],
  183. "monster": {}
  184. },
  185. {
  186. "name": "ThroneRoom",
  187. "description": "You are in the Throne Room. The King and Queen aren't on the thrones; the chairs are covered in thorns.",
  188. "directions": [
  189. {
  190. "directionName": "North",
  191. "room": "GreatHall",
  192. "enabled": "true",
  193. "validKeyNames": []
  194. }
  195. ],
  196. "items": [
  197. {
  198. "name": "GreenKey"
  199. }
  200. ],
  201. "monster":
  202. {
  203. "name": "thorns",
  204. "health": 10,
  205. "attack": 5
  206. }
  207. },
  208. {
  209. "name": "Stairwell",
  210. "description": "You are in the stairwell. But wait! Maleficent is here!",
  211. "directions": [
  212. {
  213. "directionName": "Up",
  214. "room": "Tower",
  215. "enabled": "true",
  216. "validKeyNames": []
  217. },
  218. {
  219. "directionName": "West",
  220. "room": "AurorasBedroom",
  221. "enabled": "false",
  222. "validKeyNames": [
  223. "GreenKey"
  224. ]
  225. }
  226. ],
  227. "items": [],
  228. "monster":
  229. {
  230. "name": "Maleficent",
  231. "health": 40,
  232. "attack": 20
  233. }
  234. },
  235. {
  236. "name": "Tower",
  237. "description": "You have reached the Tower! You have saved Princess Aurora!",
  238. "directions": [
  239. {
  240. "directionName": "Down",
  241. "room": "Stairwell",
  242. "enabled": "true",
  243. "validKeyNames": []
  244. }
  245. ],
  246. "items": [
  247. {
  248. "name": "TrueLovesKiss"
  249. }
  250. ],
  251. "monster": {}
  252. }
  253. ]
  254. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement