Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.05 KB | None | 0 0
  1. {
  2. "startingRoom": "Drawbridge",
  3. "endingRoom": "Kitchen",
  4. "rooms": [
  5. {
  6. "name": "Drawbridge",
  7. "description": "You are on the Drawbridge. You see the moat under you. The Castle of Secrets awaits",
  8. "directions": [
  9. {
  10. "directionName": "North",
  11. "room": "Courtyard",
  12. "enabled": "true",
  13. "validKeyNames": []
  14. }
  15. ],
  16. "items": [
  17. {
  18. "name":"paper"
  19. }
  20. ]
  21. },
  22. {
  23. "name": "Courtyard",
  24. "description": "You are in the abandoned courtyard. You see scattered wepons and lush vegetation",
  25. "directions": [
  26. {
  27. "directionName": "West",
  28. "room": "Stairwell",
  29. "enabled": "true",
  30. "validKeyNames": []
  31. },
  32. {
  33. "directionName": "East",
  34. "room": "Great Hall",
  35. "enabled": "true",
  36. "validKeyNames": []
  37. },
  38. {
  39. "directionName": "South",
  40. "room": "Drawbridge",
  41. "enabled": "true",
  42. "validKeyNames": []
  43. }
  44. ],
  45. "items": []
  46. },
  47. {
  48. "name": "Great Hall",
  49. "description": "You have entered the Great Hall where you see many paintings and an ornate ceiling and floor",
  50. "directions": [
  51. {
  52. "directionName": "West",
  53. "room": "Courtyard",
  54. "enabled": "true",
  55. "validKeyNames": []
  56. },
  57. {
  58. "directionName": "NorthEast",
  59. "room": "Armory",
  60. "enabled": "false",
  61. "validKeyNames": ["Gold Key"]
  62. },
  63. {
  64. "directionName": "South",
  65. "room": "Kitchen",
  66. "enabled": "false",
  67. "validKeyNames": ["paper"]
  68. }
  69.  
  70. ],
  71. "items": [
  72. {
  73. "name": "Silver Key"
  74. },
  75. {
  76. "name": "Stick"
  77. }
  78. ]
  79. },
  80. {
  81. "name": "Stairwell",
  82. "description": "You are in the main stairwell",
  83. "directions": [
  84. {
  85. "directionName": "Up",
  86. "room": "Guard Tower",
  87. "enabled": "false",
  88. "validKeyNames": ["Bronze Key","Silver Key"]
  89. },
  90. {
  91. "directionName": "Down",
  92. "room": "catacombs",
  93. "enabled": "true",
  94. "validKeyNames": []
  95. }
  96. ],
  97. "items": [
  98. {
  99. "name": "Bronze Key"
  100. }
  101. ]
  102. },
  103. {
  104. "name": "Catacombs",
  105. "description": "You have reached the catacombs. There are dead bodies everywhere.",
  106. "directions": [
  107. {
  108. "directionName": "Up",
  109. "room": "Stairwell",
  110. "enabled": "true",
  111. "validKeyNames": []
  112. }
  113. ],
  114. "items": [
  115. {
  116. "name": "Bone"
  117. }
  118. ]
  119. },
  120. {
  121. "name": "Guard Tower",
  122. "description": "You have reached the Guard Tower. You see a skeleton of an old guard.",
  123. "directions": [
  124. {
  125. "directionName": "Down",
  126. "room": "Stairwell",
  127. "enabled": "false",
  128. "validKeyNames": ["Bronze Sword"]
  129. }
  130. ],
  131. "items": [
  132. {
  133. "name": "Gold Key"
  134. },
  135. {
  136. "name": "Bronze Sword"
  137. }
  138. ]
  139. },
  140. {
  141. "name": "Kitchen",
  142. "description": "You are in the Kitchen. You see many vegetables still laying out.",
  143. "directions": [
  144. {
  145. "directionName": "North",
  146. "room": "Great Hall",
  147. "enabled": "true",
  148. "validKeyNames": []
  149. }
  150. ],
  151. "items": []
  152. },
  153. {
  154. "name": "Armory",
  155. "description": "You are in the Armory where many weopons used to be stored.",
  156. "directions": [
  157. {
  158. "directionName": "SouthWest",
  159. "room": "Great Hall",
  160. "enabled": "true",
  161. "validKeyNames": []
  162. }
  163. ],
  164. "items": [
  165. {
  166. "name": "Gold Sword"
  167. }
  168. ]
  169. }
  170. ],
  171. "Player": {
  172. "items": []
  173. }
  174. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement