diff --git a/src/endWeek/facilityLeaderSex.js b/src/endWeek/facilityLeaderSex.js index 656c4e81d7324893bd3ffe3737c9077e6b736664..5e92d89f8e55d6a80c59e05dcfe1d72122244398 100644 --- a/src/endWeek/facilityLeaderSex.js +++ b/src/endWeek/facilityLeaderSex.js @@ -38,18 +38,27 @@ App.EndWeek.getFLSex = function(facility) { const employeeSex = new Set(); const fl = facility.manager ? facility.manager.currentEmployee : null; if (fl && App.Data.misc.sexFromDevelopmentLeaders.includes[fl.assignment]) { - const hornyEmployees = facility.employees().filter((s) => s.devotion >= -50 /* not unhappy */ && s.energy > 20 /* not frigid */); - for (const emp of hornyEmployees) { - if (fl.assignment === Job.NURSE && App.EndWeek.getClinicPartner(emp).type !== "nurse") { - continue; // nurse is busy, will not have sex with patients who are satisfied by someone else - } - if (fl.assignment === Job.WARDEN && emp.relationship === -3) { - continue; // wardeness will never molest the PC's spouse - } + facility.employees().filter(s => flWillFuck(s)).forEach(s => employeeSex.add(s.ID)); + } + return employeeSex; + + /** @param {App.Entity.SlaveState} emp */ + function flWillFuck(emp) { + const horny = (s) => s.devotion >= -50 /* not unhappy */ && s.energy > 20 /* not frigid */; + if (fl.assignment === Job.WARDEN && fl.fetish === "mindbroken") { + return true; // mindbroken warden ignores rules, rapes everyone + } + if (fl.assignment === Job.NURSE && App.EndWeek.getClinicPartner(emp).type !== "nurse") { + return false; // nurse is busy, will not have sex with patients who are satisfied by someone else + } + if (fl.assignment === Job.WARDEN && emp.relationship === -3) { + return false; // wardeness will never molest the PC's spouse + } + if (horny(emp) || fl.assignment === Job.WARDEN) { // only the warden will routinely rape frigid/unhappy slaves if (App.Utils.sexAllowed(emp, fl)) { // no sex with a slave you've forbidden them to fuck - employeeSex.add(emp.ID); + return true; } } + return false; } - return employeeSex; }; diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw index fc59461007da33c079e2fececd02de5d2a1c1ec7..8632db171a428213842f9c5fd68caaf297692723 100644 --- a/src/uncategorized/saRules.tw +++ b/src/uncategorized/saRules.tw @@ -875,11 +875,7 @@ <<= App.SlaveAssignment.rewardAndPunishment($slaves[$i])>> <<case "be the Wardeness">> - <<if _S.Wardeness.fetish == "mindbroken">> - <<set $slaves[$i].need -= (_L.cellblock*5)>> - <<else>> - <<set $slaves[$i].need -= ($flSex.size*5)>> - <</if>> + <<set $slaves[$i].need -= ($flSex.size*5)>> <<if $slaves[$i].energy <= 20>> is frigid and has little interest in getting off<<if App.Utils.releaseRestricted($slaves[$i])>>, making the rule restricting $his sexual outlets superfluous<</if>>. <<set $slaves[$i].need = 0>> @@ -926,7 +922,7 @@ <<= App.SlaveAssignment.rewardAndPunishment($slaves[$i])>> <<case "be confined in the cellblock">> <<set _wardenFunTimes = 0>> - <<if $flSex.has($slaves[$i].ID) || _S.Wardeness.fetish == "mindbroken">> + <<if $flSex.has($slaves[$i].ID)>> <<set _wardenFunTimes = random(0,5)>> <<set $slaves[$i].need -= (10*_wardenFunTimes)>> <</if>>