Selaa lähdekoodia

Fixed text alignment, sheath absorb bug, typos

tags/v0.7.0
Fen Dweller 7 vuotta sitten
vanhempi
commit
b218690f28
5 muutettua tiedostoa jossa 10 lisäystä ja 7 poistoa
  1. +1
    -0
      game.js
  2. +2
    -2
      recursive-desc.js
  3. +2
    -2
      stroll.html
  4. +4
    -2
      style.css
  5. +1
    -1
      units.js

+ 1
- 0
game.js Näytä tiedosto

@@ -3121,6 +3121,7 @@ function enable_panel(name) {

function enable_stat(name) {
document.getElementById(name).style.display = 'block';
document.querySelector("#" + name + "Meter .meterLabel").style.display = 'block';
}

function enable_growth_part(name) {


+ 2
- 2
recursive-desc.js Näytä tiedosto

@@ -380,7 +380,7 @@ function defaultSheathAbsorb(container, macro, verbose) {
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.";
else
return defaultSheathSqueeze(container, macro, verbose);
return defaultSheathToy(container, macro, verbose);
}

function defaultCockVore(container, macro, verbose) {
@@ -441,7 +441,7 @@ function defaultFemaleOrgasm(container, macro, verbose) {
if (container.count == 0)
return "Your moist slit sprays $TIMES times, gushing out $VOLUME of slick femcum.";
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))
return "Your moist slit sprays $VOLUME of slick femcum, obliterating " + container.describe(verbose) + " in $TIMES consecutive bursts of lust.";
else


+ 2
- 2
stroll.html Näytä tiedosto

@@ -750,12 +750,12 @@
<label class="custom-header" for="gasEnabled">Gas</label>
<div class="reveal-if-active">
<li>
<input autocomplete="off" type="checkbox" checked="true" name="belchEnabled" id="belchEnabled" />
<label for="belchEnabled">Belching</label>
<input autocomplete="off" type="checkbox" checked="true" name="belchEnabled" />
</li>
<li>
<input autocomplete="off" type="checkbox" name="fartEnabled" id="fartEnabled" />
<label for="fartEnabled">Farting</label>
<input autocomplete="off" type="checkbox" name="fartEnabled" />
</li>
<li>
<label for="gasScale">Gas production factor</label>


+ 4
- 2
style.css Näytä tiedosto

@@ -501,6 +501,7 @@ ul {
}

.meter .meterLabel {
display: none;
z-index: 1;
writing-mode: vertical-lr;
text-orientation: upright;
@@ -510,8 +511,9 @@ ul {
font-size: 12px;
text-align: center;
position: absolute;
top: 0;
left: 0;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}

.meter .fill {


+ 1
- 1
units.js Näytä tiedosto

@@ -295,7 +295,7 @@ function metricVolume(m3, singular=false) {
let volume = round(m3, 0);
return volume + (singular || volume == 1 ? " cubic meter" : " cubic meters");
} 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");
} else {
let volume = round(m3/1e9, 0);


Loading…
Peruuta
Tallenna