Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. {
  2. "startingRoom": "Entrance",
  3. "endingRoom": "Final Room",
  4. "rooms": [{
  5. "name": "Entrance",
  6. "description": "It is dangerous to go alone... Take the SWORD",
  7. "items": [
  8. "sword"
  9. ],
  10. "directions": [{
  11. "directionName": "East",
  12. "room": "Mystery Chamber"
  13. }]
  14. },
  15. {
  16. "name": "Mystery Chamber",
  17. "description": "You are in the east entry of the dungeon. You can see a cracked wall, and hallways to the north and east.",
  18. "items": [
  19. "bomb",
  20. "heart"
  21. ],
  22. "directions": [{
  23. "directionName": "West",
  24. "room": "Entrance"
  25. },
  26. {
  27. "directionName": "Northeast",
  28. "room": "Chamber of Secrets"
  29. },
  30. {
  31. "directionName": "North",
  32. "room": "North Chamber"
  33. },
  34. {
  35. "directionName": "East",
  36. "room": "East Chamber"
  37. }
  38. ]
  39. },
  40. {
  41. "name": "Chamber of Secrets",
  42. "description": "You are in the Chamber of Secrets. There are a few TREASURES to collect.",
  43. "items": [
  44. "key",
  45. "100_Rupee"
  46. ],
  47. "directions": [{
  48. "directionName": "Southwest",
  49. "room": "Mystery Chamber"
  50. }]
  51. },
  52. {
  53. "name": "North Chamber",
  54. "description": "You are in the North Chamber. You can see a locked door.",
  55. "directions": [{
  56. "directionName": "South",
  57. "room": "Mystery Chamber"
  58. },
  59. {
  60. "directionName": "NorthEast",
  61. "room": "Treasure Room"
  62. }
  63. ]
  64. },
  65. {
  66. "name": "Treasure Room",
  67. "description": "You are in the Treasure room. You can see a SHIELD here.",
  68. "items": [
  69. "shield"
  70. ],
  71. "directions": [{
  72. "directionName": "Southwest",
  73. "room": "North Chamber"
  74. }]
  75. },
  76. {
  77. "name": "East Chamber",
  78. "description": "You are in the East Chamber. You can see a big locked door and a staircase that leads down",
  79. "items": [
  80. "compass"
  81. ],
  82. "directions": [{
  83. "directionName": "West",
  84. "room": "Mystery Chamber"
  85. },
  86. {
  87. "directionName": "South",
  88. "room": "Final Room"
  89. },
  90. {
  91. "directionName": "Down",
  92. "room": "Underground Chamber"
  93. }
  94. ]
  95. },
  96. {
  97. "name": "Final Room",
  98. "description": "You are in the Final Room. Congratulations on finishing the dungeon. This is your reward!",
  99. "items": [
  100. "Heart_Container"
  101. ],
  102. "directions": [{
  103. "directionName": "North",
  104. "room": "East Chamber"
  105. }]
  106. },
  107. {
  108. "name": "Underground Chamber",
  109. "description": "You are in the Underground Chamber. Yes! you have found the BIG KEY",
  110. "items": [
  111. "Big_Key"
  112. ],
  113. "directions": [{
  114. "directionName": "Up",
  115. "room": "East Chamber"
  116. }]
  117. }
  118. ]
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement