Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 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": [{"circle"}],
  37. "directions": [
  38. {
  39. "directionName": "South",
  40. "room": "Room2"
  41. }
  42. ]
  43. },
  44. {
  45. "name": "Room4",
  46. "description": "Yet another generic room.",
  47. "items": [{"stuff"}],
  48. "directions": [
  49. {
  50. "directionName": "East",
  51. "room": "Room5"
  52. }
  53. ]
  54. },
  55. {
  56. "name": "Room5",
  57. "description": "The last generic room, finally.",
  58. "items": [{"more stuff"}, {"grading rubric"}],
  59. "directions": [
  60. {
  61. "directionName": "West",
  62. "room": "Room4"
  63. }
  64. ]
  65. }
  66. ]
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement