Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. {
  2. "startingRoom": "Great Hall",
  3. "endingRoom": "Chamber of Secrets",
  4. "rooms": [
  5. {
  6. "name": "Great Hall",
  7. "description": "You are in the Great Hall. Students and teachers typically eat every meal here.",
  8. "directions": [
  9. {
  10. "directionName": "East",
  11. "room": "Gryffindor Common Room",
  12. "enabled": "true",
  13. "validKeyNames": [
  14. "Sorting Hat"
  15. ]
  16. },
  17. {
  18. "directionName": "Southeast",
  19. "room": "Ravenclaw Common Room",
  20. "enabled": "true",
  21. "validKeyNames": [
  22. "Sorting Hat"
  23. ]
  24. },
  25. {
  26. "directionName": "Southwest",
  27. "room": "Hufflepuff Common Room",
  28. "enabled": "true",
  29. "validKeyNames": [
  30. "Sorting Hat"
  31. ]
  32. },
  33. {
  34. "directionName": "West",
  35. "room": "Slytherin Common Room",
  36. "enabled": "true",
  37. "validKeyNames": [
  38. "Sorting Hat"
  39. ]
  40. }
  41. ],
  42. "items": [
  43. {
  44. "name": "Sorting Hat"
  45. }
  46. ]
  47. },
  48. {
  49. "name": "Gryffindor Common Room",
  50. "description": "You are in the Gryffindor Common Room. There are lots of students studying and hanging out.",
  51. "directions": [
  52. {
  53. "directionName": "West",
  54. "room": "Great Hall",
  55. "enabled": "true",
  56. "validKeyNames": []
  57. },
  58. {
  59. "directionName": "North",
  60. "room": "Secret Passageway",
  61. "enabled": "false",
  62. "validKeyNames": [
  63. "Mysterious Key"
  64. ]
  65. }
  66. ],
  67. "items": []
  68. },
  69. {
  70. "name": "Secret Passageway",
  71. "description": "You are in a secret passageway. Spoooky! Better keep your wands up!",
  72. "directions": [
  73. {
  74. "directionName": "South",
  75. "room": "Gryffindor Common Room",
  76. "enabled": "true",
  77. "validKeyNames": []
  78. },
  79. {
  80. "directionName": "West",
  81. "room": "Kitchen",
  82. "enabled": "true",
  83. "validKeyNames": []
  84. }
  85. ],
  86. "items": []
  87. },
  88. {
  89. "name": "Kitchen",
  90. "description": "You are in the kitchen. There are many house elves here preparing meals.",
  91. "directions": [
  92. {
  93. "directionName": "East",
  94. "room": "Secret PassageWay",
  95. "enabled": "true",
  96. "validKeyNames": []
  97. },
  98. {
  99. "directionName": "South",
  100. "room": "Great Hall",
  101. "enabled": "true",
  102. "validKeyNames": []
  103. }
  104. ],
  105. "items": {
  106. "name": "Ingredients for Polyjuice Potion"
  107. }
  108. },
  109. {
  110. "name": "Slytherin Common Room",
  111. "description": "You are in the Slytherin Common Room. There is a piece of hair on the nearest couch.",
  112. "directions": [
  113. {
  114. "directionName": "East",
  115. "room": "Great Hall",
  116. "enabled": "true",
  117. "validKeyNames": []
  118. }
  119. ],
  120. "items": {
  121. "name": "Slytherin student's hair"
  122. }
  123. },
  124. {
  125. "name": "Hufflepuff Common Room",
  126. "description": "You are in the Hufflepuff Common Room. Students in yellow are studying and hanging out.",
  127. "directions": [
  128. {
  129. "directionName": "North",
  130. "room": "Great Hall",
  131. "enabled": "true",
  132. "validKeyNames": []
  133. }
  134. ],
  135. "items": {
  136. "name": "Mysterious Key"
  137. }
  138. },
  139. {
  140. "name": "Ravenclaw Common Room",
  141. "description": "You are in the Ravenclaw Common Room. Students are studying and painting.",
  142. "directions": [
  143. {
  144. "directionName": "North",
  145. "room": "Great Hall",
  146. "enabled": "true",
  147. "validKeyNames": []
  148. },
  149. {
  150. "directionName": "East",
  151. "room": "Bathroom",
  152. "enabled": "true",
  153. "validKeyNames": []
  154. }
  155. ],
  156. "items": []
  157. },
  158. {
  159. "name": "Bathroom",
  160. "description": "You are in the girl's bathroom. There is a giant sink in the middle of the bathroom with a snake on the faucet.",
  161. "directions": [
  162. {
  163. "directionName": "West",
  164. "room": "Ravenclaw Common Room",
  165. "enabled": "true",
  166. "validKeyNames": []
  167. },
  168. {
  169. "directionName": "South",
  170. "room": "Chamber of Secrets",
  171. "enabled": "false",
  172. "validKeyNames": [
  173. "Ingredients for Polyjuice Potion",
  174. "Slytherin student's hair"
  175. ]
  176. }
  177. ],
  178. "items": []
  179. },
  180. {
  181. "name": "Chamber of Secrets",
  182. "description": "You have reached your final destination.",
  183. "directions": [
  184. {
  185. "directionName": "North",
  186. "room": "Bathroom",
  187. "enabled": "true",
  188. "validKeyNames": []
  189. }
  190. ],
  191. "items": []
  192. }
  193. ],
  194. "player": "Harry Potter"
  195. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement