Advertisement
Guest User

Panda Express

a guest
Feb 23rd, 2020
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. {
  2. "startingRoom": "Panda",
  3. "endingRoom": "Exit",
  4. "rooms": [
  5. {
  6. "name": "Panda",
  7. "description": "You are outside Panda Express. You have no money and you must find food to survive",
  8. "items": ["Dollar Bill", "Knife"],
  9. "directions": [
  10. {
  11. "directionName": "Forward",
  12. "room": "Lobby"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "Lobby",
  18. "description": "You are in the lobby of Panda Express. You see the line and the stairs",
  19. "items": ["Fork", "Chopsticks", "Gun"],
  20. "directions": [
  21. {
  22. "directionName": "Forward",
  23. "room": "Line"
  24. },
  25. {
  26. "directionName": "Up",
  27. "room": "2ndFloor"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "Line",
  33. "description": "You are currently in line. You can pick either Chow Mein or Fried Rice",
  34. "items": ["Chow Mein", "Fried Rice"],
  35. "directions": [
  36. {
  37. "directionName": "Forward",
  38. "room": "Entrees"
  39. },
  40. {
  41. "directionName": "Back",
  42. "room": "Lobby"
  43. }
  44. ]
  45. },
  46. {
  47. "name": "2ndFloor",
  48. "description": "You are upstairs. You can see customers eating food and you can see the bathrooms",
  49. "items": ["Mop"],
  50. "directions": [
  51. {
  52. "directionName": "Right",
  53. "room": "Bathroom2"
  54. },
  55. {
  56. "directionName": "Down",
  57. "room": "Lobby"
  58. }
  59. ]
  60. },
  61. {
  62. "name": "Entrees",
  63. "description": "You are standing in front of the entrees. You can pick your entrees Here.",
  64. "items": ["Orange Chicken", "Beijing Beef", "Kung Pao Chicken", "Brocolli Beef"],
  65. "directions": [
  66. {
  67. "directionName": "Forward",
  68. "room": "Register"
  69. },
  70.  
  71. "directionName": "Back",
  72. "room": "Line"
  73. }
  74. ]
  75. },
  76. {
  77. "name": "Register",
  78. "description": "You are at the register. You have paid and received your food",
  79. "items": ["Soy Sauce", "Hot Sauce"],
  80. "directions": [
  81. {
  82. "directionName": "To the Kitchen",
  83. "room": "Kitchen"
  84. },
  85. {
  86. "directionName": "To the Fountain",
  87. "room": "Fountain"
  88. },
  89. {
  90. "directionName": "To the Table",
  91. "room": "Table"
  92. }
  93. ]
  94. },
  95. {
  96. "name": "Kitchen",
  97. "description": "You are in the kitchen. You see a wok.",
  98. "items": ["Wok"],
  99. "directions": [
  100. {
  101. "directionName": "Back",
  102. "room": "Register"
  103. }
  104. ]
  105. },
  106. {
  107. "name": "Bathroom2",
  108. "description": "You are in the bathroom upstairs. There is nobody inside.",
  109. "items": ["Paper Towel"],
  110. "directions": [
  111. {
  112. "directionName": "Back",
  113. "room": "2ndFloor"
  114. }
  115. ]
  116. },
  117. {
  118. "name": "Fountain",
  119. "description": "You are at the fountain. You can pick your drink here",
  120. "items": ["Sprite", "Coca-Cola", "Ice Tea", "Water"],
  121. "directions": [
  122. {
  123. "directionName": "To the Table",
  124. "room": "Table"
  125. },
  126. {
  127. "directionName": "To the Register",
  128. "room": "Register"
  129. },
  130. {
  131. "directionName": "To the Exit",
  132. "room": "Exit"
  133. }
  134. ]
  135. },
  136. {
  137. "name": "Table",
  138. "description": "You are at the table enjoying your Panda Express!",
  139. "items": ["Chair", "Napkin"],
  140. "directions": [
  141. {
  142. "directionName": "To the Drink Fountain",
  143. "room": "Fountain"
  144. },
  145. {
  146. "directionName": "To the Exit",
  147. "room": "Exit"
  148. }
  149. ]
  150. },
  151. {
  152. "name": "Exit",
  153. "description": "You are at the Exit.",
  154. "items": ["Dog"],
  155. "directions": [
  156. {
  157. "directionName": "To Panda",
  158. "room": "Panda"
  159. }
  160. ]
  161. }
  162. ]
  163. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement