Advertisement
eshiafr

Untitled

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