big steppy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

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