Advertisement
Guest User

ds

a guest
Feb 25th, 2020
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. {
  2. "startingRoom": "PAR",
  3. "endingRoom": "SiebelCenter",
  4. "rooms": [
  5. {
  6. "name": "PAR",
  7. "description": "You are in Pennsylvania Avenue Residence, outside of the Dining Hall after late night",
  8. "items": ["key"],
  9. "directions": [
  10. {
  11. "directionName": "South",
  12. "room": "FAR"
  13. },
  14. {
  15. "directionName": "North",
  16. "room": "CRCE"
  17. }
  18. ]
  19. },
  20. {
  21. "name": "FAR",
  22. "description": "You are by Florida Avenue Residence Hall, facing PAR.",
  23. "items": ["spider", "trash", "wimseGirl"],
  24. "directions": [
  25. {
  26. "directionName": "North",
  27. "room": "PAR"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "CRCE",
  33. "description": "You are facing the main entrance to CRCE, on Gregory and Goodwin.",
  34. "items": ["dumbbell", "socks"],
  35. "directions": [
  36. {
  37. "directionName": "West",
  38. "room": "Ikenberry"
  39. },
  40. {
  41. "directionName": "North",
  42. "room": "ISR"
  43. }
  44. ]
  45. },
  46. {
  47. "name": "Ikenberry",
  48. "description": "You are at Ikenberry.",
  49. "directions": [
  50. {
  51. "directionName": "NorthEast",
  52. "room": "IliiniUnion"
  53. }
  54. ]
  55. },
  56. {
  57. "name": "ISR",
  58. "description": "You are in ISR, nobody lives here.",
  59. "items": ["not a dining hall", "laptop"],
  60. "directions": [
  61. {
  62. "directionName": "North",
  63. "room": "SiebelCenter"
  64. }
  65. ]
  66. },
  67. {
  68. "name": "IliiniUnion",
  69. "description": "You are in the Illini Union.",
  70. "items": ["pizza"],
  71. "directions": [
  72. {
  73. "directionName": "NorthEast",
  74. "room": "SiebelCenter"
  75. }
  76. ]
  77. },
  78. {
  79. "name": "SiebelCenter",
  80. "description": "You are in Siebel Center, congrats.",
  81. "directions": [
  82. {
  83. "directionName": "North",
  84. "room": "SiebelEastHallway"
  85. }
  86. ]
  87. }
  88. ]
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement