Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 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. "directions": [
  31. {
  32. "directionName": "NorthWest",
  33. "room": "TunnelN"
  34. },
  35. {
  36. "directionName": "SouthWest",
  37. "room": "TunnelS"
  38. }
  39. ]
  40. },
  41. {
  42. "name": "TunnelN",
  43. "description": "There is a sliver of light down the end of the tunnel, there might be something good",
  44. "directions": [
  45. {
  46. "directionName": "NorthWest",
  47. "room": "TombOfGalzar"
  48. }
  49. ]
  50. },
  51. {
  52. "name": "TunnelS",
  53. "description": "It's absolutely dark, with no seeming end to the tunnel",
  54. "items": ["rock"],
  55. "directions": [
  56. {
  57. "directionName": "SouthWest",
  58. "room": "LoopTunnel"
  59. }
  60. ]
  61. },
  62. {
  63. "name": "LoopTunnel",
  64. "description": "There is a large empty dome filled with deposits of crystals. You see a small tunnel opposite of where you went",
  65. "items": ["crystal", "fool's gold"],
  66. "directions": [
  67. {
  68. "directionName": "East",
  69. "room": "TunnelN"
  70. },
  71. {
  72. "directionName": "NorthEast",
  73. "room": "Tunnel1"
  74. }
  75. ]
  76. },
  77. {
  78. "name": "TombOfGalzar",
  79. "description": "The golds and riches of the king are hidden here! But you're stuck here forever...",
  80. "directions": []
  81. }
  82. ]
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement