Advertisement
kanavb2

Grainger JSON

Feb 20th, 2020
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. {
  2. "startingRoom": "SpringfieldAvenue",
  3. "endingRoom": "CBTFRoom",
  4. "rooms": [{
  5. "name": "SpringfieldAvenue",
  6. "description": "You are on west Springfield Avenue, outside the Grainger Engineering Library.",
  7. "items": ["cat", "car"],
  8. "directions": [{
  9. "directionName": "South",
  10. "room": "GraingerEntry"
  11. }]
  12. },
  13. {
  14. "name": "GraingerEntry",
  15. "description": "You are in the north west entry of Grainger Engineering Library. You can see a staircase leading down, and a hallway to the east.",
  16. "items": ["pen", "key"],
  17. "directions": [{
  18. "directionName": "North",
  19. "room": "SpringfieldAvenue"
  20. },
  21. {
  22. "directionName": "Northeast",
  23. "room": "Staircase"
  24. },
  25. {
  26. "directionName": "East",
  27. "room": "GraingerMainHallway"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "Staircase",
  33. "description": "You walk to the staircase. You see there is some kind of construction going on upstairs, and there are more people downstairs.",
  34. "items": ["red sock", "stairs"],
  35. "directions": [{
  36. "directionName": "Southwest",
  37. "room": "GraingerEntry"
  38. },
  39. {
  40. "directionName": "Down",
  41. "room": "GraingerBasement"
  42. }
  43. ]
  44. },
  45. {
  46. "name": "GraingerMainHallway",
  47. "description": "You are in the main hallway. You can see a different set of staircases to the east and an exit to the south.",
  48. "directions": [{
  49. "directionName": "West",
  50. "room": "GraingerEntry"
  51. },
  52. {
  53. "directionName": "South",
  54. "room": "NorthQuad"
  55. },
  56. {
  57. "directionName": "East",
  58. "room": "EastStaircase"
  59. }
  60. ]
  61. },
  62. {
  63. "name": "NorthQuad",
  64. "description": "You are on the North Quad. You see the sculpture of a man reading a book, which fills you with determination.",
  65. "items": ["Sad Engineering student", "Happy Engineering student"],
  66. "directions": [{
  67. "directionName": "North",
  68. "room": "GraingerMainHallway"
  69. }]
  70. },
  71. {
  72. "name": "EastStaircase",
  73. "description": "You go to the top of the east staircase. You can see a strange light coming from down the stairs.",
  74. "items": ["blue sock", "penny"],
  75. "directions": [{
  76. "directionName": "West",
  77. "room": "GraingerMainHallway"
  78. },
  79. {
  80. "directionName": "Down",
  81. "room": "CBTFRoom"
  82. }
  83. ]
  84. },
  85. {
  86. "name": "CBTFRoom",
  87. "description": "You are at the CBTF Room!. You are now ready to give your CS final exam.",
  88. "directions": [{
  89. "directionName": "Up",
  90. "room": "EastStaircase"
  91. },
  92. {
  93. "directionName": "West",
  94. "room": "GraingerBasement"
  95. }
  96. ]
  97. },
  98. {
  99. "name": "GraingerBasement",
  100. "description": "You are in the basement of Grainger. You see tables with students working and a strange light to the east.",
  101. "items": ["pencil"],
  102. "directions": [{
  103. "directionName": "Up",
  104. "room": "Staircase"
  105. },
  106. {
  107. "directionName": "East",
  108. "room": "CBTFRoom"
  109. }
  110. ]
  111. }
  112. ]
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement