Advertisement
Guest User

Pokemon Adventure

a guest
Feb 25th, 2020
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.17 KB | None | 0 0
  1. {
  2. "startingRoom": "Pallet Town",
  3. "endingRoom": "Champion Hall",
  4. "rooms": [
  5. {
  6. "name": "Pallet Town",
  7. "description": "You are in your home town, Pallet Town. A fairly new and quiet town. It's a small and pretty place. Pick a starter!",
  8. "items": ["Bulbasaur", "Squirtle", "Charmander"],
  9. "directions": [
  10. {
  11. "directionName": "to Viridian City",
  12. "room": "Viridian City"
  13. },
  14. {
  15. "directionName": "to Cinnabar Island",
  16. "room": "Cinnabar Island"
  17. }
  18. ]
  19. },
  20. {
  21. "name": "Viridian City",
  22. "description": "You're at Viridian City: A beautiful city that is enveloped in green year-round.",
  23. "directions": [
  24. {
  25. "directionName": "to Viridian Gym",
  26. "room": "Viridian Gym"
  27. },
  28. {
  29. "directionName": "to Pewter City",
  30. "room": "Pewter City"
  31. },
  32. {
  33. "directionName": "to Pallet Town",
  34. "room": "Pallet Town"
  35. },
  36. {
  37. "directionName": "to Indigo Plateau",
  38. "room": "Indigo Plateau"
  39. }
  40. ],
  41. "people": [
  42. {
  43. "name": "Old Man",
  44. "freeQuote": "Hello young trainer. Ah, you're starting a Pokemon adventure, how exciting. Being youthful is so nice...\nYou don't know how to catch Pokemon?? Oh my, you have much to learn.",
  45. "battle": false
  46. }
  47. ]
  48. },
  49. {
  50. "name": "Indigo Plateau",
  51. "description": "You're at Indigo Plateau, the capital for the Pokémon League in the Kanto region. It is the final destination for Pokémon Trainers. The fate of many Trainers aiming for the top rests here.",
  52. "directions": [
  53. {
  54. "directionName": "to Viridian City",
  55. "room": "Viridian City"
  56. },
  57. {
  58. "directionName": "to Champion Hall",
  59. "room": "Champion Hall"
  60. }
  61. ],
  62. "people": [
  63. {
  64. "name": "Elite Four Lorelei",
  65. "key": ["Earth Badge", "Endorsement"],
  66. "freeQuote": "The gate to the Indigo Plateau is shut tight. Seems like you need more experience before challenging the Elite Four.",
  67. "keyQuote": "Welcome to Pokémon League! I am Lorelei of the Elite Four! No one can best me when it comes to icy Pokémon! Freezing moves are powerful! Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?",
  68. "battle": true,
  69. "keyItem": "Gate to Bruno"
  70. },
  71. {
  72. "name": "Elite Four Bruno",
  73. "key": ["Gate to Bruno"],
  74. "freeQuote": "Defeat Lorelei before battling me.",
  75. "keyQuote": "I am Bruno of the Elite Four! Through rigorous training, people and Pokémon can become stronger! I've weight trained with my Pokémon! And that will never change! We will grind you down with our superior power! Hoo hah!",
  76. "battle": true,
  77. "keyItem": "Gate to Agatha"
  78. },
  79. {
  80. "name": "Elite Four Agatha",
  81. "key": ["Gate to Agatha"],
  82. "freeQuote": "Defeat Bruno before battling me.",
  83. "keyQuote": "I am Agatha of the Elite Four! Oak's taken a lot of interest in you, child! That old duff was once tough and handsome! That was decades ago! Now he just wants to fiddle with his Pokédex! He's wrong! Pokémon are for fighting! I'll show you how a real trainer fights!",
  84. "battle": true,
  85. "keyItem": "Gate to Lance"
  86. },
  87. {
  88. "name": "Elite Four Lance",
  89. "key": ["Gate to Lance"],
  90. "freeQuote": "Defeat Agatha before battling me.",
  91. "keyQuote": "Ah! I heard about you, <player>! I lead the Elite Four! You can call me Lance the dragon trainer! You know that dragons are mythical Pokémon! They’re hard to catch and raise, but their powers are superior! They’re virtually indestructible! Well, are you ready to lose? Your League challenge ends with me, <player>!",
  92. "battle": true,
  93. "keyItem": "Indigo Championship Ribbon"
  94. }
  95. ]
  96. },
  97. {
  98. "name": "Champion Hall",
  99. "description": "You're at Champion Hall. The final destination of all Indigo League Champions.",
  100. "roomKey": "Indigo Championship Ribbon",
  101. "directions": [
  102. {
  103. "directionName": "to Indigo Plateau",
  104. "room": "Indigo Plateau"
  105. }
  106. ]
  107. },
  108. {
  109. "name": "Viridian Gym",
  110. "description": "You're at Viridian City Gym.",
  111. "directions": [
  112. {
  113. "directionName": "to Viridian City",
  114. "room": "Viridian City"
  115. }
  116. ],
  117. "people": [
  118. {
  119. "name": "Leader Giovanni",
  120. "key": ["Boulder Badge", "Cascade Badge", "Thunder Badge", "Rainbow Badge", "Soul Badge", "Marsh Badge", "Volcano Badge"],
  121. "freeQuote": "You need to have the first seven badges from the Indigo League before you can challenge the Viridian Gym Leader.",
  122. "keyQuote": "Hello, I'm Giovanni, Team Rocket's Leader. Welcome to my hideout! It shall be so until I can restore Team Rocket to its former glory.",
  123. "battle": true,
  124. "keyItem": "Earth Badge"
  125. }
  126. ]
  127. },
  128. {
  129. "name": "Pewter City",
  130. "description": "You're at Pewter City: A quiet city nestled between rugged mountains and rocks.",
  131. "directions": [
  132. {
  133. "directionName": "to Pewter Gym",
  134. "room": "Pewter Gym"
  135. },
  136. {
  137. "directionName": "to Cerulean City",
  138. "room": "Cerulean City"
  139. },
  140. {
  141. "directionName": "to Viridian City",
  142. "room": "Viridian City"
  143. },
  144. {
  145. "directionName": "to Pewter Museum of Science",
  146. "room": "Pewter Museum of Science"
  147. }
  148. ]
  149. },
  150. {
  151. "name": "Pewter Gym",
  152. "description": "You're at Pewter Gym",
  153. "directions": [
  154. {
  155. "directionName": "to Pewter City",
  156. "room": "Pewter City"
  157. }
  158. ],
  159. "people": [
  160. {
  161. "name": "Leader Brock",
  162. "freeQuote": "Welcome trainer, I'm Brock. My rock-hard willpower is evident in even my Pokémon.\nMy Pokémon are all rock hard and have true-grit determination.\nThat's right - my Pokémon are all the Rock type!",
  163. "battle": true,
  164. "keyItem": "Boulder Badge"
  165. }
  166. ]
  167. },
  168. {
  169. "name": "Pewter Museum of Science",
  170. "description": "The museum holds a huge collection of artifacts, including rocks from the moon, space shuttles, and Fossils of ancient Pokémon.",
  171. "directions": [
  172. {
  173. "directionName": "to Pewter City",
  174. "room": "Pewter City"
  175. }
  176. ],
  177. "people": [
  178. {
  179. "name": "Areodactyl",
  180. "freeQuote": "Seems like an ancient fossilized Pokemon. There seems to be something else here...",
  181. "battle": false,
  182. "keyItem": "Offering"
  183. }
  184. ]
  185. },
  186. {
  187. "name": "Cerulean City",
  188. "description": "You are at Cerulean City. A beautiful city with flowing water and blooming flowers.",
  189. "directions": [
  190. {
  191. "directionName": "to Cerulean Gym",
  192. "room": "Cerulean Gym"
  193. },
  194. {
  195. "directionName": "to Vermilion City",
  196. "room": "Vermilion City"
  197. },
  198. {
  199. "directionName": "to Pewter City",
  200. "room": "Pewter City"
  201. }
  202. ]
  203. },
  204. {
  205. "name": "Cerulean Gym",
  206. "description": "You're at Cerulean Gym",
  207. "directions": [
  208. {
  209. "directionName": "to Cerulean City",
  210. "room": "Cerulean City"
  211. }
  212. ],
  213. "people": [
  214. {
  215. "name": "Leader Misty",
  216. "freeQuote": "Hello there, I'm Misty! My policy is an all-out offensive with Water-type Pokémon!",
  217. "battle": true,
  218. "keyItem": "Cascade Badge"
  219. }
  220. ]
  221. },
  222. {
  223. "name": "Vermilion City",
  224. "description": "You are at Vermilion City. A southern city that is bathed in orange by the setting sun.",
  225. "directions": [
  226. {
  227. "directionName": "to Vermilion Gym",
  228. "room": "Vermilion Gym"
  229. },
  230. {
  231. "directionName": "to Lavender Town",
  232. "room": "Lavender Town"
  233. },
  234. {
  235. "directionName": "to Cerulean City",
  236. "room": "Cerulean City"
  237. }
  238. ]
  239. },
  240. {
  241. "name": "Vermilion Gym",
  242. "description": "You are at Vermilion Gym.",
  243. "directions": [
  244. {
  245. "directionName": "to Vermilion City",
  246. "room": "Vermilion City"
  247. }
  248. ],
  249. "people": [
  250. {
  251. "name": "Leader Lt. Surge",
  252. "freeQuote": "I'm Lt. Surge. I tell you, kid, electric Pokémon saved me during the war!",
  253. "battle": true,
  254. "keyItem": "Thunder Badge"
  255. }
  256. ]
  257. },
  258. {
  259. "name": "Lavender Town",
  260. "description": "You are at Lavender Town. A small town covered in a beautiful hue of purple. People in the city all look very concerned...",
  261. "directions": [
  262. {
  263. "directionName": "to Pokemon Tower",
  264. "room": "Pokemon Tower"
  265. },
  266. {
  267. "directionName": "to Vermilion City",
  268. "room": "Vermilion City"
  269. },
  270. {
  271. "directionName": "to Celadon City",
  272. "room": "Celadon City"
  273. }
  274. ],
  275. "people": [
  276. {
  277. "name": "Young Girl",
  278. "key": ["Cubone"],
  279. "freeQuote": "Th-The-There'ss-ss a ghost in the Pokemon Tower. It ate my dear Pokemon. Wahhhhh.....",
  280. "keyQuote": "Cubone!! You're back! Thank you so much, how do I repay you....\nI know! You're a Pokemon trainer. My grandpa was the Indigo League Champion 20 years ago. Here's a letter of endorsement. You'll need it.",
  281. "battle": false,
  282. "keyItem": "Endorsement Letter"
  283. }
  284. ]
  285. },
  286. {
  287. "name": "Pokemon Tower",
  288. "description": "The Pokémon Tower houses hundreds of graves of deceased Pokémon in all of its seven floors. Many people visit the building daily to pay their respects to the fallen.",
  289. "directions": [
  290. {
  291. "directionName": "to Lavender Town",
  292. "room": "Lavender Town"
  293. }
  294. ],
  295. "people": [
  296. {
  297. "name": "Cubone",
  298. "key": ["Offering"],
  299. "freeQuote": "Cu-Cubone! The ghost that everyone was talking about was Cubone! Cubone leads you to a Marowak grave. It seems like it wants to give Marowak an offering...",
  300. "keyQuote": "You place your offering at the Marowak grave. Marowak's soul that was haunting the Pokemon Tower was suddenly freed. Cubone seems delighted and follows you everywhere.",
  301. "battle": false,
  302. "keyItem": "Cubone"
  303. }
  304. ]
  305. },
  306. {
  307. "name": "Celadon City",
  308. "description": "A rich, rainbow colored city where people and Pokémon gather.",
  309. "directions": [
  310. {
  311. "directionName": "to Lavender Town",
  312. "room": "Lavender Town"
  313. },
  314. {
  315. "directionName": "to Celadon Gym",
  316. "room": "Celadon Gym"
  317. },
  318. {
  319. "directionName": "to Fuchsia City",
  320. "room": "Fuchsia City"
  321. },
  322. {
  323. "directionName": "to Celadon Game Corner",
  324. "room": "Celadon Game Corner"
  325. }
  326. ]
  327. },
  328. {
  329. "name": "Celadon Gym",
  330. "description": "You are at Celadon Gym.",
  331. "directions": [
  332. {
  333. "directionName": "to Celadon City",
  334. "room": "Celadon City"
  335. }
  336. ],
  337. "people": [
  338. {
  339. "name": "Leader Erika",
  340. "freeQuote": "I am a student of the art of flower arranging. My Pokémon are solely of the Grass type.",
  341. "battle": true,
  342. "keyItem": "Rainbow Badge"
  343. }
  344. ]
  345. },
  346. {
  347. "name": "Celadon Game Corner",
  348. "description": "While it seems to be a popular spot for travelers and tourists, the citizens take pride in the city's beauty and think the casino is bad for its image.",
  349. "directions": [
  350. {
  351. "directionName": "to Celadon City",
  352. "room": "Celadon City"
  353. }
  354. ],
  355. "people": [
  356. {
  357. "name": "Team Rocket",
  358. "freeQuote": "How dare you expose our secret hideout. We're going to destroy you!",
  359. "battle": true,
  360. "keyItem": "Water Bike"
  361. }
  362. ]
  363. },
  364. {
  365. "name": "Fuchsia City",
  366. "description": "A historic village that has become new.",
  367. "directions": [
  368. {
  369. "directionName": "to Fuchsia Gym",
  370. "room": "Fuchsia Gym"
  371. },
  372. {
  373. "directionName": "to Saffron City",
  374. "room": "Saffron City"
  375. }
  376. ]
  377. },
  378. {
  379. "name": "Fuchsia Gym",
  380. "description": "You're at Fuchsia Gym",
  381. "directions": [
  382. {
  383. "directionName": "to Fuchsia City",
  384. "room": "Fuchsia City"
  385. }
  386. ],
  387. "people": [
  388. {
  389. "name": "Leader Janine",
  390. "freeQuote": "Fufufufu... I'm sorry to disappoint you... I'm only joking! I'm the real deal! Janine of Fuchsia Gym, that's me!",
  391. "battle": true,
  392. "keyItem": "Soul Badge"
  393. }
  394. ]
  395. },
  396. {
  397. "name": "Saffron City",
  398. "description": "The biggest city in Kanto, shining with a golden light.",
  399. "directions": [
  400. {
  401. "directionName": "to Fuchsia City",
  402. "room": "Fuchsia City"
  403. },
  404. {
  405. "directionName": "to Saffron Gym",
  406. "room": "Saffron Gym"
  407. },
  408. {
  409. "directionName": "to Cinnabar Island",
  410. "room": "Cinnabar Island"
  411. }
  412. ]
  413. },
  414. {
  415. "name": "Saffron Gym",
  416. "description": "You're at Saffron Gym",
  417. "directions": [
  418. {
  419. "directionName": "to Saffron City",
  420. "room": "Saffron City"
  421. }
  422. ],
  423. "people": [
  424. {
  425. "name": "Leader Sabrina",
  426. "freeQuote": "I had a vision of your arrival! I have had psychic powers since I was a little child. I first learned to bend spoons with my mind. I dislike fighting, but if you wish, I will show you my powers!",
  427. "battle": true,
  428. "keyItem": "Marsh Badge"
  429. }
  430. ]
  431. },
  432. {
  433. "name": "Cinnabar Island",
  434. "description": "A town used to be here until it was swept away by an eruption.",
  435. "roomKey": "Water Bike",
  436. "directions": [
  437. {
  438. "directionName": "to Saffron City",
  439. "room": "Saffron City"
  440. },
  441. {
  442. "directionName": "to Cinnabar Gym",
  443. "room": "Cinnabar Gym"
  444. },
  445. {
  446. "directionName": "to Pokemon Mansion",
  447. "room": "Pokemon Mansion"
  448. },
  449. {
  450. "directionName": "to Pallet Town",
  451. "room": "Pallet Town"
  452. }
  453. ]
  454. },
  455. {
  456. "name": "Cinnabar Gym",
  457. "description": "You're at Cinnabar Gym",
  458. "directions": [
  459. {
  460. "directionName": "to Cinnabar Island",
  461. "room": "Cinnabar Island"
  462. }
  463. ],
  464. "people": [
  465. {
  466. "name": "Leader Blaine",
  467. "key": ["Secret Key"],
  468. "freeQuote": "The door seems to be locked...",
  469. "keyQuote": "Hah! I'm Blaine! I am the Leader of Cinnabar Gym! My fiery Pokémon will incinerate all challengers! Hah! You better have Burn Heal!",
  470. "battle": true,
  471. "keyItem": "Volcano Badge"
  472. }
  473. ]
  474. },
  475. {
  476. "name": "Pokemon Mansion",
  477. "description": "Looks like a decrepit, burned-down mansion on Cinnabar Island. It got its name because a famous Pokémon researcher lived there.",
  478. "items": ["Secret Key"],
  479. "directions": [
  480. {
  481. "directionName": "to Cinnabar Island",
  482. "room": "Cinnabar Island"
  483. }
  484. ],
  485. "people": [
  486. {
  487. "name": "Burglar",
  488. "freeQuote": "Hey! Get out of my way. Don't tell anyone you say me here. I'm not stealing anything...",
  489. "battle": false
  490. }
  491. ]
  492. }
  493. ]
  494. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement