Advertisement
Guest User

Untitled

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