big steppy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

784 строки
39 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Stroll</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script src="darkmode.js"></script>
  8. <script src="sounds.js"></script>
  9. <script src="presets.js"></script>
  10. <script src="units.js"></script>
  11. <script src="recursive-macro.js"></script>
  12. <script src="recursive-desc.js"></script>
  13. <script src="game.js"></script>
  14. <meta name="theme-color" content="#000000" />
  15. <meta name="description" content="An 18+ macro/vore text game" />
  16. <meta property="og:title" content="Stroll" />
  17. <meta property="og:description" content="An 18+ macro/vore text game" />
  18. <meta property="og:image" content="https://chemicalcrux.org/stroll.png" />
  19. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  20. </head>
  21. <body class="light">
  22. <script>loadDarkMode();</script>
  23. <div class="game-area">
  24. <div class="sidebar" id="stat-container">
  25. <div class="stat-header-self" id="stats-self">
  26. <p>Stats</p>
  27. <div class="stat-line" id="height"></div>
  28. <div class="stat-line" id="mass"></div>
  29. <div class="stat-line" id="growth-points"></div>
  30. <div class="stat-line" id="arousal"></div>
  31. <div class="stat-line" id="edge"></div>
  32. <div class="stat-line-hidden" id="cum"></div>
  33. <div class="stat-line-hidden" id="cumPercent"></div>
  34. <div class="stat-line-hidden" id="femcum"></div>
  35. <div class="stat-line-hidden" id="femcumPercent"></div>
  36. <div class="stat-line-hidden" id="milk"></div>
  37. <div class="stat-line-hidden" id="milkPercent"></div>
  38. <div class="stat-line-hidden" id="gas"></div>
  39. <div class="stat-line-hidden" id="gasPercent"></div>
  40. <div class="stat-line-hidden" id="piss"></div>
  41. <div class="stat-line-hidden" id="pissPercent"></div>
  42. <div class="stat-line-hidden" id="scat"></div>
  43. <div class="stat-line-hidden" id="scatPercent"></div>
  44. </div>
  45. <div class="stat-header-self">Growth</div>
  46. <table id="grow-panel">
  47. <tr>
  48. <th><input class="growth-option" type="radio" name="part" checked="true" id="part-body">
  49. <label class="growth-label" for="part-body">Body</label></th>
  50. <th><button class="growth-amount" id="button-amount-1">1x</button></th>
  51. </tr>
  52. <tr>
  53. <th><input class="growth-option" type="radio" name="part" id="part-ass">
  54. <label class="growth-label" for="part-ass">Ass</label></th>
  55. <th><button class="growth-amount" id="button-amount-5">5x</button></th>
  56. </tr>
  57. <tr>
  58. <th><input class="growth-option" type="radio" name="part" id="part-dick">
  59. <label class="growth-label" for="part-dick">Cock</label></th>
  60. <th><button class="growth-amount" id="button-amount-10">10x</button></th>
  61. </tr>
  62. <tr>
  63. <th><input class="growth-option" type="radio" name="part" id="part-balls">
  64. <label class="growth-label" for="part-balls">Balls</label></th>
  65. <th><button class="growth-amount" id="button-amount-20">20x</button></th>
  66. </tr>
  67. <tr>
  68. <th><input class="growth-option" type="radio" name="part" id="part-breasts">
  69. <label class="growth-label" for="part-breasts">Breasts</label></th>
  70. <th><button class="growth-amount" id="button-amount-50">50x</button></th>
  71. </tr>
  72. <tr>
  73. <th><input class="growth-option" type="radio" name="part" id="part-vagina">
  74. <label class="growth-label" for="part-vagina">Slit</label></th>
  75. <th><button class="growth-amount" id="button-amount-100">100x</button></th>
  76. </tr>
  77. </table>
  78. <div class="stat-container">
  79. <button class="stat-button" id="button-look">Look Around</button>
  80. <button class="stat-button" id="button-arousal">Arousal On</button>
  81. <button class="stat-button" id="button-stroll">Status: Standing</button>
  82. <button class="stat-button" id="button-numbers">Numbers: Full</button>
  83. <button class="stat-button" id="button-units">Units: Metric</button>
  84. <button class="stat-button" id="button-verbose">Verbose Text</button>
  85. <button class="stat-button" id="button-grow-lots">SUPER BIG</button>
  86. <button class="stat-button" id="button-dark-mode-game">Toggle Dark Mode</button>
  87. <button class="stat-button" id="button-stats">Stats</button>
  88. <button class="stat-button" id="button-debug-log">Debug Log</button>
  89. </div>
  90. </div>
  91. <div id="log-area">
  92. <div id="log">
  93. <div>Welcome to Stroll 0.5.27</div>
  94. <div><b>This game features 18+ content</b></div>
  95. <div>It's a nice day for a walk</div>
  96. <div>&nbsp;</div>
  97. </div>
  98. </div>
  99. <div class="sidebar" id="action-panel">
  100. <div class="action-part-container">
  101. <button class="active action-part-button" id="action-part-body">Body</button>
  102. <button class="action-part-button" id="action-part-dick">Cock</button>
  103. <button class="action-part-button" id="action-part-vagina">Slit</button>
  104. <button class="action-part-button" id="action-part-breasts">Breasts</button>
  105. <button class="action-part-button" id="action-part-tails">Tails</button>
  106. <button class="action-part-button" id="action-part-souls">Souls</button>
  107. <button class="action-part-button" id="action-part-shoes">Shoes</button>
  108. <button class="action-part-button" id="action-part-waste">Waste</button>
  109. <button class="action-part-button" id="action-part-misc">Misc</button>
  110. </div>
  111. <div class="action-tab" id="actions-body">
  112. <button class="action-button" id="button-action-feed">Eat</button>
  113. <button class="action-button" id="button-action-chew">Chew</button>
  114. <button class="action-button" id="button-action-stomp">Stomp</button>
  115. <button class="action-button" id="button-action-flex_toes">Flex Toes</button>
  116. <button class="action-button" id="button-action-sit">Sit</button>
  117. <button class="action-button" id="button-action-anal_vore">Anal Vore</button>
  118. <button class="action-button" id="button-action-grind">Grind</button>
  119. </div>
  120. <div class="action-tab" id="actions-tails">
  121. <button class="action-button" id="button-action-tail_slap">Tail Slap</button>
  122. <button class="action-button" id="button-action-tail_vore_only">Tail Vore</button>
  123. <button class="action-button" id="button-action-tail_vore_one">Tail Vore (1)</button>
  124. <button class="action-button" id="button-action-tail_vore_some">Tail Vore (some)</button>
  125. <button class="action-button" id="button-action-tail_vore_all">Tail Vore (all!)</button>
  126. </div>
  127. <div class="action-tab" id="actions-breasts">
  128. <button class="action-button" id="button-action-cleavage_stuff">Stuff Cleavage</button>
  129. <button class="action-button" id="button-action-cleavage_crush">Crush Cleavage</button>
  130. <button class="action-button" id="button-action-cleavage_drop">Drop Cleavage</button>
  131. <button class="action-button" id="button-action-cleavage_absorb">Absorb Cleavage</button>
  132. <button class="action-button" id="button-action-breast_crush">Breast Crush</button>
  133. <button class="action-button" id="button-action-breast_vore">Breast Vore</button>
  134. <button class="action-button" id="button-action-breast_milk">Milk Breasts</button>
  135. </div>
  136. <div class="action-tab" id="actions-vagina">
  137. <button class="action-button" id="button-action-unbirth">Unbirth</button>
  138. </div>
  139. <div class="action-tab" id="actions-dick">
  140. <button class="action-button" id="button-action-sheath_stuff">Stuff Sheath</button>
  141. <button class="action-button" id="button-action-sheath_squeeze">Squeeze Sheath</button>
  142. <button class="action-button" id="button-action-sheath_clench">Clench Sheath</button>
  143. <button class="action-button" id="button-action-sheath_absorb">Absorb Sheath</button>
  144. <button class="action-button" id="button-action-cockslap">Cockslap</button>
  145. <button class="action-button" id="button-action-cock_vore">Cock Vore</button>
  146. <button class="action-button" id="button-action-ball_smother">Ball Smother</button>
  147. </div>
  148. <div class="action-tab" id="actions-souls">
  149. <button class="action-button" id="button-action-soul_vore">Soul Vore</button>
  150. <button class="action-button" id="button-action-soul_absorb_paw">Paws</button>
  151. </div>
  152. <div class="action-tab" id="actions-shoes">
  153. <button class="action-button" id="button-action-wear_shoes">Put On Shoes</button>
  154. <button class="action-button" id="button-action-remove_shoes">Take Off Shoes</button>
  155. <button class="action-button" id="button-action-wear_socks">Put On Socks</button>
  156. <button class="action-button" id="button-action-remove_socks">Take Off Socks</button>
  157. <button class="action-button" id="button-action-stuff_shoes">Stuff Shoes</button>
  158. <button class="action-button" id="button-action-stuff_socks">Stuff Socks</button>
  159. <button class="action-button" id="button-action-dump_shoes">Dump Shoes</button>
  160. <button class="action-button" id="button-action-dump_socks">Dump Socks</button>
  161. </div>
  162. <div class="action-tab" id="actions-waste">
  163. <button class="action-button" id="button-action-belch">Belch</button>
  164. <button class="action-button" id="button-action-fart">Fart</button>
  165. <button class="action-button" id="button-action-piss">Piss</button>
  166. <button class="action-button" id="button-action-bladder_vore">Bladder Vore</button>
  167. <button class="action-button" id="button-action-scat">Scat</button>
  168. </div>
  169. <div class="action-tab" id="actions-misc">
  170. <button class="action-button" id="button-action-pouch_stuff">Stuff Pouch</button>
  171. <button class="action-button" id="button-action-pouch_rub">Rub Pouch</button>
  172. <button class="action-button" id="button-action-pouch_eat">Eat From Pouch</button>
  173. <button class="action-button" id="button-action-pouch_absorb">Absorb Pouch</button>
  174. </div>
  175. </div>
  176. </div>
  177. <div class="character-build">
  178. <p>Welcome to Stroll 0.5.27</p>
  179. <p><b>This game features 18+ content</b></p>
  180. <p><a href="https://chemicalcrux.org/stroll">Changelog</a></p>
  181. <p><a href="https://t.me/joinchat/BSXHzUZmSqc-CXB1khkuYw">Telegram discussion group</a></p>
  182. <div><a href="https://discord.gg/7pdcVhD">Discord discussion group</a></div>
  183. <p>Stroll is a text-based macro game. Stomp things, eat things, abuse things - then grow larger and do it all over again. </p>
  184. <p>Build your Character (leave blank for reasonable normal-scale defaults)</p>
  185. <p>Lengths in meters, areas in square meters, masses in kilograms</p>
  186. <p>Click on highlight/darkened titles to enable and disabled features.</p>
  187. <div id="custom-species">
  188. <ul class="flex-outer">
  189. <div class="custom-category">
  190. <p>Reset the sheet here (saved data isn't affected)</p>
  191. <div>
  192. <button class="option-button" id="button-reset-custom">Reset</button>
  193. </div>
  194. </div>
  195. <div class="custom-category">
  196. <div>
  197. <button class="option-button" id="button-start">Start Game</button>
  198. </div>
  199. </div>
  200. <div class="custom-category">
  201. <button class="option-button" id="button-dark-mode-options">Toggle Dark Mode</button>
  202. </div>
  203. <div class="custom-category">
  204. <p>You can load a preset character here...</p>
  205. <div>
  206. <select id="character-presets">
  207. </select>
  208. <button type="button" class="option-button" id="button-load-preset">Load Preset Character</button>
  209. </div>
  210. </div>
  211. <div class="custom-category">
  212. <p>Or, load/save your own character internally here! It'll be saved in your browser, so you can come back to it later.</p>
  213. <div>
  214. <button type="button" class="option-button" id="button-load-custom">Load Custom Character</button>
  215. <button type="button" class="option-button" id="button-save-custom">Save Custom Character</button>
  216. </div>
  217. </div>
  218. <div class="custom-category">
  219. <p>Or export/import your character to text here. Copy and paste to share!</p>
  220. <div class>
  221. <button type="button" class="option-button" id="button-export-clear">Clear Space</button>
  222. <button type="button" class="option-button" id="button-export-preset">Export Your Character</button>
  223. <button type="button" class="option-button" id="button-import-preset">Import Your Character</button>
  224. <p><input type="text" id="export-area" placeholder="Paste character data here..."></p>
  225. </div>
  226. </div>
  227. </ul>
  228. <form id="custom-species-form" name="custom-species-form">
  229. <ul class="flex-outer">
  230. <div class="custom-category">
  231. <div class="custom-header-static">Basics</div>
  232. <div>
  233. <li>
  234. <label for="name">Name</label>
  235. <input type="text" id="name" name="name" />
  236. </li>
  237. <li>
  238. <label for="species">Species</label>
  239. <input type="text" id="species" name="species" placeholder="crux" />
  240. </li>
  241. <li>
  242. <label for="scale" class="has-tooltip" title="How many times larger than normal you start.">Scale (?)</label>
  243. <input type="number" step="any" id="scale" name="scale" placeholder="1" />
  244. </li>
  245. <li>
  246. <label for="baseHeight">Height</label>
  247. <input type="number" step="any" id="baseHeight" name="baseHeight" placeholder="2.26" />
  248. </li>
  249. <li>
  250. <label for="baseMass">Weight</label>
  251. <input type="number" step="any" id="baseMass" name="baseMass" placeholder="135">
  252. </li>
  253. <li>
  254. <label for="basePawArea">Paw area</label>
  255. <input type="number" step="any" id="basePawArea" name="basePawArea" placeholder="0.1">
  256. </li>
  257. <li>
  258. <label for="baseHandArea">Hand area</label>
  259. <input type="number" step="any" id="baseHandArea" name="baseHandArea" placeholder="0.1">
  260. </li>
  261. <li>
  262. <label for="baseAssArea">Ass area</label>
  263. <input type="number" step="any" id="baseAssArea" name="baseAssArea" placeholder="0.4">
  264. </li>
  265. </div>
  266. </div>
  267. <div class="custom-category">
  268. <div class="custom-header-static">Brutality</div>
  269. <div>
  270. <ul>
  271. <li>
  272. <input type="radio" name="brutality" id="brutality-0" value="0">
  273. <label for="brutality-0">Non-fatal</label>
  274. </li>
  275. <li>
  276. <input type="radio" name="brutality" checked="true" id="brutality-1" value="1">
  277. <label for="brutality-1">Fatal, no gore</label>
  278. </li>
  279. <li>
  280. <input type="radio" name="brutality" id="brutality-2" value="2">
  281. <label for="brutality-2">Gory</label>
  282. </li>
  283. <li>
  284. <input type="radio" name="brutality" id="brutality-3" disabled="disableD" value="3">
  285. <label for="brutality-3">Sadistic (not implemented)</label>
  286. </li>
  287. </ul>
  288. </div>
  289. </div>
  290. <div class="custom-category">
  291. <div class="custom-header-static">Victims</div>
  292. <div>
  293. <li>
  294. <label for="victimsHuman">Human prey (instead of anthros)</label>
  295. <input type="checkbox" name="victimsHuman" id="victimsHuman" />
  296. </li>
  297. <li>
  298. <label for="military">Military</label>
  299. <input type="checkbox" name="victimsMilitary" id="victimsMilitary" />
  300. </li>
  301. <li>
  302. <label for="macros">Smaller macros</label>
  303. <input type="checkbox" name="victimsMacros" id="victimsMacros" />
  304. </li>
  305. <li>
  306. <label for="micros">Micros</label>
  307. <input type="checkbox" name="victimsMicros" id="victimsMicros" />
  308. </li>
  309. </div>
  310. </div>
  311. <div class="custom-category">
  312. <div class="custom-header-static">Misc</div>
  313. <div>
  314. <li>
  315. <label class="has-tooltip" for="sameSizeVore" title="Can you eat people your own size?">Same-size predator</label>
  316. <input type="checkbox" checked="true" name="sameSizeVore" />
  317. </li>
  318. <li>
  319. <label class="has-tooltip" for="sameSizeStomp" title="Can you stomp and sit on people your own size?">Same-size stomper</label>
  320. <input type="checkbox" checked="true" name="sameSizeStomp" />
  321. </li>
  322. <li>
  323. <label for="footType">Foot type</label>
  324. <select name="footType">
  325. <option value="paw">Paws</option>
  326. <option value="hoof">Hooves</option>
  327. <option value="foot">Human</option>
  328. <option value="avian">Avian</option>
  329. </select>
  330. </li>
  331. <li>
  332. <label for="jawType">Mouth type</label>
  333. <select name="jawType">
  334. <option value="jaw">Jaws</option>
  335. <option value="beak">Beak</option>
  336. </select>
  337. </li>
  338. </div>
  339. </div>
  340. <div class="custom-category">
  341. <input class="custom-header-checkbox" type="checkbox" id="footWear" name="footWear" />
  342. <label class="custom-header" for="footWear">Footwear</label>
  343. <div class="reveal-if-active">
  344. <li>
  345. <div class="custom-category-sub">
  346. <ul class="flex-outer-sub">
  347. <input class="custom-header-checkbox" type="checkbox" checked="true" id="footSockEnabled" name="footSockEnabled" />
  348. <label class="custom-header" for="footSockEnabled">Socks</label>
  349. <div class="reveal-if-active">
  350. <li>
  351. <label for="footSock">Sock type</label>
  352. <select name="footSock">
  353. <option value="sock">Socks</option>
  354. </select>
  355. </li>
  356. </div>
  357. </ul>
  358. </div>
  359. <div class="custom-category-sub">
  360. <ul class="flex-outer-sub">
  361. <input class="custom-header-checkbox" type="checkbox" checked="true" id="footShoeEnabled" name="footShoeEnabled" />
  362. <label class="custom-header" for="footShoeEnabled">Shoes</label>
  363. <div class="reveal-if-active">
  364. <li>
  365. <label for="footShoe">Shoe type</label>
  366. <select name="footShoe">
  367. <option value="shoe">Shoes</option>
  368. <option value="boot">Boots</option>
  369. <option value="trainer">Trainers</option>
  370. <option value="sandal">Sandals</option>
  371. </select>
  372. </li>
  373. </div>
  374. </ul>
  375. </div>
  376. </li>
  377. </div>
  378. </div>
  379. <div class="custom-category">
  380. <input class="custom-header-checkbox" type="checkbox" id="analVore" name="analVore" />
  381. <label class="custom-header" for="analVore">Anal Vore</label>
  382. <div class="reveal-if-active">
  383. <li>
  384. <label for="baseAnalVoreDiameter">Tailhole diameter</label>
  385. <input type="number" step="any" id="baseAnalVoreDiameter" name="baseAnalVoreDiameter" placeholder="0.1">
  386. </li>
  387. <li>
  388. <label class="has-tooltip" for="analVoreToStomach" title="Otherwise, bowels absorb/digest">Anal vore goes to stomach</label>
  389. <input type="checkbox" name="analVoreToStomach" id="analVoreToStomach" />
  390. </li>
  391. </div>
  392. </div>
  393. <div class="custom-category">
  394. <input class="custom-header-checkbox" type="checkbox" id="arousalEnabled" name="arousalEnabled" />
  395. <label class="custom-header" for="arousalEnabled">Arousal</label>
  396. <div class="reveal-if-active">
  397. <li>
  398. <label class="has-tooltip" for="arousalFactor" title="Multiplies arousal gain by this much">Arousal multiplier</label>
  399. <input type="number" step="any" name="arousalFactor" placeholder="1" />
  400. </li>
  401. <li>
  402. <label class="has-tooltip" for="edgeFactor" title="Multiplies edge gain by this much">Edge multiplier</label>
  403. <input type="number" step="any" name="arousalFactor" placeholder="1" />
  404. </li>
  405. </div>
  406. </div>
  407. <div class="custom-category">
  408. <input class="custom-header-checkbox" type="checkbox" id="hasTail" name="hasTail" />
  409. <label class="custom-header" for="hasTail">Tails</label>
  410. <div class="reveal-if-active">
  411. <li>
  412. <label for="tailCount">Tail count</label>
  413. <input type="number" step="any" name="tailCount" placeholder="1" />
  414. </li>
  415. <li>
  416. <label for="tailType">Tail type</label>
  417. <input type="text" name="tailType" placeholder="slinky" />
  418. </li>
  419. <li>
  420. <label for="baseTailLength">Tail length</label>
  421. <input type="number" step="any" name="baseTailLength" placeholder="1" />
  422. </li>
  423. <li>
  424. <label for="baseTailDiameter">Tail diameter</label>
  425. <input type="number" step="any" name="baseTailDiameter" placeholder="0.3" />
  426. </li>
  427. <li>
  428. <div class="custom-category-sub">
  429. <ul class="flex-outer-sub">
  430. <input class="custom-header-checkbox" type="checkbox" id="tailMaw" name="tailMaw" />
  431. <label class="custom-header" for="tailMaw">Tail Vore</label>
  432. <div class="reveal-if-active">
  433. <li>
  434. <label for="tailStretchiness">Tail stretchiness</label>
  435. <input type="number" step="any" name="tailStretchiness" placeholder="1" />
  436. </li>
  437. </div>
  438. </ul>
  439. </div>
  440. </li>
  441. </div>
  442. </div>
  443. <div class="custom-category">
  444. <input class="custom-header-checkbox" type="checkbox" id="hasPouch" name="hasPouch" />
  445. <label class="custom-header" for="hasPouch">Pouch</label>
  446. <div class="reveal-if-active">
  447. <li>
  448. It's on :D
  449. </li>
  450. </div>
  451. </div>
  452. <div class="custom-category">
  453. <input class="custom-header-checkbox" type="checkbox" id="maleParts" name="maleParts" />
  454. <label class="custom-header" for="maleParts">Male genitals</label>
  455. <div class="reveal-if-active">
  456. <li>
  457. <label for="hasSheath">Sheath</label>
  458. <input type="checkbox" id="hasSheath" name="hasSheath" checked="true" />
  459. </li>
  460. <li>
  461. <label for="dickType">Cock type</label>
  462. <input type="text" id="dickType" name="dickType" placeholder="canine" />
  463. </li>
  464. <li>
  465. <label for="baseDickLength">Cock length</label>
  466. <input type="number" step="any" id="baseDickLength" name="baseDickLength" placeholder="0.3" />
  467. </li>
  468. <li>
  469. <label for="baseDickDiameter">Cock diameter</label>
  470. <input type="number" step="any" id="baseDickDiameter" name="baseDickDiameter" placeholder="0.08" />
  471. </li>
  472. <li>
  473. <label for="dickStretchiness">Cock stretchiness</label>
  474. <input type="number" step="any" name="dickStretchiness" placeholder="1" />
  475. </li>
  476. <li>
  477. <label for="baseBallDiameter">Ball diameter</label>
  478. <input type="number" step="any" id="baseBallDiameter" name="baseBallDiameter" placeholder="0.05" />
  479. </li>
  480. <li>
  481. <label for="baseCumRatio" class="has-tooltip" title="scales how much cum is released with each shot">Orgasm cum ratio</label>
  482. <input type="number" step="any" id="baseCumRatio" name="baseCumRatio" placeholder="1" />
  483. </li>
  484. <li>
  485. <label for="baseMass">Cum production factor</label>
  486. <input type="number" step="any" id="cumScale" name="cumScale" placeholder="1" />
  487. </li>
  488. <li>
  489. <label for="cumStorageScale">Cum storage multiplier</label>
  490. <input type="number" step="any" id="cumStorageScale" name="cumStorageScale" placeholder="1" />
  491. </li>
  492. <li>
  493. <label for="baseCumDigestFactor">Cum digestion factor</label>
  494. <input type="number" step="any" id="baseCumDigestFactor" name="baseCumDigestFactor" placeholder="1" />
  495. </li>
  496. <li>
  497. <label class="has-tooltip" for="cumScaleWithSize" title="If checked, produces more cum from the same prey as you get larger">Scale cum with size</label>
  498. <input type="checkbox" id="cumScaleWithSize" name="cumScaleWithSize" />
  499. </li>
  500. </div>
  501. </div>
  502. <div class="custom-category">
  503. <input class="custom-header-checkbox" type="checkbox" id="hasBreasts" name="hasBreasts" />
  504. <label class="custom-header" for="hasBreasts">Breasts</label>
  505. <div class="reveal-if-active">
  506. <li>
  507. <label for="baseBreastDiameter">Breast diameter</label>
  508. <input type="number" step="any" id="baseBreastDiameter" name="baseBreastDiameter" placeholder="0.1" />
  509. </li>
  510. <li>
  511. <div class="custom-category-sub">
  512. <ul class="flex-outer-sub">
  513. <input class="custom-header-checkbox" type="checkbox" checked="true" id="lactationEnabled" name="lactationEnabled" />
  514. <label class="custom-header" for="lactationEnabled">Lactation</label>
  515. <div class="reveal-if-active">
  516. <li>
  517. <label for="lactationFactor" class="has-tooltip" title="scales how much milk is released with each squeeze">Lactation ratio</label>
  518. <input type="number" step="any" id="lactationFactor" name="lactationFactor" placeholder="0.25" />
  519. </li>
  520. <li>
  521. <label for="lactationScale">Milk production factor</label>
  522. <input type="number" step="any" id="lactationScale" name="lactationScale" placeholder="1" />
  523. </li>
  524. <li>
  525. <label for="milkStorageScale">Milk storage multiplier</label>
  526. <input type="number" step="any" id="milkStorageScale" name="milkStorageScale" placeholder="1" />
  527. </li>
  528. </div>
  529. </ul>
  530. </div>
  531. </li>
  532. <li>
  533. <div class="custom-category-sub">
  534. <ul class="flex-outer-sub">
  535. <input class="custom-header-checkbox" type="checkbox" id="breastVore" name="breastVore" />
  536. <label class="custom-header" for="breastVore">Breast Vore</label>
  537. <div class="reveal-if-active">
  538. <li>
  539. <label for="breastStretchiness">Breast stretchiness</label>
  540. <input type="number" step="any" name="breastStretchiness" placeholder="1" />
  541. </li>
  542. <li>
  543. <label for="baseMilkDigestFactor">Milk digestion factor</label>
  544. <input type="number" step="any" id="baseMilkDigestFactor" name="baseMilkDigestFactor" placeholder="1" />
  545. </li>
  546. <li>
  547. <label class="has-tooltip" for="milkScaleWithSize" title="If checked, produces more milk from the same prey as you get larger">Scale milk with size</label>
  548. <input type="checkbox" id="milkScaleWithSize" name="milkScaleWithSize" />
  549. </li>
  550. </div>
  551. </ul>
  552. </div>
  553. </li>
  554. </div>
  555. </div>
  556. <div class="custom-category">
  557. <input class="custom-header-checkbox" type="checkbox" id="femaleParts" name="femaleParts" />
  558. <label class="custom-header" for="femaleParts">Female genitals</label>
  559. <div class="reveal-if-active">
  560. <li>
  561. <label for="baseVaginaLength">Slit length</label>
  562. <input type="number" step="any" id="baseVaginaLength" name="baseVaginaLength" placeholder="0.1" />
  563. </li>
  564. <li>
  565. <label for="baseVaginaWidth">Slit width</label>
  566. <input type="number" step="any" id="baseVaginaWidth" name="baseVaginaWidth" placeholder="0.05" />
  567. </li>
  568. <li>
  569. <label for="vaginaStretchiness">Slit stretchiness</label>
  570. <input type="number" step="any" name="vaginaStretchiness" placeholder="1" />
  571. </li>
  572. <li>
  573. <label for="baseFemcumRatio" class="has-tooltip" title="scales how much femcum is released with each shot">Orgasm femcum ratio</label>
  574. <input type="number" step="any" id="baseFemcumRatio" name="baseFemcumRatio" placeholder="1" />
  575. </li>
  576. <li>
  577. <label for="femcumScale">Femcum production factor</label>
  578. <input type="number" step="any" id="femcumScale" name="femcumScale" placeholder="1" />
  579. </li>
  580. <li>
  581. <label for="femcumStorageScale">Femcum storage multiplier</label>
  582. <input type="number" step="any" id="femcumStorageScale" name="femcumStorageScale" placeholder="1" />
  583. </li>
  584. <li>
  585. <label for="baseFemcumDigestFactor">Femcum digestion factor</label>
  586. <input type="number" step="any" id="baseFemcumDigestFactor" name="baseFemcumDigestFactor" placeholder="1" />
  587. </li>
  588. <li>
  589. <label class="has-tooltip" for="femcumScaleWithSize" title="If checked, produces more femcum from the same prey as you get larger">Scale femcum with size</label>
  590. <input type="checkbox" id="femcumScaleWithSize" name="femcumScaleWithSize" />
  591. </li>
  592. </div>
  593. </div>
  594. <div class="custom-category">
  595. <input class="custom-header-checkbox" type="checkbox" id="stenchEnabled" name="stenchEnabled" />
  596. <label class="custom-header" for="stenchEnabled">Stench</label>
  597. <div class="reveal-if-active">
  598. <li>
  599. <label class="has-tooltip" for="basePawStenchArea" title="How many times your paw area should be covered in stench">Paw stench area</label>
  600. <input type="number" step="any" id="basePawStenchArea" name="basePawStenchArea" placeholder="1" />
  601. </li>
  602. <li>
  603. <label class="has-tooltip" for="baseAssStenchArea" title="How many times your ass' area should be covered in stench">Ass stench area</label>
  604. <input type="number" step="any" id="baseAssStenchArea" name="baseAssStenchArea" placeholder="1" />
  605. </li>
  606. </div>
  607. </div>
  608. <div class="custom-category">
  609. <input class="custom-header-checkbox" type="checkbox" id="gasEnabled" name="gasEnabled" />
  610. <label class="custom-header" for="gasEnabled">Gas</label>
  611. <div class="reveal-if-active">
  612. <li>
  613. <label for="belchEnabled">Belching</label>
  614. <input type="checkbox" checked="true" name="belchEnabled" />
  615. </li>
  616. <li>
  617. <label for="fartEnabled">Farting</label>
  618. <input type="checkbox" name="fartEnabled" />
  619. </li>
  620. <li>
  621. <label for="gasScale">Gas production factor</label>
  622. <input type="number" step="any" id="gasScale" name="gasScale" placeholder="1" />
  623. </li>
  624. <li>
  625. <label for="gasStorageScale">Gas storage multiplier</label>
  626. <input type="number" step="any" id="gasStorageScale" name="gasStorageScale" placeholder="1" />
  627. </li>
  628. <li>
  629. <label for="baseGasDigestFactor">Gas digestion factor</label>
  630. <input type="number" step="any" id="baseGasDigestFactor" name="baseGasDigestFactor" placeholder="1" />
  631. </li>
  632. <li>
  633. <label class="has-tooltip" for="gasScaleWithSize" title="If checked, produces more gas from the same prey as you get larger">Scale gas with size</label>
  634. <input type="checkbox" id="gasScaleWithSize" name="gasScaleWithSize" />
  635. </li>
  636. </div>
  637. </div>
  638. <div class="custom-category">
  639. <input class="custom-header-checkbox" type="checkbox" id="soulVoreEnabled" name="soulVoreEnabled" />
  640. <label class="custom-header" for="soulVoreEnabled">Soul Vore</label>
  641. <div class="reveal-if-active">
  642. <li>
  643. <ul>
  644. <label>Soul destination</label>
  645. <li>
  646. <input type="radio" name="soulVoreType" id="soulvore-release" value="release">
  647. <label class="has-tooltip" for="soulvore-release">Released</label>
  648. </li>
  649. <li>
  650. <input type="radio" name="soulVoreType" id="soulvore-predscape" value="predscape">
  651. <label class="has-tooltip" for="soulvore-predscape" title="A sort of afterlife or 'other plane' within the predator">Predscape</label>
  652. </li>
  653. <li>
  654. <input type="radio" name="soulVoreType" checked="true" id="soulvore-afterlife" value="afterlife">
  655. <label for="soulvore-afterlife">Afterlife</label>
  656. </li>
  657. <li>
  658. <input type="radio" name="soulVoreType" id="soulvore-body" value="body">
  659. <label class="has-tooltip" for="soulvore-body" title="Trapped on the predator's body">Predator's body</label>
  660. </li>
  661. <li>
  662. <input type="radio" name="soulVoreType" id="soulvore-oblivion" value="oblivion">
  663. <label for="soulvore-oblivion">Oblivion</label>
  664. </li>
  665. </ul>
  666. </li>
  667. </div>
  668. </div>
  669. <div class="custom-category">
  670. <input class="custom-header-checkbox" type="checkbox" id="pissEnabled" name="pissEnabled" />
  671. <label class="custom-header" for="pissEnabled">Watersports</label>
  672. <div class="reveal-if-active">
  673. <li>
  674. <label for="pissScale" >Piss production scale</label>
  675. <input type="number" step="any" id="pissScale" name="pissScale" placeholder="1" />
  676. </li>
  677. <li>
  678. <label for="pissStorageScale">Piss storage multiplier</label>
  679. <input type="number" step="any" id="pissStorageScale" name="pissStorageScale" placeholder="1" />
  680. </li>
  681. <div class="custom-category-sub">
  682. <ul class="flex-outer-sub">
  683. <input class="custom-header-checkbox" type="checkbox" id="bladderVore" name="bladderVore" />
  684. <label class="custom-header" for="bladderVore">Bladder Vore</label>
  685. <div class="reveal-if-active">
  686. <li>
  687. <label for="baseUrethraDiameter">Urethra diameter</label>
  688. <input type="number" step="any" id="baseUrethraDiameter" name="baseUrethraDiameter" placeholder="0.03" />
  689. </li>
  690. <li>
  691. <label for="urethraStretchiness">Urethra stretchiness</label>
  692. <input type="number" step="any" id="urethraStretchiness" name="urethraStretchiness" placeholder="5" />
  693. </li>
  694. <li>
  695. <label for="basePissDigestFactor">Piss digestion factor</label>
  696. <input type="number" step="any" id="basePissDigestFactor" name="basePissDigestFactor" placeholder="1" />
  697. </li>
  698. <li>
  699. <label class="has-tooltip" for="pissScaleWithSize" title="If checked, produces more piss from the same prey as you get larger">Scale piss with size</label>
  700. <input type="checkbox" id="pissScaleWithSize" name="pissScaleWithSize" />
  701. </li>
  702. </div>
  703. </ul>
  704. </div>
  705. </div>
  706. </div>
  707. <div class="custom-category">
  708. <input class="custom-header-checkbox" type="checkbox" id="scatEnabled" name="scatEnabled" />
  709. <label class="custom-header" for="scatEnabled">Scat</label>
  710. <div class="reveal-if-active">
  711. <li>
  712. <div>note - setting tailhole diameter requires anal vore to be enabled</div>
  713. </li>
  714. <li>
  715. <label for="baseScatDigestFactor">Scat digestion factor</label>
  716. <input type="number" step="any" id="baseScatDigestFactor" name="baseScatDigestFactor" placeholder="1" />
  717. </li>
  718. <li>
  719. <label class="has-tooltip" for="scatScale" title="1 = 1% fill per second">Passive scat production</label>
  720. <input type="number" step="any" id="scatScale" name="scatScale" placeholder="0" />
  721. </li>
  722. <li>
  723. <label for="scatStorageScale">Scat storage multiplier</label>
  724. <input type="number" step="any" id="scatStorageScale" name="scatStorageScale" placeholder="1" />
  725. </li>
  726. <li>
  727. <label class="has-tooltip" for="scatScaleWithSize" title="If checked, produces more scat from the same prey as you get larger">Scale scat with size</label>
  728. <input type="checkbox" id="scatScaleWithSize" name="scatScaleWithSize" />
  729. </li>
  730. </div>
  731. </div>
  732. <div class="custom-category">
  733. <input class="custom-header-checkbox" type="checkbox" id="gooEnabled" name="gooEnabled" />
  734. <label class="custom-header" for="gooEnabled">Goo (not in yet)</label>
  735. </div>
  736. </ul>
  737. </form>
  738. </div>
  739. </div>
  740. </body>
  741. </html>