diff --git a/src/npc/descriptions/descriptionWidgets.js b/src/npc/descriptions/descriptionWidgets.js index e4d5566e7168b2fe1abf5b11b1875b5896b241af..c0a24502988798e998f182e93012e8a536ddc68a 100644 --- a/src/npc/descriptions/descriptionWidgets.js +++ b/src/npc/descriptions/descriptionWidgets.js @@ -895,14 +895,14 @@ App.Desc.limbs = function(slave) { } } else if (!hasBothLegs(slave) && hasAnyQuadrupedLegs(slave)) { if (hasLeftLeg(slave)) { - r += `${he} has ${addA(idToDescription(getLeftLegID(slave)))} left backleg, but ${his} right has been amputated.`; + r += `${he} has ${addA(idToDescription(getLeftLegID(slave)))} left hind leg, but ${his} right has been amputated.`; } else { - r += `${he} has ${addA(idToDescription(getRightLegID(slave)))} right backleg, but ${his} left has been amputated.`; + r += `${he} has ${addA(idToDescription(getRightLegID(slave)))} right hind leg, but ${his} left has been amputated.`; } } else if (hasBothQuadrupedLegs(slave) && isQuadrupedal(slave) && getLeftLegID(slave) !== getRightLegID(slave)) { - r += ` ${addA(idToDescription(getLeftLegID(slave)))} left backleg, ${addA(idToDescription(getRightLegID(slave)))} right backleg.`; + r += ` ${addA(idToDescription(getLeftLegID(slave)))} left hind leg, ${addA(idToDescription(getRightLegID(slave)))} right hind leg.`; } else if (hasBothQuadrupedLegs(slave) && isQuadrupedal(slave) && (getLeftLegID(slave) === getRightLegID(slave))) { - r += `${he} has ${idToDescription(getLeftLegID(slave))} backlegs.`; + r += `${he} has ${idToDescription(getLeftLegID(slave))} hind legs.`; } else { if (getLeftLegID(slave) === getRightLegID(slave) && !hasAnyQuadrupedLegs(slave)) { r += `${he} has ${idToDescription(getLeftLegID(slave))} legs.`; @@ -914,7 +914,7 @@ App.Desc.limbs = function(slave) { if (hasAnyQuadrupedLimbs(slave) && !(getLeftArmID(slave) === getRightArmID(slave) && getLeftArmID(slave) === getLeftLegID(slave) && getLeftArmID(slave) === getRightLegID(slave))){ - r += `The nature of ${his} prosthetics force ${him} to walk like an qaudrupedal animal.`; + r += `The nature of ${his} prosthetics force ${him} to walk like an quadrupedal animal.`; } return r; /* @@ -1342,7 +1342,7 @@ App.Desc.sexualHistory = function(slave) { } else if (slave.counter.births === 1) { r += `one of them happened `; } else if (slave.counter.births > 1) { - r += `${slave.counter.births} of them happened `; + r += `${num(slave.counter.births)} of them happened `; } else if (slave.counter.birthsTotal === 1) { r += `it did not happen `; } else {