Advertisement
Guest User

Untitled

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