munch
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.
 
 
 

335 wiersze
17 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.4
  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-fullness">Candy Corn: 3</div>
  49. <div class="stat-line" id="stat-bowels">Emotions: 35/100</div>
  50. <button class="stat-button" id="stat-button-status">Status</button>
  51. <button class="stat-button" id="log-button">Log: Enabled</button>
  52. </div>
  53. <div id="foe-stats">
  54. FOE
  55. <div class="stat-line" id="stat-foe-name">Vim: 21</div>
  56. <div class="stat-line" id="stat-foe-health">Pulchritude: 21</div>
  57. <div class="stat-line" id="stat-foe-stamina">Imagination: 66</div>
  58. <div class="stat-line" id="stat-foe-str">Blood Sugar: 99</div>
  59. <div class="stat-line" id="stat-foe-dex">Daylight: Filled</div>
  60. <div class="stat-line" id="stat-foe-con">Sonhearst: Alive</div>
  61. </div>
  62. </div>
  63. </div>
  64. <div id="footer">
  65. <div class="selector" id="selector-explore">
  66. <div id="compass">
  67. <table>
  68. <tr>
  69. <th>
  70. <button class="compass-button" id="compass-north-west">North West</button>
  71. </th>
  72. <th>
  73. <button class="compass-button" id="compass-north">North</button>
  74. </th>
  75. <th>
  76. <button class="compass-button" id="compass-north-east">North East</button>
  77. </th>
  78. </tr>
  79. <tr>
  80. <th>
  81. <button class="compass-button" id="compass-west">West</button>
  82. </th>
  83. <th>
  84. <button class="compass-button active-button" id="compass-look">Look</button>
  85. </th>
  86. <th>
  87. <button class="compass-button" id="compass-east">East</button>
  88. </th>
  89. </tr>
  90. <tr>
  91. <th>
  92. <button class="compass-button" id="compass-south-west">South West</button>
  93. </th>
  94. <th>
  95. <button class="compass-button" id="compass-south">South</button>
  96. </th>
  97. <th>
  98. <button class="compass-button" id="compass-south-east">South East</button>
  99. </th>
  100. </tr>
  101. </table>
  102. </div>
  103. <div id="actions">
  104. <table>
  105. <tr>
  106. <th>
  107. <button class="action-button" id="action-look">Look</button>
  108. </th>
  109. <th>
  110. <button class="inactive-button action-button" disabled="true"></button>
  111. </th>
  112. <th>
  113. <button class="inactive-button action-button" disabled="true"></button>
  114. </th>
  115. </tr>
  116. <tr>
  117. <th>
  118. <button class="inactive-button action-button" disabled="true"></button>
  119. </th>
  120. <th>
  121. <button class="inactive-button action-button" disabled="true"></button>
  122. </th>
  123. <th>
  124. <button class="inactive-button action-button" disabled="true"></button>
  125. </th>
  126. </tr>
  127. <tr>
  128. <th>
  129. <button class="inactive-button action-button" disabled="true"></button>
  130. </th>
  131. <th>
  132. <button class="inactive-button action-button" disabled="true"></button>
  133. </th>
  134. <th>
  135. <button class="inactive-button action-button" disabled="true"></button>
  136. </th>
  137. </tr>
  138. </table>
  139. </div>
  140. </div>
  141. <div class="selector" id="selector-combat">
  142. <ul id="combat">
  143. </ul>
  144. <div id="combat-desc">
  145. </div>
  146. </div>
  147. <div class="selector" id="selector-eaten">
  148. <ul id="eaten">
  149. </ul>
  150. <div id="eaten-desc">
  151. </div>
  152. </div>
  153. <div class="selector" id="selector-dialog">
  154. <ul id="dialog">
  155. </ul>
  156. </div>
  157. </div>
  158. </div>
  159. <div id="create">
  160. <p>
  161. Welcome to Feast v0.2.4
  162. </p>
  163. <p>
  164. <b>This game features 18+ content</b>
  165. </p>
  166. <p>
  167. <a href="/feast">Changelog</a>
  168. </p>
  169. <p>
  170. <a href="https://t.me/joinchat/BSXHzQp-Isn9N9XgT2QRpw">Telegram</a>
  171. </p>
  172. <p>
  173. <a href="https://discord.gg/7pdcVhD">Discord</a>
  174. </p>
  175. <form id="character-form">
  176. <ul id="character-form-list">
  177. <li>
  178. <label for="character-name">Name</label>
  179. <input type="text" id="character-name" name="name" placeholder="Player"/>
  180. </li>
  181. <li>
  182. <label for="character-species">Species</label>
  183. <input type="text" id="character-species" name="species" placeholder="nerd"/>
  184. </li>
  185. <li>
  186. <label for="character-prefs-scat">Disposal/scat</label>
  187. <input type="checkbox" id="character-prefs-scat" name="prefs-scat"/>
  188. </li>
  189. <li>
  190. <label for="character-prefs-prey">Player can be eaten</label>
  191. <input type="checkbox" id="character-prefs-prey" name="prefs-prey" checked="true" />
  192. </li>
  193. <li>
  194. <ul class="pref-list">
  195. <div>Player stuff</div>
  196. <li class="pref-select">
  197. <span class="pref-type">Cock/balls</span>
  198. <input type="radio" class="pref-radio" id="character-parts-cock-off" name="parts-cock" value="0" />
  199. <label class="pref-disable" for="character-parts-cock-off">Disable</label>
  200. <input type="radio" class="pref-radio" id="character-parts-cock-on" name="parts-cock" checked="true" value="1" />
  201. <label class="pref-enable" for="character-parts-cock-on" checked="true">Enable</label>
  202. <input type="radio" class="pref-radio" id="character-parts-cock-vore" name="parts-cock" checked="true" value="2" />
  203. <label class="pref-prefer" for="character-parts-cock-vore" checked="true">Enable Vore</label>
  204. </li>
  205. <li class="pref-select">
  206. <span class="pref-type">Slit/womb</span>
  207. <input type="radio" class="pref-radio" id="character-parts-unbirth-off" name="parts-unbirth" value="0" />
  208. <label class="pref-disable" for="character-parts-unbirth-off">Disable</label>
  209. <input type="radio" class="pref-radio" id="character-parts-unbirth-on" name="parts-unbirth" checked="true" value="1" />
  210. <label class="pref-enable" for="character-parts-unbirth-on" checked="true">Enable</label>
  211. <input type="radio" class="pref-radio" id="character-parts-unbirth-vore" name="parts-unbirth" checked="true" value="2" />
  212. <label class="pref-prefer" for="character-parts-unbirth-vore" checked="true">Enable Vore</label>
  213. </li>
  214. <li class="pref-select">
  215. <span class="pref-type">Breasts</span>
  216. <input type="radio" class="pref-radio" id="character-parts-breast-off" name="parts-breast" value="0" />
  217. <label class="pref-disable" for="character-parts-breast-off">Disable</label>
  218. <input type="radio" class="pref-radio" id="character-parts-breast-on" name="parts-breast" checked="true" value="1" />
  219. <label class="pref-enable" for="character-parts-breast-on" checked="true">Enable</label>
  220. <input type="radio" class="pref-radio" id="character-parts-breast-vore" name="parts-breast" checked="true" value="2" />
  221. <label class="pref-prefer" for="character-parts-breast-vore" checked="true">Enable Vore</label>
  222. </li>
  223. </ul>
  224. <li>
  225. <ul class="pref-list">
  226. <div>Enemy vore types</div>
  227. <li class="pref-select">
  228. <span class="pref-type">Oral</span>
  229. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-0" name="prefs-vore-oral" value="0" />
  230. <label class="pref-disable" for="character-prefs-vore-oral-0">Disable</label>
  231. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-1" name="prefs-vore-oral" value="1" />
  232. <label class="pref-avoid" for="character-prefs-vore-oral-1">Avoid</label>
  233. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-2" name="prefs-vore-oral" checked="true" value="2" />
  234. <label class="pref-enable" for="character-prefs-vore-oral-2">Enable</label>
  235. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-3" name="prefs-vore-oral" value="3" />
  236. <label class="pref-prefer" for="character-prefs-vore-oral-3">Prefer</label>
  237. </li>
  238. <li class="pref-select">
  239. <span class="pref-type">Cock</span>
  240. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-0" name="prefs-vore-cock" value="0" />
  241. <label class="pref-disable" for="character-prefs-vore-cock-0">Disable</label>
  242. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-1" name="prefs-vore-cock" value="1" />
  243. <label class="pref-avoid" for="character-prefs-vore-cock-1">Avoid</label>
  244. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-2" name="prefs-vore-cock" checked="true" value="2" />
  245. <label class="pref-enable" for="character-prefs-vore-cock-2">Enable</label>
  246. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-3" name="prefs-vore-cock" value="3" />
  247. <label class="pref-prefer" for="character-prefs-vore-cock-3">Prefer</label>
  248. </li>
  249. <li class="pref-select">
  250. <span class="pref-type">Anal</span>
  251. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-0" name="prefs-vore-anal" value="0" />
  252. <label class="pref-disable" for="character-prefs-vore-anal-0">Disable</label>
  253. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-1" name="prefs-vore-anal" value="1" />
  254. <label class="pref-avoid" for="character-prefs-vore-anal-1">Avoid</label>
  255. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-2" name="prefs-vore-anal" checked="true" value="2" />
  256. <label class="pref-enable" for="character-prefs-vore-anal-2">Enable</label>
  257. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-3" name="prefs-vore-anal" value="3" />
  258. <label class="pref-prefer" for="character-prefs-vore-anal-3">Prefer</label>
  259. </li>
  260. <li class="pref-select">
  261. <span class="pref-type">Tail</span>
  262. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-0" name="prefs-vore-tail" value="0" />
  263. <label class="pref-disable" for="character-prefs-vore-tail-0">Disable</label>
  264. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-1" name="prefs-vore-tail" value="1" />
  265. <label class="pref-avoid" for="character-prefs-vore-tail-1">Avoid</label>
  266. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-2" name="prefs-vore-tail" checked="true" value="2" />
  267. <label class="pref-enable" for="character-prefs-vore-tail-2">Enable</label>
  268. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-3" name="prefs-vore-tail" value="3" />
  269. <label class="pref-prefer" for="character-prefs-vore-tail-3">Prefer</label>
  270. </li>
  271. <li class="pref-select">
  272. <span class="pref-type">Unbirth</span>
  273. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-0" name="prefs-vore-unbirth" value="0" />
  274. <label class="pref-disable" for="character-prefs-vore-unbirth-0">Disable</label>
  275. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-1" name="prefs-vore-unbirth" value="1" />
  276. <label class="pref-avoid" for="character-prefs-vore-unbirth-1">Avoid</label>
  277. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-2" name="prefs-vore-unbirth" checked="true" value="2" />
  278. <label class="pref-enable" for="character-prefs-vore-unbirth-2">Enable</label>
  279. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-3" name="prefs-vore-unbirth" value="3" />
  280. <label class="pref-prefer" for="character-prefs-vore-unbirth-3">Prefer</label>
  281. </li>
  282. <li class="pref-select">
  283. <span class="pref-type">Breast</span>
  284. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-0" name="prefs-vore-breast" value="0" />
  285. <label class="pref-disable" for="character-prefs-vore-breast-0">Disable</label>
  286. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-1" name="prefs-vore-breast" value="1" />
  287. <label class="pref-avoid" for="character-prefs-vore-breast-1">Avoid</label>
  288. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-2" name="prefs-vore-breast" checked="true" value="2" />
  289. <label class="pref-enable" for="character-prefs-vore-breast-2">Enable</label>
  290. <input type="radio" class="pref-radio" id="character-prefs-vore-breast-3" name="prefs-vore-breast" value="3" />
  291. <label class="pref-prefer" for="character-prefs-vore-breast-3">Prefer</label>
  292. </li>
  293. <li class="pref-select">
  294. <span class="pref-type">Hard</span>
  295. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-0" name="prefs-vore-hard" checked="true" value="0" />
  296. <label class="pref-disable" for="character-prefs-vore-hard-0">Disable</label>
  297. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-1" name="prefs-vore-hard" value="1" />
  298. <label class="pref-avoid" for="character-prefs-vore-hard-1">Avoid</label>
  299. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-2" name="prefs-vore-hard" value="2" />
  300. <label class="pref-enable" for="character-prefs-vore-hard-2">Enable</label>
  301. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-3" name="prefs-vore-hard" value="3" />
  302. <label class="pref-prefer" for="character-prefs-vore-hard-3">Prefer</label>
  303. </li>
  304. <li class="pref-select">
  305. <span class="pref-type">Soul</span>
  306. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-0" name="prefs-vore-soul" checked="true" value="0" />
  307. <label class="pref-disable" for="character-prefs-vore-soul-0">Disable</label>
  308. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-1" name="prefs-vore-soul" value="1" />
  309. <label class="pref-avoid" for="character-prefs-vore-soul-1">Avoid</label>
  310. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-2" name="prefs-vore-soul" value="2" />
  311. <label class="pref-enable" for="character-prefs-vore-soul-2">Enable</label>
  312. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-3" name="prefs-vore-soul" value="3" />
  313. <label class="pref-prefer" for="character-prefs-vore-soul-3">Prefer</label>
  314. </li>
  315. </ul>
  316. </li>
  317. <li>
  318. <button type="button" id="start-button">Start</button>
  319. </li>
  320. </ul>
  321. </form>
  322. </div>
  323. </body>
  324. </html>