crunch
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

349 lines
18 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Feast</title>
  6. <link rel="stylesheet" href="feast.css">
  7. <script src="status.js"></script>
  8. <script src="forest.js"></script>
  9. <script src="mountain.js"></script>
  10. <script src="combat.js"></script>
  11. <script src="objects.js"></script>
  12. <script src="dialog.js"></script>
  13. <script src="customs.js"></script>
  14. <script src="world.js"></script>
  15. <script src="vore.js"></script>
  16. <script src="feast.js"></script>
  17. <meta name="theme-color" content="#000000" />
  18. <meta name="description" content="A vore text adventure" />
  19. <meta property="og:title" content="Feast" />
  20. <meta property="og:description" content="A vore text adventure" />
  21. <meta property="og:image" content="https://chemicalcrux.org/feast/feast.png" />
  22. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  23. </head>
  24. <body>
  25. <div id="game">
  26. <div id="game-and-stats">
  27. <div id="log">
  28. <div>
  29. Welcome to Feast v0.2.6 - Mountain update preview
  30. </div>
  31. <div>
  32. &nbsp;
  33. </div>
  34. <div>
  35. It's early morning, and you feel like eating a bunch of people
  36. </div>
  37. </div>
  38. <div class="stats">
  39. <div id="player-stats">
  40. <div class="stat-line" id="time">Time: to file a bug report, because you shouldn't see this!</div>
  41. <div class="stat-line" id="date">Date: you'll have to buy me dinner first :v</div>
  42. <div class="stat-line" id="stat-name">Vim: 15</div>
  43. <div class="stat-line" id="stat-cash">Spondulicks: 150000</div>
  44. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  45. <div class="stat-line" id="stat-stamina">Imagination: 97</div>
  46. <div class="stat-line" id="stat-str">Blood Sugar: 235</div>
  47. <div class="stat-line" id="stat-dex">Daylight: Empty</div>
  48. <div class="stat-line" id="stat-con">Sonhearst: River</div>
  49. <div class="stat-line" id="stat-arousal">Pep Gold: 3</div>
  50. <div class="stat-line" id="stat-stomach">Candy Corn: 3</div>
  51. <div class="stat-line" id="stat-bowels">Emotions: 35/100</div>
  52. <div class="stat-line" id="stat-balls">Sick Burn: 85/100</div>
  53. <div class="stat-line" id="stat-womb">Nerves: 22/55</div>
  54. <div class="stat-line" id="stat-breasts">Fractal Prospectus: 99/100</div>
  55. <button class="stat-button" id="stat-button-status">Status</button>
  56. <button class="stat-button" id="log-button">Log: Enabled</button>
  57. </div>
  58. <div id="foe-stats">
  59. FOE
  60. <div class="stat-line" id="stat-foe-name">Vim: 21</div>
  61. <div class="stat-line" id="stat-foe-health">Pulchritude: 21</div>
  62. <div class="stat-line" id="stat-foe-stamina">Imagination: 66</div>
  63. <div class="stat-line" id="stat-foe-str">Blood Sugar: 99</div>
  64. <div class="stat-line" id="stat-foe-dex">Daylight: Filled</div>
  65. <div class="stat-line" id="stat-foe-con">Sonhearst: Alive</div>
  66. </div>
  67. </div>
  68. </div>
  69. <div id="footer">
  70. <div class="selector" id="selector-explore">
  71. <div id="compass">
  72. <table>
  73. <tr>
  74. <th>
  75. <button class="compass-button" id="compass-north-west">North West</button>
  76. </th>
  77. <th>
  78. <button class="compass-button" id="compass-north">North</button>
  79. </th>
  80. <th>
  81. <button class="compass-button" id="compass-north-east">North East</button>
  82. </th>
  83. </tr>
  84. <tr>
  85. <th>
  86. <button class="compass-button" id="compass-west">West</button>
  87. </th>
  88. <th>
  89. <button class="compass-button active-button" id="compass-look">Look</button>
  90. </th>
  91. <th>
  92. <button class="compass-button" id="compass-east">East</button>
  93. </th>
  94. </tr>
  95. <tr>
  96. <th>
  97. <button class="compass-button" id="compass-south-west">South West</button>
  98. </th>
  99. <th>
  100. <button class="compass-button" id="compass-south">South</button>
  101. </th>
  102. <th>
  103. <button class="compass-button" id="compass-south-east">South East</button>
  104. </th>
  105. </tr>
  106. </table>
  107. </div>
  108. <div id="actions">
  109. <table>
  110. <tr>
  111. <th>
  112. <button class="action-button" id="action-look">Look</button>
  113. </th>
  114. <th>
  115. <button class="inactive-button action-button" disabled="true"></button>
  116. </th>
  117. <th>
  118. <button class="inactive-button action-button" disabled="true"></button>
  119. </th>
  120. </tr>
  121. <tr>
  122. <th>
  123. <button class="inactive-button action-button" disabled="true"></button>
  124. </th>
  125. <th>
  126. <button class="inactive-button action-button" disabled="true"></button>
  127. </th>
  128. <th>
  129. <button class="inactive-button action-button" disabled="true"></button>
  130. </th>
  131. </tr>
  132. <tr>
  133. <th>
  134. <button class="inactive-button action-button" disabled="true"></button>
  135. </th>
  136. <th>
  137. <button class="inactive-button action-button" disabled="true"></button>
  138. </th>
  139. <th>
  140. <button class="inactive-button action-button" disabled="true"></button>
  141. </th>
  142. </tr>
  143. </table>
  144. </div>
  145. </div>
  146. <div class="selector" id="selector-combat">
  147. <ul id="combat">
  148. </ul>
  149. <div id="combat-desc">
  150. </div>
  151. </div>
  152. <div class="selector" id="selector-eaten">
  153. <ul id="eaten">
  154. </ul>
  155. <div id="eaten-desc">
  156. </div>
  157. </div>
  158. <div class="selector" id="selector-dialog">
  159. <ul id="dialog">
  160. </ul>
  161. </div>
  162. </div>
  163. </div>
  164. <div id="create">
  165. <p>
  166. Welcome to Feast v0.2.6 - Mountain update preview
  167. </p>
  168. <p>
  169. <b>This game features 18+ content</b>
  170. </p>
  171. <p>
  172. <a href="/feast">Changelog</a>
  173. </p>
  174. <p>
  175. <a href="https://t.me/joinchat/BSXHzQp-Isn9N9XgT2QRpw">Telegram</a>
  176. </p>
  177. <p>
  178. <a href="https://discord.gg/7pdcVhD">Discord</a>
  179. </p>
  180. <form id="character-form">
  181. <ul id="character-form-list">
  182. <li>
  183. <label for="character-name">Name</label>
  184. <input type="text" id="character-name" name="name" placeholder="Player"/>
  185. </li>
  186. <li>
  187. <label for="character-species">Species</label>
  188. <input type="text" id="character-species" name="species" placeholder="nerd"/>
  189. </li>
  190. <li>
  191. <label for="character-prefs-scat">Disposal/scat</label>
  192. <input type="checkbox" id="character-prefs-scat" name="prefs-scat"/>
  193. </li>
  194. <li>
  195. <label for="character-prefs-prey">Player can be eaten</label>
  196. <input type="checkbox" id="character-prefs-prey" name="prefs-prey" checked="true" />
  197. </li>
  198. <li>
  199. <ul class="pref-list">
  200. <div>Player stuff</div>
  201. <li class="pref-select">
  202. <span class="pref-type">Ass</span>
  203. <input type="radio" class="pref-radio" id="character-parts-anal-off" disabled="true" name="parts-anal" value="0" />
  204. <label class="pref-disable pref-gray" for="character-parts-anal-off">Disable</label>
  205. <input type="radio" class="pref-radio" id="character-parts-anal-on" name="parts-anal" checked="true" value="1" />
  206. <label class="pref-enable" for="character-parts-anal-on" checked="true">Enable</label>
  207. <input type="radio" class="pref-radio" id="character-parts-anal-vore" name="parts-anal" checked="true" value="2" />
  208. <label class="pref-prefer" for="character-parts-anal-vore" checked="true">Enable Vore</label>
  209. </li>
  210. <li class="pref-select">
  211. <span class="pref-type">Cock/balls</span>
  212. <input type="radio" class="pref-radio" id="character-parts-cock-off" name="parts-cock" value="0" />
  213. <label class="pref-disable" for="character-parts-cock-off">Disable</label>
  214. <input type="radio" class="pref-radio" id="character-parts-cock-on" name="parts-cock" checked="true" value="1" />
  215. <label class="pref-enable" for="character-parts-cock-on" checked="true">Enable</label>
  216. <input type="radio" class="pref-radio" id="character-parts-cock-vore" name="parts-cock" checked="true" value="2" />
  217. <label class="pref-prefer" for="character-parts-cock-vore" checked="true">Enable Vore</label>
  218. </li>
  219. <li class="pref-select">
  220. <span class="pref-type">Slit/womb</span>
  221. <input type="radio" class="pref-radio" id="character-parts-unbirth-off" name="parts-unbirth" value="0" />
  222. <label class="pref-disable" for="character-parts-unbirth-off">Disable</label>
  223. <input type="radio" class="pref-radio" id="character-parts-unbirth-on" name="parts-unbirth" checked="true" value="1" />
  224. <label class="pref-enable" for="character-parts-unbirth-on" checked="true">Enable</label>
  225. <input type="radio" class="pref-radio" id="character-parts-unbirth-vore" name="parts-unbirth" checked="true" value="2" />
  226. <label class="pref-prefer" for="character-parts-unbirth-vore" checked="true">Enable Vore</label>
  227. </li>
  228. <li class="pref-select">
  229. <span class="pref-type">Breasts</span>
  230. <input type="radio" class="pref-radio" id="character-parts-breast-off" name="parts-breast" value="0" />
  231. <label class="pref-disable" for="character-parts-breast-off">Disable</label>
  232. <input type="radio" class="pref-radio" id="character-parts-breast-on" name="parts-breast" checked="true" value="1" />
  233. <label class="pref-enable" for="character-parts-breast-on" checked="true">Enable</label>
  234. <input type="radio" class="pref-radio" id="character-parts-breast-vore" name="parts-breast" checked="true" value="2" />
  235. <label class="pref-prefer" for="character-parts-breast-vore" checked="true">Enable Vore</label>
  236. </li>
  237. </ul>
  238. <li>
  239. <ul class="pref-list">
  240. <div>Enemy vore types</div>
  241. <li class="pref-select">
  242. <span class="pref-type">Oral</span>
  243. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-0" name="prefs-vore-oral" value="0" />
  244. <label class="pref-disable" for="character-prefs-vore-oral-0">Disable</label>
  245. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-1" name="prefs-vore-oral" value="1" />
  246. <label class="pref-avoid" for="character-prefs-vore-oral-1">Avoid</label>
  247. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-2" name="prefs-vore-oral" checked="true" value="2" />
  248. <label class="pref-enable" for="character-prefs-vore-oral-2">Enable</label>
  249. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-3" name="prefs-vore-oral" value="3" />
  250. <label class="pref-prefer" for="character-prefs-vore-oral-3">Prefer</label>
  251. </li>
  252. <li class="pref-select">
  253. <span class="pref-type">Cock</span>
  254. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-0" name="prefs-vore-cock" value="0" />
  255. <label class="pref-disable" for="character-prefs-vore-cock-0">Disable</label>
  256. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-1" name="prefs-vore-cock" value="1" />
  257. <label class="pref-avoid" for="character-prefs-vore-cock-1">Avoid</label>
  258. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-2" name="prefs-vore-cock" checked="true" value="2" />
  259. <label class="pref-enable" for="character-prefs-vore-cock-2">Enable</label>
  260. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-3" name="prefs-vore-cock" value="3" />
  261. <label class="pref-prefer" for="character-prefs-vore-cock-3">Prefer</label>
  262. </li>
  263. <li class="pref-select">
  264. <span class="pref-type">Anal</span>
  265. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-0" name="prefs-vore-anal" value="0" />
  266. <label class="pref-disable" for="character-prefs-vore-anal-0">Disable</label>
  267. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-1" name="prefs-vore-anal" value="1" />
  268. <label class="pref-avoid" for="character-prefs-vore-anal-1">Avoid</label>
  269. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-2" name="prefs-vore-anal" checked="true" value="2" />
  270. <label class="pref-enable" for="character-prefs-vore-anal-2">Enable</label>
  271. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-3" name="prefs-vore-anal" value="3" />
  272. <label class="pref-prefer" for="character-prefs-vore-anal-3">Prefer</label>
  273. </li>
  274. <li class="pref-select">
  275. <span class="pref-type">Tail</span>
  276. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-0" name="prefs-vore-tail" value="0" />
  277. <label class="pref-disable" for="character-prefs-vore-tail-0">Disable</label>
  278. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-1" name="prefs-vore-tail" value="1" />
  279. <label class="pref-avoid" for="character-prefs-vore-tail-1">Avoid</label>
  280. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-2" name="prefs-vore-tail" checked="true" value="2" />
  281. <label class="pref-enable" for="character-prefs-vore-tail-2">Enable</label>
  282. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-3" name="prefs-vore-tail" value="3" />
  283. <label class="pref-prefer" for="character-prefs-vore-tail-3">Prefer</label>
  284. </li>
  285. <li class="pref-select">
  286. <span class="pref-type">Unbirth</span>
  287. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-0" name="prefs-vore-unbirth" value="0" />
  288. <label class="pref-disable" for="character-prefs-vore-unbirth-0">Disable</label>
  289. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-1" name="prefs-vore-unbirth" value="1" />
  290. <label class="pref-avoid" for="character-prefs-vore-unbirth-1">Avoid</label>
  291. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-2" name="prefs-vore-unbirth" checked="true" value="2" />
  292. <label class="pref-enable" for="character-prefs-vore-unbirth-2">Enable</label>
  293. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-3" name="prefs-vore-unbirth" value="3" />
  294. <label class="pref-prefer" for="character-prefs-vore-unbirth-3">Prefer</label>
  295. </li>
  296. <li class="pref-select">
  297. <span class="pref-type">Breast</span>
  298. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-0" name="prefs-vore-breast" value="0" />
  299. <label class="pref-disable" for="character-prefs-vore-breast-0">Disable</label>
  300. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-1" name="prefs-vore-breast" value="1" />
  301. <label class="pref-avoid" for="character-prefs-vore-breast-1">Avoid</label>
  302. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-2" name="prefs-vore-breast" checked="true" value="2" />
  303. <label class="pref-enable" for="character-prefs-vore-breast-2">Enable</label>
  304. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-3" name="prefs-vore-breast" value="3" />
  305. <label class="pref-prefer" for="character-prefs-vore-breast-3">Prefer</label>
  306. </li>
  307. <li class="pref-select">
  308. <span class="pref-type">Hard</span>
  309. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-0" name="prefs-vore-hard" checked="true" value="0" />
  310. <label class="pref-disable" for="character-prefs-vore-hard-0">Disable</label>
  311. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-1" name="prefs-vore-hard" value="1" />
  312. <label class="pref-avoid" for="character-prefs-vore-hard-1">Avoid</label>
  313. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-2" name="prefs-vore-hard" value="2" />
  314. <label class="pref-enable" for="character-prefs-vore-hard-2">Enable</label>
  315. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-3" name="prefs-vore-hard" value="3" />
  316. <label class="pref-prefer" for="character-prefs-vore-hard-3">Prefer</label>
  317. </li>
  318. <li class="pref-select">
  319. <span class="pref-type">Soul</span>
  320. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-0" name="prefs-vore-soul" checked="true" value="0" />
  321. <label class="pref-disable" for="character-prefs-vore-soul-0">Disable</label>
  322. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-1" name="prefs-vore-soul" value="1" />
  323. <label class="pref-avoid" for="character-prefs-vore-soul-1">Avoid</label>
  324. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-2" name="prefs-vore-soul" value="2" />
  325. <label class="pref-enable" for="character-prefs-vore-soul-2">Enable</label>
  326. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-3" name="prefs-vore-soul" value="3" />
  327. <label class="pref-prefer" for="character-prefs-vore-soul-3">Prefer</label>
  328. </li>
  329. </ul>
  330. </li>
  331. <li>
  332. <button type="button" id="start-button">Start</button>
  333. </li>
  334. </ul>
  335. </form>
  336. </div>
  337. </body>
  338. </html>