Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. Formatted JSON Data
  2. {
  3. "startingRoom":"Home",
  4. "endingRoom":"none",
  5. "rooms":[
  6. {
  7. "name":"Home",
  8. "descriptions":[
  9. "You are at your home, you can see the market just two blocks away from you."
  10. ],
  11. "items":[
  12. "wallet"
  13. ],
  14. "directions":[
  15. {
  16. "directionName":"East",
  17. "room":"pavement"
  18. }
  19. ]
  20. },
  21. {
  22. "name":"pavement",
  23. "descriptions":[
  24. "You are now walking down the pavement. Be careful with the traffic",
  25. "You suddenly came to realize that you are just a character created in the game, and think that you have no control over your own fate what so ever. You saw a car coming in the opposite direction, runs straight toward it, and commited suicide."
  26. ],
  27. "items":[
  28.  
  29. ],
  30. "directions":[
  31. {
  32. "directionName":"East",
  33. "room":"Micro Center"
  34. },
  35. {
  36. "directionName":"West",
  37. "room":"home"
  38. }
  39. ]
  40. },
  41. {
  42. "name":"Micro Center",
  43. "descriptions":[
  44. "You are in the Micro Center, one of the salesmen comes to you and asks what you wanna buy."
  45. ],
  46. "items":[
  47. "motherboard",
  48. "case",
  49. "videocard",
  50. "cpu",
  51. "memory",
  52. "storage",
  53. "cooler",
  54. "powersupply"
  55. ],
  56. "directions":[
  57. {
  58. "directionName":"West",
  59. "room":"pavement"
  60. }
  61. ]
  62. }
  63. ],
  64. "items":[
  65. {
  66. "name":"Asus_motherboard",
  67. "description":"it is an entry-level motherboard built by ASUS, a company famous for the bad quality of its entry-level product.",
  68. "weight":5,
  69. "price":119,
  70. "failRate":0.3
  71. }
  72. ]
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement