Advertisement
tedshaoxue

Untitled

Feb 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.58 KB | None | 0 0
  1. {
  2. "startingRoom": "SanJose",
  3. "endingRoom": "GoldenGateBridge",
  4. "player" : {
  5. "items" : [
  6. {
  7. "name" : "iPhone",
  8. "teleportationEnabled" : "false",
  9. "roomToTeleportTo" : ""
  10. },
  11. {
  12. "name" : "Tree",
  13. "teleportationEnabled" : "true",
  14. "roomToTeleportTo" : "Berkeley"
  15. },
  16. {
  17. "name" : "FacebookApp",
  18. "teleportationEnabled" : "false",
  19. "roomToTeleportTo" : ""
  20. },
  21. {
  22. "name" : "BridgeToll",
  23. "teleportationEnabled" : "true",
  24. "roomToTeleportTo" : "SFDowntown"
  25. },
  26. {
  27. "name" : "Passport",
  28. "teleportationEnabled" : "false",
  29. "roomToTeleportTo" : ""
  30. },
  31. {
  32. "name" : "BobaTea",
  33. "teleportationEnabled" : "false",
  34. "roomToTeleportTo" : ""
  35. },
  36. {
  37. "name" : "Camera",
  38. "teleportationEnabled" : "true",
  39. "roomToTeleportTo" : "MenloPark"
  40. },
  41. {
  42. "name" : "ChromeBook",
  43. "teleportationEnabled" : "false",
  44. "roomToTeleportTo" : ""
  45. }
  46. ]
  47. },
  48. "rooms" : [
  49. {
  50. "name" : "SanJose",
  51. "description" : "Welcome to San Jose. You are in the heart of Silicon Valley",
  52. "question" : "Is San Jose a more populous city than San Francisco?",
  53. "answer" : "Yes",
  54. "directions" : [
  55. {
  56. "directionName": "SouthWest",
  57. "room": "Cupertino",
  58. "enabled" : "false",
  59. "validKeyNames" : [
  60. "iPhone", "iPad", "AirPods", "MacBook"
  61. ]
  62. },
  63. {
  64. "directionName": "West",
  65. "room": "MountainView",
  66. "enabled" : "false",
  67. "validKeyNames" : [
  68. "ChromeBook", "GoogleGlass", "GooglePixel"
  69. ]
  70. }
  71. ],
  72. "items" :[
  73. {
  74. "name" : "iPad",
  75. "teleportationEnabled" : "true",
  76. "roomToTeleportTo" : "Oakland"
  77. },
  78. {
  79. "name" : "ChromeBook"
  80. },
  81. {
  82. "name" : "GooglePixel"
  83. }
  84. ]
  85. },
  86. {
  87. "name" : "Cupertino",
  88. "description" : "You are now in Cupertino. You are standing right next to Apple's campus",
  89. "question" : "What year was Apple founded?",
  90. "answer" : "1976",
  91. "directions" : [
  92. {
  93. "directionName" : "NorthEast",
  94. "room" : "SanJose",
  95. "enabled" : "true",
  96. "validKeyNames" :[]
  97. },
  98. {
  99. "directionName" : "NorthWest",
  100. "room" : "MountainView",
  101. "enabled" : "true",
  102. "validKeyNames" : []
  103. }
  104. ],
  105. "items" : [
  106. {
  107. "name" : "AirPods"
  108. },
  109. {
  110. "name" : "GoogleGlass"
  111. },
  112. {
  113. "name" : "ThreeMillionDollars"
  114. }
  115. ]
  116. },
  117. {
  118. "name" : "MountainView",
  119. "description" : "You are now in Mountain View. You are now at the Googleplex.",
  120. "question" : "In which other bay area city is Google planning to build its new headquarters?",
  121. "answer" : "San Jose",
  122. "directions" : [
  123. {
  124. "directionName" : "East",
  125. "room" : "SanJose",
  126. "enabled" : "true",
  127. "validKeyNames" : []
  128. },
  129. {
  130. "directionName" : "SouthEast",
  131. "room" : "Cupertino",
  132. "enabled" : "true",
  133. "validKeyNames" : []
  134. },
  135. {
  136. "directionName" : "NorthWest",
  137. "room" : "PaloAlto",
  138. "enabled" : "false",
  139. "validKeyNames" : [
  140. "Tree", "StanfordAcceptanceLetter", "ThreeMillionDollars"
  141. ]
  142. }
  143. ],
  144. "items" : [
  145. {
  146. "name" : "StanfordAcceptanceLetter"
  147. }
  148. ]
  149. },
  150. {
  151. "name" : "PaloAlto",
  152. "description" : "You are in Palo Alto. There are students from Stanford walking to class",
  153. "question" : "What does the word Palo Alto translate to in Spanish?",
  154. "answer" : "Tall Tree",
  155. "directions" : [
  156. {
  157. "directionName" : "SouthEast",
  158. "room" : "MountainView",
  159. "enabled" : "true",
  160. "validKeyNames" : []
  161. },
  162. {
  163. "directionName" : "NorthEast",
  164. "room" : "MenloPark",
  165. "enabled" : "false",
  166. "validKeyNames" : [
  167. "FacebookApp"
  168. ]
  169. }
  170. ],
  171. "items" : [
  172. {
  173. "name" : "MacBook"
  174. },
  175. {
  176. "name" : "BerkeleyAcceptanceLetter"
  177. }
  178. ]
  179. },
  180. {
  181. "name" : "MenloPark",
  182. "description" : "You are in Menlo Park. You are at Facebook HQ",
  183. "question" : "In what year was Facebook founded?",
  184. "answer" : "2004",
  185. "directions" : [
  186. {
  187. "directionName" : "SouthWest",
  188. "room" : "PaloAlto",
  189. "enabled" : "true",
  190. "validKeyNames" : []
  191. },
  192. {
  193. "directionName" : "NorthEast",
  194. "room" : "Oakland",
  195. "enabled" : "false",
  196. "validKeyNames" : [
  197. "BridgeToll", "WarriorsTickets"
  198. ]
  199. },
  200. {
  201. "directionName" : "NorthWest",
  202. "room" : "SFAirport",
  203. "enabled" : "false",
  204. "validKeyNames" : [
  205. "PlaneTicket", "Passport", "Luggage"
  206. ]
  207. }
  208. ],
  209. "items" : [
  210. {
  211. "name" : "WarriorsTickets"
  212. },
  213. {
  214. "name" : "PlaneTicket"
  215. }
  216. ]
  217. },
  218. {
  219. "name" : "Oakland",
  220. "description" : "You crossed the bridge and you are now in Oakland. You can see the arena where the Golden State Warriors play",
  221. "question" : "Who is the majority owner of the Golden State Warriors?",
  222. "answer" : "Joe Lacob",
  223. "directions" : [
  224. {
  225. "directionName" : "SouthWest",
  226. "room" : "MenloPark",
  227. "enabled" : "true",
  228. "validKeyNames" : []
  229. },
  230. {
  231. "directionName" : "West",
  232. "room" : "SFDowntown",
  233. "enabled" : "true",
  234. "validKeyNames" : []
  235. },
  236. {
  237. "directionName" : "North",
  238. "room" : "Berkeley",
  239. "enabled" : "false",
  240. "validKeyNames" : [
  241. "BerkeleyAcceptanceLetter", "BobaTea", "Bear"
  242. ]
  243. }
  244. ],
  245. "items" : [
  246. {
  247. "name" : "Bear"
  248. },
  249. {
  250. "name" : "Bike"
  251. }
  252. ]
  253. },
  254. {
  255. "name" : "Berkeley",
  256. "description" : "You are now in Berkeley. You can see the UC Bekeley campus",
  257. "question" : "What is the mascot of UC Berkeley's name?",
  258. "answer" : "Oski",
  259. "directions" : [
  260. {
  261. "directionName" : "South",
  262. "room" : "Oakland",
  263. "enabled" : "true",
  264. "validKeyNames" : []
  265. }
  266. ],
  267. "items" : [
  268. {
  269. "name" : "Luggage"
  270. },
  271. {
  272. "name" : "Airpods"
  273. }
  274. ]
  275. },
  276. {
  277. "name" : "SFAirport",
  278. "description" : "You are now at the San Francisco Airport. You can see planes taking off and landing",
  279. "question" : "True or False? The bay area is more populated than the Chicago metro area?",
  280. "answer" : "False",
  281. "directions" : [
  282. {
  283. "directionName" : "SouthEast",
  284. "room" : "MenloPark",
  285. "enabled" : "true",
  286. "validKeyNames" : []
  287. },
  288. {
  289. "directionName" : "North",
  290. "room" : "SFDowntown",
  291. "enabled" : "true",
  292. "validKeyNames" : []
  293. },
  294. {
  295. "directionName" : "NorthWest",
  296. "room" : "GoldenGateBridge",
  297. "enabled" : "false",
  298. "validKeyNames" : [
  299. "Camera", "Jacket", "Bike"
  300. ]
  301. }
  302. ],
  303. "items" : [
  304. {
  305. "name" : "Jacket"
  306. },
  307. {
  308. "name" : "Luggage"
  309. }
  310. ]
  311. },
  312. {
  313. "name": "SFDowntown",
  314. "description": "You are now in downtown San Francsico. You can see the Salesforce Tower and Alcatraz Island",
  315. "question" : "True or False? The Bay Bridge is longer than the Golden Gate Bridge?",
  316. "answer" : "True",
  317. "directions": [
  318. {
  319. "directionName": "East",
  320. "room": "Oakland",
  321. "enabled": "true",
  322. "validKeyNames": []
  323. },
  324. {
  325. "directionName": "South",
  326. "room": "SFAirport",
  327. "enabled": "true",
  328. "validKeyNames": []
  329. },
  330. {
  331. "directionName": "West",
  332. "room": "GoldenGateBridge",
  333. "enabled": "false",
  334. "validKeyNames": [
  335. "Camera",
  336. "Jacket",
  337. "Bike"
  338. ]
  339. }
  340. ],
  341. "items" : [
  342. {
  343. "name" : "Bike"
  344. },
  345. {
  346. "name" : "iPhone"
  347. }
  348. ]
  349. },
  350. {
  351. "name" : "GoldenGateBridge",
  352. "description" : "You are now at the Golden Gate Bridge. You can see the fog rolling in off the Pacific Ocean",
  353. "question" : "What year was the Golden Gate Bridge finished being constructed?",
  354. "answer" : "1937",
  355. "directions" : [
  356. {
  357. "directionName" : "East",
  358. "name" : "SFDowntown",
  359. "enabled" : "true",
  360. "validKeyNames" : []
  361. },
  362. {
  363. "directionName" : "SouthEast",
  364. "name" : "SFAirport",
  365. "enabled" : "true",
  366. "validKeyNames" : []
  367. }
  368. ],
  369. "items" : []
  370. }
  371. ]
  372. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement