Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. {
  2. "startingRoom": "Blue41",
  3. "endingRoom": "FoellingerAuditorium",
  4. "rooms": [
  5. {
  6. "name": "Blue41",
  7. "description": "You are on Union",
  8. "items": ["I-Card"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "OrangeOnGreen"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "OrangeOnGreen",
  18. "description": "You are in the west entry of Siebel Center. You can see the elevator, the ACM office, and hallways to the north and east.",
  19. "items": ["hat", "keychain"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "Blue41"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "AnnieAnne's"
  28. },
  29. {
  30. "directionName": "North",
  31. "room": "Starbucks"
  32. },
  33. {
  34. "directionName": "East",
  35. "room": "Chipotle"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "AnnieAnne's",
  41. "description": "You are at AnnieAnne's. There are lots of pretzels.",
  42. "items": ["fork", "cheese sauce"],
  43. "directions": [
  44. {
  45. "directionName": "South",
  46. "room": "OrangeOnGreen"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "Starbucks",
  52. "description": "You are at Starbucks. Grab a cup of coffee.",
  53. "directions": [
  54. {
  55. "directionName": "South",
  56. "room": "OrangeOnGreen"
  57. },
  58. {
  59. "directionName": "NorthEast",
  60. "room": "Ballroom"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "Ballroom",
  66. "description": "You are in the Ballroom. There are a lot of students studying.",
  67. "items": ["laptop", "textbook"],
  68. "directions": [
  69. {
  70. "directionName": "West",
  71. "room": "Starbucks"
  72. }
  73. ]
  74. },
  75. {
  76. "name": "Chipotle",
  77. "description": "You are in Chipotle. A burrito would be nice.",
  78. "items": ["napkin", "spoon"],
  79. "directions": [
  80. {
  81. "directionName": "West",
  82. "room": "OrangeOnGreen"
  83. },
  84. {
  85. "directionName": "South",
  86. "room": "FoellingerAuditorium"
  87. },
  88. {
  89. "directionName": "Down",
  90. "room": "BowlingAlley"
  91. }
  92. ]
  93. },
  94. {
  95. "name": "FoellingerAuditorium",
  96. "description": "You are at Foellinger Auditorium. Better hurry to your lecture.",
  97. "directions": [
  98. {
  99. "directionName": "North",
  100. "room": "Chipotle"
  101. }
  102. ]
  103. },
  104. {
  105. "name": "BowlingAlley",
  106. "description": "You are in the basement the Union. Let's play a game of bowling.",
  107. "items": ["bowling ball"],
  108. "directions": [
  109. {
  110. "directionName": "Up",
  111. "room": "Chipotle"
  112. }
  113. ]
  114. }
  115. ]
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement