Advertisement
Guest User

CastleJson

a guest
Feb 24th, 2020
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.90 KB | None | 0 0
  1. {
  2. "startingRoom": "Courtyard",
  3. "endingRoom": "Treasure Room",
  4. "rooms": [
  5. {
  6. "name": "Old Well",
  7. "description": "You are standing outside, near an old and mysterious-looking well. I wonder how deep the well goes...",
  8. "items": ["bucket", "stone"],
  9. "directions": [
  10. {
  11. "directionName": "South",
  12. "room": "Courtyard"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "Head Chambers",
  18. "description": "You have entered the head chambers. The fireplace is roaring in the corner of this huge room.",
  19. "items": ["mirror", "silver locket"],
  20. "monster": "bats",
  21. "directions": [
  22. {
  23. "directionName": "South",
  24. "room": "Weapons Room"
  25. },
  26. {
  27. "directionName": "East",
  28. "room": "Courtyard"
  29. }
  30. ]
  31. },
  32. {
  33. "name": "Courtyard",
  34. "description": "You are standing outside, in the castle's courtyard. The full moon is shining tonight. There are two different entrances to the castle, one to the east, and one to the west.",
  35. "items": ["glowing mushroom", "stone"],
  36. "directions": [
  37. {
  38. "directionName": "East",
  39. "room": "Dining Hall"
  40. },
  41. {
  42. "directionName": "North",
  43. "room": "Old Well"
  44. },
  45. {
  46. "directionName": "West",
  47. "room": "Head Chambers"
  48. }
  49. ]
  50. },
  51. {
  52. "name": "Dining Hall",
  53. "description": "You are inside a gigantic dining hall. Tables 20 feet long adnorned with candelabras take up most of the space in the room.",
  54. "items": ["candle"],
  55. "directions": [
  56. {
  57. "directionName": "South",
  58. "room": "Kitchen"
  59. },
  60. {
  61. "directionName": "West",
  62. "room": "Courtyard"
  63. },
  64. {
  65. "directionName": "Southwest",
  66. "room": "Servant's Quarters"
  67. }
  68. ]
  69. },
  70. {
  71. "name": "Weapons Room",
  72. "description": "You have entered the castle's weapons room. Axes, swords, and other weapons line the walls, but many of them are rusted or broken. Could you find something to defend yourself with here?",
  73. "items": ["rusted axe", "broken sword", "wooden crossbow"],
  74. "directions": [
  75. {
  76. "directionName": "East",
  77. "room": "Servant's Quarters"
  78. },
  79. {
  80. "directionName": "North",
  81. "room": "Head Chambers"
  82. }
  83. ]
  84. },
  85. {
  86. "name": "Servant's Quarters",
  87. "description": "You are in the servant's quarters. This room is so pitch-black that you can't see a thing...",
  88. "items": [],
  89. "monster": "goblin",
  90. "directions": [
  91. {
  92. "directionName": "South",
  93. "room": "Ballroom"
  94. },
  95. {
  96. "directionName": "West",
  97. "room": "Weapons Room"
  98. },
  99. {
  100. "directionName": "Northeast",
  101. "room": "Dining Hall"
  102. }
  103. ]
  104. },
  105. {
  106. "name": "Entry to Treasure Room",
  107. "description": "A huge locked door looms ahead, locked tight by a thick metal lock. Could the treasure be beyond this door?",
  108. "items": ["potion"],
  109. "monster": "troll",
  110. "directions": [
  111. {
  112. "directionName": "South",
  113. "room": "Treasure Room"
  114. },
  115. {
  116. "directionName": "East",
  117. "room": "Ballroom"
  118. }
  119. ]
  120. },
  121. {
  122. "name": "Ballroom",
  123. "description": "This is the ballroom, the heart of the castle. The ceiling stretches far above your head and the sound of your footsteps echo and bounce off the far-away walls.",
  124. "items": ["flute"],
  125. "directions": [
  126. {
  127. "directionName": "East",
  128. "room": "Kitchen"
  129. },
  130. {
  131. "directionName": "North",
  132. "room": "Servant's Quarters"
  133. },
  134. {
  135. "directionName": "West",
  136. "room": "Entry to Treasure Room"
  137. }
  138. ]
  139. },
  140. {
  141. "name": "Kitchen",
  142. "description": "You have entered the castle's kitchen. Countless pots and pans line the walls. Mice can be heard squeaking and scurrying away at the sound of your entrance.",
  143. "items": ["pan"],
  144. "monster": "ghost",
  145. "directions": [
  146. {
  147. "directionName": "North",
  148. "room": "Dining Hall"
  149. },
  150. {
  151. "directionName": "West",
  152. "room": "Ballroom"
  153. }
  154. ]
  155. },
  156. {
  157. "name": "Treasure Room",
  158. "description": "You are in the treasure room. Gold and silver coins, weapons, and armor lay in heaps on the floor, glittering and shining.",
  159. "items": ["gold coins", "silver coins", "kings's sword", "king's shield"],
  160. "directions": [
  161. {
  162. "directionName": "North",
  163. "room": "Entry to Treasure Room"
  164. }
  165. ]
  166. }
  167. ]
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement