Currently the
This could be easily achieved by adjusting the penis section of the cockOrStrapon function from this
to this
(all from creature.js file).
[pc.cockOrStraponFull]
will output [pc.cock]
if Steele has a cock, just like [pc.cockOrStrapon]. However since the [pc.cockOrStraponFull]
seems to be intended to give a more wordy parser, shouldn't it output [pc.cockComplex]
instead?This could be easily achieved by adjusting the penis section of the cockOrStrapon function from this
Code:
// Penis?
else if (idxOverride >= 0)
{
if (forceAdjective === -1) return this.simpleCockNoun(idxOverride);
return this.cockDescript(idxOverride);
}
Code:
else if (idxOverride >= 0)
{
if (forceAdjective === -1) return this.simpleCockNoun(idxOverride);
else if (forceAdjective === 1) return this.cockNounComplex(idxOverride);
return this.cockDescript(idxOverride);
}