big steppy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

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