Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. {
  2. "startingRoom" : "Front Yard",
  3. "endingRoom" : "Bedroom",
  4. "player" : {
  5. "items" : []
  6. },
  7. "rooms" : [
  8. {
  9. "name" : "Front Yard",
  10. "description" : "You are in your front yard. The door to your house is right in front of you, but you seem to have lost your house keys.",
  11. "items" : [],
  12. "directions" : [
  13. {
  14. "directionName" : "North",
  15. "room" : "Doorway",
  16. "enabled" : "False",
  17. "validKeyNames" : ["Spare Key"]
  18. },
  19. {
  20. "directionName" : "East",
  21. "room" : "Backyard",
  22. "enabled" : "True",
  23. "validKeyNames" : []
  24. }
  25. ]
  26. },
  27. {
  28. "name": "Back Yard",
  29. "description": "You are in your backyard. You see your 3 pet chickens sleeping peacefully.",
  30. "items" : [
  31. {
  32. "name":"Spare Key"
  33. }
  34. ],
  35. "directions": [
  36. {
  37. "directionName": "West",
  38. "room": "Front Yard",
  39. "enabled": "True",
  40. "validKeyNames": []
  41. }
  42. ]
  43. },
  44. {
  45. "name": "Doorway",
  46. "description": "You are now in the house. The house is completely silent.",
  47. "items" : [
  48. {
  49. "name": "Ruler"
  50. }
  51. ],
  52. "directions": [
  53. {
  54. "directionName": "West",
  55. "room": "Living Room",
  56. "enabled": "True",
  57. "validKeyNames": []
  58. },
  59. {
  60. "directionName": "East",
  61. "room": "Kitchen",
  62. "enabled": "True",
  63. "validKeyNames": []
  64. }
  65. ]
  66. },
  67. {
  68. "name": "Living Room",
  69. "description": "You are in your living room. There is a TV...and also your younger brother playing video games in front of it. You want to go upstairs to your room, but you know your brother would snitch on you.",
  70. "items" : [],
  71. "directions": [
  72. {
  73. "directionName": "East",
  74. "room": "Doorway",
  75. "enabled": "True",
  76. "validKeyNames": []
  77. },
  78. {
  79. "directionName": "Up",
  80. "room": "Stairs",
  81. "enabled": "False",
  82. "validKeyNames": []
  83. }
  84. ]
  85. },
  86. {
  87. "name": "Kitchen",
  88. "description": "You are in your kitchen. There is some food laying around on the counter tops as well as many dishes that you never washed.",
  89. "items" : [
  90. {
  91. "name": "Chocolate"
  92. }
  93. ],
  94. "directions": [
  95. {
  96. "directionName": "West",
  97. "room": "Doorway",
  98. "enabled": "True",
  99. "validKeyNames": []
  100. }
  101. ]
  102. },
  103. {
  104. "name": "Stairs",
  105. "description": "You are at the top of the stairs. You forgot where your room is so you try going door to door to see the signs on each bedroom door. But, you also can't see because you left your glasses somewhere in the house.",
  106. "items" : [
  107. {
  108. "name": "$5 Bill"
  109. }
  110. ],
  111. "directions": [
  112. {
  113. "directionName": "South",
  114. "room": "Bedroom",
  115. "enabled": "False",
  116. "validKeyNames": ["Glasses"]
  117. },
  118. {
  119. "directionName": "East",
  120. "room": "Bathroom",
  121. "enabled": "True",
  122. "validKeyNames": []
  123. }
  124. ]
  125. },
  126. {
  127. "name": "Bathroom",
  128. "description": "You are in your bathroom.",
  129. "items" : [
  130. {
  131. "name": "Glasses"
  132. }
  133. ],
  134. "directions": [
  135. {
  136. "directionName": "West",
  137. "room": "Stairs",
  138. "enabled": "True",
  139. "validKeyNames": []
  140. }
  141. ]
  142. },
  143. {
  144. "name": "Bedroom",
  145. "description": "You are now in your bedroom.",
  146. "items" : [],
  147. "directions": [
  148. {
  149. "directionName": "North",
  150. "room": "Stairs",
  151. "enabled": "True",
  152. "validKeyNames": []
  153. }
  154. ]
  155. }
  156. ]
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement