Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 KB | None | 0 0
  1. {
  2. "startingRoom": "The Entrance",
  3. "endingRoom": "Asylum",
  4. "riddles": [
  5. {
  6. "question": "Name an eight letter word that has kst in the middle, in the beginning, and at the end.",
  7. "answer": "Inkstand"
  8. },
  9. {
  10. "question": "Flat as a leaf, round as a ring. Has two eyes, but can't see a thing.",
  11. "answer": "Button"
  12. },
  13. {
  14. "question": "I am always hungry, I must always be fed. The finger I lick will soon turn red.",
  15. "answer": "Fire"
  16. },
  17. {
  18. "question": "What is it that has four legs, one head and a foot.",
  19. "answer": "Bed"
  20. },
  21. {
  22. "question": "What belongs to you but others use it more than you do?",
  23. "answer": "Your name"
  24. },
  25. {
  26. "question": "To unravel me you need a simple key, not made by locksmith's hand, but one only I will understand.",
  27. "answer": "Cipher"
  28. }
  29. ],
  30. "player": {
  31. "health": 500,
  32. "items":[
  33. {
  34. "name": "Knife",
  35. "type": "attack",
  36. "amount": 10
  37. }
  38. ]
  39. },
  40. "rooms": [
  41. {
  42. "name": "The Entrance",
  43. "description": "You are at the entrance to the castle.",
  44. "directions": [
  45. {
  46. "directionName": "East",
  47. "room": "Atrium",
  48. "enabled": "False",
  49. "validKeyNames": [
  50. "AtriumKey"
  51. ]
  52. }
  53. ],
  54. "items": [
  55. {
  56. "name": "AtriumKey",
  57. "type": "key"
  58. },
  59. {
  60. "name": "Potion",
  61. "type": "health",
  62. "amount": 50
  63. },
  64. {
  65. "name": "Long Sword",
  66. "type": "attack",
  67. "amount": 40
  68. }
  69. ],
  70. "monster": {
  71. }
  72. },
  73. {
  74. "name": "Atrium",
  75. "description": "You are in the Atrium of the castle. You can see a passageway, the entrance to the prison, and the entrance to the crypt.",
  76. "directions": [
  77. {
  78. "directionName": "West",
  79. "room": "The Entrance",
  80. "enabled": "True",
  81. "validKeyNames": []
  82.  
  83. },
  84. {
  85. "directionName": "Northeast",
  86. "room": "Prison",
  87. "enabled": "False",
  88. "validKeyNames": ["PrisonKey"]
  89. },
  90. {
  91. "directionName": "North",
  92. "room": "PassageWay",
  93. "enabled": "True",
  94. "validKeyNames": []
  95. },
  96. {
  97. "directionName": "East",
  98. "room": "Crypt",
  99. "enabled": "True",
  100. "validKeyNames": []
  101. }
  102. ],
  103. "items": [
  104. {
  105. "name": "PrisonKey",
  106. "type": "key"
  107. },
  108. {
  109. "name": "Spear",
  110. "type": "attack",
  111. "amount": 30
  112. },
  113. {
  114. "name": "Large Potion",
  115. "type": "health",
  116. "amount": 100
  117. }
  118. ],
  119. "monster": {
  120. "name": "Ogre",
  121. "damage": 30,
  122. "health": 200,
  123. "dead": 0
  124. }
  125. },
  126. {
  127. "name": "Prison",
  128. "description": "You are in the prison. There are lots of skeletons and cobwebs.",
  129. "directions": [
  130. {
  131. "directionName": "South",
  132. "room": "Atrium",
  133. "enabled": "True",
  134. "validKeyNames": []
  135. }
  136. ],
  137. "items": [
  138. {
  139. "name": "Elixir",
  140. "type": "attack",
  141. "amount": 100
  142. }
  143. ],
  144. "monster": {
  145. "name": "Chimera",
  146. "damage": 70,
  147. "health": 90,
  148. "dead": 0
  149. }
  150.  
  151. },
  152. {
  153. "name": "PassageWay",
  154. "description": "You are in the passageway. You can see the infirmary and a large fractured mirror.",
  155. "directions": [
  156. {
  157. "directionName": "South",
  158. "room": "Atrium",
  159. "enabled": "True",
  160. "validKeyNames": []
  161. },
  162. {
  163. "directionName": "NorthEast",
  164. "room": "Infirmary",
  165. "enabled": "False",
  166. "validKeyNames": ["InfirmaryKey"]
  167. }
  168. ],
  169. "items": [
  170. {
  171. "name": "InfirmaryKey",
  172. "type": "key"
  173. },
  174. {
  175. "name": "Mega Potion",
  176. "type": "health",
  177. "amount": "100"
  178. }
  179. ],
  180. "monster": {
  181. "name": "Big Foot",
  182. "damage": 30,
  183. "health": 250,
  184. "dead": 0
  185. }
  186. },
  187. {
  188. "name": "Infirmary",
  189. "description": "You are in the infirmary. There is a repugnant smell lingering in the air.",
  190. "directions": [
  191. {
  192. "directionName": "West",
  193. "room": "PassageWay",
  194. "enabled": "True",
  195. "validKeyNames": []
  196. }
  197. ],
  198. "items": [
  199. {
  200. "name": "War Axe",
  201. "type": "attack",
  202. "amount": 50
  203. }
  204. ]
  205. },
  206. {
  207. "name": "Crypt",
  208. "description": "You are in the Crypt. You can see stairs leading down into the tomb. You feel an ominous presence.",
  209. "directions": [
  210. {
  211. "directionName": "West",
  212. "room": "Atrium",
  213. "enabled": "True",
  214. "validKeyNames": []
  215. },
  216. {
  217. "directionName": "South",
  218. "room": "Asylum",
  219. "enabled": "False",
  220. "validKeyNames": ["AsylumKey"]
  221. },
  222. {
  223. "directionName": "Down",
  224. "room": "Tomb",
  225. "enabled": "False",
  226. "validKeyNames": ["TombKey"]
  227. }
  228. ],
  229. "items": [
  230. {
  231. "name": "AsylumKey",
  232. "type": "key"
  233. },
  234. {
  235. "name": "TombKey",
  236. "type": "key"
  237. },
  238. {
  239. "name": "Full Restore",
  240. "type": "health",
  241. "amount": "100"
  242. },
  243. {
  244. "name": "Insta Kill",
  245. "type": "attack",
  246. "amount": "99999"
  247. }
  248. ],
  249. "monster": {
  250. "name": "Cerberus",
  251. "damage": 33,
  252. "health": 333,
  253. "dead": 0
  254. }
  255. },
  256. {
  257. "name": "Asylum",
  258. "description": "You are in the asylum. There are happy students doing a code review.",
  259. "directions": [
  260. {
  261. "directionName": "North",
  262. "room": "Crypt",
  263. "enabled": "True",
  264. "validKeyNames": []
  265. }
  266. ],
  267. "items": [
  268. {
  269. "name": "The Final Key",
  270. "type": "key"
  271. }
  272. ],
  273. "monster": {
  274. "name": "Sphynx",
  275. "damage": 900,
  276. "health": 99999,
  277. "dead": 0
  278. }
  279. },
  280. {
  281. "name": "Tomb",
  282. "description": "You are in the tomb. You see rows upon rows of skulls and coffins.",
  283. "directions": [
  284. {
  285. "directionName": "Up",
  286. "room": "Crypt",
  287. "enabled": "True",
  288. "validKeyNames": []
  289. }
  290. ],
  291. "items": []
  292. }
  293. ]
  294. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement