Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. {
  2. "startingRoom": "FindingNemo",
  3. "endingRoom": "ToyStory",
  4. "rooms": [
  5. {
  6. "name": "FindingNemo",
  7. "description": "You are in the Finding Nemo Aquarium. You see a group of fish swim past you on a turtle.",
  8. "items": ["coral", "boat"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "MonstersInc"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "MonstersInc",
  18. "description": "You are in Monsters, Inc. HQ. You are surrounded by many doors, and you see monsters bustling around going to work.",
  19. "items": ["sock", "laugh power", "door"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "FindingNemo"
  24. },
  25. {
  26. "directionName": "East",
  27. "room": "Incredibles"
  28. },
  29. {
  30. "directionName": "South",
  31. "room": "Ratatouille"
  32. }
  33. ]
  34. },
  35. {
  36. "name": "Incredibles",
  37. "description": "You are in the Incredibles room. A super hero in red runs past you.",
  38. "items": ["costume", "mask"],
  39. "directions": [
  40. {
  41. "directionName": "West",
  42. "room": "MonstersInc"
  43. },
  44. {
  45. "directionName": "South",
  46. "room": "BugsLife"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "Ratatouille",
  52. "description": "You are in Gusteau's restaurant. The incredible smell of Ratatouille fills the air.",
  53. "items": ["ratatouille", "rat", "chef's hat"],
  54. "directions": [
  55. {
  56. "directionName": "North",
  57. "room": "MonstersInc"
  58. },
  59. {
  60. "directionName": "East",
  61. "room": "BugsLife"
  62. },
  63. {
  64. "directionName": "West",
  65. "room": "Cars"
  66. }
  67. ]
  68. },
  69. {
  70. "name": "BugsLife",
  71. "description": "You are in the Bug's Life Circus. A butterfly acrobat swings across the ceiling.",
  72. "items": ["leaf", "tent"],
  73. "directions": [
  74. {
  75. "directionName": "North",
  76. "room": "Incredibles"
  77. },
  78. {
  79. "directionName": "West",
  80. "room": "Ratatouille"
  81. }
  82. ]
  83. },
  84. {
  85. "name": "Cars",
  86. "description": "You are in the Cars garage. Lightning McQueen is being repaired.",
  87. "items": ["wheel"],
  88. "directions": [
  89. {
  90. "directionName": "East",
  91. "room": "Ratatouille"
  92. },
  93. {
  94. "directionName": "South",
  95. "room": "ToyStory"
  96. }
  97. ]
  98. },
  99. {
  100. "name": "ToyStory",
  101. "description": "You are in Andy's room. There are happy toys lying around the room.",
  102. "items": ["Woody", "Rex", "Mr. Potato Head", "Buzz"],
  103. "directions": [
  104. {
  105. "directionName": "North",
  106. "room": "Cars"
  107. }
  108. ]
  109. }
  110. ]
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement