Advertisement
Guest User

StudentLife

a guest
Feb 20th, 2020
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. {
  2. "startingRoom": "UndisclosedDorm",
  3. "endingRoom": "DiscussionRoom",
  4. "rooms": [
  5. {
  6. "name": "UndisclosedDorm",
  7. "description": "This a dark room. \nIt's your dorm, and there is a poor beat up alarm clock that was smacked to snooze one too many times. \nThe fridge is empty, the dishes haven't been washed, and your roommate is half asleep yelling at you to turn off the alarm clock.",
  8. "directions": [
  9. {
  10. "directionName": "Out",
  11. "room": "Green&Goodwin"
  12. }
  13. ]
  14. },
  15. {
  16. "name": "Green&Goodwin",
  17. "description": "You arrive at an intersection known for its super long wait and walk time. You see people walk across the street regardless of whose turn it is.",
  18. "directions": [
  19. {
  20. "directionName": "North",
  21. "room": "SiebelCenter"
  22. },
  23. {
  24. "directionName": "West",
  25. "room": "Union"
  26. },
  27. {
  28. "directionName": "Up",
  29. "room": "Daydream"
  30. }
  31. ]
  32. },
  33. {
  34. "name": "SiebelCenter",
  35. "description": "You are in Siebel. There are many CS126 students on the first floor, anxiously waiting for office hours.",
  36. "directions": [
  37. {
  38. "directionName": "Down",
  39. "room": "DiscussionRoom"
  40. },
  41. {
  42. "directionName": "Up",
  43. "room": "StudyArea"
  44. }
  45. ]
  46. },
  47. {
  48. "name": "StudyArea",
  49. "description": "You are on the second floor of Siebel. Sometimes it's quiet, other times it's packed and noisy. \nGeniuses and noobs alike roam this floor. You wish you could be one of the notable people giving talks, but alas, you are but a peasant of a freshman.",
  50. "directions": [
  51. {
  52. "directionName": "Down",
  53. "room": "SiebelCenter"
  54. }
  55. ]
  56. },
  57. {
  58. "name": "DiscussionRoom",
  59. "description": "One of many discussion rooms for CS126. This is where people get (gently) roasted alive and question the worthiness of their code. \nYou get the feeling something hype is going to happen in the future, but you feel like that involves some side quests. \nWhat CS student has time for side quests, when there are CS126 assignments to try and finish?\n",
  60. "directions": [
  61. {
  62. "directionName": "Up",
  63. "room": "SiebelCenter"
  64. },
  65. {
  66. "directionName": "SideQuest",
  67. "room": "SiebelCenter"
  68. }
  69. ]
  70. },
  71. {
  72. "name": "Union",
  73. "description": "You are in the Union, where there is a long line on both floors spanning the entirety of the building. This is where you can get somewhat okay food for lunch.",
  74. "directions": [
  75. {
  76. "directionName": "East",
  77. "room": "Green&Goodwin"
  78. },
  79. {
  80. "directionName": "Front",
  81. "room": "BusStop"
  82. }
  83. ]
  84. },
  85. {
  86. "name": "BusStop",
  87. "description": "You are standing in the Union bus station. A lot of buses go through here, but you can't ride a single one because walking would be faster.",
  88. "directions": [
  89. {
  90. "directionName": "Back",
  91. "room": "Union"
  92. }
  93. ]
  94. },
  95. {
  96. "name": "Daydream",
  97. "description": "It's a bird! A plane! No, it's you thinking you can fly to class when flying cars have yet to be invented. \nCome back down to reality this instant!",
  98. "directions": [
  99. {
  100. "directionName": "Down",
  101. "room": "Green&Goodwin"
  102. }
  103. ]
  104. }
  105. ]
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement