Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.23 KB | None | 0 0
  1. {
  2. "startingRoom": "MatthewsStreet",
  3. "endingRoom": "Siebel1314",
  4. "player": {
  5. "health": 200
  6. "items":[
  7. {
  8. "name": "Knife",
  9. "type": "attack",
  10. "amount": 10
  11. }
  12. ]
  13. },
  14. "rooms": [
  15. {
  16. "name": "MatthewsStreet",
  17. "description": "You are on Matthews, outside the Siebel Center",
  18. "directions": [
  19. {
  20. "directionName": "East",
  21. "room": "SiebelEntry",
  22. "enabled": "True",
  23. "validKeyNames": [
  24. "SiebelEntryKey"
  25. ]
  26. }
  27. ],
  28. "items": [
  29. {
  30. "name": "SiebelEntryKey",
  31. "type": "key"
  32. },
  33. {
  34. "name": "Potion",
  35. "type": "health",
  36. "amount": 50
  37. },
  38. {
  39. "name": "Long-Sword",
  40. "type": "attack",
  41. "amount": 40
  42. }
  43. ],
  44. "monster": {
  45. }
  46. },
  47. {
  48. "name": "SiebelEntry",
  49. "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.",
  50. "directions": [
  51. {
  52. "directionName": "West",
  53. "room": "MatthewsStreet",
  54. "enabled": "True",
  55. "validKeyNames": []
  56.  
  57. },
  58. {
  59. "directionName": "Northeast",
  60. "room": "AcmOffice",
  61. "enabled": "False",
  62. "validKeyNames": ["AcmOfficeKey"]
  63. },
  64. {
  65. "directionName": "North",
  66. "room": "SiebelNorthHallway",
  67. "enabled": "True",
  68. "validKeyNames": []
  69. },
  70. {
  71. "directionName": "East",
  72. "room": "SiebelEastHallway",
  73. "enabled": "True",
  74. "validKeyNames": []
  75. }
  76. ],
  77. "items": [
  78. {
  79. "name": "AcmOfficeKey",
  80. "type": "key"
  81. },
  82. {
  83. "name": "Spear",
  84. "type": "attack",
  85. "amount": 30
  86. }
  87. ],
  88. "monster": {
  89. "name": "Ogre",
  90. "damage": 30,
  91. "health": 200
  92. }
  93. },
  94. {
  95. "name": "AcmOffice",
  96. "description": "You are in the ACM office. There are lots of friendly ACM people.",
  97. "directions": [
  98. {
  99. "directionName": "South",
  100. "room": "SiebelEntry",
  101. "enabled": "True",
  102. "validKeyNames": []
  103. }
  104. ],
  105. "items": [
  106. ],
  107. "monster": {
  108. "name": "Chimera",
  109. "damage": 70,
  110. "health": 90
  111. }
  112.  
  113. },
  114. {
  115. "name": "SiebelNorthHallway",
  116. "description": "You are in the north hallway. You can see Siebel 1112 and the door toward NCSA.",
  117. "directions": [
  118. {
  119. "directionName": "South",
  120. "room": "SiebelEntry",
  121. "enabled": "True",
  122. "validKeyNames": []
  123. },
  124. {
  125. "directionName": "NorthEast",
  126. "room": "Siebel1112",
  127. "enabled": "False",
  128. "validKeyNames": ["Siebel1112Key"]
  129. }
  130. ],
  131. "items": [
  132. {
  133. "name": "Siebel1112Key",
  134. "type": "key"
  135. },
  136. {
  137. "name": "Mega-Potion",
  138. "type": "health",
  139. "amount": "100"
  140. }
  141. ],
  142. "monster": {
  143. "name": "Big Foot",
  144. "damage": 30,
  145. "health": 250
  146. }
  147. },
  148. {
  149. "name": "Siebel1112",
  150. "description": "You are in Siebel 1112. There is space for two code reviews in this room.",
  151. "directions": [
  152. {
  153. "directionName": "West",
  154. "room": "SiebelNorthHallway",
  155. "enabled": "True",
  156. "validKeyNames": []
  157. }
  158. ],
  159. "items": [
  160. {
  161. "name": "War-Axe",
  162. "type": "attack",
  163. "amount": 50
  164. }
  165. ]
  166. },
  167. {
  168. "name": "SiebelEastHallway",
  169. "description": "You are in the east hallway. You can see Einstein Bros' Bagels and a stairway.",
  170. "directions": [
  171. {
  172. "directionName": "West",
  173. "room": "SiebelEntry",
  174. "enabled": "True",
  175. "validKeyNames": []
  176. },
  177. {
  178. "directionName": "South",
  179. "room": "Siebel1314",
  180. "enabled": "False",
  181. "validKeyNames": ["Siebel1314Key"]
  182. },
  183. {
  184. "directionName": "Down",
  185. "room": "SiebelBasement",
  186. "enabled": "False",
  187. "validKeyNames": ["SiebelBasementKey"]
  188. }
  189. ],
  190. "items": [
  191. {
  192. "name": "Siebel1314Key",
  193. "type": "key"
  194. },
  195. {
  196. "name": "SiebelBasementKey",
  197. "type": "key"
  198. },
  199. {
  200. "name": "Full-Restore",
  201. "type": "health",
  202. "amount": "100"
  203. },
  204. {
  205. "name": "Insta-Kill",
  206. "type": "attack",
  207. "amount": "99999"
  208. }
  209. ],
  210. "monster": {
  211. "name": "Cerberus",
  212. "damage": 33,
  213. "health": 333
  214. }
  215. },
  216. {
  217. "name": "Siebel1314",
  218. "description": "You are in Siebel 1314. There are happy CS 126 students doing a code review.",
  219. "directions": [
  220. {
  221. "directionName": "North",
  222. "room": "SiebelEastHallway",
  223. "enabled": "True",
  224. "validKeyNames": []
  225. }
  226. ],
  227. "items": [
  228. {
  229. "name": "Final-Key",
  230. "type": "key"
  231. }
  232. ],
  233. "monster": {
  234. "name": "Sphynx",
  235. "damage": 60,
  236. "health": 250
  237. }
  238. },
  239. {
  240. "name": "SiebelBasement",
  241. "description": "You are in the basement of Siebel. You see tables with students working and door to computer labs.",
  242. "directions": [
  243. {
  244. "directionName": "Up",
  245. "room": "SiebelEastHallway",
  246. "enabled": "True",
  247. "validKeyNames": []
  248. }
  249. ],
  250. "items": []
  251. }
  252. ]
  253. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement