Advertisement
davidzhangshs

Untitled

Feb 25th, 2020
649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 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. "type": "motherboard",
  56. "description":"it is an entry-level motherboard built by ASUS, a company famous for the bad quality of its entry-level product.",
  57. "weight":"5",
  58. "price":"119",
  59. "failRate":"0.3"
  60. },
  61. {
  62. "name":"Ryzen3600CPU",
  63. "type": "cpu",
  64. "description":"mid tier cpu from AMD",
  65. "weight":"1",
  66. "price":"189",
  67. "failRate":"0.01"
  68. },
  69. {
  70. "name":"RX5700XT",
  71. "type": "gpu",
  72. "description":"high end gpu from AMD",
  73. "weight":"4",
  74. "price":"499",
  75. "failRate":"0.09"
  76. },
  77. {
  78. "name":"The ",
  79. "type": "cpu",
  80. "description":"the best Monitor in this store for gamers, but you can just use your old monitor anyway.",
  81. "weight":"10",
  82. "price":"999",
  83. "failRate":"0"
  84. },
  85. {
  86. "name":"wallet",
  87. "type":"wallet",
  88. "description":"this is your wallet, pick it up or you'll have to come back later.",
  89. "weight":"1",
  90. "price":"1000",
  91. "failRate":"0"
  92. ]
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement