Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. {
  2. "startingRoom": "MatthewsStreet",
  3. "endingRoom": "Siebel1314",
  4. "rooms": [
  5. {
  6. "name": "MatthewsStreet",
  7. "description": "You are on Matthews, outside the Siebel Center",
  8. "items": ["coin"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "SiebelEntry"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "SiebelEntry",
  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": ["sweatshirt", "key"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "MatthewsStreet"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "AcmOffice"
  28. },
  29. {
  30. "directionName": "North",
  31. "room": "SiebelNorthHallway"
  32. },
  33. {
  34. "directionName": "East",
  35. "room": "SiebelEastHallway"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "AcmOffice",
  41. "description": "You are in the ACM office. There are lots of friendly ACM people.",
  42. "items": ["pizza", "swag", "escape rope"],
  43. "directions": [
  44. {
  45. "directionName": "South",
  46. "room": "SiebelEntry"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "SiebelNorthHallway",
  52. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  53. "items": [],
  54. "directions": [
  55. {
  56. "directionName": "South",
  57. "room": "SiebelEntry"
  58. },
  59. {
  60. "directionName": "NorthEast",
  61. "room": "Siebel1112"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "Siebel1112",
  67. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  68. "items": ["USB-C connector", "grading rubric", "revive"],
  69. "directions": [
  70. {
  71. "directionName": "West",
  72. "room": "SiebelNorthHallway"
  73. }
  74. ]
  75. },
  76. {
  77. "name": "SiebelEastHallway",
  78. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  79. "items": ["bagel", "coffee"],
  80. "directions": [
  81. {
  82. "directionName": "West",
  83. "room": "SiebelEntry"
  84. },
  85. {
  86. "directionName": "South",
  87. "room": "Siebel1314"
  88. },
  89. {
  90. "directionName": "Down",
  91. "room": "SiebelBasement"
  92. }
  93. ]
  94. },
  95. {
  96. "name": "Siebel1314",
  97. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  98. "directions": [
  99. {
  100. "directionName": "North",
  101. "room": "SiebelEastHallway"
  102. }
  103. ]
  104. },
  105. {
  106. "name": "SiebelBasement",
  107. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  108. "items": ["pencil"],
  109. "directions": [
  110. {
  111. "directionName": "Up",
  112. "room": "SiebelEastHallway"
  113. }
  114. ]
  115. }
  116. ]
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement