Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. {
  2. "startingRoom": "SiebelCenter",
  3. "endingRoom": "Mango Street",
  4. "rooms": [
  5. {
  6. "name": "SiebelCenter",
  7. "description": "You are in Siebel Center, home of CS@Illinois!",
  8. "items": ["laptop stickers", "cs@illinois shirt"],
  9. "directions": [
  10. {
  11. "directionName": "West",
  12. "room": "Digital Computer Laboratory"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "Digital Computer Laboratory",
  18. "description": "You are in the east entry of DCL. You can see the elevator, the CBTF room, and a hallway to the east.",
  19. "items": ["USB-C Connector", "printer"],
  20. "directions": [
  21. {
  22. "directionName": "South",
  23. "room": "Grainger Engineering Library"
  24. },
  25. {
  26. "directionName": "East",
  27. "room": "DCLEastHallway"
  28. }
  29. ]
  30. },
  31. {
  32. "name": "Grainger Engineering Library",
  33. "description": "You are in the Grainger Engineering Library. You can see sleep-deprived college students here.",
  34. "items": ["memory stick", "earbuds"],
  35. "directions": [
  36. {
  37. "directionName": "Northeast",
  38. "room": "Engineering Hall"
  39. }
  40. ]
  41. },
  42. {
  43. "name": "Engineering Hall",
  44. "description": "You are in the Engineering Hall. You can see an elevator and an administrative office.",
  45. "items": ["notebook", "James Steward Calculus II Textbook"],
  46. "directions": [
  47. {
  48. "directionName": "North",
  49. "room": "Espresso Royale"
  50. }
  51. ]
  52. },
  53. {
  54. "name": "DCLEastHallway",
  55. "description": "You are in the east hallway. You can see the CBTF room.",
  56. "items": ["calculator"],
  57. "directions": [
  58. {
  59. "directionName": "Down",
  60. "room": "DCLBasement"
  61. },
  62. {
  63. "directionName": "North",
  64. "room": "CBTF Room"
  65. }
  66. ]
  67. },
  68. {
  69. "name": "CBTF Room",
  70. "description": "You are in the CBTF Room. There are happy engineering students taking an exam.",
  71. "directions": [
  72. {
  73. "directionName": "North",
  74. "room": "SiebelEastHallway"
  75. }
  76. ]
  77. },
  78. {
  79. "name": "DCLBasement",
  80. "description": "You are in the basement of DCL. You see tables with students working and door to computer labs.",
  81. "items": ["pencil", "phone"],
  82. "directions": [
  83. {
  84. "directionName": "Up",
  85. "room": "Espresso Royale"
  86. }
  87. ]
  88. },
  89. {
  90. "name": "Espresso Royale",
  91. "description": "You have arrived to your destination Espresso Royale. Fuel your energy with the coffee here.",
  92. "items": ["menu", "coffee"],
  93. "directions": [
  94. {
  95. "directionName": "In",
  96. "room": "Mango Street"
  97. }]
  98. }
  99. ]
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement