From c3f8ba2a62158938c02123e1476801e0d89fcfa1 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Fri, 6 Nov 2020 15:35:40 -0500 Subject: [PATCH] shorten needed pronoun list --- src/endWeek/reports/dairyReport.js | 32 ++++++++---------------------- 1 file changed, 8 insertions(+), 24 deletions(-) diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index a111386779f..af53c8cf5bb 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -1158,49 +1158,37 @@ App.EndWeek.dairyReport = function() { if (chemMinor > 1) { 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, He, His, wife, girl - } = getPronouns(cmSlave)); + ({he, his} = getPronouns(cmSlave)); r.push(`One cow has been drugged and used long enough that ${he} requires increased curative doses, slightly reducing ${his} output.`); } if (desterilized > 1) { 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, He, His, wife, girl - } = getPronouns(dsSlave)); + ({he, his} = 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.`); } if (hateFilled > 1) { 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, He, His, wife, girl - } = getPronouns(hfSlave)); + ({he} = getPronouns(hfSlave)); r.push(`One cow stopped struggling so much when fucked by the machines; it seems ${he} has sunk into a fugue.`); } if (horrified > 1) { 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, He, His, wife, girl - } = getPronouns(hrSlave)); + ({he} = 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.`); } if (skillsLost > 1) { r.push(`${skillsLost} cows forgot skills due to their inability to focus on anything but machine rape.`); } else if (skillsLost > 0) { - ({ - he, him, his, He, His, wife, girl - } = getPronouns(slSlave)); + ({his} = getPronouns(slSlave)); r.push(`One cow forgot skills due to ${his} inability to focus on anything but machine rape.`); } if (careerForgotten > 1) { 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, He, His, wife, girl - } = getPronouns(cfSlave)); + ({he, his} = getPronouns(cfSlave)); r.push(`One cow forgot the details of ${his} past professional life; all ${he} can remember now is this.`); } if (vaginasStretched > 1) { @@ -1221,9 +1209,7 @@ App.EndWeek.dairyReport = function() { if (stupidified > 1) { 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, He, His, wife, girl - } = getPronouns(stSlave)); + ({he} = 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.`); } if (mindbroken > 1) { @@ -1239,9 +1225,7 @@ App.EndWeek.dairyReport = function() { if (balltacular > 1) { 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, He, His, wife, girl - } = getPronouns(btSlave)); + ({him} = 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.`); } -- GitLab