crunch
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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