Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.71 KB | None | 0 0
  1. {
  2. "startingRoom": "King Cross Station",
  3. "endingRoom": "Azkaban",
  4. "rooms": [
  5. {
  6. "name": "King Cross Station",
  7. "description": "You are at the King Cross Station, trying to find where Platform 9 3/4 is",
  8. "items": ["Hedwig"],
  9. "directions": [
  10. {
  11. "directionName": "Forward",
  12. "room": "Platform 9 3/4"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "Platform 9 3/4",
  18. "description": "You ran through the brick wall and get on to Hogwarts Express at Platform 9 3/4.",
  19. "items": ["trolley"],
  20. "directions": [
  21. {
  22. "directionName": "East",
  23. "room": "Hagrid's Hut"
  24. },
  25. {
  26. "directionName": "North",
  27. "room": "Hogwarts"
  28. },
  29. {
  30. "directionName": "Backward",
  31. "room": "King Cross Station"
  32. }
  33. ]
  34. },
  35. {
  36. "name": "Hagrid's Hut",
  37. "description": "You are at Hagrid's Hut, Rubeus Hagrid's home. He welcomed you with a cup of coffee.",
  38. "items": ["Time Turners"],
  39. "directions": [
  40. {
  41. "directionName": "East",
  42. "room": "Forbidden Forest"
  43. }, {
  44. "directionName": "West",
  45. "room": "Platform 9 3/4"
  46. }
  47. ]
  48. },
  49. {
  50. "name": "Forbidden Forest",
  51. "description": "You enter the Forbidden Forest, a place where secrets and dark creatures hide. It's dangerous in here! GO BACK!!",
  52. "items": ["The Elder Wand"],
  53. "directions": [
  54. {
  55. "directionName": "East",
  56. "room": "Sea"
  57. },
  58. {
  59. "directionName": "West",
  60. "room": "Hagrid's Hut"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "Sea",
  66. "description": "Somehow you got out of the Forbidden Forest, and you can now see the sea.",
  67. "items": [],
  68. "directions": [
  69. {
  70. "directionName": "West",
  71. "room": "Forbidden Forest"
  72. },
  73. {
  74. "directionName": "North",
  75. "room": "Azkaban"
  76. }
  77. ]
  78. },
  79. {
  80. "name": "Azkaban",
  81. "description": "You are at Azkaban. You get a whole life sentence...Unless, you can escape like Sirius Black did...But is there a way to escape if I end the program here?:))",
  82. "items": ["Sirius Black's wand"],
  83. "directions": [
  84. {
  85. "directionName": "South",
  86. "room": "Sea"
  87. }
  88. ]
  89. },
  90. {
  91. "name": "Hogwarts",
  92. "description": "You are at Hogwarts School of Witchcraft and Wizardry. Ready to learn some magic?",
  93. "items": ["Philosopher’s Stone"],
  94. "directions": [
  95. {
  96. "directionName": "In",
  97. "room": "Great Hall"
  98. },
  99. {
  100. "directionName": "Forward",
  101. "room": "Staircase"
  102. },
  103. {
  104. "directionName": "South",
  105. "room": "Platform 9 3/4"
  106. },
  107. {
  108. "directionName": "Down",
  109. "room": "Snape's Office"
  110. }
  111. ]
  112. },
  113. {
  114. "name": "Great Hall",
  115. "description": "You are at the Great Hall, getting ready for the Sorting Ceremony.",
  116. "items": ["Broomstick", "Sorting Hat"],
  117. "directions": [
  118. {
  119. "directionName": "Out",
  120. "room": "Hogwarts"
  121. },
  122. {
  123. "directionName": "Left",
  124. "room": "Slytherin House"
  125. }
  126. ]
  127. },
  128. {
  129. "name": "Slytherin House",
  130. "description": "You are in the Slytherin House. You see students working on Magic 126 homework.",
  131. "items": ["The Monster Book of Monsters"],
  132. "directions": [
  133. {
  134. "directionName": "Right",
  135. "room": "Great Hall"
  136. }
  137. ]
  138. },
  139. {
  140. "name": "Staircase",
  141. "description": "You are at the staircase. Wait! You! Are you stalking people using The Marauder's Map?",
  142. "items": ["The Marauder's Map"],
  143. "directions": [
  144. {
  145. "directionName": "Backward",
  146. "room": "Hogwarts"
  147. },
  148. {
  149. "directionName": "Up",
  150. "room": "Dumbledore's Office"
  151. },
  152. {
  153. "directionName": "Left",
  154. "room": "Moaning Myrtle's Bathroom"
  155. },
  156. {
  157. "directionName": "Right",
  158. "room": "Harry's Dorm"
  159. }
  160. ]
  161. },
  162. {
  163. "name": "Dumbledore's Office",
  164. "description": "You are at Dumbledore's Office. It's a large and beautiful circular room.",
  165. "items": ["The Pensieve"],
  166. "directions": [
  167. {
  168. "directionName": "Down",
  169. "room": "Staircase"
  170. }
  171. ]
  172. },
  173. {
  174. "name": "Harry's Dorm",
  175. "description": "You are in Gryffindor Boys' Dormitory, which is also Harry's Dorm. You put on The Invisibility Cloak, now people can't see you:)",
  176. "items": ["The Invisibility Cloak"],
  177. "directions": [
  178. {
  179. "directionName": "Left",
  180. "room": "Staircase"
  181. }
  182. ]
  183. },
  184. {
  185. "name": "Moaning Myrtle's Bathroom",
  186. "description": "You are in the Moaning Myrtle's Bathroom. You can hear someone sobbing in the bathroom.",
  187. "items": [],
  188. "directions": [
  189. {
  190. "directionName": "Right",
  191. "room": "Staircase"
  192. },
  193. {
  194. "directionName": "Down",
  195. "room": "Chamber of Secrets"
  196. }
  197. ]
  198. },
  199. {
  200. "name": "Chamber of Secrets",
  201. "description": "You opened the Chamber of Secrets. There lives an ancient Basilisk. Be careful, don't die!",
  202. "items": ["Wizard's Chess"],
  203. "directions": [
  204. {
  205. "directionName": "Up",
  206. "room": "Moaning Myrtle's Bathroom"
  207. }
  208. ]
  209. }
  210. ]
  211. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement