Advertisement
Guest User

Untitled

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