diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index 54d2ea9face0f113ea3266a9b8452230a243937e..2595b225d2bb5c6c65fbde7124f43b0b3800752a 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -19,8 +19,8 @@ globalThis.dairyReport = function() { V.milkmaidTrustBonus = 1; V.milkmaidDevotionThreshold = 45; V.milkmaidTrustThreshold = 35; - let He, His, he, his, him, himself, wife, girl; - let He2, His2, he2, his2, him2, himself2, wife2, girl2; + let He, His, he, his, him, wife, girl; + let he2, his2; let _Tadd; let _milkResults; let _growth; @@ -209,7 +209,7 @@ globalThis.dairyReport = function() { getSlaveStatisticData(S.Milkmaid, V.facility.dairy); V.i = _FLs; ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(S.Milkmaid)); // r.push(`${SlaveFullName(S.Milkmaid)} is serving as your Milkmaid.`); @@ -293,7 +293,7 @@ globalThis.dairyReport = function() { V.i = V.slaveIndices[slave.ID]; if (S.Milkmaid.rivalryTarget === slave.ID) { ({ - he2, him2, his2, girl2, He2 + he2, his2 } = getPronouns(slave).appendSuffix("2")); r.push(`${He} either neglects or harasses ${his} ${rivalryTerm(S.Milkmaid)},${slave.slaveName}, making sure ${he2} is unhappy and uncomfortable.`); slave.devotion -= 3; @@ -304,14 +304,14 @@ globalThis.dairyReport = function() { } } else if (S.Milkmaid.relationshipTarget === slave.ID) { ({ - he2, him2, his2, girl2, He2 + he2, his2 } = getPronouns(slave).appendSuffix("2")); r.push(`${He} dotes over ${his} ${relationshipTerm(S.Milkmaid)}, ${slave.slaveName}, making sure ${he2} is happy and comfortable.`); slave.devotion++; slave.trust++; } else if (areRelated(S.Milkmaid, slave)) { ({ - he2, him2, his2, girl2, He2 + he2, his2 } = getPronouns(slave).appendSuffix("2")); r.push(`${He} pays special attention to ${his} ${relativeTerm(S.Milkmaid, slave)},${slave.slaveName}, making sure ${he2} is well kept and happy.`); slave.trust++; @@ -349,9 +349,9 @@ globalThis.dairyReport = function() { } if (slave.prestigeDesc === "$He is remembered for winning best in show as a breeder." && slave.bellyPreg >= 1500) { ({ - he2, him2, his2, girl2, He2 + he2, his2 } = getPronouns(slave).appendSuffix("2")); - r.push(`${He} spends extra time with${slave.slaveName}, the well-known breeder. ${S.Milkmaid.slaveName} is fascinated by ${his2} growing pregnancy and popular womb. ${He} makes sure ${his2} belly and its occupants are nice and comfortable.`); + r.push(`${He} spends extra time with ${slave.slaveName}, the well-known breeder. ${S.Milkmaid.slaveName} is fascinated by ${his2} growing pregnancy and popular womb. ${He} makes sure ${his2} belly and its occupants are nice and comfortable.`); slave.devotion += 3; slave.trust += 3; } @@ -404,7 +404,7 @@ globalThis.dairyReport = function() { const slave = _slaves[i]; V.i = V.slaveIndices[slave.ID]; ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(slave)); /* Special attention section */ if ((V.legendaryCowID === 0) && (slave.lactation > 0) && ((slave.boobs-slave.boobsImplant-slave.boobsMilk) > 6000) && (slave.devotion > 50) && (slave.prestige === 0)) { @@ -1120,7 +1120,7 @@ globalThis.dairyReport = function() { r.push(`${_chemMinor} cows have been drugged and used long enough that they require increased curative doses, slightly reducing their output.`); } else if (_chemMinor > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_cmSlave)); r.push(`One cow has been drugged and used long enough that ${he} requires increased curative doses, slightly reducing ${his} output.`); } @@ -1128,7 +1128,7 @@ globalThis.dairyReport = function() { r.push(`${_desterilized} cows had minor health issues preventing their fertile womb from conceiving; the issues have been resolved and they have been impregnated.`); } else if (_desterilized > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_dsSlave)); r.push(`One cow had minor health issues preventing ${his} fertile womb from conceiving; they have been resolved and ${he} has been impregnated.`); } @@ -1136,7 +1136,7 @@ globalThis.dairyReport = function() { r.push(`${_hateFilled} cows stopped struggling so much when fucked by the machines; it seems they have sunk into a fugue.`); } else if (_hateFilled > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_hfSlave)); r.push(`One cow stopped struggling so much when fucked by the machines; it seems ${he} has sunk into a fugue.`); } @@ -1144,7 +1144,7 @@ globalThis.dairyReport = function() { r.push(`${_horrified} cows' emotional activity dropped significantly; this indicates acceptance that they are not likely to leave ${V.dairyName}, ever again.`); } else if (_horrified > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_hrSlave)); r.push(`One cow's emotional activity dropped significantly; this indicates acceptance that ${he} is not likely to leave ${V.dairyName}, ever again.`); } @@ -1152,7 +1152,7 @@ globalThis.dairyReport = function() { r.push(`${_skillsLost} cows forgot skills due to their inability to focus on anything but machine rape.`); } else if (_skillsLost > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_slSlave)); r.push(`One cow forgot skills due to ${his} inability to focus on anything but machine rape.`); } @@ -1160,7 +1160,7 @@ globalThis.dairyReport = function() { r.push(`${_careerForgotten} cows forgot the details of their past professional lives; all they can remember now is this.`); } else if (_careerForgotten > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_cfSlave)); r.push(`One cow forgot the details of ${his} past professional life; all ${he} can remember now is this.`); } @@ -1183,7 +1183,7 @@ globalThis.dairyReport = function() { r.push(`${_stupidified} cows were so mentally dulled by use as biological factories that they were reduced to a very low level of intelligence.`); } else if (_stupidified > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_stSlave)); r.push(`One cow was so mentally dulled by use as biological factories that ${he} was reduced to a very low level of intelligence.`); } @@ -1201,7 +1201,7 @@ globalThis.dairyReport = function() { r.push(`${_balltacular} cows' testicles reached the largest size drug treatments can produce; the machines will now focus on buttfucking them with extra force.`); } else if (_balltacular > 0) { ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(_btSlave)); r.push(`One cow's testicles reached the largest size drug treatments can produce; the machines will now focus on buttfucking ${him} with extra force.`); } @@ -1354,7 +1354,7 @@ globalThis.dairyReport = function() { } } ({ - he, him, his, himself, He, His, wife, girl + he, him, his, He, His, wife, girl } = getPronouns(slave)); const _ageInWeeks = 52*(V.retirementAge-slave.physicalAge); // <br><br>