Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
1,364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. {
  2. "startingRoom": "GreenStreet",
  3. "endingRoom": "DunkinDonuts",
  4. "rooms": [
  5. {
  6. "name": "GreenStreet",
  7. "description": "You are on Green Street, hungry and ready for food!",
  8. "items": ["wallet", "appetite"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "MiaZas"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "MiaZas",
  18. "description": "You are at Mia Za's. There are many delicious pasta options for you to try, and you get lasagna.",
  19. "items": ["spaghetti", "penne"],
  20. "directions": [
  21. {
  22. "directionName": "South",
  23. "room": "Teamoji"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "CaffeBene"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "Teamoji",
  33. "description": "You are at Teamoji. The variety of drinks are limitless, but you play it safe and order boba.",
  34. "items": ["smoothie", "coffee"],
  35. "directions": [
  36. {
  37. "directionName": "West",
  38. "room": "CaffeBene"
  39. }
  40. ]
  41. },
  42. {
  43. "name": "CaffeBene",
  44. "description": "You are at Caffe Bene. The weather's been very hot recently, so you order mango gelato.",
  45. "directions": [
  46. {
  47. "directionName": "North",
  48. "room": "ParisSuperCrepes"
  49. }
  50. ]
  51. },
  52. {
  53. "name": "ParisSuperCrepes",
  54. "description": "You are at Paris Super Crepes. Your sweet tooth is kicking in, so you buy a nutella crepe.",
  55. "items": ["milkshake", "french fries"],
  56. "directions": [
  57. {
  58. "directionName": "South",
  59. "room": "DunkinDonuts"
  60. },
  61. {
  62. "directionName": "West",
  63. "room": "Subway"
  64. }
  65. ]
  66. },
  67. {
  68. "name": "DunkinDonuts",
  69. "description": "You are at Dunkin Donuts. You know you're going to pull an all-nighter, so you buy a large coffee. What a way to end the day!",
  70. "directions": [
  71. {
  72. "directionName": "North",
  73. "room": "Subway"
  74. }
  75. ]
  76. },
  77. {
  78. "name": "Subway",
  79. "description": "You are at Subway. You realize you should probably be somewhat healthy, so you get a veggie wrap.",
  80. "items": ["chips"],
  81. "directions": [
  82. {
  83. "directionName": "East",
  84. "room": "ParisSuperCrepes"
  85. }
  86. ]
  87. }
  88. ]
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement