Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. {
  2. "startingRoom": "home",
  3. "endingRoom": "",
  4. "rooms": [
  5. {
  6. "name": "home",
  7. "description": "You are at home, you can see the micro center in a distance.",
  8. "items": ["wallet"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "pavement"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "pavement",
  18. "description": "you are walking down the pavement, watchout for the traffic",
  19. "items": [],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "home"
  24. },
  25. {
  26. "directionName": "East",
  27. "room": "MicroCenter"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "MicroCenter",
  33. "description": "You are at the Micro Center. One of the salesmen came up to you and asked what you want to buy.",
  34. "items": ["Asusmotherboard"],
  35. "directions": [
  36. {
  37. "directionName": "West",
  38. "room": "pavement"
  39. }
  40. ]
  41. }
  42. ],
  43. "itemsDetail":[
  44. {
  45. "name":"Asusmotherboard",
  46. "description":"it is an entry-level motherboard built by ASUS, a company famous for the bad quality of its entry-level product.",
  47. "weight":"5",
  48. "price":"119",
  49. "failRate":"0.3"
  50. }
  51. ]
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement