Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. {
  2. "startingRoom": "ACMOffice",
  3. "endingRoom": "Home",
  4. "rooms": [
  5. {
  6. "name": "ACMOffice",
  7. "description": "You are in the ACM office. You see people studying. Did you finish your homework?",
  8. "items": ["pizza", "swag"],
  9. "directions": [
  10. {
  11. "directionName": "east",
  12. "room": "CodeReviewRoom"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "CodeReviewRoom",
  18. "description": "You have in your code review room. You need to present to Michael Harty. What's the name of this assignment that you are presenting?",
  19. "items": ["Davis's HDMI connector"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "ACMOffice"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "Avionics"
  28. },
  29. {
  30. "directionName": "North",
  31. "room": "BangkokThai"
  32. },
  33. {
  34. "directionName": "East",
  35. "room": "GregoryHall"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "Avionics",
  41. "description": "You are at Flying Machine Avionics. You can see a bunch of cool hipsters and interesting art. What did you order?",
  42. "items": ["coffee", "laptops", "plants"],
  43. "directions": [
  44. {
  45. "directionName": "South",
  46. "room": "CodeReviewRoom"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "BangkokThai",
  52. "description": "You are at Bangkok. You can see people eating. What are kind of food are they eating?",
  53. "items": ["rice", "curry"],
  54. "directions": [
  55. {
  56. "directionName": "South",
  57. "room": "CodeReviewRoom"
  58. },
  59. {
  60. "directionName": "NorthEast",
  61. "room": "Teamoji"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "Teamoji",
  67. "description": "You are in Teamoji. You see your friends. What are you going to order?",
  68. "items": ["boba"],
  69. "directions": [
  70. {
  71. "directionName": "West",
  72. "room": "BangkokThai"
  73. }
  74. ]
  75. },
  76. {
  77. "name": "GregoryHall",
  78. "description": "You are in Gregory Hall. Take a break and read a book about the subject whose department has it's home in Gregory Hall. What is this subject?",
  79. "items": ["book", "chalkboards"],
  80. "directions": [
  81. {
  82. "directionName": "West",
  83. "room": "CodeReviewRoom"
  84. },
  85. {
  86. "directionName": "South",
  87. "room": "ArpansApartment"
  88. },
  89. {
  90. "directionName": "Down",
  91. "room": "Home"
  92. }
  93. ]
  94. },
  95. {
  96. "name": "ArpansApartment",
  97. "description": "You are in Arpan's Apartment. You see a ton of people in the living room. Who are they?",
  98. "items": ["TV", "piano"],
  99. "directions": [
  100. {
  101. "directionName": "North",
  102. "room": "GregoryHall"
  103. }
  104. ]
  105. },
  106. {
  107. "name": "Home",
  108. "description": "You are at home, in your room. You see your roommate and your bed. What are you going to do?",
  109. "items": ["food", "blanket", "clothes"],
  110. "directions": [
  111. {
  112. "directionName": "Up",
  113. "room": "Avionics"
  114. }
  115. ]
  116. }
  117. ]
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement