Advertisement
dyang5200

Untitled

Feb 17th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 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": "false",
  13. "validKeyNames": ["Sorting Hat"]
  14. },
  15. {
  16. "directionName": "Southeast",
  17. "room": "Ravenclaw Common Room",
  18. "enabled": "false",
  19. "validKeyNames": ["Correct Riddle Answer"]
  20. },
  21. {
  22. "directionName": "Southwest",
  23. "room": "Hufflepuff Common Room",
  24. "enabled": "false",
  25. "validKeyNames": ["Sorting Hat"]
  26. },
  27. {
  28. "directionName": "West",
  29. "room": "Slytherin Common Room",
  30. "enabled": "false",
  31. "validKeyNames": ["Correct Riddle Answer"]
  32. }
  33. ],
  34. "items": [
  35. {
  36. "name": "Sorting Hat"
  37. }
  38. ]
  39. },
  40. {
  41. "name": "Gryffindor Common Room",
  42. "description": "You are in the Gryffindor Common Room. There are lots of students studying and hanging out.",
  43. "directions": [
  44. {
  45. "directionName": "West",
  46. "room": "Great Hall",
  47. "enabled": "true",
  48. "validKeyNames": []
  49. },
  50. {
  51. "directionName": "North",
  52. "room": "Secret Passageway",
  53. "enabled": "false",
  54. "validKeyNames": [
  55. "Mysterious Key"
  56. ]
  57. }
  58. ],
  59. "items": []
  60. },
  61. {
  62. "name": "Secret Passageway",
  63. "description": "You are in a secret passageway. Spoooky! Better keep your wands up!",
  64. "directions": [
  65. {
  66. "directionName": "South",
  67. "room": "Gryffindor Common Room",
  68. "enabled": "true",
  69. "validKeyNames": []
  70. },
  71. {
  72. "directionName": "West",
  73. "room": "Kitchen",
  74. "enabled": "true",
  75. "validKeyNames": []
  76. }
  77. ],
  78. "items": []
  79. },
  80. {
  81. "name": "Kitchen",
  82. "description": "You are in the kitchen. There are many house elves here preparing meals.",
  83. "directions": [
  84. {
  85. "directionName": "East",
  86. "room": "Secret PassageWay",
  87. "enabled": "true",
  88. "validKeyNames": []
  89. },
  90. {
  91. "directionName": "South",
  92. "room": "Great Hall",
  93. "enabled": "true",
  94. "validKeyNames": []
  95. }
  96. ],
  97. "items": [
  98. {
  99. "name": "Polyjuice Potion"
  100. }
  101. ]
  102. },
  103. {
  104. "name": "Slytherin Common Room",
  105. "description": "You are in the Slytherin Common Room. It is very cold and moist.",
  106. "directions": [
  107. {
  108. "directionName": "East",
  109. "room": "Great Hall",
  110. "enabled": "true",
  111. "validKeyNames": []
  112. }
  113. ],
  114. "items": []
  115. },
  116. {
  117. "name": "Hufflepuff Common Room",
  118. "description": "You are in the Hufflepuff Common Room. Students in yellow are studying and hanging out.",
  119. "directions": [
  120. {
  121. "directionName": "North",
  122. "room": "Great Hall",
  123. "enabled": "true",
  124. "validKeyNames": []
  125. }
  126. ],
  127. "items": [
  128. {
  129. "name": "Mysterious Key"
  130. }
  131. ]
  132. },
  133. {
  134. "name": "Ravenclaw Common Room",
  135. "description": "You are in the Ravenclaw Common Room. Students are studying and painting.",
  136. "directions": [
  137. {
  138. "directionName": "North",
  139. "room": "Great Hall",
  140. "enabled": "true",
  141. "validKeyNames": []
  142. },
  143. {
  144. "directionName": "East",
  145. "room": "Bathroom",
  146. "enabled": "true",
  147. "validKeyNames": []
  148. }
  149. ],
  150. "items": []
  151. },
  152. {
  153. "name": "Bathroom",
  154. "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.",
  155. "directions": [
  156. {
  157. "directionName": "West",
  158. "room": "Ravenclaw Common Room",
  159. "enabled": "true",
  160. "validKeyNames": []
  161. },
  162. {
  163. "directionName": "South",
  164. "room": "Chamber of Secrets",
  165. "enabled": "false",
  166. "validKeyNames": ["Polyjuice Potion"]
  167. }
  168. ],
  169. "items": []
  170. },
  171. {
  172. "name": "Chamber of Secrets",
  173. "description": "SUCCESS! You are in the Chamber of Secrets. You have reached your final destination. Get ready to fight Lord Voldemort!",
  174. "directions": [
  175. {
  176. "directionName": "North",
  177. "room": "Bathroom",
  178. "enabled": "true",
  179. "validKeyNames": []
  180. }
  181. ],
  182. "items": []
  183. }
  184. ],
  185. "player": null
  186. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement