From 6b18b8e498cc18c57708a542e1dc0468eba9e076 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 20 Feb 2018 14:28:36 -0500 Subject: [PATCH] Adjusted cum/femcum production downward. Fixed labels and formatting on the creation screen. Victim counts are rendered with the chosen number format --- game.js | 6 +++--- stroll.html | 40 ++++++++++++++++++++++++---------------- style.css | 3 +++ 3 files changed, 30 insertions(+), 19 deletions(-) diff --git a/game.js b/game.js index 3c36e03..40fcd86 100644 --- a/game.js +++ b/game.js @@ -232,7 +232,7 @@ var macro = "femaleParts": true, "fillCum": function(self) { - self.cumStorage.amount += self.ballVolume / 30; + self.cumStorage.amount += self.cumScale * self.ballVolume / 120; if (self.cumStorage.amount > self.cumStorage.limit) self.arouse(10 * (self.cumStorage.amount / self.cumStorage.limit - 1)); setTimeout(function () { self.fillCum(self) }, 1000); @@ -240,7 +240,7 @@ var macro = }, "fillFemcum": function(self) { - self.femcumStorage.amount += self.vaginaVolume / 30; + self.femcumStorage.amount += self.femcumScale * self.vaginaVolume / 120; if (self.femcumStorage.amount > self.femcumStorage.limit) self.arouse(10 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); setTimeout(function () { self.fillFemcum(self) }, 1000); @@ -966,7 +966,7 @@ function update(lines = []) for (var key in victims[type]){ if (victims[type].hasOwnProperty(key) && victims[type][key] > 0) { document.getElementById("stat-" + key).style.display = "table-row"; - document.getElementById("stat-" + type + "-" + key).innerHTML = victims[type][key]; + document.getElementById("stat-" + type + "-" + key).innerHTML = number(victims[type][key],numbers); } } } diff --git a/stroll.html b/stroll.html index 71bd45f..7c140b6 100644 --- a/stroll.html +++ b/stroll.html @@ -78,20 +78,20 @@
  • - Paw size (square meters):
    +
  • - Hand size (square meters):
    -
    + +
  • - Tailhole size (square meters):
    +
  • - Ass size (square meters):
    -
    + +

  • @@ -99,20 +99,24 @@
  • - Dick length: +
  • - Dick thickness: +
  • - Ball diameter: +
  • - Cum production factor: -
    + +
    +
  • +
  • + +
  • @@ -122,20 +126,24 @@
  • - Slit length:
    +
  • - Slit width:
    +
  • - Breast diameter:
    +
  • - Femcum production factor:
    -
    + +
    +
  • +
  • + +
  • diff --git a/style.css b/style.css index 13f70c9..ff050d8 100644 --- a/style.css +++ b/style.css @@ -121,15 +121,18 @@ input[type="checkbox"]:checked ~ .reveal-if-active { display: flex; flex-wrap: wrap; align-items: center; + width: 500px; } .flex-outer > li > label, +.flex-outer > div > div > li > label, .flex-outer li p { flex: 1 0 120px; max-width: 220px; } .flex-outer > li > label + *, +.flex-outer > div > div > li > label + *, .flex-inner { flex: 1 0 220px; }