A small thing but:
The last
JavaScript:
if(firm >= 65) {
if(this.mf("m","f", true) == "m") adjectives.push("masculine");
if (this.tone >= 66) adjectives.push("muscular");
else if (this.tone >= 33) adjectives.push("lean muscled");
if (this.thickness >= 33) adjectives.push(hips < 4 ? "soft" : "broad");
else adjectives.push((this.mf("m","f", true) == "m" ? "mannishly " : "") + "slender");
}
The last
else
in this bit of creaure.js is causing hips of characters with tone >= 65 and thickness < 33 to be occasionally described as "slender" even if their width is well within 10-20 range i.e. anything but.
Last edited: