Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. {
  2. "startingRoom": "SnyderHall",
  3. "endingRoom": "DCL",
  4. "rooms": [
  5. {
  6. "name": "SnyderHall",
  7. "description": "You are in your dorm in Snyder Hall. You have a view of the ARC.",
  8. "items": ["bed", "desk"],
  9. "directions": [
  10. {
  11. "directionName": "South",
  12. "room": "ARC"
  13. },
  14. {
  15. "directionName": "North",
  16. "room": "Ike"
  17. }
  18. ]
  19. },
  20. {
  21. "name": "ARC",
  22. "description": "You are at the ARC. You see people playing basketball and running on the treadmill.",
  23. "items": ["dumbbell", "basketball"],
  24.  
  25. "directions": [
  26. {
  27. "directionName": "North",
  28. "room": "SnyderHall"
  29. }
  30. ]
  31. },
  32. {
  33. "name": "Ike",
  34. "description": "You are in the Ike Dining Hall. Everyone is eating food.",
  35. "items": ["fork", "spoon"],
  36. "directions": [
  37. {
  38. "directionName": "South",
  39. "room": "SnyderHall"
  40. },
  41. {
  42. "directionName": "Northeast",
  43. "room": "Union"
  44. }
  45. ]
  46. },
  47. {
  48. "name": "Union",
  49. "description": "You are in the Courtyard Cafe at the Union. People are standing in line at Starbucks.",
  50. "directions": [
  51. {
  52. "directionName": "Southwest",
  53. "room": "Ike"
  54. },
  55. {
  56. "directionName": "West",
  57. "room": "Chipotle"
  58. },
  59. {
  60. "directionName": "North",
  61. "room": "Grainger"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "Chipotle",
  67. "description": "You are at Chipotle. Everyone around you is holding a mouthwatering burrito.",
  68. "items": ["burrito", "taco"],
  69. "directions": [
  70. {
  71. "directionName": "East",
  72. "room": "Union"
  73. },
  74. {
  75. "directionName": "Northeast",
  76. "room": "Grainger"
  77. },
  78. {
  79. "directionName": "South",
  80. "room": "Ike"
  81. }
  82. ]
  83. },
  84. {
  85. "name": "Grainger",
  86. "description": "You are on the second floor of Grainger studying for your next examlet.",
  87. "items": ["books", "coffee"],
  88. "directions": [
  89. {
  90. "directionName": "South",
  91. "room": "Union"
  92. },
  93. {
  94. "directionName": "Southwest",
  95. "room": "Chipotle"
  96. },
  97. {
  98. "directionName": "North",
  99. "room": "ECEB"
  100. },
  101. {
  102. "directionName": "Northeast",
  103. "room": "DCL"
  104. }
  105. ]
  106. },
  107. {
  108. "name": "ECEB",
  109. "description": "You are in the ECEB. Margaret Fleck is giving her lecture for CS 173.",
  110. "directions": [
  111. {
  112. "directionName": "South",
  113. "room": "Grainger"
  114. },
  115. {
  116. "directionName": "Southeast",
  117. "room": "DCL"
  118. }
  119. ]
  120. },
  121. {
  122. "name": "DCL",
  123. "description": "You are in DCL 1320. Professor Woodley is beginning his CS 126 lecture.",
  124. "items": ["laptop"],
  125. "directions": [
  126. {
  127. "directionName": "Northwest",
  128. "room": "ECEB"
  129. },
  130. {
  131. "directionName": "Southwest",
  132. "room": "Grainger"
  133. }
  134. ]
  135. }
  136. ]
  137. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement