Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. {
  2. "startingRoom":"Room1",
  3. "endingRoom":"Room5",
  4. "rooms":[
  5. {
  6. "name":"Room1",
  7. "description":"The first room.",
  8. "directions":[
  9. {
  10. "directionName":"East",
  11. "room":"Room2"
  12. }
  13. ]
  14. },
  15. {
  16. "name":"Room2",
  17. "description":"The second room.",
  18. "directions":[
  19. {
  20. "directionName":"West",
  21. "room":"Room1"
  22. },
  23. {
  24. "directionName":"North",
  25. "room":"Room3"
  26. },
  27. {
  28. "directionName":"East",
  29. "room":"Room4"
  30. }
  31. ]
  32. },
  33. {
  34. "name":"Room3",
  35. "description":"Oh wow, the third room.",
  36. "items":[
  37. {
  38. "name":"circle"
  39. }
  40. ],
  41. "directions":[
  42. {
  43. "directionName":"South",
  44. "room":"Room2"
  45. }
  46. ]
  47. },
  48. {
  49. "name":"Room4",
  50. "description":"Yet another generic room.",
  51. "items":[
  52. {
  53. "name":"stuff"
  54. }
  55. ],
  56. "directions":[
  57. {
  58. "directionName":"East",
  59. "room":"Room5"
  60. }
  61. ]
  62. },
  63. {
  64. "name":"Room5",
  65. "description":"The last generic room, finally.",
  66. "items":[
  67. {
  68. "name":"more stuff"
  69. },
  70. {
  71. "name":"grading rubric"
  72. }
  73. ],
  74. "directions":[
  75. {
  76. "directionName":"West",
  77. "room":"Room4"
  78. }
  79. ]
  80. }
  81. ]
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement