diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index 29546f43ab5b6260c2d6b4bb31be0312ecc2a9af..5f56d1a074533b9f25e1cf88347273efca70aafe 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -16,7 +16,7 @@ App.EndWeek.dairyReport = function() { const inflatedSlaves = App.Facilities.Dairy.inflation(); const dairySettings = V.dairyStimulatorsSetting + V.dairyFeedersSetting + V.dairyPregSetting; const restrainedInjected = V.dairyRestraintsSetting + V.injectionUpgrade; - const boobsCalc = Math.trunc(V.injectionUpgrade * 2) + V.dairyRestraintsSetting + V.dairyFeedersSetting; + const boobsMultiplier = Math.trunc(V.injectionUpgrade * 2) + V.dairyRestraintsSetting + V.dairyFeedersSetting; V.bioreactorPerfectedID = 0; V.legendaryBallsID = 0; V.legendaryCowID = 0; @@ -628,14 +628,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 50000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++; @@ -651,14 +651,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 25000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++; @@ -673,14 +673,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 10000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++; @@ -694,14 +694,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 5000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++; @@ -771,14 +771,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 50000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++; @@ -792,14 +792,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 25000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++; @@ -813,14 +813,14 @@ App.EndWeek.dairyReport = function() { if (slave.boobs < 10000) { if (V.arcologies[0].FSAssetExpansionistResearch === 1) { if (slave.boobs < 2000) { - growth = 75 * boobsCalc + (50 / 4); + growth = 75 * boobsMultiplier + (50 / 4); } else if (slave.boobs < 5000 * gigantomastiaMod) { - growth = 50 * boobsCalc + (50 / 4); + growth = 50 * boobsMultiplier + (50 / 4); } else { - growth = 25 * boobsCalc + (50 / 4); + growth = 25 * boobsMultiplier + (50 / 4); } } else { - growth = 25 * boobsCalc + ((50 - slave.physicalAge) / 4); + growth = 25 * boobsMultiplier + ((50 - slave.physicalAge) / 4); } if (slave.boobs <= 20000 && slave.boobs + growth > 20000) { boobtacular++;