diff --git a/devTools/javaSanityCheck/ignoredVariables b/devTools/javaSanityCheck/ignoredVariables
index ad5233f7fdda9a76d5bba30b43b04b3050e1ebc9..8df5eb7bf1599e9579fac0a57a0a06e085ade7e9 100644
--- a/devTools/javaSanityCheck/ignoredVariables
+++ b/devTools/javaSanityCheck/ignoredVariables
@@ -2,8 +2,6 @@
 # likely bugged check
 AGrowth
 #
-cumSale
-fluidSale
 MIN
 brokenSlaves
 self
diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js
index 94bf9f9b0b20b4ff2c2cfebea57c8a7c13b3df5e..b67d37a0b26bd2dad4a1622845f82980ef70299d 100644
--- a/js/003-data/gameVariableData.js
+++ b/js/003-data/gameVariableData.js
@@ -362,10 +362,7 @@ App.Data.resetOnNGPlus = {
 
 	HGtraining: "",
 	mercenariesTitle: "",
-	milk: 0,
-	cum: 0,
 	hormones: 0,
-	milkSale: 0,
 	FSReminder: 0,
 	facility: {},
 	boomerangStats: {},
@@ -453,8 +450,6 @@ App.Data.resetOnNGPlus = {
 	fuckSlaves: 0,
 	publicServants: 0,
 
-	fluid: 0,
-	cumSale: 0,
 	localEcon: 0,
 	econRate: 0,
 	drugsCost: 0,
@@ -766,7 +761,6 @@ App.Data.resetOnNGPlus = {
 	weatherAwareness: 0,
 	boobAccessibility: 0,
 	servantMilkers: 0,
-	servantMilkersMultiplier: 1,
 
 	studio: 0,
 	studioFeed: 0,
diff --git a/src/endWeek/masterSuiteReport.js b/src/endWeek/masterSuiteReport.js
index 1424117c0a050defd50a23e5c1ed5347049d593b..b71d9f7fd913197620cf7ea6a074afb4ca5d6ba4 100644
--- a/src/endWeek/masterSuiteReport.js
+++ b/src/endWeek/masterSuiteReport.js
@@ -341,10 +341,9 @@ App.EndWeek.masterSuiteReport = function() {
 			if (V.servantMilkers === 1 && slave.lactation > 0 && slave.fuckdoll === 0 && slave.fetish !== "mindbroken" && canMove(slave) && slave.intelligence+slave.intelligenceImplant >= -90) {
 				const milkIntro = `When ${his} breasts begin to feel full and you aren't around, ${he} avails ${himself} to the penthouse milkers and `;
 				const milkContent = App.UI.DOM.appendNewElement("div", smallFrag, milkIntro, "indent");
-				V.servantMilkersMultiplier = 0.25; // FIXME: should be a parameter
-				$(milkContent).append(App.SlaveAssignment.getMilked(slave));
-				V.servantMilkersMultiplier = 1;
-				$(milkContent).append(`gives ${V.milk} liters of milk over the week, which is sold for <span class="cash inc">${cashFormat(V.milkSale)}.</span>`);
+				const milkingResults = App.SlaveAssignment.getMilked(slave, 0.25);
+				$(milkContent).append(milkingResults.text);
+				$(milkContent).append(`gives ${milkingResults.milk} liters of milk over the week, which is sold for <span class="cash inc">${cashFormat(milkingResults.milkSale)}.</span>`);
 			}
 			const commonContent = App.UI.DOM.appendNewElement("div", smallFrag, '', "indent");
 			commonContent.append(App.SlaveAssignment.standardSlaveReport(slave, false));
@@ -353,9 +352,7 @@ App.EndWeek.masterSuiteReport = function() {
 			App.SlaveAssignment.choosesOwnJob(slave);
 			App.SlaveAssignment.pleaseYou(slave);
 			if (V.servantMilkers === 1 && slave.lactation > 0 && slave.fuckdoll === 0 && slave.fetish !== "mindbroken" && canMove(slave) && slave.intelligence+slave.intelligenceImplant >= -90) {
-				V.servantMilkersMultiplier = 0.25; // FIXME: should be a parameter
-				App.SlaveAssignment.getMilked(slave);
-				V.servantMilkersMultiplier = 1;
+				App.SlaveAssignment.getMilked(slave, 0.25);
 			}
 			App.SlaveAssignment.standardSlaveReport(slave, true);
 		}
diff --git a/src/endWeek/saGetMilked.js b/src/endWeek/saGetMilked.js
index db4ff7a765f2121fd428f5b0f1dbce6f934abbfd..32dc00a66e6b154f70dcf4e7b33abb715914341e 100644
--- a/src/endWeek/saGetMilked.js
+++ b/src/endWeek/saGetMilked.js
@@ -1,18 +1,36 @@
 App.SlaveAssignment.getMilked = (function() {
 	"use strict";
 
-	let incomeStats;
-	let r;
 	let arcology;
-	let cash;
+	let vignetteCash;
+	let vignetteRep;
+
+	class MilkingResults {
+		constructor() {
+			/** full description of milking */
+			this.text = ``;
+			/** cum collected in deciliters */
+			this.cum = 0;
+			/** cash expected from sale of cum */
+			this.cumSale = 0;
+			/** girlcum collected in deciliters */
+			this.fluid = 0;
+			/** cash expected from sale of girlcum */
+			this.fluidSale = 0;
+			/** milk collected in gallons */
+			this.milk = 0;
+			/** cash expected from sale of milk */
+			this.milkSale = 0;
+		}
+
+		/** total cash collected by this milking */
+		get cash() {
+			return this.cumSale + this.fluidSale + this.milkSale;
+		}
+	}
 
-	// If these are moved out of the file, they must be set in it as well!
-	let milk;
-	let milkSale;
-	let cum;
-	let cumSale;
-	let fluid;
-	let fluidSale;
+	/** @type {MilkingResults} */
+	let r;
 
 	// could probably move these back or something
 	let hormones;
@@ -25,112 +43,102 @@ App.SlaveAssignment.getMilked = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @param {boolean} preview are we trying to preview or actually record?
-	 * @returns {(string|number)} returns number if 'preview' is true, string if it is not.
+	 * @param {number} [multiplier=1.0]
+	 * @param {boolean} [preview=false] are we trying to preview milking income, or may we make changes to the slave?
+	 * @returns {MilkingResults}
 	 */
-	function saGetMilked(slave, preview=false) {
+	function saGetMilked(slave, multiplier=1.0, preview=false) {
 		arcology = V.arcologies[0];
-		milk = 0;
-		cum = 0;
-		fluid = 0;
-		r = ` `;
-		cash = 0;
+		r = new MilkingResults();
+		vignetteCash = 0;
+		vignetteRep = 0;
 
 		if (!preview) {
 			({
 				he, him, his, He, His
 			} = getPronouns(slave));
-			gatherStatistics(slave);
 			jobPreface(slave);
 		}
 
 		if (slave.lactation > 0) {
-			cash += milkStatistics(slave, preview);
+			harvestMilk(slave, multiplier);
 			if (!preview) {
-				harvestMilk(slave);
 				milkingEffects(slave);
 			}
 		}
 		// Limits penthouse milkers to milk only.
 		if ([Job.ARCADE, Job.MILKED, Job.DAIRY].includes(slave.assignment) || preview) {
 			if (slave.balls > 0) {
-				cash += cumStatistics(slave, preview);
+				harvestCum(slave, multiplier);
 				if (!preview) {
-					harvestCum(slave);
 					cumEffects(slave);
 				}
 			}
 			if (slave.genes === "XX" && slave.prostate > 0 && slave.balls === 0) {
-				cash += girlCumStatistics(slave, preview);
-				if (!preview) {
-					harvestGirlCum(slave);
-				}
+				harvestGirlCum(slave, multiplier);
 			}
 		}
-		if (preview) {
-			return cash;
-		} else {
+		if (!preview) {
+			recordTotals(slave);
 			physicalEffects(slave);
 			mentalEffects(slave);
 			if (V.showVignettes === 1 && (slave.assignment === window.Job.MILKED || slave.assignment === window.Job.DAIRY)) {
 				assignmentVignette(slave);
 			}
 			if (slave.assignment === window.Job.MILKED) {
-				cashX(cash, "slaveAssignmentMilked", slave);
+				cashX(r.cash, "slaveAssignmentMilked", slave);
 			} else if (slave.assignment === window.Job.DAIRY) {
+				recordFacilityStatistics(getSlaveStatisticData(slave, V.facility.dairy));
 				applyFSDecoration();
-				cashX(cash, "slaveAssignmentDairy", slave);
+				cashX(r.cash, "slaveAssignmentDairy", slave);
 			} else {
-				cashX(cash, "slaveAssignmentExtraMilk", slave);
+				cashX(r.cash, "slaveAssignmentExtraMilk", slave);
 			}
-			// These are a pain. They are usually called immediately after this function. Could possibly return an object instead.
-			V.cum = cum;
-			V.milk = milk;
-			V.milkSale = milkSale;
-			V.cumSale = cumSale;
-			V.fluid = fluid;
-			V.fluidSale = fluidSale;
-			return r;
 		}
+		return r;
 	}
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function gatherStatistics(slave) {
-		/* Statistics gathering */
-		let facility;
-		if (slave.assignment === window.Job.DAIRY) {
-			facility = V.facility.dairy;
-		}
-		incomeStats = getSlaveStatisticData(slave, facility);
-		incomeStats.milk = 0;
-		incomeStats.cum = 0;
-		incomeStats.fluid = 0;
+	 */
+	function recordTotals(slave) {
+		actX(slave, "milk", r.milk);
+		actX(slave, "cum", r.cum);
+	}
+
+	/**
+	 * @param {object} incomeStats getSlaveStatistcData return value - FIXME should be a named type
+	 */
+	function recordFacilityStatistics(incomeStats) {
+		incomeStats.milk = r.milk;
+		incomeStats.cum = r.cum;
+		incomeStats.fluid = r.fluid;
+		incomeStats.income = r.cash + vignetteCash;
+		incomeStats.rep = vignetteRep;
 	}
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
+	 */
 	function jobPreface(slave) {
-		r += `gets milked this week.`;
+		r.text += `gets milked this week.`;
 		if (V.dairy > 0 && V.dairyRestraintsSetting < 2) {
 			if ((V.universalRulesFacilityWork === 1 && slave.assignment === window.Job.MILKED && V.dairySpots > 0) || (slave.assignment === window.Job.DAIRY)) {
 				if (slave.assignment === window.Job.MILKED) {
-					r += ` Since there's extra space in ${V.dairyName}, ${he} spends most of ${his} milkings there.`;
+					r.text += ` Since there's extra space in ${V.dairyName}, ${he} spends most of ${his} milkings there.`;
 					V.dairySpots -= 1; // Would this need to be pulled for statistics gathering?
 				}
 				if (V.MilkmaidID !== 0) {
-					r += ` While there, ${he} gets the benefit of ${S.Milkmaid.slaveName}'s `;
+					r.text += ` While there, ${he} gets the benefit of ${S.Milkmaid.slaveName}'s `;
 					if (S.Milkmaid.physicalAge < 21) {
-						r += `youthful energy`;
+						r.text += `youthful energy`;
 					} else {
-						r += `care`;
+						r.text += `care`;
 					}
 					if (S.Milkmaid.skill.oral >= 100) {
-						r += ` and talented tongue`;
+						r.text += ` and talented tongue`;
 					}
-					r += `.`;
+					r.text += `.`;
 					if (slave.devotion < V.milkmaidDevotionThreshold) {
 						slave.devotion += V.milkmaidDevotionBonus;
 					}
@@ -147,74 +155,75 @@ App.SlaveAssignment.getMilked = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function harvestMilk(slave) {
-		 /* milk = milkAmount(slave); // Set it or else! */
+	 * @param {number} multiplier
+	 */
+	function harvestMilk(slave, multiplier) {
+		r.milk = milkAmount(slave);
 
-		r += ` ${He} produces from ${his} ${jsEither(["boobs", "breasts", "mammaries", "tits", "udders"])}, which have a combined volume of ${(slave.boobs * 2)} CCs; `;
+		r.text += ` ${He} produces from ${his} ${jsEither(["boobs", "breasts", "mammaries", "tits", "udders"])}, which have a combined volume of ${(slave.boobs * 2)} CCs; `;
 		if (slave.lactation === 1) {
-			r += `${he} is lactating naturally and produces `;
+			r.text += `${he} is lactating naturally and produces `;
 			if (implantEffect >= 0.90) {
-				r += `a weak trickle of milk.`;
+				r.text += `a weak trickle of milk.`;
 			} else if (implantEffect >= 0.75) {
-				r += `a weak stream of milk.`;
+				r.text += `a weak stream of milk.`;
 			} else {
-				r += `a healthy stream of milk.`;
+				r.text += `a healthy stream of milk.`;
 			}
 		} else if (slave.lactation === 2) {
-			r += `${he} is on lactation drugs and produces `;
+			r.text += `${he} is on lactation drugs and produces `;
 			if (implantEffect >= 0.90) {
-				r += `a steady flow of milk.`;
+				r.text += `a steady flow of milk.`;
 			} else if (implantEffect >= 0.75) {
-				r += `strong bursts of milk.`;
+				r.text += `strong bursts of milk.`;
 			} else {
-				r += `a river of milk.`;
+				r.text += `a river of milk.`;
 			}
 			if (slave.lactationAdaptation < 100) {
-				r += ` ${His} udders are forced to adapt to this unnatural productivity.`;
+				r.text += ` ${His} udders are forced to adapt to this unnatural productivity.`;
 				slave.lactationAdaptation += 1;
 			}
 			if (slave.curatives === 0 && slave.inflationType !== "curative") {
-				r += ` The stress of extreme milk production <span class="health dec">damages ${his} health.</span>`;
+				r.text += ` The stress of extreme milk production <span class="health dec">damages ${his} health.</span>`;
 				healthDamage(slave, 3);
 			}
 		}
 
 		if (slave.boobsMilk > 0) {
-			r += ` ${He} was in need of a good milking, too.`;
+			r.text += ` ${He} was in need of a good milking, too.`;
 		}
 
 		if (slave.devotion > 50) {
-			r += ` ${He}'s such a happy cow that ${his} mental state has a positive impact on ${his} production.`;
+			r.text += ` ${He}'s such a happy cow that ${his} mental state has a positive impact on ${his} production.`;
 		} else if (slave.devotion < -50) {
-			r += ` ${He}'s such an unhappy cow that ${his} mental state has a negative impact on ${his} production.`;
+			r.text += ` ${He}'s such an unhappy cow that ${his} mental state has a negative impact on ${his} production.`;
 		}
 
 		if (slave.boobsImplant > 0) {
 			implantEffect = (slave.boobsImplant / slave.boobs);
 		}
 		if (slave.boobsImplant > 0) {
-			r += ` However, ${his} `;
+			r.text += ` However, ${his} `;
 			if (implantEffect >= 0.90) {
-				r += `breast implants are ill-suited for`;
+				r.text += `breast implants are ill-suited for`;
 			} else if (implantEffect >= 0.75) {
-				r += `breasts are almost entirely implant, greatly restricting ${his}`;
+				r.text += `breasts are almost entirely implant, greatly restricting ${his}`;
 			} else if (implantEffect >= 0.60) {
-				r += `breasts are mostly implant, restricting ${his}`;
+				r.text += `breasts are mostly implant, restricting ${his}`;
 			} else if (implantEffect >= 0.45) {
-				r += `implants make up a considerable amount of ${his} breasts and greatly impede`;
+				r.text += `implants make up a considerable amount of ${his} breasts and greatly impede`;
 			} else if (implantEffect >= 0.30) {
-				r += `breast implants take up enough space to impede`;
+				r.text += `breast implants take up enough space to impede`;
 			} else if (implantEffect >= 0.10) {
-				r += `breast implants slightly impede`;
+				r.text += `breast implants slightly impede`;
 			} else {
-				r += `breast implants cause a minor decrease in`;
+				r.text += `breast implants cause a minor decrease in`;
 			}
-			r += ` milk production`;
+			r.text += ` milk production`;
 			if (implantEffect >= 0.90) {
-				r += `, given the lack of actual breast flesh`;
+				r.text += `, given the lack of actual breast flesh`;
 			}
-			r += `.`;
+			r.text += `.`;
 		}
 
 		hormones = (slave.hormoneBalance / 100);
@@ -225,48 +234,48 @@ App.SlaveAssignment.getMilked = (function() {
 			hormones += 1;
 		}
 		if (hormones > 1) {
-			r += ` ${His} internal chemistry is perfectly suited to milk production.`;
+			r.text += ` ${His} internal chemistry is perfectly suited to milk production.`;
 		} else if (hormones > 0) {
-			r += ` ${His} hormonal balance favors milk production.`;
+			r.text += ` ${His} hormonal balance favors milk production.`;
 		} else if (hormones < 0) {
-			r += ` ${His} hormonal balance impedes milk production.`;
+			r.text += ` ${His} hormonal balance impedes milk production.`;
 		} else if (hormones < -1) {
-			r += ` ${His} internal chemistry is poorly suited to milk production.`;
+			r.text += ` ${His} internal chemistry is poorly suited to milk production.`;
 		}
 
 		if (slave.lactationAdaptation < 100) {
 			if (slave.assignment === Job.MILKED || slave.assignment === Job.DAIRY) {
-				r += ` Living as a cow helps ${his} body and mind adapt to producing milk.`;
+				r.text += ` Living as a cow helps ${his} body and mind adapt to producing milk.`;
 				slave.lactationAdaptation += 1;
 			}
 		}
 
 		if (slave.preg > (slave.pregData.normalBirth / 8) && slave.pregKnown === 1) {
-			r += ` ${His} pregnancy helps ${his} body produce more milk naturally`;
+			r.text += ` ${His} pregnancy helps ${his} body produce more milk naturally`;
 			if (slave.lactationAdaptation < 100) {
-				r += `, and also helps it adapt to milk production`;
+				r.text += `, and also helps it adapt to milk production`;
 				slave.lactationAdaptation += 1;
 			}
-			r += `.`;
+			r.text += `.`;
 		}
 
 		if (slave.health.condition > 50) {
-			r += ` ${His} shining health helps ${him} really produce.`;
+			r.text += ` ${His} shining health helps ${him} really produce.`;
 		} else if (slave.health.condition < -50) {
-			r += ` ${His} poor health impedes milk production.`;
+			r.text += ` ${His} poor health impedes milk production.`;
 		}
 
 		if (slave.weight > 10) {
-			r += ` ${His} extra weight supports ${his} productivity.`;
+			r.text += ` ${His} extra weight supports ${his} productivity.`;
 		} else if (slave.weight < -10) {
-			r += ` ${His} thinness hinders ${his} productivity.`;
+			r.text += ` ${His} thinness hinders ${his} productivity.`;
 		}
 
 		if (slave.lactationAdaptation > 10) {
 			if (slave.lactationAdaptation > 50) {
-				r += ` ${His} body has adapted heavily to milk production, making ${him} extremely productive.`;
+				r.text += ` ${His} body has adapted heavily to milk production, making ${him} extremely productive.`;
 			} else {
-				r += ` ${His} body has gotten used to producing milk, making ${him} very productive.`;
+				r.text += ` ${His} body has gotten used to producing milk, making ${him} very productive.`;
 			}
 		}
 
@@ -274,98 +283,57 @@ App.SlaveAssignment.getMilked = (function() {
 			if (V.dairySlimMaintain === 1) {
 				if (slave.boobs <= 700) {
 					if (arcology.FSSlimnessEnthusiast > 80) {
-						r += ` Your arcology's milkers are optimized to extract maximum output from small breasted slaves, which substantially increases ${his} otherwise modest productivity.`;
+						r.text += ` Your arcology's milkers are optimized to extract maximum output from small breasted slaves, which substantially increases ${his} otherwise modest productivity.`;
+						r.milk *= 1.5;
 					} else if (arcology.FSSlimnessEnthusiast > 20) {
-						r += ` Your arcology's milkers have been carefully modified to more readily accommodate slaves with tiny breasts, which slightly mitigates ${his} less than ideal physiology for milk production.`;
+						r.text += ` Your arcology's milkers have been carefully modified to more readily accommodate slaves with tiny breasts, which slightly mitigates ${his} less than ideal physiology for milk production.`;
+						r.milk *= 1.1;
 					}
 				}
 			}
 		}
 
-		r += ` As a result, ${he} produces ${milk} liters of milk over the week.`;
-
-		/*
-		actX(slave, "milk", milk);
-		incomeStats.milk = milk;
-		*/
-
-		// make sure milkSale is set here
-		if (arcology.FSPastoralistLaw === 1) {
-			r += ` Since breast milk is ${arcology.name}'s only legal dairy product, ${he} can scarcely be milked fast enough, and ${he} makes <span class="cash inc">${cashFormat(milkSale)}.</span>`;
-		} else if (arcology.FSPastoralist !== "unset") {
-			r += ` Since milk is fast becoming a major part of the ${arcology.name}'s dietary culture, ${his} milk is in demand, and ${he} makes <span class="cash inc">${cashFormat(milkSale)}.</span>`;
-		} else if (arcology.FSRepopulationFocusLaw === 1) {
-			r += ` Since the number of hungry babies outweighs the supply of available breasts in ${arcology.name}, ${his} milk is in demand, and ${he} makes <span class="cash inc">${cashFormat(milkSale)}.</span>`;
-		} else {
-			r += ` ${His} milk is sold for <span class="cash inc">${cashFormat(milkSale)}.</span>`;
-		}
-	}
-
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function milkStatistics(slave, preview) {
-		milk = milkAmount(slave);
-
-		if (V.dairySlimMaintainUpgrade === 1) {
-			if (V.dairySlimMaintain === 1) {
-				if (slave.boobs <= 700) {
-					if (arcology.FSSlimnessEnthusiast > 80) {
-						milk *= 1.5;
-					} else if (arcology.FSSlimnessEnthusiast > 20) {
-						milk *= 1.1;
-					}
-				}
-			}
-		}
-
-		if (slave.assignment === Job.DAIRY) {
+		if (slave.assignment === Job.DAIRY) { // FIXME: no text for this block???
 			if (V.dairyFeedersUpgrade === 1) {
 				if (V.dairyFeedersSetting > 0) {
-					milk += (milk * (0.1 * (V.dairyFeedersUpgrade + V.dairyRestraintsSetting + ((50 - slave.physicalAge) / 20))));
+					r.milk += (r.milk * (0.1 * (V.dairyFeedersUpgrade + V.dairyRestraintsSetting + ((50 - slave.physicalAge) / 20))));
 					if (slave.chem > 360) {
-						milk *= 0.6;
+						r.milk *= 0.6;
 					} else if (slave.chem > 100) {
-						milk *= ((600 - slave.chem) / 600);
+						r.milk *= ((600 - slave.chem) / 600);
 					}
 				}
 			}
-		} else if (slave.assignment === Job.ARCADE) {
-			milk *= 0.5;
 		}
 
-		milk *= V.servantMilkersMultiplier;
-		milk = Math.trunc(milk);
-		if (milk < 1) {
-			milk = 1;
-		}
+		r.milk *= multiplier;
+		r.milk = Math.max(Math.trunc(r.milk), 1);
 
+		r.text += ` As a result, ${he} produces ${numberWithPluralOne(r.milk, "liter")} of milk over the week.`;
+
+		// make sure milkSale is set here
 		if (arcology.FSPastoralistLaw === 1) {
-			milkSale = (milk * (8 + Math.trunc(arcology.FSPastoralist / 30)));
+			r.milkSale = (r.milk * (8 + Math.trunc(arcology.FSPastoralist / 30)));
+			r.text += ` Since breast milk is ${arcology.name}'s only legal dairy product, ${he} can scarcely be milked fast enough, and ${he} makes <span class="cash inc">${cashFormat(r.milkSale)}.</span>`;
 		} else if (arcology.FSPastoralist !== "unset") {
-			milkSale = (milk * (6 + Math.trunc(arcology.FSPastoralist / 30)));
+			r.milkSale = (r.milk * (6 + Math.trunc(arcology.FSPastoralist / 30)));
+			r.text += ` Since milk is fast becoming a major part of the ${arcology.name}'s dietary culture, ${his} milk is in demand, and ${he} makes <span class="cash inc">${cashFormat(r.milkSale)}.</span>`;
 		} else if (arcology.FSRepopulationFocusLaw === 1) {
-			milkSale = (milk * (6 + Math.trunc(arcology.FSRepopulationFocus / 50)));
+			r.milkSale = (r.milk * (6 + Math.trunc(arcology.FSRepopulationFocus / 50)));
+			r.text += ` Since the number of hungry babies outweighs the supply of available breasts in ${arcology.name}, ${his} milk is in demand, and ${he} makes <span class="cash inc">${cashFormat(r.milkSale)}.</span>`;
 		} else {
-			milkSale = (milk * 6);
-		}
-
-		// Consider returning these if this function gets gutted
-		if (!preview) {
-			actX(slave, "milk", milk);
-			incomeStats.milk = milk;
-			incomeStats.income += milkSale;
+			r.milkSale = (r.milk * 6);
+			r.text += ` ${His} milk is sold for <span class="cash inc">${cashFormat(r.milkSale)}.</span>`;
 		}
-		return milkSale;
 	}
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
+	 */
 	function milkingEffects(slave) {
 		if (slave.fetishKnown) {
 			if (slave.fetish === "boobs" || slave.energy > 95) {
-				r += ` Getting constantly milked is as good as sex, as far as ${he}'s concerned. <span class="devotion inc">${He} is happy</span> to have ${his} breasts receive so much attention.`;
+				r.text += ` Getting constantly milked is as good as sex, as far as ${he}'s concerned. <span class="devotion inc">${He} is happy</span> to have ${his} breasts receive so much attention.`;
 				slave.devotion += 1;
 				if (slave.need > 0) {
 					slave.need = 0;
@@ -374,7 +342,7 @@ App.SlaveAssignment.getMilked = (function() {
 		}
 
 		if (slave.career === "a dairy cow" && slave.fetish !== "mindbroken" && slave.fuckdoll === 0) {
-			r += ` ${He} feels like <span class="devotion inc">${he} was made to be milked,</span> <span class="trust inc">not that ${he}'d complain about such a good feeling.</span>`;
+			r.text += ` ${He} feels like <span class="devotion inc">${he} was made to be milked,</span> <span class="trust inc">not that ${he}'d complain about such a good feeling.</span>`;
 			slave.devotion++;
 			slave.trust++;
 			if (slave.need > 0) {
@@ -385,56 +353,56 @@ App.SlaveAssignment.getMilked = (function() {
 		if (slave.nipples !== "huge") {
 			if (slave.nipples === "inverted") {
 				if (slave.fetish === "masochist" && slave.fetishKnown === 1) {
-					r += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion inc">extremely uncomfortable; ${he} loves it.</span>`;
+					r.text += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion inc">extremely uncomfortable; ${he} loves it.</span>`;
 					slave.devotion += 3;
 				} else {
-					r += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion dec">extremely uncomfortable.</span>`;
+					r.text += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion dec">extremely uncomfortable.</span>`;
 					slave.devotion -= 3;
 				}
 				if (jsRandom(1, 100) > 50) {
-					r += ` The constant suction <span class="change positive">permanently protrudes them,</span> and `;
+					r.text += ` The constant suction <span class="change positive">permanently protrudes them,</span> and `;
 					if (jsRandom(1, 2) === 1) {
-						r += `it turns out they're absolutely massive.`;
+						r.text += `it turns out they're absolutely massive.`;
 						slave.nipples = "huge";
 					} else {
-						r += `it turns out they're nice and puffy.`;
+						r.text += `it turns out they're nice and puffy.`;
 						slave.nipples = "puffy";
 					}
 				}
 			} else if (slave.nipples === "partially inverted") {
 				if (slave.fetish === "masochist" && slave.fetishKnown === 1) {
-					r += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion inc">quite uncomfortable; ${he} loves it.</span>`;
+					r.text += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion inc">quite uncomfortable; ${he} loves it.</span>`;
 					slave.devotion += 1;
 				} else {
-					r += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion dec">quite uncomfortable.</span>`;
+					r.text += ` Having the milkers constantly haul ${his} inverted nipples out is <span class="devotion dec">quite uncomfortable.</span>`;
 					slave.devotion -= 1;
 				}
 				if (jsRandom(1, 100) > 30) {
-					r += ` The constant suction <span class="change positive">permanently protrudes them,</span> and `;
+					r.text += ` The constant suction <span class="change positive">permanently protrudes them,</span> and `;
 					if (jsRandom(1, 2) === 1) {
-						r += `it turns out they're pretty cute.`;
+						r.text += `it turns out they're pretty cute.`;
 						slave.nipples = "cute";
 					} else {
-						r += `it turns out they're nice and puffy.`;
+						r.text += `it turns out they're nice and puffy.`;
 						slave.nipples = "puffy";
 					}
 				}
 			} else if (slave.nipples === "puffy" && jsRandom(1, 100) > 90) {
-				r += ` Producing this river of milk <span class="change positive">enlarges ${his} nipples:</span> they're now enormous.`;
+				r.text += ` Producing this river of milk <span class="change positive">enlarges ${his} nipples:</span> they're now enormous.`;
 				slave.nipples = "huge";
 			} else if (slave.nipples === "cute" && jsRandom(1, 100) > 80) {
-				r += ` Producing this river of milk <span class="change positive">makes ${his} nipples nice and puffy.</span>`;
+				r.text += ` Producing this river of milk <span class="change positive">makes ${his} nipples nice and puffy.</span>`;
 				slave.nipples = "puffy";
 			} else if (slave.nipples === "tiny") {
-				r += ` Producing this river of milk <span class="change positive">makes ${his} nipples grow to a nice size.</span>`;
+				r.text += ` Producing this river of milk <span class="change positive">makes ${his} nipples grow to a nice size.</span>`;
 				slave.nipples = "cute";
 			} else if (slave.areolae < 4 && jsRandom(1, 100) > (30 + (slave.areolae * 20))) {
 				if (slave.nipples === "fuckable") {
-					r += ` The constant suction around of ${his} nipples as their depths are drained of milk`;
+					r.text += ` The constant suction around of ${his} nipples as their depths are drained of milk`;
 				} else {
-					r += ` Producing this river of milk`;
+					r.text += ` Producing this river of milk`;
 				}
-				r += ` <span class="change positive">broadens ${his} areolae.</span>`;
+				r.text += ` <span class="change positive">broadens ${his} areolae.</span>`;
 				slave.areolae += 1;
 			}
 		}
@@ -447,230 +415,191 @@ App.SlaveAssignment.getMilked = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function harvestCum(slave) {
-		V.cumSlaves += 1;
-		/* cum = cumAmount(slave); // Set it or else */
+	 * @param {number} multiplier
+	 */
+	function harvestCum(slave, multiplier) {
+		let qualityMultiplier = 1.0;
+		r.cum = cumAmount(slave);
 
 		if (slave.lactation > 0) {
-			r += ` ${His} `;
+			r.text += ` ${His} `;
 		} else {
-			r += ` ${slave.slaveName}'s `;
+			r.text += ` ${slave.slaveName}'s `;
 		}
 
 		if (slave.dick > 0) {
 			if (slave.dick > 6) {
-				r += `inhuman`;
+				r.text += `inhuman`;
 			} else if (slave.dick > 5) {
-				r += `massive`;
+				r.text += `massive`;
 			} else if (slave.dick > 4) {
-				r += `big`;
+				r.text += `big`;
 			} else if (slave.dick > 3) {
-				r += `sizable`;
+				r.text += `sizable`;
 			} else if (slave.dick > 2) {
-				r += `moderate`;
+				r.text += `moderate`;
 			} else if (slave.dick > 1) {
-				r += `little`;
+				r.text += `little`;
 			} else {
-				r += `tiny`;
+				r.text += `tiny`;
 			}
-			r += ` prick is`;
+			r.text += ` prick is`;
 			if (slave.lactation > 0) {
-				r += ` also`;
+				r.text += ` also`;
 			}
-			r += ` machine-milked`;
+			r.text += ` machine-milked`;
 		} else {
-			r += `butt is machine-fucked`;
+			r.text += `butt is machine-fucked`;
 		}
-		r += ` to extract the cum from ${his} `;
+		r.text += ` to extract the cum from ${his} `;
 		if (slave.scrotum === 0) {
-			r += `invisible`;
+			r.text += `invisible`;
 		} else {
 			if (slave.balls > 10) {
-				r += `hypertrophied`;
+				r.text += `hypertrophied`;
 			} else if (slave.balls >= 10) {
-				r += `inhuman`;
+				r.text += `inhuman`;
 			} else if (slave.balls >= 9) {
-				r += `titanic`;
+				r.text += `titanic`;
 			} else if (slave.balls >= 8) {
-				r += `gigantic`;
+				r.text += `gigantic`;
 			} else if (slave.balls >= 7) {
-				r += `monstrous`;
+				r.text += `monstrous`;
 			} else if (slave.balls >= 6) {
-				r += `pendulous`;
+				r.text += `pendulous`;
 			} else if (slave.balls >= 5) {
-				r += `huge`;
+				r.text += `huge`;
 			} else if (slave.balls >= 4) {
-				r += `big`;
+				r.text += `big`;
 			} else if (slave.balls >= 3) {
-				r += `average`;
+				r.text += `average`;
 			} else {
-				r += `pathetic`;
+				r.text += `pathetic`;
 			}
 		}
 		if (slave.drugs === "testicle enhancement") {
-			r += ` balls, relieving them of the excessive cum production caused by the testicle enhancement drugs.`;
+			r.text += ` balls, relieving them of the excessive cum production caused by the testicle enhancement drugs.`;
 		} else if (slave.drugs === "hyper testicle enhancement") {
-			r += ` balls, relieving them of the excessive cum production caused by the hyper testicle enhancement drugs.`;
+			r.text += ` balls, relieving them of the excessive cum production caused by the hyper testicle enhancement drugs.`;
 		} else {
-			r += ` balls.`;
+			r.text += ` balls.`;
 		}
 
 		if (slave.diet === "cum production") {
-			r += ` ${His} diet is designed for cum production.`;
+			r.text += ` ${His} diet is designed for cum production.`;
 		}
 
 		cumHormones = (slave.hormoneBalance / 50);
 		if (cumHormones < -1) {
-			r += ` ${His} internal chemistry is perfectly suited to cum production.`;
+			r.text += ` ${His} internal chemistry is perfectly suited to cum production.`;
 		} else if (cumHormones < 0) {
-			r += ` ${His} hormonal balance favors cum production.`;
+			r.text += ` ${His} hormonal balance favors cum production.`;
 		} else if (cumHormones > 0) {
-			r += ` ${His} hormonal balance impedes cum production.`;
+			r.text += ` ${His} hormonal balance impedes cum production.`;
 		} else if (cumHormones > 1) {
-			r += ` ${His} internal chemistry is poorly suited to cum production.`;
+			r.text += ` ${His} internal chemistry is poorly suited to cum production.`;
 		}
 
 		if (slave.scrotum === 0) {
-			r += ` ${He} does produce cum despite ${his} apparent ballslessness, but less than ${he} would if they weren't hidden inside ${him}.`;
+			r.text += ` ${He} does produce cum despite ${his} apparent ballslessness, but less than ${he} would if they weren't hidden inside ${him}.`;
 		}
 
 		if (slave.prostate > 0) {
 			if (slave.prostate > 2) {
-				r += ` ${His} heavily altered prostate greatly increases the volume of ${his} ejaculations and promotes excessive, watery semen production. This dilute ejaculate<span class="cash dec">sells poorly</span> compared to normal cum.`;
+				r.text += ` ${His} heavily altered prostate greatly increases the volume of ${his} ejaculations and promotes excessive, watery semen production. This dilute ejaculate<span class="cash dec">sells poorly</span> compared to normal cum.`;
 			} else if (slave.prostate > 1) {
-				r += ` ${His} hyperactive prostate increases the volume of ${his} ejaculations and promotes good semen production.`;
+				r.text += ` ${His} hyperactive prostate increases the volume of ${his} ejaculations and promotes good semen production.`;
 			}
 		} else {
-			r += ` ${His} lack of a prostate reduces the health and volume of ${his} ejaculations.`;
+			r.text += ` ${His} lack of a prostate reduces the health and volume of ${his} ejaculations.`;
+			qualityMultiplier *= 0.5;
 		}
 
 		if (slave.devotion > 50) {
-			r += ` ${He}'s so happy that ${his} mental state has a positive impact on ${his} semen production.`;
+			r.text += ` ${He}'s so happy that ${his} mental state has a positive impact on ${his} semen production.`;
 		} else if (slave.devotion < -50) {
-			r += ` ${He}'s so unhappy that ${his} mental state has a negative impact on ${his} semen production.`;
+			r.text += ` ${He}'s so unhappy that ${his} mental state has a negative impact on ${his} semen production.`;
 		}
 
 		if (slave.health.condition > 50) {
-			r += ` ${His} shining health helps ${him} really produce.`;
+			r.text += ` ${His} shining health helps ${him} really produce.`;
 		} else if (slave.health.condition < -50) {
-			r += ` ${His} poor health impedes semen production.`;
+			r.text += ` ${His} poor health impedes semen production.`;
 		}
 
 		if (slave.vasectomy === 1) {
-			r += ` ${His} cum lacks the primary ingredient, sperm, thanks to ${his} vasectomy, <span class="cash dec">considerably lowering the value</span> of ${his} ejaculate.`;
+			r.text += ` ${His} cum lacks the primary ingredient, sperm, thanks to ${his} vasectomy, <span class="cash dec">considerably lowering the value</span> of ${his} ejaculate.`;
+			qualityMultiplier *= 0.2;
 		} else if (slave.ballType === "sterile") {
-			r += ` ${His} cum lacks vigor entirely, thanks to ${his} chemical castration, <span class="cash dec">considerably lowering the value</span> of ${his} ejaculate.`;
-		}
-
-		/* Dairy rework cum half here */
-		if (slave.assignment === Job.DAIRY) {
-			if (V.dairyStimulatorsUpgrade !== 1) {
-				if (V.MilkmaidID !== 0) {
-					if (S.Milkmaid.dick > 4 && canPenetrate(S.Milkmaid)) {
-						const milkmaidPronouns = getPronouns(S.Milkmaid);
-						r += ` ${S.Milkmaid.slaveName} sometimes stands in for the machines, which is a polite way of saying ${milkmaidPronouns.he} sometimes fucks ${slave.slaveName}'s ass to help ${him} cum.`;
-					}
-				}
-			}
-		}
-
-		/*
-		actX(slave, "cum", cum);
-		incomeStats.cum = cum;
-		*/
-
-		if (arcology.FSPastoralist === "unset") {
-			r += ` ${He} produces ${cum} deciliters of cum over the week; the fresh ejaculate is sold for <span class="cash inc">${cashFormat(cumSale)}.</span>`;
-		} else if (arcology.FSPastoralistLaw === 1) {
-			r += ` ${He} produces ${cum} deciliters of cum over the week; the fresh ejaculate, which is in extremely high demand as one of ${arcology.name}'s few legal sources of animal protein, is sold for <span class="cash inc">${cashFormat(cumSale)}.</span>`;
-		} else {
-			r += ` ${He} produces ${cum} deciliters of cum over the week; the fresh ejaculate, which is in high demand given the new cultural preference for slave products, is sold for <span class="cash inc">${cashFormat(cumSale)}.</span>`;
+			r.text += ` ${His} cum lacks vigor entirely, thanks to ${his} chemical castration, <span class="cash dec">considerably lowering the value</span> of ${his} ejaculate.`;
+			qualityMultiplier *= 0.2;
 		}
-	}
 
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function cumStatistics(slave, preview) {
-		cum = cumAmount(slave);
-
-		/* Dairy rework cum half here */
 		if (slave.assignment === Job.DAIRY) {
-			if (V.dairyStimulatorsUpgrade === 1) {
+			if (V.dairyStimulatorsUpgrade === 1) { // FIXME: no text for this block?
 				if (V.dairyStimulatorsSetting > 0) {
-					cum += (cum * (0.2 * (V.dairyStimulatorsSetting + V.dairyRestraintsSetting + Math.trunc((50 - slave.physicalAge) / 20))));
+					r.cum += (r.cum * (0.2 * (V.dairyStimulatorsSetting + V.dairyRestraintsSetting + Math.trunc((50 - slave.physicalAge) / 20))));
 				}
 				if (slave.chem > 360) {
-					cum *= 0.6;
+					r.cum *= 0.6;
 				} else if (slave.chem > 100) {
-					cum *= ((600 - slave.chem) / 600);
+					r.cum *= ((600 - slave.chem) / 600);
 				}
 			} else if (V.MilkmaidID !== 0) {
 				if (S.Milkmaid.dick > 4 && canAchieveErection(S.Milkmaid)) {
-					cum *= 1.2;
+					const milkmaidPronouns = getPronouns(S.Milkmaid);
+					r.text += ` ${S.Milkmaid.slaveName} sometimes stands in for the machines, which is a polite way of saying ${milkmaidPronouns.he} sometimes fucks ${slave.slaveName}'s ass to help ${him} cum.`;
+					r.cum *= 1.2;
 				}
 			}
-		} else if (slave.assignment === Job.ARCADE) {
-			cum *= 0.5;
 		}
 
-		cum = Math.trunc(cum);
-		if (cum < 1) {
-			cum = 1;
-		}
+		r.cum *= multiplier;
+		r.cum = Math.max(Math.trunc(r.cum), 1);
+		r.text += ` ${He} produces ${numberWithPluralOne(r.cum, "deciliter")} of cum over the week;`;
 
 		if (arcology.FSPastoralist === "unset") {
-			cumSale = (cum * jsRandom(15, 25));
+			r.cumSale = (r.cum * jsRandom(15, 25) * qualityMultiplier);
+			r.text += ` the fresh ejaculate is sold for <span class="cash inc">${cashFormat(r.cumSale)}.</span>`;
 		} else if (arcology.FSPastoralistLaw === 1) {
-			cumSale = (cum * (jsRandom(20, 40)));
+			r.cumSale = (r.cum * (jsRandom(20, 40)) * qualityMultiplier);
+			r.text += ` the fresh ejaculate, which is in extremely high demand as one of ${arcology.name}'s few legal sources of animal protein, is sold for <span class="cash inc">${cashFormat(r.cumSale)}.</span>`;
 		} else {
-			cumSale = (cum * (jsRandom(10, 20) + Math.trunc(arcology.FSPastoralist / 10)));
-		}
-		if (slave.vasectomy === 1 || slave.ballType === "sterile") {
-			cumSale *= 0.2;
+			r.cumSale = (r.cum * (jsRandom(10, 20) + Math.trunc(arcology.FSPastoralist / 10)) * qualityMultiplier);
+			r.text += ` the fresh ejaculate, which is in high demand given the new cultural preference for slave products, is sold for <span class="cash inc">${cashFormat(r.cumSale)}.</span>`;
 		}
-		if (slave.prostate === 3) {
-			cumSale *= 0.5;
-		}
-
-		// Consider returning these if this function gets gutted
-		if (!preview) {
-			actX(slave, "cum", cum);
-			incomeStats.cum = cum;
-			incomeStats.income += cumSale;
-		}
-		return cumSale;
 	}
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
+	 */
 	function cumEffects(slave) {
+		V.cumSlaves += 1;
+
 		if (slave.energy > 95) {
-			r += ` Getting ${his} dick constantly milked is almost as good as getting constant blowjobs as far as ${he}'s concerned. <span class="devotion inc">${He} is happy</span> to have ${his} member receive so much attention.`;
+			r.text += ` Getting ${his} dick constantly milked is almost as good as getting constant blowjobs as far as ${he}'s concerned. <span class="devotion inc">${He} is happy</span> to have ${his} member receive so much attention.`;
 			slave.devotion += 1;
 		}
 
 		if (slave.need > 0) {
-			r += ` ${His} cock and balls are milked so thoroughly that ${he}'s involuntarily sexually sated, regardless of ${his} feelings and tastes.`;
+			r.text += ` ${His} cock and balls are milked so thoroughly that ${he}'s involuntarily sexually sated, regardless of ${his} feelings and tastes.`;
 			slave.need = 0;
 		}
 
 		if (!canAchieveErection(slave)) {
-			r += ` Since ${he} cannot maintain an erection, ${he} requires <span class="trust dec">painful</span> and <span class="devotion dec">degrading</span> anal electrostimulation to produce.`;
+			r.text += ` Since ${he} cannot maintain an erection, ${he} requires <span class="trust dec">painful</span> and <span class="devotion dec">degrading</span> anal electrostimulation to produce.`;
 			slave.devotion -= 2;
 			slave.trust -= 2;
 			if (slave.anus === 0) {
-				r += ` The electrostimulator <span class="virginity loss">breaks in ${his} virgin asshole.</span>`;
+				r.text += ` The electrostimulator <span class="virginity loss">breaks in ${his} virgin asshole.</span>`;
 				slave.anus = 1;
 			}
 		} else if (slave.devotion <= 20) {
-			r += ` Since ${he}'s unaroused by ${his} situation, ${he} requires <span class="trust dec">painful</span> and <span class="devotion dec">degrading</span> anal electrostimulation to produce.`;
+			r.text += ` Since ${he}'s unaroused by ${his} situation, ${he} requires <span class="trust dec">painful</span> and <span class="devotion dec">degrading</span> anal electrostimulation to produce.`;
 			slave.devotion -= 2;
 			slave.trust -= 2;
 			if (slave.anus === 0) {
-				r += ` The electrostimulator <span class="virginity loss">breaks in ${his} virgin asshole.</span>`;
+				r.text += ` The electrostimulator <span class="virginity loss">breaks in ${his} virgin asshole.</span>`;
 				slave.anus = 1;
 			}
 		}
@@ -678,11 +607,11 @@ App.SlaveAssignment.getMilked = (function() {
 		if (slave.balls < 3 && slave.ballType !== "sterile") {
 			if (slave.balls < 2) {
 				if (jsRandom(1, 100) > (70 + (slave.geneMods.NCS * 15))) {
-					r += ` Constant semen production and continual emptying and refilling <span class="change positive">increases the size of ${his} tiny testicles.</span>`;
+					r.text += ` Constant semen production and continual emptying and refilling <span class="change positive">increases the size of ${his} tiny testicles.</span>`;
 					slave.balls += 1;
 				}
 			} else if (jsRandom(1, 100) > (90 + (slave.geneMods.NCS * 5))) {
-				r += ` Constant semen production and continual emptying and refilling <span class="change positive">increases the size of ${his} small testicles.</span>`;
+				r.text += ` Constant semen production and continual emptying and refilling <span class="change positive">increases the size of ${his} small testicles.</span>`;
 				slave.balls += 1;
 			}
 		}
@@ -690,161 +619,143 @@ App.SlaveAssignment.getMilked = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function harvestGirlCum(slave) {
-		/* fluid = ((slave.prostate * (slave.energy / 5)) + 1); // Set it or else! */
-		r += ` ${His} female prostate fluid is considered an exotic delicacy.`;
+	 * @param {number} multiplier
+	 */
+	function harvestGirlCum(slave, multiplier) {
+		r.fluid = girlCumAmount(slave) * multiplier;
+		r.text += ` ${His} female prostate fluid is considered an exotic delicacy.`;
 		if (slave.vagina >= 0) {
 			if (slave.vaginaLube === 2) {
-				r += ` ${His} excessive vaginal secretions bolster the mix.`;
+				r.text += ` ${His} excessive vaginal secretions bolster the mix.`;
 			} else if (slave.vaginaLube === 1) {
-				r += ` ${His} natural vaginal secretions add to the mix.`;
+				r.text += ` ${His} natural vaginal secretions add to the mix.`;
 			}
 		}
 		if (slave.energy > 10) {
 			if (slave.health.condition > 50) {
 				if (slave.energy > 90) {
-					r += ` As a nympho, ${he} has no trouble orgasming almost constantly.`;
+					r.text += ` As a nympho, ${he} has no trouble orgasming almost constantly.`;
 				}
-				r += ` ${His} shining health keeps ${his} juices flowing.`;
+				r.text += ` ${His} shining health keeps ${his} juices flowing.`;
 			} else if (slave.health.condition < -50) {
-				r += ` ${He} is so unwell, ${he} produces less than normal.`;
+				r.text += ` ${He} is so unwell, ${he} produces less than normal.`;
 			}
 		} else {
 			/* slave.energy <= 10 */
-			r += ` Unfortunately, ${he} is frigid and rarely reaches orgasm in spite of the intense automatic stimulation.`;
-		}
-
-		// make sure fluidSale is set here
-		r += ` ${fluid} deciliters of uncommon ejaculate is gathered during ${his} milkings.`;
-		if (arcology.FSPastoralist !== "unset" && arcology.FSPastoralist > 30) {
-			r += ` Because of your arcology's cultural preferences, it comes with extra value.`;
+			r.text += ` Unfortunately, ${he} is frigid and rarely reaches orgasm in spite of the intense automatic stimulation.`;
 		}
-		r += ` It is sold for <span class="cash inc">${cashFormat(fluidSale)}.</span>`;
-	}
-
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 * */
-	function girlCumStatistics(slave, preview) {
-		fluid = girlCumAmount(slave);
 
-		fluidSale = (fluid * jsRandom(40, 50));
+		r.fluidSale = (r.fluid * jsRandom(40, 50));
+		r.text += ` ${capFirstChar(numberWithPluralOne(r.cum, "deciliter"))} of uncommon ejaculate is gathered during ${his} milkings.`;
 		if (arcology.FSPastoralist !== "unset" && arcology.FSPastoralist > 30) {
-			fluidSale = (Math.trunc(fluidSale*(1 + (arcology.FSPastoralist - 30) / 140))); /* fully accepted pastoralism gives +50% on the price*/
+			r.fluidSale = (Math.trunc(r.fluidSale*(1 + (arcology.FSPastoralist - 30) / 140))); /* fully accepted pastoralism gives +50% on the price*/
+			r.text += ` Because of your arcology's cultural preferences, it comes with extra value.`;
 		}
-
-		// Consider returning these if this function gets gutted
-		if (!preview) {
-			incomeStats.fluid = fluid;
-			incomeStats.income += fluidSale;
-		}
-
-		return fluidSale;
+		r.text += ` It is sold for <span class="cash inc">${cashFormat(r.fluidSale)}.</span>`;
 	}
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
+	 */
 	function physicalEffects(slave) {
-		if (milk + cum + fluid > 0) {
+		if (r.milk + r.cum + r.fluid > 0) {
 			if (slave.health.illness > 0 || slave.health.tired > 60) {
-				r += ` ${His} production was reduced this week due to<span class="cash dec">`;
+				r.text += ` ${His} production was reduced this week due to<span class="cash dec">`;
 				if (slave.health.illness === 1) {
-					r += ` malaise`;
+					r.text += ` malaise`;
 				} else if (slave.health.illness === 2) {
-					r += ` minor illness`;
+					r.text += ` minor illness`;
 				} else if (slave.health.illness === 3) {
-					r += ` sickness`;
+					r.text += ` sickness`;
 				} else if (slave.health.illness === 4) {
-					r += ` severe sickness`;
+					r.text += ` severe sickness`;
 				} else if (slave.health.illness === 5) {
-					r += ` terrible illness`;
+					r.text += ` terrible illness`;
 				}
 				if (slave.health.illness > 0 && slave.health.tired > 60) {
-					r += ` and`;
+					r.text += ` and`;
 				}
 				if (slave.health.tired > 90) {
-					r += ` exhaustion`;
+					r.text += ` exhaustion`;
 				} else if (slave.health.tired > 60) {
-					r += ` fatique`;
+					r.text += ` fatique`;
 				}
-				r += `.</span>`;
+				r.text += `.</span>`;
 			}
 			if (slave.assignment === Job.DAIRY) {
 				if (V.dairyRestraintsSetting > 1) {
-					r += ` The milking machine is merciless in its extraction of fluids from ${him}, but ${his} body is supplied with chimical stimulants to keep fatigue from setting in.`;
+					r.text += ` The milking machine is merciless in its extraction of fluids from ${him}, but ${his} body is supplied with chimical stimulants to keep fatigue from setting in.`;
 				} else if (V.dairyRestraintsSetting > 0) {
 					if (slaveResting(slave)) {
-						r += ` Resting doesn't stop ${him} from being thoroughly milked, but it does free ${him} from some of the associated chores, allowing ${him} time <span class="green">to snooze</span> in ${his} harness post harvesting.`;
+						r.text += ` Resting doesn't stop ${him} from being thoroughly milked, but it does free ${him} from some of the associated chores, allowing ${him} time <span class="green">to snooze</span> in ${his} harness post harvesting.`;
 					} else if (slave.health.tired + 9 >= 90 && !willWorkToDeath(slave)) {
-						r += ` ${He} attempts to skip out on milkings due to ${his} exhaustion, but can do little to avoid being dragged and strapped in to the milkers by `;
+						r.text += ` ${He} attempts to skip out on milkings due to ${his} exhaustion, but can do little to avoid being dragged and strapped in to the milkers by `;
 						if (V.MilkmaidID !== 0) {
-							r += `${S.Milkmaid.slaveName}.`;
+							r.text += `${S.Milkmaid.slaveName}.`;
 						} else {
-							r += `force.`;
+							r.text += `force.`;
 						}
-						r += ` ${He} quickly learns <span class="devotion inc">submission is the only choice</span> lest ${he} remain locked to the machine.`;
+						r.text += ` ${He} quickly learns <span class="devotion inc">submission is the only choice</span> lest ${he} remain locked to the machine.`;
 						slave.devotion += 2;
 					} else {
 						if (slave.devotion > 20) {
-							r += ` All that is expected from ${him} is to submit to the machine's manipulations. It can get a little tiring by the end of the day, `;
+							r.text += ` All that is expected from ${him} is to submit to the machine's manipulations. It can get a little tiring by the end of the day, `;
 							if (V.dairyFeedersSetting + V.dairyStimulatorsSetting + V.dairyPregSetting > 0) {
-								r += `<span class="red">moreso given the dairy's settings,</span> `;
+								r.text += `<span class="red">moreso given the dairy's settings,</span> `;
 							}
-							r += `but it is mostly managable.`;
+							r.text += `but it is mostly managable.`;
 						} else {
-							r += ` Spending so much time strapped to a machine and being forcibly drained is not only <span class="red">exhausting, `;
+							r.text += ` Spending so much time strapped to a machine and being forcibly drained is not only <span class="red">exhausting, `;
 							if (V.dairyFeedersSetting + V.dairyStimulatorsSetting + V.dairyPregSetting > 0) {
-								r += `especially given the dairy's settings, `;
+								r.text += `especially given the dairy's settings, `;
 							}
-							r += `</span> but also haunts ${him} even after ${he} is released from the session.`;
+							r.text += `</span> but also haunts ${him} even after ${he} is released from the session.`;
 						}
 					}
 				} else {
 					if (slaveResting(slave)) {
-						r += ` Resting doesn't stop ${him} from being thoroughly milked, but it does free ${him} from some of the associated chores, allowing ${him} time <span class="green">to catch some extra sleep</span> in ${his} stall.`;
+						r.text += ` Resting doesn't stop ${him} from being thoroughly milked, but it does free ${him} from some of the associated chores, allowing ${him} time <span class="green">to catch some extra sleep</span> in ${his} stall.`;
 					} else if (slave.health.tired + 9 >= 90 && !willWorkToDeath(slave)) {
-						r += ` ${He} attempts to skip out on milkings due to ${his} exhaustion, but can do little to avoid being dragged and hooked up to the milkers by `;
+						r.text += ` ${He} attempts to skip out on milkings due to ${his} exhaustion, but can do little to avoid being dragged and hooked up to the milkers by `;
 						if (V.MilkmaidID !== 0) {
-							r += `${S.Milkmaid.slaveName}.`;
+							r.text += `${S.Milkmaid.slaveName}.`;
 						} else {
-							r += `force.`;
+							r.text += `force.`;
 						}
-						r += ` ${He} quickly learns <span class="devotion inc">submitting to such a carefree life</span> is much easier than rebelling against it.`;
+						r.text += ` ${He} quickly learns <span class="devotion inc">submitting to such a carefree life</span> is much easier than rebelling against it.`;
 						slave.devotion += 2;
 					} else {
 						if (slave.devotion > 20) {
-							r += ` Being a free range cow is one of <span class="green">the most laid-back assignments</span> available. All that is required of ${him} is that ${he} lie back and get milked.`;
+							r.text += ` Being a free range cow is one of <span class="green">the most laid-back assignments</span> available. All that is required of ${him} is that ${he} lie back and get milked.`;
 						} else {
-							r += ` Being a free range cow can be one of the most laid-back assignments available, but ${he} fails to realize that and instead chooses to <span class="red">waste energy</span> struggling against the inevitable.`;
+							r.text += ` Being a free range cow can be one of the most laid-back assignments available, but ${he} fails to realize that and instead chooses to <span class="red">waste energy</span> struggling against the inevitable.`;
 						}
 					}
 				}
 				tired(slave);
 			} else if (slave.assignment === Job.MILKED) {
 				if (slaveResting(slave)) {
-					r += ` While less is required of ${him} during ${his} <span class="green">mandatory rest periods,</span> ${he} still needs to frequently visit the milkers, reducing the overall effectiveness of ${his} breaks.`;
+					r.text += ` While less is required of ${him} during ${his} <span class="green">mandatory rest periods,</span> ${he} still needs to frequently visit the milkers, reducing the overall effectiveness of ${his} breaks.`;
 				} else if (slave.health.tired + 8 >= 90 && !willWorkToDeath(slave)) {
-					r += ` ${He} attempts to skip out on milkings due to ${his} exhaustion, but can do little to avoid being dragged and hooked up to the milkers by `;
+					r.text += ` ${He} attempts to skip out on milkings due to ${his} exhaustion, but can do little to avoid being dragged and hooked up to the milkers by `;
 					if (V.dairy > 0 && V.universalRulesFacilityWork === 1 && V.dairySpots > 0 && V.MilkmaidID !== 0 && V.dairyRestraintsSetting < 2) {
-						r += `${S.Milkmaid.slaveName}.`;
+						r.text += `${S.Milkmaid.slaveName}.`;
 					} else {
-						r += `force.`;
+						r.text += `force.`;
 					}
-					r += ` ${His} <span class="devotion dec">protests</span> quickly fall silent as ${he} realizes struggling takes more energy than letting it happen.`;
+					r.text += ` ${His} <span class="devotion dec">protests</span> quickly fall silent as ${he} realizes struggling takes more energy than letting it happen.`;
 					slave.devotion -= 2;
 				} else {
-					r += ` ${His} assignment doesn't expect much from ${him}, `;
+					r.text += ` ${His} assignment doesn't expect much from ${him}, `;
 					if (slave.devotion > 20) {
-						r += `giving ${him} plenty of time to relax throughout the day.`;
+						r.text += `giving ${him} plenty of time to relax throughout the day.`;
 					} else {
-						r += `but ${he} complicates things, <span class="red">wasting energy</span> ${he} should be conserving for ${his} other responsibilities.`;
+						r.text += `but ${he} complicates things, <span class="red">wasting energy</span> ${he} should be conserving for ${his} other responsibilities.`;
 					}
 				}
 				tired(slave);
 			} else {
-				r += ` Having to visit the milkers and cleaning up afterwards takes some time out of ${his} breaks.`;
+				r.text += ` Having to visit the milkers and cleaning up afterwards takes some time out of ${his} breaks.`;
 				slave.health.tired += 2;
 			}
 		}
@@ -852,11 +763,11 @@ App.SlaveAssignment.getMilked = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
+	 */
 	function mentalEffects(slave) {
 		if (slave.assignment === window.Job.MILKED || (slave.assignment === window.Job.DAIRY && V.dairyRestraintsSetting < 2)) {
 			if (slave.behavioralQuirk === "fitness") {
-				r += ` ${slave.slaveName} <span class="devotion inc">privately enjoys</span> the focus on ${his} health and fitness that comes with being a cow.`;
+				r.text += ` ${slave.slaveName} <span class="devotion inc">privately enjoys</span> the focus on ${his} health and fitness that comes with being a cow.`;
 				slave.devotion += 1;
 			}
 		}
@@ -864,19 +775,19 @@ App.SlaveAssignment.getMilked = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * */
+	 */
 	function assignmentVignette(slave) {
 		const vignette = GetVignette(slave);
 		const FuckResult = FResult(slave); // Got to be something better than this
-		r += ` <span class="story-label">This week</span> ${vignette.text} `;
+		r.text += ` <span class="story-label">This week</span> ${vignette.text} `;
 		if (vignette.type === "cash") {
 			const cashVign = Math.trunc(FuckResult * vignette.effect);
 			if (vignette.effect > 0) {
-				r += `<span class="cash inc">making you an extra ${cashFormat(cashVign)}.</span>`;
+				r.text += `<span class="cash inc">making you an extra ${cashFormat(cashVign)}.</span>`;
 			} else if (vignette.effect < 0) {
-				r += `<span class="cash dec">losing you ${cashFormat(Math.abs(cashVign))}.</span>`;
+				r.text += `<span class="cash dec">losing you ${cashFormat(Math.abs(cashVign))}.</span>`;
 			} else {
-				r += `an incident without lasting effect.`;
+				r.text += `an incident without lasting effect.`;
 			}
 			if (slave.assignment === window.Job.MILKED) {
 				if (vignette.effect > 0) {
@@ -893,78 +804,78 @@ App.SlaveAssignment.getMilked = (function() {
 			} else {
 				cashX(cashVign, "slaveAssignmentExtraMilkVign", slave);
 			}
-			incomeStats.income += cashVign;
+			vignetteCash += cashVign;
 		} else if (vignette.type === "devotion") {
 			if (vignette.effect > 0) {
 				if (slave.devotion > 50) {
-					r += `<span class="devotion inc">increasing ${his} devotion to you.</span>`;
+					r.text += `<span class="devotion inc">increasing ${his} devotion to you.</span>`;
 				} else if (slave.devotion >= -20) {
-					r += `<span class="devotion inc">increasing ${his} acceptance of you.</span>`;
+					r.text += `<span class="devotion inc">increasing ${his} acceptance of you.</span>`;
 				} else if (slave.devotion >= -50) {
-					r += `<span class="devotion inc">reducing ${his} dislike of you.</span>`;
+					r.text += `<span class="devotion inc">reducing ${his} dislike of you.</span>`;
 				} else {
-					r += `<span class="devotion inc">reducing ${his} hatred of you.</span>`;
+					r.text += `<span class="devotion inc">reducing ${his} hatred of you.</span>`;
 				}
 			} else if (vignette.effect < 0) {
 				if (slave.devotion > 50) {
-					r += `<span class="devotion dec">reducing ${his} devotion to you.</span>`;
+					r.text += `<span class="devotion dec">reducing ${his} devotion to you.</span>`;
 				} else if (slave.devotion >= -20) {
-					r += `<span class="devotion dec">reducing ${his} acceptance of you.</span>`;
+					r.text += `<span class="devotion dec">reducing ${his} acceptance of you.</span>`;
 				} else if (slave.devotion >= -50) {
-					r += `<span class="devotion dec">increasing ${his} dislike of you.</span>`;
+					r.text += `<span class="devotion dec">increasing ${his} dislike of you.</span>`;
 				} else {
-					r += `<span class="devotion dec">increasing ${his} hatred of you.</span>`;
+					r.text += `<span class="devotion dec">increasing ${his} hatred of you.</span>`;
 				}
 			} else {
-				r += `an incident without lasting effect.`;
+				r.text += `an incident without lasting effect.`;
 			}
 			slave.devotion += (1 * vignette.effect);
 		} else if (vignette.type === "trust") {
 			if (vignette.effect > 0) {
 				if (slave.trust > 20) {
-					r += `<span class="trust inc">increasing ${his} trust in you.</span>`;
+					r.text += `<span class="trust inc">increasing ${his} trust in you.</span>`;
 				} else if (slave.trust >= -50) {
-					r += `<span class="trust inc">reducing ${his} fear of you.</span>`;
+					r.text += `<span class="trust inc">reducing ${his} fear of you.</span>`;
 				} else {
-					r += `<span class="trust inc">reducing ${his} terror of you.</span>`;
+					r.text += `<span class="trust inc">reducing ${his} terror of you.</span>`;
 				}
 			} else if (vignette.effect < 0) {
 				if (slave.trust > 20) {
-					r += `<span class="trust dec">reducing ${his} trust in you.</span>`;
+					r.text += `<span class="trust dec">reducing ${his} trust in you.</span>`;
 				} else if (slave.trust >= -20) {
-					r += `<span class="trust dec">increasing ${his} fear of you.</span>`;
+					r.text += `<span class="trust dec">increasing ${his} fear of you.</span>`;
 				} else {
-					r += `<span class="trust dec">increasing ${his} terror of you.</span>`;
+					r.text += `<span class="trust dec">increasing ${his} terror of you.</span>`;
 				}
 			} else {
-				r += `an incident without lasting effect.`;
+				r.text += `an incident without lasting effect.`;
 			}
 			slave.trust += (1 * vignette.effect);
 		} else if (vignette.type === "health") {
 			if (vignette.effect > 0) {
-				r += `<span class="health inc">improving ${his} health.</span>`;
+				r.text += `<span class="health inc">improving ${his} health.</span>`;
 			} else if (vignette.effect < 0) {
-				r += `<span class="health dec">affecting ${his} health.</span>`;
+				r.text += `<span class="health dec">affecting ${his} health.</span>`;
 			} else {
-				r += `an incident without lasting effect.`;
+				r.text += `an incident without lasting effect.`;
 			}
 			improveCondition(slave, 2 * vignette.effect);
 		} else {
 			if (vignette.effect > 0) {
-				r += `<span class="reputation inc">gaining you a bit of reputation.</span>`;
+				r.text += `<span class="reputation inc">gaining you a bit of reputation.</span>`;
 			} else if (vignette.effect < 0) {
-				r += `<span class="reputation dec">losing you a bit of reputation.</span>`;
+				r.text += `<span class="reputation dec">losing you a bit of reputation.</span>`;
 			} else {
-				r += `an incident without lasting effect.`;
+				r.text += `an incident without lasting effect.`;
 			}
 			repX(Math.trunc(FuckResult * vignette.effect * 0.1), "vignette", slave);
-			incomeStats.rep += Math.trunc(FuckResult * vignette.effect * 0.1);
+			vignetteRep += Math.trunc(FuckResult * vignette.effect * 0.1);
 		}
 	}
 
 	// FACILITY DECORATION IMPACTS
 	function applyFSDecoration() {
-		const fsGain = 0.0001 * (milk + (5 * cum));
+		const fsGain = 0.0001 * (r.milk + (5 * r.cum));
 		FutureSocieties.DecorationBonus(V.dairyDecoration, fsGain);
 	}
 })();
diff --git a/src/endWeek/servantsQuartersReport.js b/src/endWeek/servantsQuartersReport.js
index 8567aec2adaa29fc7fdf530b60bca8a09b8a0037..9a4e71070c732e21418410da3f476d2734525dda 100644
--- a/src/endWeek/servantsQuartersReport.js
+++ b/src/endWeek/servantsQuartersReport.js
@@ -222,7 +222,6 @@ App.EndWeek.servantsQuartersReport = function() {
 		}
 	}
 
-	V.servantMilkersMultiplier = 0.5;
 	let SQMilk = 0;
 	let SQMilkSale = 0;
 
@@ -303,9 +302,10 @@ App.EndWeek.servantsQuartersReport = function() {
 			$(servantContent).append(`${He} ${App.SlaveAssignment.servant(slave, stewardessBonus)}`);
 			if ((V.servantMilkers === 1) && (slave.lactation > 0)) {
 				const milkContent = App.UI.DOM.appendNewElement("div", slaveEntry, '', "indent");
-				$(milkContent).append(`${He} ${App.SlaveAssignment.getMilked(slave)}`);
-				SQMilk += V.milk;
-				SQMilkSale += V.milkSale;
+				const milkResults = App.SlaveAssignment.getMilked(slave, 0.5);
+				$(milkContent).append(`${He} ${milkResults.text}`);
+				SQMilk += milkResults.milk;
+				SQMilkSale += milkResults.milkSale;
 			}
 			$(slaveEntry).append(App.SlaveAssignment.standardSlaveReport(slave, false));
 		} else {
@@ -313,9 +313,9 @@ App.EndWeek.servantsQuartersReport = function() {
 			App.SlaveAssignment.choosesOwnJob(slave);
 			App.SlaveAssignment.servant(slave, stewardessBonus);
 			if ((V.servantMilkers === 1) && (slave.lactation > 0)) {
-				App.SlaveAssignment.getMilked(slave);
-				SQMilk += V.milk;
-				SQMilkSale += V.milkSale;
+				const milkResults = App.SlaveAssignment.getMilked(slave, 0.5);
+				SQMilk += milkResults.milk;
+				SQMilkSale += milkResults.milkSale;
 			}
 			App.SlaveAssignment.standardSlaveReport(slave, true);
 		}
@@ -331,7 +331,6 @@ App.EndWeek.servantsQuartersReport = function() {
 		$(decorationEffects).append(`${capFirstChar(V.servantsQuartersName)}'s ${V.servantsQuartersDecoration} atmosphere <span class="hotpink">has a minor impact on your servants.</span>`);
 	}
 
-	V.servantMilkersMultiplier = 1;
 	repX(slaves.length * 20, "servantsQuarters");
 
 	return frag;
diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index 65123bbca5f07c4935bf52372ffe9266bc29fae0..5d1011882d218d812ce21d120f12ae1f472ad0eb 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -2205,10 +2205,10 @@ globalThis.FResultTooltip = function(slave, forSale = 0) {
  * @returns {number}
  */
 globalThis.slaveCost = function(slave, isStartingSlave = false, followLaws = false, isSpecial = false) {
-	const milked = App.SlaveAssignment.getMilked(slave, true);
+	const milked = App.SlaveAssignment.getMilked(slave, 1.0, true);
 	const beauty = slaveCostBeauty(slave, isStartingSlave, followLaws, isSpecial);
-	if ((milked * 52) > beauty && !isStartingSlave) { // Arbitrarily, let's say their milk worth is what they would make in a year. Blocking starting slave for now because milk makes so much money, the estimation makes game start impossible.
-		return milked * 52;
+	if ((milked.cash * 52) > beauty && !isStartingSlave) { // Arbitrarily, let's say their milk worth is what they would make in a year. Blocking starting slave for now because milk makes so much money, the estimation makes game start impossible.
+		return milked.cash * 52;
 	} else {
 		return beauty;
 	}
diff --git a/src/uncategorized/arcadeReport.tw b/src/uncategorized/arcadeReport.tw
index 63d8a79b5c926855a259a726b50656c2c4bf0433..1e749e8c1620b109e9bf0364e8e5ecf07a906183 100644
--- a/src/uncategorized/arcadeReport.tw
+++ b/src/uncategorized/arcadeReport.tw
@@ -96,13 +96,11 @@
 			<<set _pSlave = _slave>>
 			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", _slave), surgeryDamage(_slave, 10)>>
 		<<elseif (_slave.lactation > 0) || (_slave.balls > 0)>>
-			<<set _oldCash = $cash>>
+			<<set _milkResults = App.SlaveAssignment.getMilked(_slave, 1.0)>>
 			<<if $showEWD != 0>>
-				<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= App.SlaveAssignment.getMilked(_slave)>>
-			<<else>>
-				<<run App.SlaveAssignment.getMilked(_slave)>>
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= _milkResults.text>>
 			<</if>>
-			<<set _milkProfits += $cash-_oldCash>>
+			<<set _milkProfits += _milkResults.cash>>
 			<<set _growth = 0>>
 			<<set _gigantomastiaMod = _slave.geneticQuirks.gigantomastia == 2 ? (_slave.geneticQuirks.macromastia == 2 ? 3 : 2) : 1>>
 			<<if (_slave.boobs < 2000)>>
diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw
index 102454f267d583e6fb77ced948662a26ba68b3c5..df83f2d93c4a31fbebbc2f42da5ed66e497a53a6 100644
--- a/src/uncategorized/dairyReport.tw
+++ b/src/uncategorized/dairyReport.tw
@@ -415,7 +415,8 @@
 			is serving as a cow in $dairyName.
 		<</if>>
 		<<includeDOM App.EndWeek.favoriteIcon(_slave)>>
-		<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= App.SlaveAssignment.getMilked(_slave)>>
+		<<set _milkResults = App.SlaveAssignment.getMilked(_slave)>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= _milkResults.text>>
 		<br>&nbsp;&nbsp;&nbsp;
 		<<include "SA rules">>
 		<<= App.SlaveAssignment.diet(_slave)>>
@@ -427,7 +428,7 @@
 	<<else>>
 		<<silently>>
 		<<run App.SlaveAssignment.choosesOwnJob(_slave)>>
-		<<run App.SlaveAssignment.getMilked(_slave)>>
+		<<set _milkResults = App.SlaveAssignment.getMilked(_slave)>>
 		<<include "SA rules">>
 		<<run App.SlaveAssignment.diet(_slave)>>
 		<<include "SA long term effects">>
@@ -437,7 +438,7 @@
 		<<run App.SlaveAssignment.devotion(_slave)>>
 		<</silently>>
 	<</if>>
-	<<set _milkWeek += $milk, _cumWeek += $cum>>
+	<<set _milkWeek += _milkResults.milk, _cumWeek += _milkResults.cum>>
 
 	/* Facility Specific End of Week effects */
 	<<if (_slave.devotion <= 20) && (_slave.trust >= -20)>>
diff --git a/src/uncategorized/fullReport.tw b/src/uncategorized/fullReport.tw
index f11c6156577e26e4b171ad068113c75af1558037..a3112a04485bf99639235fa2d1c82043c63d982c 100644
--- a/src/uncategorized/fullReport.tw
+++ b/src/uncategorized/fullReport.tw
@@ -20,8 +20,8 @@
 <<case "work a glory hole">>
 	<<= App.SlaveAssignment.workAGloryHole($slaves[$i])>>
 <<case "get milked">>
-	<<set $servantMilkersMultiplier = 1>>
-	<<= App.SlaveAssignment.getMilked($slaves[$i])>>
+	<<set _milkResults = App.SlaveAssignment.getMilked($slaves[$i])>>
+	<<= _milkResults.text>>
 <<case "take classes">>
 	<<= App.SlaveAssignment.takeClasses($slaves[$i])>>
 <<case "please you">>
@@ -47,14 +47,12 @@
 	$His assignment
 	<<if setup.servantMilkersJobs.includes($slaves[$i].assignment)>>
 		is not strenuous, so $he <<if $slaves[$i].devotion > 20>><<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses<<elseif $slaves[$i].devotion >= -20>>is required to use<<else>>is forced to use<</if>> the penthouse milkers frequently,
-		<<set $servantMilkersMultiplier = 0.5>>
+		<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.5)>>
 	<<else>>
 		keeps $him busy, but $he <<if $slaves[$i].devotion > 20>><<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses<<elseif $slaves[$i].devotion >= -20>>is required to use<<else>>is forced to use<</if>> the penthouse milkers whenever $he can,
-		<<set $servantMilkersMultiplier = 0.25>>
+		<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
 	<</if>>
-	<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-	<<set $servantMilkersMultiplier = 1>>
-	and $he gives $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+	and $he gives <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 <</if>>
 
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw
index 5c486de75a04e39ee68de7d91c1b98f06b3c3eb4..4447fe17a1378cb9b7d30508efaf58870c864bb5 100644
--- a/src/uncategorized/saRules.tw
+++ b/src/uncategorized/saRules.tw
@@ -165,10 +165,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					Whenever $he finds a free moment from $his duties, $he takes the time to thoroughly milk $his breasts to keep $his lactation strong for you.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -630,10 +628,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					$He has worked milking $himself into $his dance routines, both entertaining the crowd and keeping $his lactation strong for you.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -1056,10 +1052,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					It's not unusual to see $him tending to $his patients with a pair of breast pumps sucking away at $his breasts.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -1350,10 +1344,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					$He works maintaining $his lactation into $his duties; when $he feels $his chest has grown too heavy, the nearest prisoner had better have an appetite or there will be punishment.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -1599,10 +1591,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					Whenever $he finds a free moment from $his duties, $he takes the time to thoroughly milk $his breasts to keep $his lactation strong for you.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -2011,10 +2001,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					Whenever $he finds a free moment from $his duties, $he takes the time to thoroughly milk $his breasts to keep $his lactation strong for you.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -2437,10 +2425,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					$He makes sure to give a special lecture whenever $his breasts start to feel full on the proper methods to milk a $girl.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -2832,10 +2818,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					Whenever $he finds a free moment from $his duties, $he takes the time to thoroughly milk $his breasts to keep $his lactation strong for you.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
@@ -3284,10 +3268,8 @@
 				<<if $slaves[$i].lactation == 1>><<set $slaves[$i].rules.lactation = "maintain">><</if>>
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses milkers whenever $he can,
-				<<set $servantMilkersMultiplier = 0.75>>
-				<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-				<<set $servantMilkersMultiplier = 1>>
-				giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+				<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+				giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 			<</if>>
 
 			<<= App.SlaveAssignment.rewardAndPunishment($slaves[$i])>>
@@ -3797,10 +3779,8 @@
 			<<elseif $slaves[$i].rules.lactation == "maintain">>
 				<<if $servantMilkers == 1>>
 					$His duties keep $him busy, but $he <<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses the penthouse milkers whenever $he can,
-					<<set $servantMilkersMultiplier = 0.25>>
-					<<run App.SlaveAssignment.getMilked($slaves[$i])>>
-					<<set $servantMilkersMultiplier = 1>>
-					giving $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
+					<<set _milkResult = App.SlaveAssignment.getMilked($slaves[$i], 0.25)>>
+					giving <<= _milkResult.milk>> liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat(_milkResult.milkSale)>>.@@
 				<<else>>
 					Whenever $he finds a free moment from $his duties, $he takes the time to thoroughly milk $his breasts to keep $his lactation strong for you.
 					<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>