big steppy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

391 lines
19 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-location">Location: Suburb</button>
  67. <button class="stat-button" id="button-numbers">Numbers: Full</button>
  68. <button class="stat-button" id="button-units">Units: Metric</button>
  69. <button class="stat-button" id="button-verbose">Verbose Text</button>
  70. <button class="stat-button" id="button-grow-lots">SUPER BIG</button>
  71. <button class="stat-button" id="button-dark-mode-game">Toggle Dark Mode</button>
  72. </div>
  73. </div>
  74. <div id="log-area">
  75. <div id="log">
  76. <div>Welcome to Stroll 0.5.8</div>
  77. <div><b>This game features 18+ content</b></div>
  78. <div><a href="https://chemicalcrux.org/stroll">Changelog</a></div>
  79. <div><a href="https://t.me/joinchat/BSXHzUZmSqc-CXB1khkuYw">Telegram discussion group</a></div>
  80. <div>It's a nice day for a walk</div>
  81. <div>&nbsp;</div>
  82. </div>
  83. </div>
  84. <div class="sidebar" id="action-panel">
  85. <div class="action-part-container">
  86. <button class="active action-part-button" id="action-part-body">Body</button>
  87. <button class="action-part-button" id="action-part-dick">Cock</button>
  88. <button class="action-part-button" id="action-part-vagina">Slit</button>
  89. <button class="action-part-button" id="action-part-breasts">Breasts</button>
  90. <button class="action-part-button" id="action-part-tails">Tails</button>
  91. <button class="action-part-button" id="action-part-souls">Souls</button>
  92. <button class="action-part-button" id="action-part-misc">Misc</button>
  93. </div>
  94. <div class="action-tab" id="actions-body">
  95. <button class="action-button" id="button-action-feed">Eat</button>
  96. <button class="action-button" id="button-action-chew">Chew</button>
  97. <button class="action-button" id="button-action-stomp">Stomp</button>
  98. <button class="action-button" id="button-action-sit">Sit</button>
  99. <button class="action-button" id="button-action-grind">Grind</button>
  100. </div>
  101. <div class="action-tab" id="actions-tails">
  102. <button class="action-button" id="button-action-tail_slap">Tail Slap</button>
  103. <button class="action-button" id="button-action-tail_vore">Tail Vore</button>
  104. </div>
  105. <div class="action-tab" id="actions-breasts">
  106. <button class="action-button" id="button-action-cleavage_stuff">Stuff Cleavage</button>
  107. <button class="action-button" id="button-action-cleavage_crush">Crush Cleavage</button>
  108. <button class="action-button" id="button-action-cleavage_drop">Drop Cleavage</button>
  109. <button class="action-button" id="button-action-cleavage_absorb">Absorb Cleavage</button>
  110. <button class="action-button" id="button-action-breast_crush">Breast Crush</button>
  111. <button class="action-button" id="button-action-breast_vore">Breast Vore</button>
  112. <button class="action-button" id="button-action-breast_milk">Milk Breasts</button>
  113. </div>
  114. <div class="action-tab" id="actions-vagina">
  115. <button class="action-button" id="button-action-unbirth">Unbirth</button>
  116. </div>
  117. <div class="action-tab" id="actions-dick">
  118. <button class="action-button" id="button-action-sheath_stuff">Stuff Sheath</button>
  119. <button class="action-button" id="button-action-sheath_squeeze">Squeeze Sheath</button>
  120. <button class="action-button" id="button-action-sheath_absorb">Absorb Sheath</button>
  121. <button class="action-button" id="button-action-cockslap">Cockslap</button>
  122. <button class="action-button" id="button-action-cock_vore">Cock Vore</button>
  123. <button class="action-button" id="button-action-ball_smother">Ball Smother</button>
  124. </div>
  125. <div class="action-tab" id="actions-souls">
  126. <button class="action-button" id="button-action-soul_vore">Soul Vore</button>
  127. <button class="action-button" id="button-action-soul_absorb_paw">Paws</button>
  128. </div>
  129. <div class="action-tab" id="actions-misc">
  130. <button class="action-button" id="button-action-pouch_stuff">Stuff Pouch</button>
  131. <button class="action-button" id="button-action-pouch_rub">Rub Pouch</button>
  132. <button class="action-button" id="button-action-pouch_eat">Eat From Pouch</button>
  133. <button class="action-button" id="button-action-pouch_absorb">Absorb Pouch</button>
  134. </div>
  135. </div>
  136. </div>
  137. <div class="character-build">
  138. <p>Welcome to Stroll 0.5.8</p>
  139. <p><b>This game features 18+ content</b></p>
  140. <p><a href="https://chemicalcrux.org/stroll">Changelog</a></p>
  141. <p><a href="https://t.me/joinchat/BSXHzUZmSqc-CXB1khkuYw">Telegram discussion group</a></p>
  142. <div id="custom-species">
  143. <button class="stat-button" id="button-dark-mode-options">Toggle Dark Mode</button>
  144. <p>Build your Character (leave blank for defaults)</p>
  145. <form id="custom-species-form" name="custom-species-form">
  146. <ul class="flex-outer">
  147. <div class="custom-category">
  148. <div class="custom-header">Basics</div>
  149. <div>
  150. <li>
  151. <label for="name">Name</label>
  152. <input type="text" name="name"/>
  153. </li>
  154. <li>
  155. <label for="species">Species</label>
  156. <input type="text" name="species" placeholder="crux"/>
  157. </li>
  158. <li>
  159. <label for="scale" class="has-tooltip" title="Multiply your base height by this much">Scale (?)</label>
  160. <input type="text" name="scale" placeholder="1"/>
  161. </li>
  162. <li>
  163. <label for="baseHeight">Height</label>
  164. <input type="number" name="baseHeight" placeholder="2.26"/>
  165. </li>
  166. <li>
  167. <label for="baseMass">Weight</label>
  168. <input type="number" name="baseMass" placeholder="135">
  169. </li>
  170. <li>
  171. <label for="basePawArea">Paw area</label>
  172. <input type="number" name="basePawArea" placeholder="0.1">
  173. </li>
  174. <li>
  175. <label for="baseHandArea">Hand area</label>
  176. <input type="number" name="baseHandArea" placeholder="0.1">
  177. </li>
  178. <li>
  179. <label for="baseAnalVoreArea">Tailhole area</label>
  180. <input type="number" name="baseAnalVoreArea" placeholder="0.1">
  181. </li>
  182. <li>
  183. <label for="analVore">Anal vore</label>
  184. <input type="checkbox" checked="true" name="analVore"/>
  185. </li>
  186. <li>
  187. <label for="baseAssArea">Ass area</label>
  188. <input type="number" name="baseAssArea" placeholder="0.4">
  189. </li>
  190. </div>
  191. </div>
  192. <div class="custom-category">
  193. <div class="custom-header">Brutality</div>
  194. <div>
  195. <ul>
  196. <li>
  197. <input type="radio" name="brutality" id="brutality-0">
  198. <label for="brutality-0">Non-fatal</label>
  199. </li>
  200. <li>
  201. <input type="radio" name="brutality" checked="true" id="brutality-1">
  202. <label for="brutality-1">Fatal, no gore</label>
  203. </li>
  204. <li>
  205. <input type="radio" name="brutality" id="brutality-2">
  206. <label for="brutality-2">Gory</label>
  207. </li>
  208. <li>
  209. <input type="radio" name="brutality" id="brutality-3" disabled="disableD">
  210. <label for="brutality-3">Sadistic (not implemented)</label>
  211. </li>
  212. </ul>
  213. </div>
  214. </div>
  215. <div class="custom-category">
  216. <div class="custom-header">Misc</div>
  217. <div>
  218. <li>
  219. <label for="humanMode">Human victims</label>
  220. <input type="checkbox" name="humanMode" id="humanMode">
  221. </li>
  222. <li>
  223. <label class="has-tooltip" for="sameSizeVore" title="Can you eat people your own size?">Same-size predator</label>
  224. <input type="checkbox" checked="true" name="sameSizeVore"/>
  225. </li>
  226. <li>
  227. <label class="has-tooltip" for="sameSizeStomp" title="Can you stomp and sit on people your own size?">Same-size stomper</label>
  228. <input type="checkbox" checked="true" name="sameSizeStomp"/>
  229. </li>
  230. <li>
  231. <label for="soulVoreEnabled">Soul vore</label>
  232. <input type="checkbox" checked="true" name="soulVoreEnabled"/>
  233. </li>
  234. </div>
  235. </div>
  236. <div class="custom-category">
  237. <input class="custom-header-checkbox" type="checkbox" checked="true" id="arousalEnabled" name="arousalEnabled"/>
  238. <label class="custom-header" for="arousalEnabled">Arousal</label>
  239. <div class="reveal-if-active">
  240. <li>
  241. <label class="has-tooltip" for="arousalFactor" title="Multiplies arousal gain by this much">Arousal multiplier</label>
  242. <input type="number" name="arousalFactor" placeholder="1"/>
  243. </li>
  244. <li>
  245. <label class="has-tooltip" for="edgeFactor" title="Multiplies edge gain by this much">Edge multiplier</label>
  246. <input type="number" name="arousalFactor" placeholder="1"/>
  247. </li>
  248. </div>
  249. </div>
  250. <div class="custom-category">
  251. <input class="custom-header-checkbox" type="checkbox" checked="true" id="hasTail" name="hasTail"/>
  252. <label class="custom-header" for="hasTail">Tails</label>
  253. <div class="reveal-if-active">
  254. <li>
  255. <label for="tailCount">Tail count</label>
  256. <input type="number" name="tailCount" placeholder="1"/>
  257. </li>
  258. <li>
  259. <label for="tailType">Tail type</label>
  260. <input type="text" name="tailType" placeholder="slinky"/>
  261. </li>
  262. <li>
  263. <label for="baseTailLength">Tail length</label>
  264. <input type="number" name="baseTailLength" placeholder="1"/>
  265. </li>
  266. <li>
  267. <label for="baseTailDiameter">Tail diameter</label>
  268. <input type="number" name="baseTailDiameter" placeholder="0.3"/>
  269. </li>
  270. <li>
  271. <label for="tailMaw">Tail maw(s)</label>
  272. <input type="checkbox" checked="true" name="tailMaw"/>
  273. </li>
  274. </div>
  275. </div>
  276. <div class="custom-category">
  277. <input class="custom-header-checkbox" type="checkbox" checked="true" id="hasPouch" name="hasPouch"/>
  278. <label class="custom-header" for="hasPouch">Pouch</label>
  279. <div class="reveal-if-active">
  280. <li>
  281. It's on :D
  282. </li>
  283. </div>
  284. </div>
  285. <div class="custom-category">
  286. <input class="custom-header-checkbox" type="checkbox" checked="true" id="maleParts" name="maleParts"/>
  287. <label class="custom-header" for="maleParts">Male genitals</label>
  288. <div class="reveal-if-active">
  289. <li>
  290. <label for="hasSheath">Sheath</label>
  291. <input type="checkbox" name="hasSheath" checked="true" />
  292. </li>
  293. <li>
  294. <label for="dickType">Cock type</label>
  295. <input type="text" name="dickType" placeholder="canine"/>
  296. </li>
  297. <li>
  298. <label for="baseDickLength">Cock length</label>
  299. <input type="number" name="baseDickLength" placeholder="0.3"/>
  300. </li>
  301. <li>
  302. <label for="baseDickDiameter">Cock diameter</label>
  303. <input type="number" name="baseDickDiameter" placeholder="0.08"/>
  304. </li>
  305. <li>
  306. <label for="baseBallDiameter">Ball diameter</label>
  307. <input type="number" name="baseBallDiameter" placeholder="0.05"/>
  308. </li>
  309. <li>
  310. <label for="baseCumRatio" class="has-tooltip" title="scales how much cum is released with each shot">Orgasm cum ratio</label>
  311. <input type="number" name="baseCumRatio" placeholder="1"/>
  312. </li>
  313. <li>
  314. <label for="baseMass">Cum production factor</label>
  315. <input type="number" name="cumScale" placeholder="1"/>
  316. </li>
  317. </div>
  318. </div>
  319. <div class="custom-category">
  320. <input class="custom-header-checkbox" type="checkbox" checked="true" id="hasBreasts" name="hasBreasts"/>
  321. <label class="custom-header" for="hasBreasts">Breasts</label>
  322. <div class="reveal-if-active">
  323. <li>
  324. <label for="baseBreastDiameter">Breast diameter</label>
  325. <input type="number" name="baseBreastDiameter" placeholder="0.1"/>
  326. </li>
  327. <div>
  328. <ul class="flex-outer">
  329. Lactation:
  330. <input type="checkbox" checked="true" name="lactationEnabled"/>
  331. <div class="reveal-if-active">
  332. <li>
  333. <label for="lactationFactor" class="has-tooltip" title="scales how much milk is released with each squeeze">Lactation ratio</label>
  334. <input type="number" name="lactationFactor" placeholder="0.25"/>
  335. </li>
  336. <li>
  337. <label for="lactationScale">Milk production factor</label>
  338. <input type="number" name="lactationScale" placeholder="1"/>
  339. </li>
  340. </div>
  341. </ul>
  342. </div>
  343. <li>
  344. <label for="breastVore">Breast vore</label>
  345. <input type="checkbox" checked="true" name="breastVore"/>
  346. </li>
  347. </div>
  348. </div>
  349. <div class="custom-category">
  350. <input class="custom-header-checkbox" type="checkbox" checked="true" id="femaleParts" name="femaleParts"/>
  351. <label class="custom-header" for="femaleParts">Female genitals</label>
  352. <div class="reveal-if-active">
  353. <li>
  354. <label for="baseVaginaLength">Slit length</label>
  355. <input type="number" name="baseVaginaLength" placeholder="0.1"/>
  356. </li>
  357. <li>
  358. <label for="baseVaginaWidth">Slit width</label>
  359. <input type="number" name="baseVaginaWidth" placeholder="0.05"/>
  360. </li>
  361. <li>
  362. <label for="baseFemcumRatio" class="has-tooltip" title="scales how much femcum is released with each shot">Orgasm femcum ratio</label>
  363. <input type="number" name="baseFemcumRatio" placeholder="1"/>
  364. </li>
  365. <li>
  366. <label for="femcumScale">Femcum production factor</label>
  367. <input type="number" name="femcumScale" placeholder="1"/>
  368. </li>
  369. </div>
  370. </div>
  371. </ul>
  372. </form>
  373. <div>
  374. <button class="option-button" id="button-reset-custom">Reset Custom Character</button>
  375. <button class="option-button" id="button-load-custom">Load Custom Character</button>
  376. <button class="option-button" id="button-save-custom">Save Custom Character</button>
  377. <button class="option-button" id="button-start">Start Stroll Game</button>
  378. </div>
  379. </div>
  380. </div>
  381. <table id="victim-table">
  382. </table>
  383. </body>
  384. </html>