Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.62 KB | None | 0 0
  1. {
  2. "startingRoom": "TownPlaza",
  3. "endingRoom": "Museum",
  4. "player": {
  5. "items": [
  6. ],
  7. "hitPoints": 30,
  8. "attackPoints": 5
  9. },
  10. "rooms": [
  11. {
  12. "name": "TownPlaza",
  13. "description": "The bulletin board has a paper tacked to it. It says \n'The Museum is in search of rare fossils, fish, and bugs. Please help us!!!\n If you need tools, please see Isabelle in town hall. -Blathers'\n...Guess I'll help out?",
  14. "possibleDirectionsFromRoom": [
  15. {
  16. "directionName": "South",
  17. "nameOfRoomInThisDirection": "WishingWellGlade",
  18. "enabled": "True",
  19. "validKeyNames": [
  20. ]
  21. }
  22. ],
  23. "items": [
  24. ],
  25. "creatures": {}
  26. },
  27. {
  28. "name": "WishingWellGlade",
  29. "description": "Cute! This is the town's central hub. The villagers are \nmeandering around.\nTo the north is the TownPlaza, to the east is TownHall, to the southeast \nis the Beach, to the south is the ButterflyGarden, to the west is the Quarry,\n and to the northeast is the Museum!",
  30. "possibleDirectionsFromRoom": [
  31. {
  32. "directionName": "North",
  33. "nameOfRoomInThisDirection": "TownPlaza",
  34. "enabled": "True",
  35. "validKeyNames": [
  36. ]
  37. },
  38. {
  39. "directionName": "SouthEast",
  40. "nameOfRoomInThisDirection": "Beach",
  41. "enabled": "True",
  42. "validKeyNames": [
  43. ]
  44. },
  45. {
  46. "directionName": "East",
  47. "nameOfRoomInThisDirection": "TownHall",
  48. "enabled": "True",
  49. "validKeyNames": [
  50. ]
  51. },
  52. {
  53. "directionName": "South",
  54. "nameOfRoomInThisDirection": "ButterflyGarden",
  55. "enabled": "True",
  56. "validKeyNames": [
  57. ]
  58. },
  59. {
  60. "directionName": "West",
  61. "nameOfRoomInThisDirection": "Quarry",
  62. "enabled": "True",
  63. "validKeyNames": [
  64. ]
  65. },
  66. {
  67. "directionName": "Northeast",
  68. "nameOfRoomInThisDirection": "Museum",
  69. "enabled": "True",
  70. "validKeyNames": [
  71. ]
  72. }
  73. ],
  74. "items": [
  75. ],
  76. "creatures": {}
  77. },
  78. {
  79. "name": "TownHall",
  80. "description": "Isabelle, the mayor's assistant, waves in greeting. \n'We have spare tools in the attic! The three closet doors are locked, \nand I just can't remember where I dropped those pesky keys! Last time \nI had them, I visited the forest, orchard, and clocktower...",
  81. "possibleDirectionsFromRoom": [
  82. {
  83. "directionName": "Up",
  84. "nameOfRoomInThisDirection": "Attic",
  85. "enabled": "True",
  86. "validKeyNames": [
  87. ]
  88. },
  89. {
  90. "directionName": "West",
  91. "nameOfRoomInThisDirection": "WishingWellGlade",
  92. "enabled": "True",
  93. "validKeyNames": [
  94. ]
  95. },
  96. {
  97. "directionName": "South",
  98. "nameOfRoomInThisDirection": "Orchard",
  99. "enabled": "True",
  100. "validKeyNames": [
  101. ]
  102. }
  103. ],
  104. "items": [
  105. ],
  106. "creatures": {}
  107. },
  108. {
  109. "name": "Attic",
  110. "description": "Ewww this place sure is dusty! There are three closets: \nthe net room to the north, the fishing rod room to the east, and the \nshovel room to the south.",
  111. "possibleDirectionsFromRoom": [
  112. {
  113. "directionName": "Down",
  114. "nameOfRoomInThisDirection": "TownHall",
  115. "enabled": "True",
  116. "validKeyNames": [
  117. ]
  118. },
  119. {
  120. "directionName": "North",
  121. "nameOfRoomInThisDirection": "NetCloset",
  122. "enabled": "False",
  123. "validKeyNames": [
  124. "NetClosetKey"
  125. ]
  126. },
  127. {
  128. "directionName": "East",
  129. "nameOfRoomInThisDirection": "FishingRodCloset",
  130. "enabled": "False",
  131. "validKeyNames": [
  132. "FishingRodClosetKey"
  133. ]
  134. },
  135. {
  136. "directionName": "South",
  137. "nameOfRoomInThisDirection": "ShovelCloset",
  138. "enabled": "False",
  139. "validKeyNames": [
  140. "ShovelClosetKey"
  141. ]
  142. }
  143. ],
  144. "items": [
  145. ],
  146. "creatures": {}
  147. },
  148. {
  149. "name": "NetCloset",
  150. "description": "The closet is so dark! But there are nets in here all right.",
  151. "possibleDirectionsFromRoom": [
  152. {
  153. "directionName": "South",
  154. "nameOfRoomInThisDirection": "Attic",
  155. "enabled": "True",
  156. "validKeyNames": [
  157. ]
  158. }
  159. ],
  160. "items": [
  161. {
  162. "name": "Net"
  163. }
  164. ],
  165. "creatures": {}
  166. },
  167. {
  168. "name": "FishingRodCloset",
  169. "description": "The closet is so dark! But there are fishing rods in here all right.",
  170. "possibleDirectionsFromRoom": [
  171. {
  172. "directionName": "West",
  173. "nameOfRoomInThisDirection": "Attic",
  174. "enabled": "True",
  175. "validKeyNames": [
  176. ]
  177. }
  178. ],
  179. "items": [
  180. {
  181. "name": "FishingRod"
  182. }
  183. ],
  184. "creatures": {}
  185. },
  186. {
  187. "name": "ShovelCloset",
  188. "description": "The closet is so dark! But there are shovels in here all right.",
  189. "possibleDirectionsFromRoom": [
  190. {
  191. "directionName": "North",
  192. "nameOfRoomInThisDirection": "Attic",
  193. "enabled": "True",
  194. "validKeyNames": [
  195. ]
  196. }
  197. ],
  198. "items": [
  199. {
  200. "name": "Shovel"
  201. }
  202. ],
  203. "creatures": {}
  204. },
  205. {
  206. "name": "Orchard",
  207. "description": "Wow! So many peaches, apples, and cherries! \nI'm hungry, maybe I should take a quick break.",
  208. "possibleDirectionsFromRoom": [
  209. {
  210. "directionName": "North",
  211. "nameOfRoomInThisDirection": "TownHall",
  212. "enabled": "True",
  213. "validKeyNames": [
  214. ]
  215. }
  216. ],
  217. "items": [
  218. {
  219. "name": "FishingRodClosetKey"
  220. }
  221. ],
  222. "creatures": {}
  223. },
  224. {
  225. "name": "Beach",
  226. "description": "What a sandy white beach! Maybe we can catch some fish here.",
  227. "possibleDirectionsFromRoom": [
  228. {
  229. "directionName": "Northwest",
  230. "nameOfRoomInThisDirection": "WishingWellGlade",
  231. "enabled": "True",
  232. "validKeyNames": [
  233. ]
  234. }
  235. ],
  236. "items": [
  237. ],
  238. "creatures": {
  239. "type": "Fish",
  240. "hitPoints": 15,
  241. "attackPoints": 3
  242. }
  243. },
  244. {
  245. "name": "ButterflyGarden",
  246. "description": "Wow! Look at that monarch butterfly! And that peacock butterfly! \nAnd that agrias butterfly! And that tiger butterfl- \nmaybe I should just catch one.",
  247. "possibleDirectionsFromRoom": [
  248. {
  249. "directionName": "North",
  250. "nameOfRoomInThisDirection": "WishingWellGlade",
  251. "enabled": "True",
  252. "validKeyNames": [
  253. ]
  254. }
  255. ],
  256. "items": [
  257. ],
  258. "creatures": {
  259. "type": "Butterfly",
  260. "hitPoints": 10,
  261. "attackPoints": 1
  262. }
  263. },
  264. {
  265. "name": "Quarry",
  266. "description": "I heard this place is famous for unearthing big fossils \nsometimes. I bet the museum needs one of those!",
  267. "possibleDirectionsFromRoom": [
  268. {
  269. "directionName": "East",
  270. "nameOfRoomInThisDirection": "WishingWellGlade",
  271. "enabled": "True",
  272. "validKeyNames": [
  273. ]
  274. },
  275. {
  276. "directionName": "North",
  277. "nameOfRoomInThisDirection": "Clocktower",
  278. "enabled": "True",
  279. "validKeyNames": [
  280. ]
  281. },
  282. {
  283. "directionName": "South",
  284. "nameOfRoomInThisDirection": "Forest",
  285. "enabled": "True",
  286. "validKeyNames": [
  287. ]
  288. }
  289. ],
  290. "items": [
  291. ],
  292. "creatures": {
  293. "type": "Rock",
  294. "hitPoints": 20,
  295. "attackPoints": 0
  296. }
  297. },
  298. {
  299. "name": "Forest",
  300. "description": "The area is so thick with cedars! What if I get lost in here!",
  301. "possibleDirectionsFromRoom": [
  302. {
  303. "directionName": "North",
  304. "nameOfRoomInThisDirection": "Quarry",
  305. "enabled": "True",
  306. "validKeyNames": [
  307. ]
  308. }
  309. ],
  310. "items": [
  311. {
  312. "name": "ShovelClosetKey"
  313. }
  314. ],
  315. "creatures": {}
  316. },
  317. {
  318. "name": "Clocktower",
  319. "description": "Is that the time!? Better hurry with my quest...",
  320. "possibleDirectionsFromRoom": [
  321. {
  322. "directionName": "South",
  323. "nameOfRoomInThisDirection": "Quarry",
  324. "enabled": "True",
  325. "validKeyNames": [
  326. ]
  327. }
  328. ],
  329. "items": [
  330. {
  331. "name": "NetClosetKey"
  332. }
  333. ],
  334. "creatures": {}
  335. },
  336. {
  337. "name": "Museum",
  338. "description": "This is where I need to donate everything! Blathers the \nmuseum director is anxiously awaiting donors.",
  339. "possibleDirectionsFromRoom": [
  340. {
  341. "directionName": "Southwest",
  342. "nameOfRoomInThisDirection": "WishingWellGlade",
  343. "enabled": "True",
  344. "validKeyNames": [
  345. ]
  346. }
  347. ],
  348. "items": [
  349. ],
  350. "creatures": {}
  351. }
  352. ]
  353. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement