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.
 
 
 

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