Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.13 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. {
  107. "name": "Ingredients for Polyjuice Potion"
  108. }
  109. ]
  110. },
  111. {
  112. "name": "Slytherin Common Room",
  113. "description": "You are in the Slytherin Common Room. There is a piece of hair on the nearest couch.",
  114. "directions": [
  115. {
  116. "directionName": "East",
  117. "room": "Great Hall",
  118. "enabled": "true",
  119. "validKeyNames": []
  120. }
  121. ],
  122. "items": [
  123. {
  124. "name": "Slytherin student's hair"
  125. }
  126. ]
  127. },
  128. {
  129. "name": "Hufflepuff Common Room",
  130. "description": "You are in the Hufflepuff Common Room. Students in yellow are studying and hanging out.",
  131. "directions": [
  132. {
  133. "directionName": "North",
  134. "room": "Great Hall",
  135. "enabled": "true",
  136. "validKeyNames": []
  137. }
  138. ],
  139. "items": [
  140. {
  141. "name": "Mysterious Key"
  142. }
  143. ]
  144. },
  145. {
  146. "name": "Ravenclaw Common Room",
  147. "description": "You are in the Ravenclaw Common Room. Students are studying and painting.",
  148. "directions": [
  149. {
  150. "directionName": "North",
  151. "room": "Great Hall",
  152. "enabled": "true",
  153. "validKeyNames": []
  154. },
  155. {
  156. "directionName": "East",
  157. "room": "Bathroom",
  158. "enabled": "true",
  159. "validKeyNames": []
  160. }
  161. ],
  162. "items": []
  163. },
  164. {
  165. "name": "Bathroom",
  166. "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.",
  167. "directions": [
  168. {
  169. "directionName": "West",
  170. "room": "Ravenclaw Common Room",
  171. "enabled": "true",
  172. "validKeyNames": []
  173. },
  174. {
  175. "directionName": "South",
  176. "room": "Chamber of Secrets",
  177. "enabled": "false",
  178. "validKeyNames": [
  179. "Ingredients for Polyjuice Potion",
  180. "Slytherin student's hair"
  181. ]
  182. }
  183. ],
  184. "items": []
  185. },
  186. {
  187. "name": "Chamber of Secrets",
  188. "description": "You have reached your final destination.",
  189. "directions": [
  190. {
  191. "directionName": "North",
  192. "room": "Bathroom",
  193. "enabled": "true",
  194. "validKeyNames": []
  195. }
  196. ],
  197. "items": []
  198. }
  199. ],
  200. "player": null
  201. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement