Browse Source

Removed "unassuming" from slit descriptions

tags/v1.0.0
Fen Dweller 6 years ago
parent
commit
14c05de12b
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      game.js

+ 8
- 8
game.js View File

@@ -1566,24 +1566,24 @@ let macro =
get describeVagina() { get describeVagina() {
let state = ""; let state = "";
if (!this.arousalEnabled) { if (!this.arousalEnabled) {
state = "unassuming";
state = "";
} else if (this.orgasm) { } else if (this.orgasm) {
state = "gushing, quivering";
state = " gushing, quivering";
} else { } else {
if (this.arousal < 25) { if (this.arousal < 25) {
state = "unassuming";
state = "";
} else if (this.arousal < 75) { } else if (this.arousal < 75) {
state = "moist";
state = " moist";
} else if (this.arousal < 100) { } else if (this.arousal < 100) {
state = "glistening";
state = " glistening";
} else if (this.arousal < 150) { } else if (this.arousal < 150) {
state = "dripping";
state = " dripping";
} else if (this.arousal < 200) { } else if (this.arousal < 200) {
state = "dripping, quivering";
state = " dripping, quivering";
} }
} }


return length(this.vaginaLength, unit, true) + " long " + state;
return length(this.vaginaLength, unit, true) + " long" + state;
}, },
}; };




Loading…
Cancel
Save