diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js index 9409e11db3f0bab886a50ff7ea53afde3a60dd2c..e5f97db94e6de77b879a3414084a99cff41ba06c 100644 --- a/src/endWeek/healthFunctions.js +++ b/src/endWeek/healthFunctions.js @@ -401,7 +401,12 @@ globalThis.tired = function(slave) { } else if ([Job.BODYGUARD].includes(slave.assignment)) { assignment += 18; // A tough assignment with a girl that doesn't use her provided room unless it is attached to yours. } else if ([Job.HEADGIRL].includes(slave.assignment)) { - assignment += 22; // Always busy. Could benefit from a helper... + if (slaveResting(slave)) { + assignment -= 40; + V.slaveUsedRest = 1; + } else { + assignment += 22; // Always busy. Could benefit from a helper... + } } else if (App.Data.misc.facilityHeads.includes(slave.assignment)) { // Heads are very busy, but always have luxurious conditions, so it balances out, save for the exceptions if (slaveResting(slave)) { assignment -= 10; diff --git a/src/endWeek/saBeYourHeadGirl.js b/src/endWeek/saBeYourHeadGirl.js index c8778af1a32b93520259ba549c387a42680e601f..7aba01c8027a05e5ebd76130de40a385656d2cd2 100644 --- a/src/endWeek/saBeYourHeadGirl.js +++ b/src/endWeek/saBeYourHeadGirl.js @@ -52,6 +52,7 @@ App.SlaveAssignment.beYourHeadGirl = (function() { if (V.HGSuite === 1) { slave.rules.living = "luxurious"; } + slave.rules.rest = "restrictive"; tired(slave); } @@ -134,7 +135,7 @@ App.SlaveAssignment.beYourHeadGirl = (function() { } } if (V.HGEnergy === 0) { - r.push(`${He} was <span class="red">too exhausted</span> to make any real progress with your slaves this week, however.`); + r.push(`${He} notices ${his} <span class="red">fatigue getting in the way</span> of training your slaves, so ${he} focuses ${his} attention on ${himself} this week to <span class="green">rectify this.</span>`); } } diff --git a/src/endWeek/slaveAssignmentReport.js b/src/endWeek/slaveAssignmentReport.js index 063e73692260bcd517ff5537392edd154c954959..362dea6afc9d7ef5cebdc329fcb91124550e5d3f 100644 --- a/src/endWeek/slaveAssignmentReport.js +++ b/src/endWeek/slaveAssignmentReport.js @@ -175,8 +175,8 @@ App.EndWeek.slaveAssignmentReport = function() { if (arcology.FSChineseRevivalistLaw === 1) { V.HGEnergy++; } - if (slave.health.tired > 90) { - V.HGEnergy--; + if (slaveResting(slave)) { + V.HGEnergy = 0; } if (canAchieveErection(slave)) { V.HGCum = 2 + Math.trunc((slave.balls / 5) + (slave.energy / 95) + (slave.health.condition / 95) + (slave.devotion / 95) + (V.reproductionFormula * 5)); diff --git a/src/js/assignJS.js b/src/js/assignJS.js index 66543a13f8c97c830b3084bec3f617b10613e31e..9551ecb13cca1c4f037939bdea4a29a285fe7adf 100644 --- a/src/js/assignJS.js +++ b/src/js/assignJS.js @@ -376,6 +376,7 @@ globalThis.assignJob = function(slave, job) { if (V.HGSuite === 1) { slave.rules.living = LivingRule.LUXURIOUS; } + slave.rules.rest = RestRule.MID; V.HGTimeInGrade = 0; break;