Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. {
  2. "startingRoom": "Hopkins",
  3. "endingRoom": "Grainger Library",
  4. "keysToFind": ["Purple Key", "Red Key", "Green Key", "Blue Key", "Yellow Key"],
  5. "keysPoints": [10, 20, 30, 40, 75],
  6. "rooms": [
  7. {
  8. "name": "Hopkins",
  9. "description": "You are at Hopkins Hall, near Ikenberry Commons",
  10. "items": ["dorm rooms"],
  11. "directions": [
  12. {
  13. "directionName": "East",
  14. "room": "Ikenberry Commons"
  15. }
  16. ]
  17. },
  18. {
  19. "name": "Ikenberry Commons",
  20. "description": "You are at the entry of SDRP. You can see lots of thing.",
  21. "items": ["food", "students"],
  22. "keys": ["Purple Key"],
  23. "directions": [
  24. {
  25. "directionName": "West",
  26. "room": "Hopkins"
  27. },
  28. {
  29. "directionName": "Northeast",
  30. "room": "Armory"
  31. },
  32. {
  33. "directionName": "North",
  34. "room": "Frat Houses"
  35. }
  36. ]
  37. },
  38. {
  39. "name": "Armory",
  40. "description": "You are at the Armory.",
  41. "items": ["classrooms", "gym"],
  42. "keys": ["Blue Key"],
  43. "directions": [
  44. {
  45. "directionName": "North",
  46. "room": "Lincoln Hall"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "Frat Houses",
  52. "description": "Look at all the different Frat houses!",
  53. "items": [],
  54. "directions": [
  55. {
  56. "directionName": "South",
  57. "room": "Ikenberry Commons"
  58. },
  59. {
  60. "directionName": "NorthWest",
  61. "room": "Lincoln Hall"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "Lincoln Hall",
  67. "description": "Come here for CS 100",
  68. "items": ["lecture hall", "professors"],
  69. "keys": ["Yellow Key"],
  70. "directions": [
  71. {
  72. "directionName": "North",
  73. "room": "Altgeld"
  74. },
  75. {
  76. "directionName": "West",
  77. "room": "Noyes"
  78. }
  79. ]
  80. },
  81. {
  82. "name": "Altgeld",
  83. "description": "At the math building. Its a little old looking",
  84. "items": ["bagel", "coffee"],
  85. "keys": ["Green Key"],
  86. "directions": [
  87. {
  88. "directionName": "North",
  89. "room": "Grainger Library"
  90. },
  91. {
  92. "directionName": "South",
  93. "room": "Lincoln Hall"
  94. },
  95. {
  96. "directionName": "West",
  97. "room": "Noyes"
  98. },
  99. {
  100. "directionName": "Down",
  101. "room": "Altgeld Basement"
  102. }
  103. ]
  104. },
  105. {
  106. "name": "Noyes",
  107. "description": "There are many people learning Chemistry, and sometimes other subjects",
  108. "items": [],
  109. "keys": ["Red Key"],
  110. "directions": [
  111. {
  112. "directionName": "North",
  113. "room": "Grainger Library"
  114. }
  115. ]
  116. },
  117. {
  118. "name": "Grainger Library",
  119. "description": "Congrats you have made it to Grainger. Look at all the engineering students studying",
  120. "items": ["pencil"],
  121. "directions": [
  122. {
  123. "directionName": "South",
  124. "room": "Altgeld"
  125. }
  126. ]
  127. },
  128. {
  129. "name": "Altgeld Basement",
  130. "description": "There is no coming back from here...",
  131. "items": ["CBTF classroom"],
  132. "directions": [
  133. {
  134. "directionName": "",
  135. "room": "does not exist"
  136. }
  137. ]
  138. }
  139. ]
  140. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement