Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 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. },
  53. {
  54. "name": "TunnelS",
  55. "description": "It's absolutely dark, with no seeming end to the tunnel",
  56. "items": ["rock"],
  57. "directions": [
  58. {
  59. "directionName": "SouthWest",
  60. "room": "LoopTunnel"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "LoopTunnel",
  66. "description": "There is a large empty dome filled with deposits of crystals. You see a small tunnel opposite of where you went",
  67. "items": ["crystal", "fool's gold"],
  68. "directions": [
  69. {
  70. "directionName": "East",
  71. "room": "TunnelS"
  72. },
  73. {
  74. "directionName": "NorthEast",
  75. "room": "Tunnel1"
  76. }
  77. ]
  78. },
  79. {
  80. "name": "TombOfGalzar",
  81. "description": "The golds and riches of the king are hidden here! But you're stuck here forever...",
  82. "items": ["diamonds", "gold"],
  83. "directions": []
  84. }
  85. ]
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement