Advertisement
Guest User

presby

a guest
Feb 26th, 2020
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. {
  2. "startingRoom": "Presby Hall",
  3. "endingRoom": "Bookstore",
  4. "rooms": [
  5. {
  6. "name": "Presby Hall",
  7. "description": "You are in Presby",
  8. "items": ["Orange Chicken"],
  9. "directions": [
  10. {
  11. "directionName": "East",
  12. "room": "Insomnia Cookies"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "Insomnia Cookies",
  18. "description": "You are at INsomnia Cookies. Their cookies are fantastic",
  19. "items": ["sugar cookies", "chocolate cookies"],
  20. "directions": [
  21. {
  22. "directionName": "East",
  23. "room": "Altgeld Hall"
  24. },
  25. {
  26. "directionName": "Northeast",
  27. "room": "Evo"
  28. },
  29. {
  30. "directionName": "Southeast",
  31. "room": "Community United Church of Christ"
  32. },
  33. {
  34. "directionName": "West",
  35. "room": "Presby Hall"
  36. }
  37. ]
  38. },
  39. {
  40. "name": "Altgeld Hall",
  41. "description": "You are at Altgeld Hall, where crazy math take place.",
  42. "items": ["Math", "More Math"],
  43. "directions": [
  44. {
  45. "directionName": "South",
  46. "room": "Bookstore"
  47. },
  48. {
  49. "directionName": "West",
  50. "room": "Insomnia Cookies"
  51. }
  52. ]
  53. },
  54. {
  55. "name": "Evo",
  56. "description": "You are in EVO. It is an amazing chinese restaurant.",
  57. "items": ["Chinese food", "Spicy food"],
  58. "directions": [
  59. {
  60. "directionName": "North",
  61. "room": "Green Street"
  62. },
  63. {
  64. "directionName": "Southwest",
  65. "room": "Insomnia Cookies"
  66. }
  67. ]
  68. },
  69. {
  70. "name": "Community United Church of Christ",
  71. "description": "You are in Community United Church of Christ. God bless you",
  72. "items": ["Christ", "Holy", "Sin"],
  73. "directions": [
  74. {
  75. "directionName": "Northwest",
  76. "room": "Insomnia Cookies"
  77. }
  78. ]
  79. },
  80. {
  81. "name": "Bookstore",
  82. "description": "You are in Bookstore, get your books. There's also starbucks there.",
  83. "items": ["Books", "Coffee"],
  84. "directions": [
  85. {
  86. "directionName": "North",
  87. "room": "Altgeld Hall"
  88. }
  89. ]
  90. },
  91. {
  92. "name": "Green Street",
  93. "description": "You are at Green Street. There are so many delicious food",
  94. "items": ["sushi", "subway"],
  95. "directions": [
  96. {
  97. "directionName": "South",
  98. "room": "Evo"
  99. }
  100. ]
  101. }
  102. ]
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement