From 1cced197aafd7507cb3330ca5576b3f349610885 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Mon, 8 Jul 2024 22:29:29 -0400 Subject: [PATCH] Fix broken/missing variables --- src/events/RE/reReputedDaughter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/events/RE/reReputedDaughter.js b/src/events/RE/reReputedDaughter.js index 44752cbb002..00ec38934c6 100644 --- a/src/events/RE/reReputedDaughter.js +++ b/src/events/RE/reReputedDaughter.js @@ -12,7 +12,7 @@ App.Events.REReputedDaughter = class REReputedDaughter extends App.Events.BaseEv (s) => s.dick > 3, (s) => s.actualAge > V.fertilityAge, // the slave is older than the addict daughter (s) => s.visualAge > V.minimumSlaveAge, - (s) => s.prestige > 0 || s.porn.prestige > 0 || slaveCost(s) > 20000 || beauty(s) > 150, // the slave must be worth a minimum or be very attractive + (s) => s.prestige > 0 || s.porn.prestige > 0 || slaveCost(s) > 20000 || Beauty(s) > 150, // the slave must be worth a minimum or be very attractive (s) => isFullyPotent(s) ? V.week - s.weekAcquired > 12 : V.week - s.weekAcquired > 8, // if the slave is potent must have been able to impregnate the daughter to the point of showing canWalk, canPenetrate, @@ -28,7 +28,7 @@ App.Events.REReputedDaughter = class REReputedDaughter extends App.Events.BaseEv const {HeF, heF, hisF, himF, womanF, fatherF} = getNonlocalPronouns(PC.title === 0 && FutureSocieties.isActive("FSGenderRadicalist") ? 0 : 100).appendSuffix('F'); const newAge = Math.max(V.minimumSlaveAge, V.fertilityAge - (V.precociousPuberty ? V.pubertyHormones ? 3 : 1 : 0)); const rDaughter = GenerateNewSlave("XX", {minAge: newAge, maxAge: newAge, race: "nonslave", disableDisability: 1}); - const {HisD, heD, hisD, himD, girlD, daughterD} = getPronouns(rDaughter).appendSuffix('D'); + const {HisD, HeD, heD, hisD, himD, girlD, daughterD} = getPronouns(rDaughter).appendSuffix('D'); const kid = rDaughter.actualAge > 12 ? rDaughter.actualAge < 18 ? "teenager" : "young "+ girlD : "kid"; const child = rDaughter.actualAge > 12 ? girlD : "child"; const VIP = FutureSocieties.isActive("FSRestart") ? V.arcologies[0].FSNeoImperialistLaw2 === 1 ? "Baron" : "member of the Social Elite" : "slaveowner"; @@ -115,7 +115,7 @@ App.Events.REReputedDaughter = class REReputedDaughter extends App.Events.BaseEv if (preggers) { r.push(`is carrying ${slave.slaveName}'s child and that ${heD}`); } - r.push(`has spent a significant sum of money on${V.policies.sexualOpenness === 0 ? ` aberrant` : ""} sex, aphrodisiacs and other drugs meant for slaves. Before your other guests, ${feF} declares that ${heF} no longer regards ${himD} as ${hisF} ${daughterD} and that ${heD} has been banished from the family registry. Furthermore, even though ${heF} would prefer to never see ${himD} again, ${heD} will be serving as a slave in ${hisF} household going forward as repayment.`); + r.push(`has spent a significant sum of money on${V.policies.sexualOpenness === 0 ? ` aberrant` : ""} sex, aphrodisiacs and other drugs meant for slaves. Before your other guests, ${heF} declares that ${heF} no longer regards ${himD} as ${hisF} ${daughterD} and that ${heD} has been banished from the family registry. Furthermore, even though ${heF} would prefer to never see ${himD} again, ${heD} will be serving as a slave in ${hisF} household going forward as repayment.`); App.Events.addParagraph(node, r); r = []; r.push(`You observe the ${kid}, who appears to be simultaneously nervous and excited. ${HisD} blatant dependence on aphrodisiacs is unmistakable. Considering ${hisD} privileged upbringing and reputable background, it is reasonable to assume that ${heD} has the capacity to excel as a sexual slave, rather than merely serving as a domestic servant.`); @@ -750,7 +750,7 @@ App.Events.REReputedDaughter = class REReputedDaughter extends App.Events.BaseEv return r; } else if (action === "mutilated" || action === "exitus") { const exitus = action === "exitus"; - r.push(`After learning of what happened to ${slave.slaveName}, <span class="trust dec">${her} peers are terrified</span> that any accusation against them, no matter how fabricated, ${exitus ? `could lead to their death` : `could have serious consequences`}. Those not devoted to you begin to believe that <span class="devotion dec">you'll be their demise.</span>`); + r.push(`After learning of what happened to ${slave.slaveName}, <span class="trust dec">${his} peers are terrified</span> that any accusation against them, no matter how fabricated, ${exitus ? `could lead to their death` : `could have serious consequences`}. Those not devoted to you begin to believe that <span class="devotion dec">you'll be their demise.</span>`); if (mindbroken) { r.push(`This opinion of you is further tarnished by the fact that ${slave.slaveName} ${exitus ? "was" : "is"} mindbroken and incapable of doing anything wrong on purpose.`); } -- GitLab