Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. {
  2. "startingRoom": "home",
  3. "endingRoom": "homeWithComputer",
  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. "name": "homeWithComputer",
  44. "description": "You now have a fully functional PC at your house, congratulations!",
  45. "items": ["PC"],
  46. "directions": [
  47. {
  48. }
  49. ]
  50. }
  51. ],
  52. "itemsDetail":[
  53. {
  54. "name":"Asusmotherboard",
  55. "description":"it is an entry-level motherboard built by ASUS, a company famous for the bad quality of its entry-level product.",
  56. "weight":5,
  57. "price":119,
  58. "failRate":0.3
  59. }
  60. ]
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement