Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. {
  2. "startingRoom": "CastleEntrance",
  3. "endingRoom": "CastleExit",
  4. "rooms": [
  5. {
  6. "name": "CastleEntrance",
  7. "description": "You have entered the great castle.",
  8. "items": ["coin"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "MainHallway"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "MainHallway",
  18. "description": "This is the main hallway that connects to almost every room.",
  19. "items": ["sweatshirt", "key"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "CastleEntrance"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "PrinceRoom"
  28. },
  29. {
  30. "directionName": "North",
  31. "room": "GoldVault"
  32. },
  33. {
  34. "directionName": "East",
  35. "room": "KingsThrone"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "PrinceRoom",
  41. "description": "You are in the Prince Room. There are lots of items here.",
  42. "items": ["pizza", "swag", "sword", "chestplate", "money"],
  43. "directions": [
  44. {
  45. "directionName": "South",
  46. "room": "MainHallway"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "GoldVault",
  52. "description": "Wow! Look at all this massive treasure.",
  53. "items": ["gold", "diamonds", "steel", "vibranium"],
  54. "monster": {
  55. "monsterAttack": "medium",
  56. "monsterHealth": 50
  57. },
  58. "directions": [
  59. {
  60. "directionName": "South",
  61. "room": "MainHallway"
  62. },
  63. {
  64. "directionName": "NorthEast",
  65. "room": "Bathroom"
  66. }
  67. ]
  68. },
  69. {
  70. "name": "Bathroom",
  71. "description": "You are in the bathroom, take a dump if you want to.",
  72. "items": ["USB-C connector", "grading rubric", "sword"],
  73. "directions": [
  74. {
  75. "directionName": "West",
  76. "room": "GoldVault"
  77. }
  78. ]
  79. },
  80. {
  81. "name": "KingsThrone",
  82. "description": "You have wrongly entered the King's throne.",
  83. "items": ["bagel", "coffee"],
  84. "monster": {
  85. "monsterAttack": "low",
  86. "monsterHealth": 60
  87. },
  88. "directions": [
  89. {
  90. "directionName": "West",
  91. "room": "MainHallway"
  92. },
  93. {
  94. "directionName": "South",
  95. "room": "CastleExit"
  96. },
  97. {
  98. "directionName": "Down",
  99. "room": "SecretDungeon"
  100. }
  101. ]
  102. },
  103. {
  104. "name": "CastleExit",
  105. "description": "You have reached the exit",
  106. "directions": [
  107. {
  108. "directionName": "North",
  109. "room": "KingsThrone"
  110. }
  111. ]
  112. },
  113. {
  114. "name": "SecretDungeon",
  115. "description": "You are in a dungeon with only one way out.",
  116. "items": ["pencil"],
  117. "monster": {
  118. "monsterAttack": "high",
  119. "monsterHealth": 100
  120. },
  121. "directions": [
  122. {
  123. "directionName": "Up",
  124. "room": "KingsThrone"
  125. }
  126. ]
  127. }
  128. ]
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement