crunch
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

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