Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. {
  2. "startingRoom": "IkenberryDiningCenter",
  3. "endingRoom": "ARC",
  4. "rooms": [
  5. {
  6. "name": "IkenberryDiningCenter",
  7. "description": "You are in the dining hall, inside Ikenberry Commons.",
  8. "items": ["plate", "ice cream", "fork"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "57 North"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "57 North",
  18. "description": "You are in 57 north, inside of the Ikenberry commons. You can see Weston Hall and the mailroom.",
  19. "items": ["chips", "burger"],
  20. "directions": [
  21. {
  22. "directionName": "North",
  23. "room": "Weston Hall"
  24. },
  25. {
  26. "directionName": "South",
  27. "room": "MailRoom"
  28. },
  29. {
  30. "directionName": "West",
  31. "room": "IkenberryDiningCenter"
  32. }
  33. ]
  34. },
  35. {
  36. "name": "Weston Hall",
  37. "description": "You are in the dorm Weston Hall, there are a lot of students.",
  38. "items": ["i - card"],
  39. "directions": [
  40. {
  41. "directionName": "South",
  42. "room": "57 North"
  43. },
  44. {
  45. "directionName": "West",
  46. "room": "Snyder"
  47. }
  48. ]
  49. },
  50. {
  51. "name": "Snyder",
  52. "description": "You are in the dorm Snyder, there are not that many students",
  53. "directions": [
  54. {
  55. "directionName": "East",
  56. "room": "Weston Hall"
  57. },
  58. {
  59. "directionName": "North",
  60. "room": "Hopkins"
  61. },
  62. {
  63. "directionName": "South",
  64. "room": "ARC"
  65. }
  66. ]
  67. },
  68. {
  69. "name": "Hopkins",
  70. "description": "You are in Hopkins. There is space for two kitchens in this building.",
  71. "items": ["IPhone Charger", "Laptop"],
  72. "directions": [
  73. {
  74. "directionName": "South",
  75. "room": "Snyder"
  76. }
  77. ]
  78. },
  79. {
  80. "name": "ARC",
  81. "description": "You are in the gym. You can see many students working out.",
  82. "items": ["dumbbell", "basketball"],
  83. "directions": [
  84. {
  85. "directionName": "North",
  86. "room": "Snyder"
  87. }
  88. ]
  89. }
  90. ]
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement