Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. {
  2. "startingRoom": "CaveEntrance",
  3. "endingRoom": "TombOfGalzar",
  4. "rooms": [
  5. {
  6. "name": "CaveEntrance",
  7. "description": "You are the mouth of the dark cave, reeking with an unusual smell",
  8. "items": ["broken blade"],
  9. "directions": [
  10. {
  11. "directionName": "North",
  12. "room": "CaveDome"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "CaveDome",
  18. "description": "A musky, rotten smell rushes past your nose. You are now at the Dome of the Cave near the entrance.",
  19. "items": ["torn cloth", "skull"],
  20. "directions": [
  21. {
  22. "directionName": "West",
  23. "room": "Tunnel1"
  24. }
  25. ]
  26. },
  27. {
  28. "name": "Tunnel1",
  29. "description": "It is absolutely dark, in the tunnel, without a torch, thankfully you thought of bringing one. You now see two paths.",
  30. "items": [],
  31. "directions": [
  32. {
  33. "directionName": "NorthWest",
  34. "room": "TunnelN"
  35. },
  36. {
  37. "directionName": "SouthWest",
  38. "room": "TunnelS"
  39. }
  40. ]
  41. },
  42. {
  43. "name": "TunnelN",
  44. "description": "There is a sliver of light down the end of the tunnel, there might be something good",
  45. "items": [],
  46. "directions": [
  47. {
  48. "directionName": "NorthWest",
  49. "room": "TombOfGalzar"
  50. },
  51. {
  52. "directionName": "SouthEast",
  53. "room": "Tunnel1"
  54. }
  55. ]
  56. },
  57. {
  58. "name": "TunnelS",
  59. "description": "It's absolutely dark, with no seeming end to the tunnel",
  60. "items": ["rock"],
  61. "directions": [
  62. {
  63. "directionName": "SouthWest",
  64. "room": "LoopTunnel"
  65. },
  66. {
  67. "directionName": "NorthEast",
  68. "room": "Tunnel1"
  69. }
  70. ]
  71. },
  72. {
  73. "name": "LoopTunnel",
  74. "description": "There is a large empty dome filled with deposits of crystals. You see a small tunnel opposite of where you went",
  75. "items": ["crystal", "fool's gold"],
  76. "directions": [
  77. {
  78. "directionName": "East",
  79. "room": "Tunnel1"
  80. },
  81. {
  82. "directionName": "NorthEast",
  83. "room": "TunnelS"
  84. }
  85. ]
  86. },
  87. {
  88. "name": "TombOfGalzar",
  89. "description": "The golds and riches of the king are hidden here! But you're stuck here forever...",
  90. "items": ["diamonds", "gold"],
  91. "directions": []
  92. }
  93. ]
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement