| @@ -3121,6 +3121,7 @@ function enable_panel(name) { | |||||
| function enable_stat(name) { | function enable_stat(name) { | ||||
| document.getElementById(name).style.display = 'block'; | document.getElementById(name).style.display = 'block'; | ||||
| document.querySelector("#" + name + "Meter .meterLabel").style.display = 'block'; | |||||
| } | } | ||||
| function enable_growth_part(name) { | function enable_growth_part(name) { | ||||
| @@ -380,7 +380,7 @@ function defaultSheathAbsorb(container, macro, verbose) { | |||||
| if (container.count > 0) | if (container.count > 0) | ||||
| return "You grip your sheath and give it a firm <i>squeeze</i>, abruptly absorbing " + container.describe(false) + " into your musky body."; | return "You grip your sheath and give it a firm <i>squeeze</i>, abruptly absorbing " + container.describe(false) + " into your musky body."; | ||||
| else | else | ||||
| return defaultSheathSqueeze(container, macro, verbose); | |||||
| return defaultSheathToy(container, macro, verbose); | |||||
| } | } | ||||
| function defaultCockVore(container, macro, verbose) { | function defaultCockVore(container, macro, verbose) { | ||||
| @@ -441,7 +441,7 @@ function defaultFemaleOrgasm(container, macro, verbose) { | |||||
| if (container.count == 0) | if (container.count == 0) | ||||
| return "Your moist slit sprays $TIMES times, gushing out $VOLUME of slick femcum."; | return "Your moist slit sprays $TIMES times, gushing out $VOLUME of slick femcum."; | ||||
| else if (isSadistic(macro)) | else if (isSadistic(macro)) | ||||
| return "Your quivering slit sprays $VOLUME of your intoxicating femcum, dissolving " + container.describe(verbose) + "in an unstoppable torrent of deadly lust."; | |||||
| return "Your quivering slit sprays $VOLUME of your intoxicating femcum, dissolving " + container.describe(verbose) + " in an unstoppable torrent of deadly lust."; | |||||
| else if (isFatal(macro)) | else if (isFatal(macro)) | ||||
| return "Your moist slit sprays $VOLUME of slick femcum, obliterating " + container.describe(verbose) + " in $TIMES consecutive bursts of lust."; | return "Your moist slit sprays $VOLUME of slick femcum, obliterating " + container.describe(verbose) + " in $TIMES consecutive bursts of lust."; | ||||
| else | else | ||||
| @@ -750,12 +750,12 @@ | |||||
| <label class="custom-header" for="gasEnabled">Gas</label> | <label class="custom-header" for="gasEnabled">Gas</label> | ||||
| <div class="reveal-if-active"> | <div class="reveal-if-active"> | ||||
| <li> | <li> | ||||
| <input autocomplete="off" type="checkbox" checked="true" name="belchEnabled" id="belchEnabled" /> | |||||
| <label for="belchEnabled">Belching</label> | <label for="belchEnabled">Belching</label> | ||||
| <input autocomplete="off" type="checkbox" checked="true" name="belchEnabled" /> | |||||
| </li> | </li> | ||||
| <li> | <li> | ||||
| <input autocomplete="off" type="checkbox" name="fartEnabled" id="fartEnabled" /> | |||||
| <label for="fartEnabled">Farting</label> | <label for="fartEnabled">Farting</label> | ||||
| <input autocomplete="off" type="checkbox" name="fartEnabled" /> | |||||
| </li> | </li> | ||||
| <li> | <li> | ||||
| <label for="gasScale">Gas production factor</label> | <label for="gasScale">Gas production factor</label> | ||||
| @@ -501,6 +501,7 @@ ul { | |||||
| } | } | ||||
| .meter .meterLabel { | .meter .meterLabel { | ||||
| display: none; | |||||
| z-index: 1; | z-index: 1; | ||||
| writing-mode: vertical-lr; | writing-mode: vertical-lr; | ||||
| text-orientation: upright; | text-orientation: upright; | ||||
| @@ -510,8 +511,9 @@ ul { | |||||
| font-size: 12px; | font-size: 12px; | ||||
| text-align: center; | text-align: center; | ||||
| position: absolute; | position: absolute; | ||||
| top: 0; | |||||
| left: 0; | |||||
| left: 50%; | |||||
| top: 50%; | |||||
| transform: translate(-50%, -50%); | |||||
| } | } | ||||
| .meter .fill { | .meter .fill { | ||||
| @@ -295,7 +295,7 @@ function metricVolume(m3, singular=false) { | |||||
| let volume = round(m3, 0); | let volume = round(m3, 0); | ||||
| return volume + (singular || volume == 1 ? " cubic meter" : " cubic meters"); | return volume + (singular || volume == 1 ? " cubic meter" : " cubic meters"); | ||||
| } else if (m3 < 1e12){ | } else if (m3 < 1e12){ | ||||
| let volume = round(m3/1e9, 6); | |||||
| let volume = round(m3/1e9, 3); | |||||
| return volume + (singular || volume == 1 ? " cubic kilometer" : " cubic kilometers"); | return volume + (singular || volume == 1 ? " cubic kilometer" : " cubic kilometers"); | ||||
| } else { | } else { | ||||
| let volume = round(m3/1e9, 0); | let volume = round(m3/1e9, 0); | ||||