diff --git a/src/endWeek/saSocialEffects.js b/src/endWeek/saSocialEffects.js index bda16c9945ec1a4c523c91dd5aaf9500b60b28a7..d96c7642426f57884f26d72ef7cb7c3d306b181c 100644 --- a/src/endWeek/saSocialEffects.js +++ b/src/endWeek/saSocialEffects.js @@ -520,6 +520,9 @@ App.SlaveAssignment.saSocialEffects = function(slave) { } else if ([Job.HEADGIRL, Job.ATTENDANT, Job.FARMER, Job.MADAM, Job.MATRON, Job.NURSE, Job.TEACHER, Job.STEWARD, Job.BODYGUARD].includes(slave.assignment)) { t.push(new SocialEffect("Intellectual Dependency", 0, `Intelligence required by job`, `Society understands the value of intelligence in ${his} appointed position and is willing to overlook it.`)); + } else if ([Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment) && (slave.intelligence + slave.intelligenceImplant > 10)) { + t.push(new SocialEffect("Intellectual Dependency", 1, `Smart Fuckmeat`, + `Society finds it <span class="green">amusing</span> to see a smart slave being reduced to nothing but a set of holes; ${his} intelligence will not bore anyone here.`)); } else if ((slave.intelligence + slave.intelligenceImplant > 10)) { t.push(new SocialEffect("Intellectual Dependency", -1, `Too smart`, `Society <span class="red">disapproves</span> of ${slave.slaveName}'s sharp mind; this holds back acceptance of the idea that slaves should be dumb and dependent.`)); @@ -527,6 +530,9 @@ App.SlaveAssignment.saSocialEffects = function(slave) { if (slave.energy > 95) { t.push(new SocialEffect("Intellectual Dependency", 1, `Nymphomania`, `Society <span class="green">approves</span> of ${slave.slaveName}'s bottomless lust, showing the public one more way a slave may be reliant on ${his} owner.`)); + } else if ([Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment) && (slave.energy <= 60)) { + t.push(new SocialEffect("Intellectual Dependency", 0, `Low Libido Fuckmeat`, + `Society doesn't care about ${slave.slaveName}'s low libido because interest in sex is irrelevant to a fuckhole.`)); } else if ((slave.energy <= 60)) { t.push(new SocialEffect("Intellectual Dependency", -1, `Low libido`, `Society <span class="red">disapproves</span> of ${slave.slaveName}'s restrained libido; to the public, this gives ${him} too much freedom to focus on things other than sex.`)); @@ -674,9 +680,15 @@ App.SlaveAssignment.saSocialEffects = function(slave) { `Society <span class="green">approves</span> of your owning a Fuckdoll.`)); transformed += 5; // total transformation } - if (transformed === 0) { + if (transformed === 0 && [Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment)) { + t.push(new SocialEffect("Transformation Fetishist", 0, `Totally unmodified fuckmeat`, + `Society finds ${slave.slaveName}'s totally unmodified body very boring but agrees that a simple fuckhole probably doesn't deserve a transformation.`)); + } else if (transformed === 0) { t.push(new SocialEffect("Transformation Fetishist", -2, `Totally unmodified`, `Society <span class="red">strongly disapproves</span> of ${slave.slaveName}'s complete lack of any obvious transformations; ${he} does not advance the ideal of body modification.`)); + } else if (transformed === 1 && [Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment)) { + t.push(new SocialEffect("Transformation Fetishist", 0, `Slightly modified fuckmeat`, + `Society accepts the amount of modifications ${slave.slaveName} has; it is not much and it is not making anyone excited but it is enough for a lowly fuckhole.`)); } else if (transformed === 1) { t.push(new SocialEffect("Transformation Fetishist", -1, `Too few modifications`, `Society <span class="red">disapproves</span> of ${slave.slaveName}'s mostly-natural appearance; more transformations would help advance the ideal of body modification.`)); @@ -742,7 +754,10 @@ App.SlaveAssignment.saSocialEffects = function(slave) { `Society <span class="green">approves</span> of ${his} expanded lips.`)); assets++; } - if (assets === 0) { + if (assets === 0 && [Job.ARCADE, Job.GLORYHOLE].includes(slave.assignment)) { + t.push(new SocialEffect("Asset Expansionist", 0, `Unexceptional fuckmeat`, + `Society is not thrilled about ${his} small assets but accepts ${his} role as a mere fuckhole; it is a proper job for such a poor slave.`)); + } else if (assets === 0) { t.push(new SocialEffect("Asset Expansionist", -1, `Unexceptional assets`, `Society <span class="red">is disappointed</span> by ${his} normal-sized (or even petite, by expansionist standards) assets.`)); }