Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. {
  2. "startingRoom": "WrigleySquare",
  3. "endingRoom": "PritzkerPavilion",
  4. "rooms": [
  5. {
  6. "name": "WrigleySquare",
  7. "description": "You are in the Wrigley Square, you see beautiful columns and a large fountain",
  8. "items": ["coin", "camera", "bike"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "IceRink"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "IceRink",
  18. "description": "You are in the Ice Rink. You can see many Chicagoans happily skating to some groovy music.",
  19. "items": ["skates", "snowball", "gloves"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "WrigleySquare"
  24. },
  25. {
  26. "directionName": "South",
  27. "room": "MichiganAvenue"
  28. },
  29. {
  30. "directionName": "North",
  31. "room": "Clougate"
  32. }
  33. ]
  34. },
  35. {
  36. "name": "MichiganAvenue",
  37. "description": "You are on Michigan Avenue. You see many pedestrians and nice-looking cars.",
  38. "items": ["wallet", "litter", "hubcap"],
  39. "directions": [
  40. {
  41. "directionName": "North",
  42. "room": "IceRink"
  43. }
  44. ]
  45. },
  46. {
  47. "name": "CloudGate",
  48. "description": "You are at the Cloudgate. You can see the chromatic bean and the reflection of Chicago's skyline.",
  49. "items": ["camera", "phone", "shoes"],
  50. "directions": [
  51. {
  52. "directionName": "South",
  53. "room": "IceRink"
  54. },
  55. {
  56. "directionName": "Southwest",
  57. "room": "WrigleySquare"
  58. },
  59. {
  60. "directionName": "North",
  61. "room": "PritzkerPavilion"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "PritzkerPavilion",
  67. "description": "You are in the Pritzker Pavilion. You see Kanye and the Sunday Service Choir performing and fans cheering.",
  68. "items": ["bible", "mic", "water bottle", "ticket stub"],
  69. "directions": [
  70. {
  71. "directionName": "South",
  72. "room": "Cloudgate"
  73. }
  74. ]
  75. }
  76. ]
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement