munch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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