Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 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"],
  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. "directions": [
  54. {
  55. "directionName": "South",
  56. "room": "SiebelEntry"
  57. },
  58. {
  59. "directionName": "NorthEast",
  60. "room": "Siebel1112"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "Siebel1112",
  66. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  67. "items": ["USB-C connector", "grading rubric"],
  68. "directions": [
  69. {
  70. "directionName": "West",
  71. "room": "SiebelNorthHallway"
  72. }
  73. ]
  74. },
  75. {
  76. "name": "SiebelEastHallway",
  77. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  78. "items": ["bagel", "coffee"],
  79. "directions": [
  80. {
  81. "directionName": "West",
  82. "room": "SiebelEntry"
  83. },
  84. {
  85. "directionName": "South",
  86. "room": "Siebel1314"
  87. },
  88. {
  89. "directionName": "Down",
  90. "room": "SiebelBasement"
  91. }
  92. ]
  93. },
  94. {
  95. "name": "Siebel1314",
  96. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  97. "directions": [
  98. {
  99. "directionName": "North",
  100. "room": "SiebelEastHallway"
  101. }
  102. ]
  103. },
  104. {
  105. "name": "SiebelBasement",
  106. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  107. "items": ["pencil"],
  108. "directions": [
  109. {
  110. "directionName": "Up",
  111. "room": "SiebelEastHallway"
  112. }
  113. ]
  114. }
  115. ],
  116. "itemsDetail":[
  117. {
  118. "name":"Asusmotherboard",
  119. "description":"it is an entry-level motherboard built by ASUS, a company famous for the bad quality of its entry-level product.",
  120. "weight":"5",
  121. "price":"119",
  122. "failRate":"0.3"
  123. }
  124. ]
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement