Advertisement
Guest User

ncsa.json

a guest
Feb 25th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. {
  2. "startingRoom": "NCSA entrance",
  3. "endingRoom": "NCSA Third Floor",
  4. "rooms": [
  5. {
  6. "name": "NCSA First Floor",
  7. "description": "You are on the first floor. You can see Nic's cafe and the dining/lounge area.",
  8. "items": ["coin"],
  9. "directions": [
  10. {
  11. "directionName": "Up",
  12. "room": "NCSA Second Floor"
  13. },
  14. {
  15. "directionName": "South",
  16. "room": "NCSA entrance"
  17. }
  18. ]
  19. },
  20. {
  21. "name": "NCSA entrance",
  22. "description": "You are at the entrance of the NCSA Building. You can see an elevator and a staircase.",
  23. "items": ["sweatshirt", "key"],
  24. "directions": [
  25. {
  26. "directionName": "North",
  27. "room": "NCSA First Floor"
  28. },
  29. {
  30. "directionName": "West",
  31. "room": "Lounge"
  32. }
  33. ]
  34. },
  35. {
  36. "name": "Lounge",
  37. "description": "You are in the NCSA Lounge. You see people eating and studying.",
  38. "items": ["pizza", "swag"],
  39. "directions": [
  40. {
  41. "directionName": "East",
  42. "room": "NCSA entrance"
  43. }
  44. ]
  45. },
  46. {
  47. "name": "NCSA Second Floor",
  48. "description": "You are on the second floor. You can see all of the conference rooms.",
  49. "directions": [
  50. {
  51. "directionName": "Down",
  52. "room": "NCSA First Floor"
  53. },
  54. {
  55. "directionName": "Up",
  56. "room": "NCSA Third Floor"
  57. }
  58. ]
  59. },
  60. {
  61. "name": "NCSA Third Floor",
  62. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  63. "items": ["USB-C connector", "grading rubric"],
  64. "directions": [
  65. {
  66. "directionName": "Down",
  67. "room": "NCSA Second Floor"
  68. }
  69. ]
  70. }
  71. ]
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement