Advertisement
Guest User

sdvgas

a guest
Feb 25th, 2020
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 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. "items": ["beer can"],
  50. "directions": [
  51. {
  52. "directionName": "NorthEast",
  53. "room": "IliiniUnion"
  54. }
  55. ]
  56. },
  57. {
  58. "name": "ISR",
  59. "description": "You are in ISR, nobody lives here.",
  60. "items": ["not a dining hall", "laptop"],
  61. "directions": [
  62. {
  63. "directionName": "North",
  64. "room": "SiebelCenter"
  65. }
  66. ]
  67. },
  68. {
  69. "name": "IliiniUnion",
  70. "description": "You are in the Illini Union.",
  71. "items": ["pizza"],
  72. "directions": [
  73. {
  74. "directionName": "NorthEast",
  75. "room": "SiebelCenter"
  76. }
  77. ]
  78. },
  79. {
  80. "name": "SiebelCenter",
  81. "description": "You are in Siebel Center, congrats.",
  82. "items": ["laptop"],
  83. "directions": [
  84. {
  85. "directionName": "North",
  86. "room": "SiebelEastHallway"
  87. }
  88. ]
  89. }
  90. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement