Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. {
  2. "startingRoom": "MatthewsStreet",
  3. "endingRoom": "Siebel1314",
  4. "rooms": [{
  5. "name": "MatthewsStreet",
  6. "description": "You are on Matthews, outside the Siebel Center. Grab your laptop and begin your wonderful journey",
  7. "items": [
  8. "laptop"
  9. ],
  10. "directions": [{
  11. "directionName": "East",
  12. "room": "SiebelEntry"
  13. }]
  14. },
  15. {
  16. "name": "SiebelEntry",
  17. "description": "You are in Siebel Entry. You can see a dangerous WEB SCRIPTING VIRUS. How do you counter it ?",
  18. "items": [
  19. "PC_cleaner",
  20. "Malicious_software_removal_tool"
  21. ],
  22. "monsters": "Web Scripting Virus",
  23. "directions": [{
  24. "directionName": "West",
  25. "room": "MatthewsStreet"
  26. },
  27. {
  28. "directionName": "Northeast",
  29. "room": "AcmOffice"
  30. },
  31. {
  32. "directionName": "North",
  33. "room": "SiebelNorthHallway"
  34. },
  35. {
  36. "directionName": "East",
  37. "room": "SiebelEastHallway"
  38. }
  39. ]
  40. },
  41. {
  42. "name": "AcmOffice",
  43. "description": "You are in the ACM office. There are lots of friendly ACM people. Unfortunately, a RESIDENT VIRUS has affected their systems. Destroy it before it affects yours",
  44. "items": [
  45. "clean_file_software",
  46. "antivirus_software"
  47. ],
  48. "monsters": "Resident Virus",
  49. "directions": [{
  50. "directionName": "South",
  51. "room": "SiebelEntry"
  52. }]
  53. },
  54. {
  55. "name": "SiebelNorthHallway",
  56. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  57. "directions": [{
  58. "directionName": "South",
  59. "room": "SiebelEntry"
  60. },
  61. {
  62. "directionName": "NorthEast",
  63. "room": "Siebel1112"
  64. }
  65. ]
  66. },
  67. {
  68. "name": "Siebel1112",
  69. "description": "You are in Siebel 1112. There is space for two code reviews, but having the BROWSER HIJACKER VIRUS won't let you access GitHub. Destroy it and enjoy your Code Review",
  70. "items": [
  71. "USB-C_connector",
  72. "grading_rubric"
  73. ],
  74. "monsters": "Browser Hijacker",
  75. "directions": [{
  76. "directionName": "West",
  77. "room": "SiebelNorthHallway"
  78. }]
  79. },
  80. {
  81. "name": "SiebelEastHallway",
  82. "description": "You are in the east hallway. You see that Einstein Bro's system has been taken over by the deadly TROJAN. Remove the TROJAN and have a quick bagel bite.",
  83. "items": [
  84. "RKILL_software",
  85. "Malwarebytes"
  86. ],
  87. "monsters": "Trojan Horse",
  88. "directions": [{
  89. "directionName": "West",
  90. "room": "SiebelEntry"
  91. },
  92. {
  93. "directionName": "South",
  94. "room": "Siebel1314"
  95. },
  96. {
  97. "directionName": "Down",
  98. "room": "SiebelBasement"
  99. }
  100. ]
  101. },
  102. {
  103. "name": "Siebel1314",
  104. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  105. "directions": [{
  106. "directionName": "North",
  107. "room": "SiebelEastHallway"
  108. }]
  109. },
  110. {
  111. "name": "SiebelBasement",
  112. "description": "You are in the Siebel Basement. You see tables with students working, but because of a the NETWORK VIRUS, the students' network has been affected. Restore the network back to normal and save the day",
  113. "items": [
  114. "boot_time_scan_software"
  115. ],
  116. "monsters": "Network Virus",
  117. "directions": [{
  118. "directionName": "Up",
  119. "room": "SiebelEastHallway"
  120. }]
  121. }
  122. ]
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement