nomerza2

Siebel2.0

Feb 22nd, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.56 KB | None | 0 0
  1. {
  2. "startingRoom": "MatthewsStreet",
  3. "endingRoom": "Siebel1314",
  4. "player":
  5. {
  6. "maxHealth": 100,
  7. "baseStrength": 4,
  8. "baseDefense": 4
  9. },
  10. "rooms": [
  11. {
  12. "name": "MatthewsStreet",
  13. "description": "You are on Matthews, outside the Siebel Center",
  14. "directions": [
  15. {
  16. "directionName": "East",
  17. "room": "SiebelEntry"
  18. }
  19. ]
  20. },
  21. {
  22. "name": "SiebelEntry",
  23. "description": "You are in the west entry of Siebel Center. You can see the elevator, the ACM office, and hallways to the north and east.",
  24. "items": [
  25. {
  26. "name": "sweatshirt",
  27. "type": "armor",
  28. "stat": 1,
  29. "description": "Flimsy armor for you to wear",
  30. "value": 2
  31. },
  32. {
  33. "name": "key",
  34. "type": "weapon",
  35. "stat": 1,
  36. "description": "Small but sharp",
  37. "attackVerb": "shanks",
  38. "value": 3
  39. }
  40. ],
  41. "directions": [
  42. {
  43. "directionName": "West",
  44. "room": "MatthewsStreet"
  45. },
  46. {
  47. "directionName": "Northeast",
  48. "room": "AcmOffice"
  49. },
  50. {
  51. "directionName": "North",
  52. "room": "SiebelNorthHallway"
  53. },
  54. {
  55. "directionName": "East",
  56. "room": "SiebelEastHallway"
  57. }
  58. ]
  59. },
  60. {
  61. "name": "AcmOffice",
  62. "description": "You are in the ACM office. There are lots of friendly ACM people.",
  63. "items": [
  64. {
  65. "name": "pizza",
  66. "type": "food",
  67. "stat": 5,
  68. "description": "Old and multiple days old. But it's still pizza, right?",
  69. "value": 2
  70. }
  71. ],
  72. "directions": [
  73. {
  74. "directionName": "South",
  75. "room": "SiebelEntry"
  76. }
  77. ]
  78. },
  79. {
  80. "name": "SiebelNorthHallway",
  81. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  82. "items": [],
  83. "directions": [
  84. {
  85. "directionName": "South",
  86. "room": "SiebelEntry"
  87. },
  88. {
  89. "directionName": "NorthEast",
  90. "room": "Siebel1112"
  91. }
  92. ],
  93. "enemy": {
  94. "description": "a crudely designed metal robot with a weird gun",
  95. "name": "Battle Droid",
  96. "attackVerb": "fires its blaster at ",
  97. "health": 10,
  98. "attack": 8,
  99. "defense": 2
  100. }
  101. },
  102. {
  103. "name": "Siebel1112",
  104. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  105. "directions": [
  106. {
  107. "directionName": "West",
  108. "room": "SiebelNorthHallway"
  109. }
  110. ]
  111. },
  112. {
  113. "name": "SiebelEastHallway",
  114. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  115. "directions": [
  116. {
  117. "directionName": "West",
  118. "room": "SiebelEntry"
  119. },
  120. {
  121. "directionName": "South",
  122. "room": "Siebel1314"
  123. },
  124. {
  125. "directionName": "Down",
  126. "room": "SiebelBasement"
  127. }
  128. ],
  129. "trader": {
  130. "description": "a dude working at Einstein Bros' Bagels",
  131. "name": "Einstein Bro's employee",
  132. "saleItems": [
  133. {
  134. "name": "Bagel",
  135. "type": "food",
  136. "stat": 3,
  137. "description": "Gourmet Apple Cinnamon Bagel, freshly made by the finest bagelshop in siebel",
  138. "value": 1,
  139. "unique": false
  140. },
  141. {
  142. "name": "Bagel Slicing Knife",
  143. "type": "weapon",
  144. "stat": 7,
  145. "description": "A big-ol' knife for slicing bagels in two. Or stabbing people.",
  146. "attackVerb": "stabs",
  147. "value": 8,
  148. "unique": true
  149. }
  150. ]
  151. }
  152. },
  153. {
  154. "name": "Siebel1314",
  155. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  156. "directions": [
  157. {
  158. "directionName": "North",
  159. "room": "SiebelEastHallway"
  160. }
  161. ]
  162. },
  163. {
  164. "name": "SiebelBasement",
  165. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  166. "directions": [
  167. {
  168. "directionName": "Up",
  169. "room": "SiebelEastHallway"
  170. }
  171. ],
  172. "gambler": {
  173. "name": "CS Freshman",
  174. "description": "A cs student vigorously shuffling cards while coding",
  175. "ai": "middleBrain"
  176. }
  177. }
  178. ]
  179. }
Add Comment
Please, Sign In to add comment