munch
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

292 linhas
14 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.3
  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. <button class="stat-button" id="log-button">Log: Enabled</button>
  51. </div>
  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. <table>
  104. <tr>
  105. <th>
  106. <button class="action-button" id="action-look">Look</button>
  107. </th>
  108. <th>
  109. <button class="inactive-button action-button" disabled="true"></button>
  110. </th>
  111. <th>
  112. <button class="inactive-button action-button" disabled="true"></button>
  113. </th>
  114. </tr>
  115. <tr>
  116. <th>
  117. <button class="inactive-button action-button" disabled="true"></button>
  118. </th>
  119. <th>
  120. <button class="inactive-button action-button" disabled="true"></button>
  121. </th>
  122. <th>
  123. <button class="inactive-button action-button" disabled="true"></button>
  124. </th>
  125. </tr>
  126. <tr>
  127. <th>
  128. <button class="inactive-button action-button" disabled="true"></button>
  129. </th>
  130. <th>
  131. <button class="inactive-button action-button" disabled="true"></button>
  132. </th>
  133. <th>
  134. <button class="inactive-button action-button" disabled="true"></button>
  135. </th>
  136. </tr>
  137. </table>
  138. </div>
  139. </div>
  140. <div class="selector" id="selector-combat">
  141. <ul id="combat">
  142. </ul>
  143. <div id="combat-desc">
  144. </div>
  145. </div>
  146. <div class="selector" id="selector-eaten">
  147. <ul id="eaten">
  148. </ul>
  149. <div id="eaten-desc">
  150. </div>
  151. </div>
  152. <div class="selector" id="selector-dialog">
  153. <ul id="dialog">
  154. </ul>
  155. </div>
  156. </div>
  157. </div>
  158. <div id="create">
  159. <p>
  160. Welcome to Feast v0.2.3
  161. </p>
  162. <p>
  163. <b>This game features 18+ content</b>
  164. </p>
  165. <p>
  166. <a href="/feast">Changelog</a>
  167. </p>
  168. <p>
  169. <a href="https://t.me/joinchat/BSXHzQp-Isn9N9XgT2QRpw">Telegram</a>
  170. </p>
  171. <p>
  172. <a href="https://discord.gg/7pdcVhD">Discord</a>
  173. </p>
  174. <form id="character-form">
  175. <ul id="character-form-list">
  176. <li>
  177. <label for="character-name">Name</label>
  178. <input type="text" id="character-name" name="name" placeholder="Player"/>
  179. </li>
  180. <li>
  181. <label for="character-species">Species</label>
  182. <input type="text" id="character-species" name="species" placeholder="nerd"/>
  183. </li>
  184. <li>
  185. <label for="character-prefs-scat">Disposal/scat</label>
  186. <input type="checkbox" id="character-prefs-scat" name="prefs-scat"/>
  187. </li>
  188. <li>
  189. <label for="character-prefs-prey">Player can be eaten</label>
  190. <input type="checkbox" id="character-prefs-prey" name="prefs-prey" checked="true" />
  191. </li>
  192. <li>
  193. <ul class="pref-list">
  194. <div>Enemy vore types</div>
  195. <li class="pref-select">
  196. <span class="pref-type">Oral</span>
  197. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-0" name="prefs-vore-oral" value="0" />
  198. <label class="pref-disable" for="character-prefs-vore-oral-0">Disable</label>
  199. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-1" name="prefs-vore-oral" value="1" />
  200. <label class="pref-avoid" for="character-prefs-vore-oral-1">Avoid</label>
  201. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-2" name="prefs-vore-oral" checked="true" value="2" />
  202. <label class="pref-enable" for="character-prefs-vore-oral-2">Enable</label>
  203. <input type="radio" class="pref-radio" id="character-prefs-vore-oral-3" name="prefs-vore-oral" value="3" />
  204. <label class="pref-prefer" for="character-prefs-vore-oral-3">Prefer</label>
  205. </li>
  206. <li class="pref-select">
  207. <span class="pref-type">Cock</span>
  208. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-0" name="prefs-vore-cock" value="0" />
  209. <label class="pref-disable" for="character-prefs-vore-cock-0">Disable</label>
  210. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-1" name="prefs-vore-cock" value="1" />
  211. <label class="pref-avoid" for="character-prefs-vore-cock-1">Avoid</label>
  212. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-2" name="prefs-vore-cock" checked="true" value="2" />
  213. <label class="pref-enable" for="character-prefs-vore-cock-2">Enable</label>
  214. <input type="radio" class="pref-radio" id="character-prefs-vore-cock-3" name="prefs-vore-cock" value="3" />
  215. <label class="pref-prefer" for="character-prefs-vore-cock-3">Prefer</label>
  216. </li>
  217. <li class="pref-select">
  218. <span class="pref-type">Anal</span>
  219. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-0" name="prefs-vore-anal" value="0" />
  220. <label class="pref-disable" for="character-prefs-vore-anal-0">Disable</label>
  221. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-1" name="prefs-vore-anal" value="1" />
  222. <label class="pref-avoid" for="character-prefs-vore-anal-1">Avoid</label>
  223. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-2" name="prefs-vore-anal" checked="true" value="2" />
  224. <label class="pref-enable" for="character-prefs-vore-anal-2">Enable</label>
  225. <input type="radio" class="pref-radio" id="character-prefs-vore-anal-3" name="prefs-vore-anal" value="3" />
  226. <label class="pref-prefer" for="character-prefs-vore-anal-3">Prefer</label>
  227. </li>
  228. <li class="pref-select">
  229. <span class="pref-type">Tail</span>
  230. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-0" name="prefs-vore-tail" value="0" />
  231. <label class="pref-disable" for="character-prefs-vore-tail-0">Disable</label>
  232. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-1" name="prefs-vore-tail" value="1" />
  233. <label class="pref-avoid" for="character-prefs-vore-tail-1">Avoid</label>
  234. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-2" name="prefs-vore-tail" checked="true" value="2" />
  235. <label class="pref-enable" for="character-prefs-vore-tail-2">Enable</label>
  236. <input type="radio" class="pref-radio" id="character-prefs-vore-tail-3" name="prefs-vore-tail" value="3" />
  237. <label class="pref-prefer" for="character-prefs-vore-tail-3">Prefer</label>
  238. </li>
  239. <li class="pref-select">
  240. <span class="pref-type">Unbirth</span>
  241. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-0" name="prefs-vore-unbirth" value="0" />
  242. <label class="pref-disable" for="character-prefs-vore-unbirth-0">Disable</label>
  243. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-1" name="prefs-vore-unbirth" value="1" />
  244. <label class="pref-avoid" for="character-prefs-vore-unbirth-1">Avoid</label>
  245. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-2" name="prefs-vore-unbirth" checked="true" value="2" />
  246. <label class="pref-enable" for="character-prefs-vore-unbirth-2">Enable</label>
  247. <input type="radio" class="pref-radio" id="character-prefs-vore-unbirth-3" name="prefs-vore-unbirth" value="3" />
  248. <label class="pref-prefer" for="character-prefs-vore-unbirth-3">Prefer</label>
  249. </li>
  250. <li class="pref-select">
  251. <span class="pref-type">Hard</span>
  252. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-0" name="prefs-vore-hard" checked="true" value="0" />
  253. <label class="pref-disable" for="character-prefs-vore-hard-0">Disable</label>
  254. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-1" name="prefs-vore-hard" value="1" />
  255. <label class="pref-avoid" for="character-prefs-vore-hard-1">Avoid</label>
  256. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-2" name="prefs-vore-hard" value="2" />
  257. <label class="pref-enable" for="character-prefs-vore-hard-2">Enable</label>
  258. <input type="radio" class="pref-radio" id="character-prefs-vore-hard-3" name="prefs-vore-hard" value="3" />
  259. <label class="pref-prefer" for="character-prefs-vore-hard-3">Prefer</label>
  260. </li>
  261. <li class="pref-select">
  262. <span class="pref-type">Soul</span>
  263. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-0" name="prefs-vore-soul" checked="true" value="0" />
  264. <label class="pref-disable" for="character-prefs-vore-soul-0">Disable</label>
  265. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-1" name="prefs-vore-soul" value="1" />
  266. <label class="pref-avoid" for="character-prefs-vore-soul-1">Avoid</label>
  267. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-2" name="prefs-vore-soul" value="2" />
  268. <label class="pref-enable" for="character-prefs-vore-soul-2">Enable</label>
  269. <input type="radio" class="pref-radio" id="character-prefs-vore-soul-3" name="prefs-vore-soul" value="3" />
  270. <label class="pref-prefer" for="character-prefs-vore-soul-3">Prefer</label>
  271. </li>
  272. </ul>
  273. </li>
  274. <li>
  275. <button type="button" id="start-button">Start</button>
  276. </li>
  277. </ul>
  278. </form>
  279. </div>
  280. </body>
  281. </html>