big steppy
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.
 
 
 

455 wiersze
22 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. </head>
  12. <body class="light">
  13. <div class="game-area">
  14. <div class="sidebar" id="stat-container">
  15. <div class="stat-header-self" id="stats-self">
  16. <p>Stats</p>
  17. <div class="stat-line" id="height"></div>
  18. <div class="stat-line" id="mass"></div>
  19. <div class="stat-line" id="growth-points"></div>
  20. <div class="stat-line" id="arousal"></div>
  21. <div class="stat-line" id="edge"></div>
  22. <div class="stat-line-hidden" id="cum"></div>
  23. <div class="stat-line-hidden" id="cumPercent"></div>
  24. <div class="stat-line-hidden" id="femcum"></div>
  25. <div class="stat-line-hidden" id="femcumPercent"></div>
  26. <div class="stat-line-hidden" id="milk"></div>
  27. <div class="stat-line-hidden" id="milkPercent"></div>
  28. </div>
  29. <div class="stat-header-self">Growth</div>
  30. <table id="grow-panel">
  31. <tr>
  32. <th><input class="growth-option" type="radio" name="part" checked="true" id="part-body">
  33. <label class="growth-label" for="part-body" >Body</label></th>
  34. <th><button class="growth-amount" id="button-amount-1">1x</button></th>
  35. </tr>
  36. <tr>
  37. <th><input class="growth-option" type="radio" name="part" id="part-ass">
  38. <label class="growth-label" for="part-ass">Ass</label></th>
  39. <th><button class="growth-amount" id="button-amount-5">5x</button></th>
  40. </tr>
  41. <tr>
  42. <th><input class="growth-option" type="radio" name="part" id="part-dick">
  43. <label class="growth-label" for="part-dick">Cock</label></th>
  44. <th><button class="growth-amount" id="button-amount-10">10x</button></th>
  45. </tr>
  46. <tr>
  47. <th><input class="growth-option" type="radio" name="part" id="part-balls">
  48. <label class="growth-label" for="part-balls">Balls</label></th>
  49. <th><button class="growth-amount" id="button-amount-20">20x</button></th>
  50. </tr>
  51. <tr>
  52. <th><input class="growth-option" type="radio" name="part" id="part-breasts">
  53. <label class="growth-label" for="part-breasts">Breasts</label></th>
  54. <th><button class="growth-amount" id="button-amount-50">50x</button></th>
  55. </tr>
  56. <tr>
  57. <th><input class="growth-option" type="radio" name="part" id="part-vagina">
  58. <label class="growth-label" for="part-vagina">Slit</label></th>
  59. <th><button class="growth-amount" id="button-amount-100">100x</button></th>
  60. </tr>
  61. </table>
  62. <div class="stat-container">
  63. <button class="stat-button" id="button-look">Look Around</button>
  64. <button class="stat-button" id="button-arousal">Arousal On</button>
  65. <button class="stat-button" id="button-stroll">Status: Standing</button>
  66. <button class="stat-button" id="button-numbers">Numbers: Full</button>
  67. <button class="stat-button" id="button-units">Units: Metric</button>
  68. <button class="stat-button" id="button-verbose">Verbose Text</button>
  69. <button class="stat-button" id="button-grow-lots">SUPER BIG</button>
  70. <button class="stat-button" id="button-dark-mode-game">Toggle Dark Mode</button>
  71. </div>
  72. </div>
  73. <div id="log-area">
  74. <div id="log">
  75. <div>Welcome to Stroll 0.5.10</div>
  76. <div><b>This game features 18+ content</b></div>
  77. <div><a href="https://chemicalcrux.org/stroll">Changelog</a></div>
  78. <div><a href="https://t.me/joinchat/BSXHzUZmSqc-CXB1khkuYw">Telegram discussion group</a></div>
  79. <div>It's a nice day for a walk</div>
  80. <div>&nbsp;</div>
  81. </div>
  82. </div>
  83. <div class="sidebar" id="action-panel">
  84. <div class="action-part-container">
  85. <button class="active action-part-button" id="action-part-body">Body</button>
  86. <button class="action-part-button" id="action-part-dick">Cock</button>
  87. <button class="action-part-button" id="action-part-vagina">Slit</button>
  88. <button class="action-part-button" id="action-part-breasts">Breasts</button>
  89. <button class="action-part-button" id="action-part-tails">Tails</button>
  90. <button class="action-part-button" id="action-part-souls">Souls</button>
  91. <button class="action-part-button" id="action-part-misc">Misc</button>
  92. </div>
  93. <div class="action-tab" id="actions-body">
  94. <button class="action-button" id="button-action-feed">Eat</button>
  95. <button class="action-button" id="button-action-chew">Chew</button>
  96. <button class="action-button" id="button-action-stomp">Stomp</button>
  97. <button class="action-button" id="button-action-sit">Sit</button>
  98. <button class="action-button" id="button-action-grind">Grind</button>
  99. </div>
  100. <div class="action-tab" id="actions-tails">
  101. <button class="action-button" id="button-action-tail_slap">Tail Slap</button>
  102. <button class="action-button" id="button-action-tail_vore">Tail Vore</button>
  103. </div>
  104. <div class="action-tab" id="actions-breasts">
  105. <button class="action-button" id="button-action-cleavage_stuff">Stuff Cleavage</button>
  106. <button class="action-button" id="button-action-cleavage_crush">Crush Cleavage</button>
  107. <button class="action-button" id="button-action-cleavage_drop">Drop Cleavage</button>
  108. <button class="action-button" id="button-action-cleavage_absorb">Absorb Cleavage</button>
  109. <button class="action-button" id="button-action-breast_crush">Breast Crush</button>
  110. <button class="action-button" id="button-action-breast_vore">Breast Vore</button>
  111. <button class="action-button" id="button-action-breast_milk">Milk Breasts</button>
  112. </div>
  113. <div class="action-tab" id="actions-vagina">
  114. <button class="action-button" id="button-action-unbirth">Unbirth</button>
  115. </div>
  116. <div class="action-tab" id="actions-dick">
  117. <button class="action-button" id="button-action-sheath_stuff">Stuff Sheath</button>
  118. <button class="action-button" id="button-action-sheath_squeeze">Squeeze Sheath</button>
  119. <button class="action-button" id="button-action-sheath_absorb">Absorb Sheath</button>
  120. <button class="action-button" id="button-action-cockslap">Cockslap</button>
  121. <button class="action-button" id="button-action-cock_vore">Cock Vore</button>
  122. <button class="action-button" id="button-action-ball_smother">Ball Smother</button>
  123. </div>
  124. <div class="action-tab" id="actions-souls">
  125. <button class="action-button" id="button-action-soul_vore">Soul Vore</button>
  126. <button class="action-button" id="button-action-soul_absorb_paw">Paws</button>
  127. </div>
  128. <div class="action-tab" id="actions-misc">
  129. <button class="action-button" id="button-action-pouch_stuff">Stuff Pouch</button>
  130. <button class="action-button" id="button-action-pouch_rub">Rub Pouch</button>
  131. <button class="action-button" id="button-action-pouch_eat">Eat From Pouch</button>
  132. <button class="action-button" id="button-action-pouch_absorb">Absorb Pouch</button>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="character-build">
  137. <p>Welcome to Stroll 0.5.10</p>
  138. <p><b>This game features 18+ content</b></p>
  139. <p><a href="https://chemicalcrux.org/stroll">Changelog</a></p>
  140. <p><a href="https://t.me/joinchat/BSXHzUZmSqc-CXB1khkuYw">Telegram discussion group</a></p>
  141. <div id="custom-species">
  142. <button class="stat-button" id="button-dark-mode-options">Toggle Dark Mode</button>
  143. <p>Build your Character (leave blank for defaults)</p>
  144. <p>Lengths in meters, areas in square meters, masses in kilograms</p>
  145. <p>You can load a preset character here...</p>
  146. <div>
  147. <select id="character-presets">
  148. </select>
  149. <button class="option-button" id="button-load-preset">Load Preset Character</button>
  150. </div>
  151. <p>Or export/import your character to text here. Copy and paste to share!</p>
  152. <button class="option-button" id="button-export-clear">Clear Space</button>
  153. <button class="option-button" id="button-export-preset">Export Your Character</button>
  154. <button class="option-button" id="button-import-preset">Import Your Character</button>
  155. <p><input type="text" id="export-area"></p>
  156. <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>
  157. <div>
  158. <button class="option-button" id="button-load-custom">Load Custom Character</button>
  159. <button class="option-button" id="button-save-custom">Save Custom Character</button>
  160. </div>
  161. <p>Reset the sheet here (custom character data isn't affected)</p>
  162. <div>
  163. <button class="option-button" id="button-reset-custom">Reset</button>
  164. </div>
  165. <br>
  166. <div>
  167. <button class="option-button" id="button-start">Start Game</button>
  168. </div>
  169. <form id="custom-species-form" name="custom-species-form">
  170. <ul class="flex-outer">
  171. <div class="custom-category">
  172. <div class="custom-header-static">Basics</div>
  173. <div>
  174. <li>
  175. <label for="name">Name</label>
  176. <input type="text" id="name" name="name"/>
  177. </li>
  178. <li>
  179. <label for="species">Species</label>
  180. <input type="text" id="species" name="species" placeholder="crux"/>
  181. </li>
  182. <li>
  183. <label for="scale" class="has-tooltip" title="Multiply your base height by this much">Scale (?)</label>
  184. <input type="text" id="scale" name="scale" placeholder="1"/>
  185. </li>
  186. <li>
  187. <label for="baseHeight">Height</label>
  188. <input type="number" id="baseHeight" name="baseHeight" placeholder="2.26"/>
  189. </li>
  190. <li>
  191. <label for="baseMass">Weight</label>
  192. <input type="number" id="baseMass" name="baseMass" placeholder="135">
  193. </li>
  194. <li>
  195. <label for="basePawArea">Paw area</label>
  196. <input type="number" id="basePawArea" name="basePawArea" placeholder="0.1">
  197. </li>
  198. <li>
  199. <label for="baseHandArea">Hand area</label>
  200. <input type="number" id="baseHandArea" name="baseHandArea" placeholder="0.1">
  201. </li>
  202. <li>
  203. <label for="baseAnalVoreArea">Tailhole area</label>
  204. <input type="number" id="baseAnalVoreArea" name="baseAnalVoreArea" placeholder="0.1">
  205. </li>
  206. <li>
  207. <label for="baseAssArea">Ass area</label>
  208. <input type="number" id="baseAssArea" name="baseAssArea" placeholder="0.4">
  209. </li>
  210. </div>
  211. </div>
  212. <div class="custom-category">
  213. <div class="custom-header-static">Brutality</div>
  214. <div>
  215. <ul>
  216. <li>
  217. <input type="radio" name="brutality" id="brutality-0">
  218. <label for="brutality-0">Non-fatal</label>
  219. </li>
  220. <li>
  221. <input type="radio" name="brutality" checked="true" id="brutality-1">
  222. <label for="brutality-1">Fatal, no gore</label>
  223. </li>
  224. <li>
  225. <input type="radio" name="brutality" id="brutality-2">
  226. <label for="brutality-2">Gory</label>
  227. </li>
  228. <li>
  229. <input type="radio" name="brutality" id="brutality-3" disabled="disableD">
  230. <label for="brutality-3">Sadistic (not implemented)</label>
  231. </li>
  232. </ul>
  233. </div>
  234. </div>
  235. <div class="custom-category">
  236. <div class="custom-header-static">Victims</div>
  237. <div>
  238. <li>
  239. <label for="military">Military</label>
  240. <input type="checkbox" name="victimsMilitary" id="victimsMilitary"/>
  241. </li>
  242. <li>
  243. <label for="macros">Smaller macros</label>
  244. <input type="checkbox" name="victimsMacros" id="victimsMacros"/>
  245. </li>
  246. <li>
  247. <label for="micros">Micros</label>
  248. <input type="checkbox" name="victimsMicros" id="victimsMicros"/>
  249. </li>
  250. </div>
  251. </div>
  252. <div class="custom-category">
  253. <div class="custom-header-static">Misc</div>
  254. <div>
  255. <li>
  256. <label for="humanMode">Human victims</label>
  257. <input type="checkbox" name="humanMode" id="humanMode"/>
  258. </li>
  259. <li>
  260. <label class="has-tooltip" for="sameSizeVore" title="Can you eat people your own size?">Same-size predator</label>
  261. <input type="checkbox" checked="true" name="sameSizeVore"/>
  262. </li>
  263. <li>
  264. <label class="has-tooltip" for="sameSizeStomp" title="Can you stomp and sit on people your own size?">Same-size stomper</label>
  265. <input type="checkbox" checked="true" name="sameSizeStomp"/>
  266. </li>
  267. <li>
  268. <label for="soulVoreEnabled">Soul vore</label>
  269. <input type="checkbox" checked="true" name="soulVoreEnabled"/>
  270. </li>
  271. <li>
  272. <label for="footType">Foot type</label>
  273. <select name="footType">
  274. <option value="paw">Paws</option>
  275. <option value="hoof">Hooves</option>
  276. <option value="foot">Human</option>
  277. <option value="avian">Avian</option>
  278. </select>
  279. </li>
  280. </div>
  281. </div>
  282. <div class="custom-category">
  283. <input class="custom-header-checkbox" type="checkbox" checked="true" id="analVore" name="analVore"/>
  284. <label class="custom-header" for="analVore">Anal Vore</label>
  285. <div class="reveal-if-active">
  286. <li>
  287. <label class="has-tooltip" for="analVoreToStomach" title="Otherwise, bowels absorb/digest">Anal vore goes to stomach</label>
  288. <input type="checkbox" name="analVoreToStomach" id="analVoreToStomach"/>
  289. </li>
  290. </div>
  291. </div>
  292. <div class="custom-category">
  293. <input class="custom-header-checkbox" type="checkbox" checked="true" id="arousalEnabled" name="arousalEnabled"/>
  294. <label class="custom-header" for="arousalEnabled">Arousal</label>
  295. <div class="reveal-if-active">
  296. <li>
  297. <label class="has-tooltip" for="arousalFactor" title="Multiplies arousal gain by this much">Arousal multiplier</label>
  298. <input type="number" name="arousalFactor" placeholder="1"/>
  299. </li>
  300. <li>
  301. <label class="has-tooltip" for="edgeFactor" title="Multiplies edge gain by this much">Edge multiplier</label>
  302. <input type="number" name="arousalFactor" placeholder="1"/>
  303. </li>
  304. </div>
  305. </div>
  306. <div class="custom-category">
  307. <input class="custom-header-checkbox" type="checkbox" checked="true" id="hasTail" name="hasTail"/>
  308. <label class="custom-header" for="hasTail">Tails</label>
  309. <div class="reveal-if-active">
  310. <li>
  311. <label for="tailCount">Tail count</label>
  312. <input type="number" name="tailCount" placeholder="1"/>
  313. </li>
  314. <li>
  315. <label for="tailType">Tail type</label>
  316. <input type="text" name="tailType" placeholder="slinky"/>
  317. </li>
  318. <li>
  319. <label for="baseTailLength">Tail length</label>
  320. <input type="number" name="baseTailLength" placeholder="1"/>
  321. </li>
  322. <li>
  323. <label for="baseTailDiameter">Tail diameter</label>
  324. <input type="number" name="baseTailDiameter" placeholder="0.3"/>
  325. </li>
  326. <li>
  327. <label for="tailMaw">Tail maw(s)</label>
  328. <input type="checkbox" checked="true" name="tailMaw"/>
  329. </li>
  330. </div>
  331. </div>
  332. <div class="custom-category">
  333. <input class="custom-header-checkbox" type="checkbox" checked="true" id="hasPouch" name="hasPouch"/>
  334. <label class="custom-header" for="hasPouch">Pouch</label>
  335. <div class="reveal-if-active">
  336. <li>
  337. It's on :D
  338. </li>
  339. </div>
  340. </div>
  341. <div class="custom-category">
  342. <input class="custom-header-checkbox" type="checkbox" checked="true" id="maleParts" name="maleParts"/>
  343. <label class="custom-header" for="maleParts">Male genitals</label>
  344. <div class="reveal-if-active">
  345. <li>
  346. <label for="hasSheath">Sheath</label>
  347. <input type="checkbox" id="hasSheath" name="hasSheath" checked="true" />
  348. </li>
  349. <li>
  350. <label for="dickType">Cock type</label>
  351. <input type="text" id="dickType" name="dickType" placeholder="canine"/>
  352. </li>
  353. <li>
  354. <label for="baseDickLength">Cock length</label>
  355. <input type="number" id="baseDickLength" name="baseDickLength" placeholder="0.3"/>
  356. </li>
  357. <li>
  358. <label for="baseDickDiameter">Cock diameter</label>
  359. <input type="number" id="baseDickDiameter" name="baseDickDiameter" placeholder="0.08"/>
  360. </li>
  361. <li>
  362. <label for="baseBallDiameter">Ball diameter</label>
  363. <input type="number" id="baseBallDiameter" name="baseBallDiameter" placeholder="0.05"/>
  364. </li>
  365. <li>
  366. <label for="baseCumRatio" class="has-tooltip" title="scales how much cum is released with each shot">Orgasm cum ratio</label>
  367. <input type="number" id="baseCumRatio" name="baseCumRatio" placeholder="1"/>
  368. </li>
  369. <li>
  370. <label for="baseMass">Cum production factor</label>
  371. <input type="number" id="cumScale" name="cumScale" placeholder="1"/>
  372. </li>
  373. </div>
  374. </div>
  375. <div class="custom-category">
  376. <input class="custom-header-checkbox" type="checkbox" checked="true" id="hasBreasts" name="hasBreasts"/>
  377. <label class="custom-header" for="hasBreasts">Breasts</label>
  378. <div class="reveal-if-active">
  379. <li>
  380. <label for="baseBreastDiameter">Breast diameter</label>
  381. <input type="number" id="baseBreastDiameter" name="baseBreastDiameter" placeholder="0.1"/>
  382. </li>
  383. <li>
  384. <div class="custom-category-sub">
  385. <ul class="flex-outer-sub">
  386. <input class="custom-header-checkbox" type="checkbox" checked="true" id="lactationEnabled" name="lactationEnabled"/>
  387. <label class="custom-header" for="lactationEnabled">Lactation</label>
  388. <div class="reveal-if-active">
  389. <li>
  390. <label for="lactationFactor" class="has-tooltip" title="scales how much milk is released with each squeeze">Lactation ratio</label>
  391. <input type="number" id="lactationFactor" name="lactationFactor" placeholder="0.25"/>
  392. </li>
  393. <li>
  394. <label for="lactationScale">Milk production factor</label>
  395. <input type="number" id="lactationScale" name="lactationScale" placeholder="1"/>
  396. </li>
  397. </div>
  398. </ul>
  399. </div>
  400. </li>
  401. <li>
  402. <label for="breastVore">Breast vore</label>
  403. <input type="checkbox" checked="true" id="breastVore" name="breastVore"/>
  404. </li>
  405. </div>
  406. </div>
  407. <div class="custom-category">
  408. <input class="custom-header-checkbox" type="checkbox" checked="true" id="femaleParts" name="femaleParts"/>
  409. <label class="custom-header" for="femaleParts">Female genitals</label>
  410. <div class="reveal-if-active">
  411. <li>
  412. <label for="baseVaginaLength">Slit length</label>
  413. <input type="number" id="baseVaginaLength" name="baseVaginaLength" placeholder="0.1"/>
  414. </li>
  415. <li>
  416. <label for="baseVaginaWidth">Slit width</label>
  417. <input type="number" id="baseVaginaWidth" name="baseVaginaWidth" placeholder="0.05"/>
  418. </li>
  419. <li>
  420. <label for="baseFemcumRatio" class="has-tooltip" title="scales how much femcum is released with each shot">Orgasm femcum ratio</label>
  421. <input type="number" id="baseFemcumRatio" name="baseFemcumRatio" placeholder="1"/>
  422. </li>
  423. <li>
  424. <label for="femcumScale">Femcum production factor</label>
  425. <input type="number" id="femcumScale" name="femcumScale" placeholder="1"/>
  426. </li>
  427. </div>
  428. </div>
  429. </ul>
  430. </form>
  431. </div>
  432. </div>
  433. <table id="victim-table">
  434. </table>
  435. </body>
  436. </html>