munch
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

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