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.
 
 
 

87 lines
3.4 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-desc.js"></script>
  9. <script src="recursive-macro.js"></script>
  10. <script src="game.js"></script>
  11. </head>
  12. <body>
  13. <div class=game-area>
  14. <div class=stat-container 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=arousal></div>
  20. </div>
  21. <div class=stat-header id=stats-stomped>
  22. <p>Stomped</p>
  23. </div>
  24. <div class=stat-header id=stats-digested>
  25. <p>Digested</p>
  26. </div>
  27. <div class=stat-header id=stats-stomach>
  28. <p>Stomach</p>
  29. </div>
  30. <div class=stat-header id=stats-bowels>
  31. <p>Bowels</p>
  32. </div>
  33. <div class=stat-header id=stats-breasts>
  34. <p>Breasts</p>
  35. </div>
  36. <div class=stat-header id=stats-womb>
  37. <p>Womb</p>
  38. </div>
  39. <div class=stat-header id=stats-balls>
  40. <p>Balls</p>
  41. </div>
  42. <div class=stat-header id=stats-cock>
  43. <p>Cock</p>
  44. </div>
  45. <div class=stat-header id=stats-smothered>
  46. <p>Smothered</p>
  47. </div>
  48. <div class=stat-header id=stats-splooged>
  49. <p>Splooged</p>
  50. </div>
  51. </div>
  52. <div id=log-area>
  53. <div id=log>
  54. <div>Welcome to Stroll 0.2.4</div>
  55. <div><b>This game features 18+ content</b></div>
  56. <div><a href="https://chemicalcrux.org/stroll">Changelog</a></div>
  57. <div>It's a nice day for a walk</div>
  58. <div>&nbsp;</div>
  59. </div>
  60. </div>
  61. <div class=button-container id=action-panel>
  62. <button class=action-button id=button-look>Look</button>
  63. <button class=action-button id=button-grow>Get Bigger</button>
  64. <button class=action-button id=button-feed>Eat</button>
  65. <button class=action-button id=button-stomp>Stomp</button>
  66. <button class=action-button id=button-anal_vore>Sit</button>
  67. <button class=action-button id=button-breast_crush>Breast Crush</button>
  68. <button class=action-button id=button-unbirth>Unbirth</button>
  69. <button class=action-button id=button-cockslap>Cockslap</button>
  70. <button class=action-button id=button-cock_vore>Cock Vore</button>
  71. <button class=action-button id=button-ball_smother>Ball Smother</button>
  72. <p/>
  73. <button class=action-button id=button-stroll>Status: Standing</button>
  74. <button class=action-button id=button-location>Location: Suburb</button>
  75. <button class=action-button class=action-button id=button-units>Units: Metric</button>
  76. <button class=action-button id=button-verbose>Descriptions: Verbose</button>
  77. </div>
  78. <div class=button-container id=option-panel>
  79. <button class=option-button id=button-male-genitals>Male genitals</button>
  80. <button class=option-button id=button-female-genitals>Female genitals</button>
  81. <form class=option-form>Species:<br><input type="text" name="species" id="option-species"></input></form>
  82. <button class=option-button id=button-start>Start game</button>
  83. </div>
  84. </div>
  85. </body>
  86. </html>