Advertisement
Guest User

Campus.json

a guest
Feb 25th, 2020
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. {
  2. "startingRoom": "IlliniUnion",
  3. "endingRoom": "DCL_L520",
  4. "rooms": [
  5. {
  6. "name": "IlliniUnion",
  7. "description": "You are outside the Union entrance on Green Street.",
  8. "items": ["tea", "laptop"],
  9. "directions": [
  10. {
  11. "directionName": "North",
  12. "room": "GraingerLibrary"
  13. },
  14. {
  15. "directionName": "South",
  16. "room": "MainQuad"
  17. },
  18. {
  19. "directionName": "East",
  20. "room": "ISR"
  21. },
  22. {
  23. "directionName": "West",
  24. "room": "Altgeld"
  25. },
  26. {
  27. "directionName": "Down",
  28. "room": "Union Basement"
  29. }
  30. ]
  31. },
  32. {
  33. "name": "GraingerLibrary",
  34. "description": "You are in the Grainger Library. You can see the elevator and Espresso Royale.",
  35. "items": ["skateboard"],
  36. "directions": [
  37. {
  38. "directionName": "North",
  39. "room": "DCL_L520"
  40. },
  41. {
  42. "directionName": "South",
  43. "room": "IlliniUnion"
  44. },
  45. {
  46. "directionName": "SouthEast",
  47. "room": "ISR"
  48. },
  49. {
  50. "directionName": "West",
  51. "room": "ECEB"
  52. }
  53. ]
  54. },
  55. {
  56. "name": "DCL_L520",
  57. "description": "You are in DCL L520. You can see frustrated students at the CBTF.",
  58. "items": ["computer", "book"],
  59. "directions": [
  60. {
  61. "directionName": "South",
  62. "room": "GraingerLibrary"
  63. },
  64. {
  65. "directionName": "SouthWest",
  66. "room": "ECEB"
  67. }
  68. ]
  69. },
  70. {
  71. "name": "ISR",
  72. "description": "You are in ISR. You can see Chomps and the dorm rooms.",
  73. "items": ["HDMI cable"],
  74. "directions": [
  75. {
  76. "directionName": "NorthWest",
  77. "room": "GraingerLibrary"
  78. },
  79. {
  80. "directionName": "West",
  81. "room": "IlliniUnion"
  82. }
  83. ]
  84. },
  85. {
  86. "name": "MainQuad",
  87. "description": "You are on the quad. You can see Foellinger and the Union.",
  88.  
  89. "items": ["dog", "football"],
  90. "directions": [
  91. {
  92. "directionName": "North",
  93. "room": "IlliniUnion"
  94. }
  95. ]
  96. },
  97. {
  98. "name": "Union Basement",
  99. "description": "You are in the basement of Illini Union. You can see Wendy's, Blaze Pizza, and the Rec Room.",
  100. "items": ["French Fries"],
  101. "directions": [
  102. {
  103. "directionName": "Up",
  104. "room": "IlliniUnion"
  105. }
  106. ]
  107. },
  108. {
  109. "name": "ECEB",
  110. "description": "You are in the ECEB's atrium. You can see Fleck teaching CS173.",
  111. "items": ["coffee", "Raspberry Pie"],
  112. "directions": [
  113. {
  114. "directionName": "NorthEast",
  115. "room": "DCL_L520"
  116. },
  117. {
  118. "directionName": "SouthWest",
  119. "room": "Altgeld"
  120. }
  121. ]
  122. },
  123. {
  124. "name": "Altgeld",
  125. "description": "You are in Altgeld hall. You can hear the chiming of the bells and the Math library",
  126. "items": ["Stapler", "Glasses"],
  127. "directions": [
  128. {
  129. "directionName": "NorthEast",
  130. "room": "ECEB"
  131. },
  132. {
  133. "directionName": "East",
  134. "room": "IlliniUnion"
  135. }
  136. ]
  137. }
  138. ]
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement