Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. {
  2. "startingRoom": "Road to Hobbiton",
  3. "endingRoom": "Bilbo's hovel",
  4. "rooms": [
  5. {
  6. "name": "Road to Hobbiton",
  7. "description": "You are on the Road to Hobbiton.",
  8. "directions": [
  9. {
  10. "directionName": "North",
  11. "room": "The Dark Woods of Murdoch",
  12. "validKeyNames":[
  13. "sword"
  14. ]
  15. }
  16. ],
  17. "items":[
  18. {
  19. "name": "sword"
  20. }
  21. ]
  22. },
  23. {
  24. "name": "The Dark Woods of Murdoch",
  25. "description": "You are in The Dark Woods of Murdoch. You can see the road to the Elven Shire and the road to the Brandy Hills of Dwarf Land.",
  26. "directions": [
  27. {
  28. "directionName": "South",
  29. "room": "Road to Hobbiton",
  30. "validKeyNames":[
  31.  
  32. ]
  33. },
  34. {
  35. "directionName": "East",
  36. "room": "Elven Shire",
  37. "validKeyNames":[
  38.  
  39. ]
  40. },
  41. {
  42. "directionName": "West",
  43. "room": "The Brandy Hills of Dwarf Land",
  44. "validKeyNames":[
  45. "sword"
  46. ]
  47. }
  48. ],
  49. "items":[
  50. {
  51. "name": ""
  52. }
  53. ]
  54. },
  55. {
  56. "name": "Elven Shire",
  57. "description": "You are in the Elven Shire. There are lots of graceful yet arrogant elves.",
  58. "directions": [
  59. {
  60. "directionName": "West",
  61. "room": "The Dark Woods of Murdoch",
  62. "validKeyNames":[
  63.  
  64. ]
  65. },
  66. {
  67. "directionName": "Northeast",
  68. "room": "The Fields of Fornost",
  69. "validKeyNames":[
  70. "Brandy health potion"
  71. ]
  72. }
  73. ],
  74. "items":[
  75. {
  76. "name": ""
  77. }
  78. ]
  79. },
  80. {
  81. "name": "The Brandy Hills of Dwarf Land",
  82. "description": "You are in the Brandy Hills of Dwarf Land. You are surrounded by rough, rude dwarves.",
  83. "directions": [
  84. {
  85. "directionName": "East",
  86. "room": "The Dark Woods of Murdoch",
  87. "validKeyNames":[
  88.  
  89. ]
  90. },
  91. {
  92. "directionName": "Northeast",
  93. "room": "Trap Land",
  94. "validKeyNames":[
  95.  
  96. ]
  97. }
  98. ],
  99. "items":[
  100. {
  101. "name": "Brandy health potion"
  102. }
  103. ]
  104. },
  105. {
  106. "name": "Trap Land",
  107. "description": "You have entered trap land! You have no choice but to return to the start point",
  108. "directions": [
  109. {
  110. "directionName": "Start",
  111. "room": "Road to Hobbiton",
  112. "validKeyNames":[
  113.  
  114. ]
  115. }
  116. ],
  117. "items":[
  118. {
  119. "name": ""
  120. }
  121. ]
  122. },
  123. {
  124. "name": "The Fields of Fornost",
  125. "description": "You are in the Fields of Fornost. This was once where the capital of Arnor stood, known as Norbury of the Kings, the North Kingdom of Men.",
  126. "directions": [
  127. {
  128. "directionName": "Southwest",
  129. "room": "Elven Shire",
  130. "validKeyNames":[
  131.  
  132. ]
  133. },
  134. {
  135. "directionName": "North",
  136. "room": "Athelas",
  137. "validKeyNames":[
  138.  
  139. ]
  140. }
  141. ],
  142. "items":[
  143. {
  144. "name": ""
  145. }
  146. ]
  147. },
  148. {
  149. "name": "Athelas",
  150. "description": "You are in Athelas. Here grows Kingsfoil or asëa aranion (Beneficial of Kings), was a sweet-smelling herb with healing powers, such as curing wounds, poison and counteracting evil influence such as the Black Breath..",
  151. "directions": [
  152. {
  153. "directionName": "South",
  154. "room": "The Fields of Fornost",
  155. "validKeyNames":[
  156.  
  157. ]
  158. },
  159. {
  160. "directionName": "Northwest",
  161. "room": "Bilbo's hovel",
  162. "validKeyNames":[
  163. "Kingsfoil plant"
  164. ]
  165. }
  166. ],
  167. "items":[
  168. {
  169. "name": "Kingsfoil plant"
  170. }
  171. ]
  172. },
  173. {
  174. "name": "Bilbo's hovel",
  175. "description": "You are in Bilbo's. Sit down in front of the fire and enjoy your pipe.",
  176. "directions": [
  177. {
  178. "directionName": "Southeast",
  179. "room": "Athelas",
  180. "validKeyNames":[
  181.  
  182. ]
  183. }
  184. ],
  185. "items":[
  186. {
  187. "name": ""
  188. }
  189. ]
  190. }
  191. ],
  192. "player":
  193. {
  194. "items": [
  195. {
  196. "name":""
  197. }
  198. ]
  199. }
  200. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement