Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.52 KB | None | 0 0
  1. {
  2. "startingRoom": "GreatHall",
  3. "endingRoom": "RoomOfRequirement",
  4. "player" : {
  5. "name" : "PingPing",
  6. "items" : [
  7. {
  8. "name" : "Old Hogwarts Robe",
  9. "description" : "An old set of robes that has been handed down in your family for generations."
  10. }
  11. ]
  12. },
  13. "rooms": [
  14. {
  15. "name": "GreatHall",
  16. "description": "Welcome to the Great Hall of Hogwarts School of Witchcraft and Wizardary. You can see changing staircase in the east.",
  17. "directions": [
  18. {
  19. "directionName": "East",
  20. "room": "ChangingStaircase",
  21. "enabled" : "True",
  22. "validKeyName" : ["Old Hogwarts Robe"]
  23. }
  24. ],
  25. "items" : [
  26. {
  27. "name" : "One Galleon",
  28. "description" : "The wizarding currency."
  29. }
  30. ]
  31. },
  32. {
  33. "name": "ChangingStaircase",
  34. "description": "You are at the changing staircase. You can see Gryffindor Tower in the north and a long corridor in the east.",
  35. "directions": [
  36. {
  37. "directionName": "North",
  38. "room": "GryffindorTower",
  39. "enabled" : "False",
  40. "validKeyName" : ["Sorting Hat"]
  41. },
  42. {
  43. "directionName": "East",
  44. "room": "Corridor",
  45. "enabled" : "True",
  46. "validKeyName" : ["Old Hogwarts Robe"]
  47. },
  48. {
  49. "directionName" : "West",
  50. "room" : "GreatHall",
  51. "enabled" : "True",
  52. "validKeyName" : ["Old Hogwarts Robe"]
  53. }
  54. ],
  55. "items" : [
  56. {
  57. "name" : "One Galleon",
  58. "description" : "The wizarding currency."
  59. }
  60. ]
  61. },
  62. {
  63. "name": "Corridor",
  64. "description": "Walking through the corrdior, you can see Cobblestone Courtyard in the north and classroom hallways in the east",
  65. "directions": [
  66. {
  67. "directionName": "North",
  68. "room" : "CobblestoneCourtyard",
  69. "enabled" : "True",
  70. "validKeyName" : ["Old Hogwarts Robe"]
  71. },
  72. {
  73. "directionName": "East",
  74. "room" : "ClassroomHallways",
  75. "enabled" : "True",
  76. "validKeyName" : ["Old Hogwarts Robe"]
  77. },
  78. {
  79. "directionName": "West",
  80. "room" : "ChaningStaircase",
  81. "enabled" : "True",
  82. "validKeyName" : ["Old Hogwarts Robe"]
  83. },
  84. {
  85. "directionName" : "Down",
  86. "room" : "SecretTunnel",
  87. "enabled" : "False",
  88. "validKeyName" : ["Invisibility Cloak"]
  89. }
  90. ],
  91. "items" : [
  92. {
  93. "name" : "One Galleon",
  94. "description" : "The wizarding currency."
  95. }
  96. ]
  97. },
  98. {
  99. "name": "ClassroomHallways",
  100. "description": "You are in a long hallway with many classrooms. You can see the dungeons in the east and the Green House in the north.",
  101. "directions": [
  102. {
  103. "directionName": "East",
  104. "room" : "Dungeons",
  105. "enabled" : "True",
  106. "validKeyName" : ["Old Hogwarts Robe"]
  107. },
  108. {
  109. "directionName": "North",
  110. "room" : "GreenHouse",
  111. "enabled" : "True",
  112. "validKeyName" : ["Old Hogwarts Robe"]
  113. },
  114. {
  115. "directionName": "West",
  116. "room" : "Corridor",
  117. "enabled" : "True",
  118. "validKeyName" : ["Old Hogwarts Robe"]
  119. }
  120. ],
  121. "items" : [
  122. {
  123. "name" : "One Galleon",
  124. "description" : "The wizarding currency."
  125. }
  126. ]
  127. },
  128. {
  129. "name": "GreenHouse",
  130. "description": "You are in the Green House, Professor Sprout's Venomous Tentacula reaches out to strangle you but barely misses. You can see a tower in the north.",
  131. "directions": [
  132. {
  133. "directionName": "North",
  134. "room" : "TowerEntrance",
  135. "enabled" : "True",
  136. "validKeyName" : ["Old Hogwarts Robe"]
  137. },
  138. {
  139. "directionName": "South",
  140. "room" : "ClassroomHallways",
  141. "enabled" : "True",
  142. "validKeyName" : ["Old Hogwarts Robe"]
  143. }
  144. ],
  145. "items" : [
  146. {
  147. "name" : "One Galleon",
  148. "description" : "The wizarding currency."
  149. }
  150. ]
  151. },
  152. {
  153. "name": "TowerEntrance",
  154. "description": "You reach a tower entrance. You see a set of stairs going up and another hallway in the north.",
  155. "directions": [
  156. {
  157. "directionName": "Up",
  158. "room" : "DivinationsTower",
  159. "enabled" : "True",
  160. "validKeyName" : ["Old Hogwarts Robe"]
  161. },
  162. {
  163. "directionName": "North",
  164. "room" : "Hallyway2",
  165. "enabled" : "True",
  166. "validKeyName" : ["Old Hogwarts Robe"]
  167. },
  168. {
  169. "directionName": "South",
  170. "room" : "GreenHouse",
  171. "enabled" : "True",
  172. "validKeyName" : ["Old Hogwarts Robe"]
  173. }
  174. ],
  175. "items" : [
  176. {
  177. "name" : "One Galleon",
  178. "description" : "The wizarding currency."
  179. }
  180. ]
  181. },
  182. {
  183. "name": "DivinationsTower",
  184. "description": "You walk up three sets of stairs to reach the Divinations Tower. You can go down.",
  185. "directions": [
  186. {
  187. "directionName": "Down",
  188. "room" : "TowerEntrance",
  189. "enabled" : "False",
  190. "validKeyName" : ["Wand"]
  191. }
  192. ],
  193. "items" : [
  194. {
  195. "name" : "Wand",
  196. "description" : "A wizard/witches's most important item."
  197. }
  198. ]
  199. },
  200. {
  201. "name": "Hallway2",
  202. "description": "You are in a long hallway with many classrooms. You can see the Defense Against the Dark Arts Classroom in the west, the Charms Classroom in the East, and library in the north.",
  203. "directions": [
  204. {
  205. "directionName": "West",
  206. "room" : "DefenseAgainstTheDarkArts",
  207. "enabled" : "False",
  208. "validKeyName" : ["Wand"]
  209. },
  210. {
  211. "directionName": "East",
  212. "room" : "Charms",
  213. "enabled" : "True",
  214. "validKeyName" : ["Old Hogwarts Robe"]
  215. },
  216. {
  217. "directionName": "North",
  218. "room" : "Library",
  219. "enabled" : "True",
  220. "validKeyName" : ["Old Hogwarts Robe"]
  221. },
  222. {
  223. "directionName": "South",
  224. "room" : "TowerEntrance",
  225. "enabled" : "True",
  226. "validKeyName" : ["Old Hogwarts Robe"]
  227. }
  228. ],
  229. "items" : [
  230. {
  231. "name" : "One Galleon",
  232. "description" : "The wizarding currency."
  233. }
  234. ]
  235. },
  236. {
  237. "name": "DefenseAgainstTheDarkArts",
  238. "description": "You are in the Defense Against the Dark Arts Classroom.",
  239. "directions": [
  240. {
  241. "directionName": "East",
  242. "room" : "Hallway2",
  243. "enabled" : "True",
  244. "validKeyName" : ["Old Hogwarts Robe"]
  245. }
  246. ],
  247. "items" : [
  248. {
  249. "name" : "Invisibility Cloak",
  250. "description" : "A cloak that can make you unseen by others."
  251. }
  252. ]
  253. },
  254. {
  255. "name": "Charms",
  256. "description": "You are in the Charms Classroom.",
  257. "directions": [
  258. {
  259. "directionName": "West",
  260. "room" : "Hallway2",
  261. "enabled" : "True",
  262. "validKeyName" : ["Old Hogwarts Robe"]
  263. }
  264. ],
  265. "items" : [
  266. {
  267. "name" : "Raspberry Jam",
  268. "description" : "Albus Dumbledore's favorite jam."
  269. }
  270. ]
  271. },
  272. {
  273. "name": "Library",
  274. "description": "You are in the library. Hermione is telling you to be quiet. You see the Quidditch Field outside in the west and Dumbledore's Office in the northeast.",
  275. "directions": [
  276. {
  277. "directionName": "West",
  278. "room" : "QuidditchField",
  279. "enabled" : "True",
  280. "validKeyName" : ["Old Hogwards Robe"]
  281. },
  282. {
  283. "directionName": "NorthEast",
  284. "room" : "DumbledoresOffice",
  285. "enabled" : "False",
  286. "validKeyName" : ["Raspberry Jam"]
  287. },
  288. {
  289. "directionName": "South",
  290. "room" : "Hallway2",
  291. "enabled" : "True",
  292. "validKeyName" : ["Old Hogwards Robe"]
  293. }
  294. ],
  295. "items" : [
  296. {
  297. "name" : "Tom Riddle's Diary",
  298. "description" : "The wizarding currency."
  299. }
  300. ]
  301. },
  302. {
  303. "name": "DumbledoresOffice",
  304. "description": "You are in Dumbledore's Office.",
  305. "directions": [
  306. {
  307. "directionName": "SouthWest",
  308. "room" : "Library",
  309. "enabled" : "True",
  310. "validKeyName" : ["Old Hogwarts Robe"]
  311. }
  312. ],
  313. "items" : [
  314. {
  315. "name" : "Sorting Hat",
  316. "description" : "The hat that determined the fate of the all wizard and witches."
  317. }
  318. ]
  319. },
  320. {
  321. "name": "QuidditchField",
  322. "description": "You are on the QuidditchField field. You can see another hallway in the west.",
  323. "directions": [
  324. {
  325. "directionName": "West",
  326. "room" : "Hallway3",
  327. "enabled" : "True",
  328. "validKeyName" : ["Old Hogwarts Robe"]
  329. },
  330. {
  331. "directionName": "East",
  332. "room" : "Library",
  333. "enabled" : "True",
  334. "validKeyName" : ["Old Hogwards Robe"]
  335. }
  336. ],
  337. "items" : [
  338. {
  339. "name" : "One Galleon",
  340. "description" : "The wizarding currency."
  341. }
  342. ]
  343. },
  344. {
  345. "name": "Hallway3",
  346. "description": "You are in a long hallway with many classrooms. You can see the Transfigurations Classroom in the south and a strange staircase in the north.",
  347. "directions": [
  348. {
  349. "directionName": "South",
  350. "room" : "Transfigurations",
  351. "enabled" : "False",
  352. "validKeyName" : ["Wand", "Invisibility Cloak"]
  353. },
  354. {
  355. "directionName": "North",
  356. "room" : "StrangeStaircase",
  357. "enabled" : "True",
  358. "validKeyName" : ["Old Hogwarts Robe"]
  359. },
  360. {
  361. "directionName": "East",
  362. "room" : "QuidditchField",
  363. "enabled" : "True",
  364. "validKeyName" : ["Old Hogwards Robe"]
  365. }
  366. ],
  367. "items" : [
  368. {
  369. "name" : "One Galleon",
  370. "description" : "The wizarding currency."
  371. }
  372. ]
  373. },
  374. {
  375. "name": "StrangeStaircase",
  376. "description": "The strange staircase is locked.",
  377. "directions": [
  378. {
  379. "directionName": "North",
  380. "room" : "RoomOfRequirement",
  381. "enabled" : "False",
  382. "validKeyName" : ["Marauder's Map"]
  383. },
  384. {
  385. "directionName": "South",
  386. "room" : "Hallway3",
  387. "enabled" : "True",
  388. "validKeyName" : ["Old Hogwards Robe"]
  389. }
  390. ],
  391. "items" : [
  392. {
  393. "name" : "One Galleon",
  394. "description" : "The wizarding currency."
  395. }
  396. ]
  397. },
  398. {
  399. "name": "RoomOfRequirement",
  400. "description": "You are in the Room of Requirement. Dumbledore's Army greets you with a thunderous cheer.",
  401. "directions": [
  402. {
  403. "directionName": "South",
  404. "room" : "StrangeStaircase",
  405. "enabled" : "True",
  406. "validKeyName" : ["Old Hogwarts Robe"]
  407. }
  408. ],
  409. "items" : [
  410. {
  411. "name" : "One Galleon",
  412. "description" : "The wizarding currency."
  413. }
  414. ]
  415. },
  416. {
  417. "name": "Transfigurations",
  418. "description": "You are in the Transfigurations classroom. There is a secret tunnel underneath you.",
  419. "directions": [
  420. {
  421. "directionName": "North",
  422. "room" : "Hallway3",
  423. "enabled" : "True",
  424. "validKeyName" : ["Old Hogwarts Robe"]
  425. },
  426. {
  427. "directionName": "Down",
  428. "room" : "SecretTunnel",
  429. "enabled" : "False",
  430. "validKeyName" : ["Invisibility Cloak"]
  431. }
  432. ],
  433. "items" : [
  434. {
  435. "name" : "One Galleon",
  436. "description" : "The wizarding currency."
  437. }
  438. ]
  439. },
  440. {
  441. "name": "SecretTunnel",
  442. "description": "You are in a dark tunnel. You can see light coming from the south.",
  443. "directions": [
  444. {
  445. "directionName": "South",
  446. "room" : "Corridor",
  447. "enabled" : "False",
  448. "validKeyName" : ["Invisibility Cloak"]
  449. },
  450. {
  451. "directionName": "Up",
  452. "room" : "Transfigurations",
  453. "enabled" : "False",
  454. "validKeyName" : ["Invisibility Cloak"]
  455. }
  456. ],
  457. "items" : [
  458. {
  459. "name" : "One Galleon",
  460. "description" : "The wizarding currency."
  461. }
  462. ]
  463. },
  464. {
  465. "name": "Dungeons",
  466. "description": "Welcome to Potions. The room is dark and feels cold. You can see a strange door in the east.",
  467. "directions": [
  468. {
  469. "directionName": "East",
  470. "room" : "StrangeDoor",
  471. "enabled" : "True",
  472. "validKeyName" : ["Old Hogwarts Robe"]
  473. },
  474. {
  475. "directionName": "West",
  476. "room" : "ClassroomHallways",
  477. "enabled" : "True",
  478. "validKeyName" : ["Old Hogwarts Robe"]
  479. }
  480. ],
  481. "items" : [
  482. {
  483. "name" : "One Galleon",
  484. "description" : "The wizarding currency."
  485. }
  486. ]
  487. },
  488. {
  489. "name": "StrangeDoor",
  490. "description": "The strange door is locked.",
  491. "directions": [
  492. {
  493. "directionName": "East",
  494. "room" : "ChamberOfSecrets",
  495. "enabled" : "False",
  496. "validKeyName" : ["Tom Riddle's Diary"]
  497. },
  498. {
  499. "directionName": "West",
  500. "room" : "Dungeons",
  501. "enabled" : "True",
  502. "validKeyName" : ["Old Hogwarts Robe"]
  503. }
  504. ],
  505. "items" : [
  506. {
  507. "name" : "One Galleon",
  508. "description" : "The wizarding currency."
  509. }
  510. ]
  511. },
  512. {
  513. "name": "ChamberOfSecrets",
  514. "description": "You are in the Chamber of Secrets. The entire room smells serpentine.",
  515. "directions": [
  516. {
  517. "directionName": "West",
  518. "room" : "StrangeDoor",
  519. "enabled" : "True",
  520. "validKeyName" : ["Old Hogwarts Robe"]
  521. }
  522. ],
  523. "items" : [
  524. {
  525. "name" : "One Galleon",
  526. "description" : "The wizarding currency."
  527. }
  528. ]
  529. },
  530. {
  531. "name": "GryffindorTower",
  532. "description": "You are in Gryffindor Tower.",
  533. "directions": [
  534. {
  535. "directionName": "South",
  536. "room" : "ChangingStaircase",
  537. "enabled" : "False",
  538. "validKeyName" : ["Sorting Hat"]
  539. }
  540. ],
  541. "items" : [
  542. {
  543. "name" : "Marauder's Map",
  544. "description" : "A map that unlocks all the secrets of Hogwarts"
  545. }
  546. ]
  547. }
  548. ]
  549. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement