diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 310efece2cb08efcf50c74d3685f3f0a373fbf2c..ce43a6f4479e8ea25e90a384196eced9287dc31d 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,8 +2,21 @@ 0.10.7.1-0.1.x +5/05/2018 + + 86.1 + -added a catch to prevent possible failed rival gen under unknown circumstances + + 86 + -overhauled saPleaseYou + -fixed .pregWeek quirks with cheat edit pregnancy (hopefully) + -removed PC's ability to impregnate fucktoys in reFullBed regardless of if they can become pregnant and whether or not you actually have a dick + 5/04/2018 + 85 + -fixes + 84 -fixed FResult undefined bug diff --git a/devNotes/twine JS b/devNotes/twine JS index 15f1ddc9279d942e2455629ee501424095c6099e..6e27064674bd488a7acc433eb2b0032df88ae63d 100644 --- a/devNotes/twine JS +++ b/devNotes/twine JS @@ -242,11 +242,11 @@ window.canGetPregnant = function(slave) { return null; } else if (slave.preg == -1) { /* contraceptives check */ return false; - } else if (isFertile(slave) == false) { /* check other fertility factors */ + } else if (!isFertile(slave)) { /* check other fertility factors */ return false; - } else if ((slave.ovaries == 1) && (canDoVaginal(slave) == true)) { + } else if ((slave.ovaries == 1) && (canDoVaginal(slave))) { return true; - } else if ((slave.mpreg == 1) && (canDoAnal(slave) == true)) { /* pregmod */ + } else if ((slave.mpreg == 1) && (canDoAnal(slave))) { /* pregmod */ return true; } else { return false; @@ -280,9 +280,9 @@ window.canImpreg = function(slave1, slave2) { return false; } else if (slave2.vasectomy == 1) { return false; - } else if (canBreed(slave1, slave2) == false) { + } else if (!canBreed(slave1, slave2)) { return false; /* pregmod end */ - } else if (canGetPregnant(slave1) == false) { /* includes chastity checks */ + } else if (!canGetPregnant(slave1)) { /* includes chastity checks */ return false; } else { return true; @@ -347,7 +347,7 @@ window.canAchieveErection = function(slave) { window.canPenetrate = function(slave) { if (!slave) { return null; - } else if (canAchieveErection(slave) == false) { + } else if (!canAchieveErection(slave)) { return false; } else if (slave.dickAccessory == "chastity") { return false; @@ -1076,9 +1076,9 @@ window.sameTParent = function(slave1, slave2) { */ window.areTwins = function(slave1, slave2) { - if (sameDad(slave1, slave2) == false) { + if (!sameDad(slave1, slave2)) { return false; - } else if (sameMom(slave1, slave2) == false) { + } else if (!sameMom(slave1, slave2)) { return false; } else if (slave1.actualAge == slave2.actualAge && slave1.birthWeek == slave2.birthWeek) { return true; @@ -1093,15 +1093,15 @@ window.areSisters = function(slave1, slave2) { } else if (((slave1.father == 0) || (slave1.father == -2)) && ((slave1.mother == 0) || (slave1.mother == -2))) { return 0; //not related } else { - if (sameDad(slave1, slave2) == false && sameMom(slave1, slave2) == true) { + if (!sameDad(slave1, slave2) && sameMom(slave1, slave2)) { return 3; //half sisters - } else if (sameDad(slave1, slave2) == true && sameMom(slave1, slave2) == false) { + } else if (sameDad(slave1, slave2) && !sameMom(slave1, slave2)) { return 3; //half sisters } else if (sameTParent(slave1, slave2) == 3) { return 3; //half sisters } else if (sameTParent(slave1, slave2) == 2) { return 2; //sisters - } else if (sameDad(slave1, slave2) == true && sameMom(slave1, slave2) == true) { + } else if (sameDad(slave1, slave2) && sameMom(slave1, slave2)) { if (slave1.actualAge == slave2.actualAge && slave1.birthWeek == slave2.birthWeek) { return 1; //twins } else { diff --git a/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw b/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw index 59f44a3df12beca41523817aa5c59e39fb252517..38502fe9423cdf2b6484f33a762a344f7dc713ce 100644 --- a/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw +++ b/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw @@ -6,11 +6,12 @@ /*<<set WombNormalizePreg($PC)>>*/ <<if $PC.preg > 0>> <<set $PC.belly = WombGetVolume($PC)>> + <<set $PC.pregWeek = $PC.preg>> <<else>> <<set $PC.belly = 0>> + <<set $PC.pregWeek = 0>> <</if>> <<set $PC.pregMood = Number($PC.pregMood) || 0>> -<<set $PC.pregWeek = $PC.preg>> <<if $PC.boobs == 0>> <<set $PC.boobsBonus = 0>> <<set $PC.boobsImplant = 0>> diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw index 779683e51ecdf6631b508b434f2809ea3b8e1df1..d67b65bd0f43314ce778633d8c4716a480c0616d 100644 --- a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw +++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw @@ -61,11 +61,11 @@ <<set $activeSlave.attrXY = Number($activeSlave.attrXY) || 0>> <<set $activeSlave.attrXX = Number($activeSlave.attrXX) || 0>> <<set $activeSlave.energy = Number($activeSlave.energy) || 0>> -<<set WombNormalizePreg($activeSlave), $activeSlave.pregWeek = $activeSlave.preg>> +<<set WombNormalizePreg($activeSlave)>> <<if $activeSlave.preg > 0>> - <<set $activeSlave.pregKnown = 1>> + <<set $activeSlave.pregKnown = 1, $activeSlave.pregWeek = $activeSlave.preg>> <<else>> - <<set $activeSlave.pregKnown = 0>> + <<set $activeSlave.pregKnown = 0, $activeSlave.pregWeek = 0>> <</if>> <<SetBellySize $activeSlave>> diff --git a/src/js/extendedFamilyModeJS.tw b/src/js/extendedFamilyModeJS.tw index 2075e0b3b4491a44f8a3696b001d5ddf502cc5bf..564c288c7aa0d79da68c92442187581cf2e555d3 100644 --- a/src/js/extendedFamilyModeJS.tw +++ b/src/js/extendedFamilyModeJS.tw @@ -54,9 +54,9 @@ window.sameTParent = function(slave1, slave2) { */ window.areTwins = function(slave1, slave2) { - if (sameDad(slave1, slave2) == false) { + if (!sameDad(slave1, slave2)) { return false; - } else if (sameMom(slave1, slave2) == false) { + } else if (!sameMom(slave1, slave2)) { return false; } else if (slave1.actualAge == slave2.actualAge && slave1.birthWeek == slave2.birthWeek) { return true; @@ -71,15 +71,15 @@ window.areSisters = function(slave1, slave2) { } else if (((slave1.father == 0) || (slave1.father == -2)) && ((slave1.mother == 0) || (slave1.mother == -2))) { return 0; //not related } else { - if (sameDad(slave1, slave2) == false && sameMom(slave1, slave2) == true) { + if (!sameDad(slave1, slave2) && sameMom(slave1, slave2)) { return 3; //half sisters - } else if (sameDad(slave1, slave2) == true && sameMom(slave1, slave2) == false) { + } else if (sameDad(slave1, slave2) && !sameMom(slave1, slave2)) { return 3; //half sisters } else if (sameTParent(slave1, slave2) == 3) { return 3; //half sisters } else if (sameTParent(slave1, slave2) == 2) { return 2; //sisters - } else if (sameDad(slave1, slave2) == true && sameMom(slave1, slave2) == true) { + } else if (sameDad(slave1, slave2) && sameMom(slave1, slave2)) { if (slave1.actualAge == slave2.actualAge && slave1.birthWeek == slave2.birthWeek) { return 1; //twins } else { diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 61caf2582e5b1a51247dc1a0d5513b9b6bdd777c..82082c72f8a03c2e91335e9183249274ae3aaab1 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -242,11 +242,11 @@ window.canGetPregnant = function(slave) { return null; } else if (slave.preg == -1) { /* contraceptives check */ return false; - } else if (isFertile(slave) == false) { /* check other fertility factors */ + } else if (!isFertile(slave)) { /* check other fertility factors */ return false; - } else if ((slave.ovaries == 1) && (canDoVaginal(slave) == true)) { + } else if ((slave.ovaries == 1) && (canDoVaginal(slave))) { return true; - } else if ((slave.mpreg == 1) && (canDoAnal(slave) == true)) { /* pregmod */ + } else if ((slave.mpreg == 1) && (canDoAnal(slave))) { /* pregmod */ return true; } else { return false; @@ -280,9 +280,9 @@ window.canImpreg = function(slave1, slave2) { return false; } else if (slave2.vasectomy == 1) { return false; - } else if (canBreed(slave1, slave2) == false) { + } else if (!canBreed(slave1, slave2)) { return false; /* pregmod end */ - } else if (canGetPregnant(slave1) == false) { /* includes chastity checks */ + } else if (!canGetPregnant(slave1)) { /* includes chastity checks */ return false; } else { return true; @@ -347,7 +347,7 @@ window.canAchieveErection = function(slave) { window.canPenetrate = function(slave) { if (!slave) { return null; - } else if (canAchieveErection(slave) == false) { + } else if (!canAchieveErection(slave)) { return false; } else if (slave.dickAccessory == "chastity") { return false; diff --git a/src/player/actions/fEmbrace.tw b/src/player/actions/fEmbrace.tw index 5c8afbe5aa6b89233c98df8ab0453cedcf39bcda..797dd030c5f8a4e87a778f2e5740736375fbfa46 100644 --- a/src/player/actions/fEmbrace.tw +++ b/src/player/actions/fEmbrace.tw @@ -62,18 +62,18 @@ You walk around her and put your hands around her abdomen,<<if ($activeSlave.amp <<if ($activeSlave.fetish == "mindbroken")>> Her posture doesn't change. She initially only reacts slightly to your physical touch but eventually she relaxes in the warmth of the your embrace against her. You know that this may only be a physiological reaction, nothing more. For a brief moment you think you detect a spark of life in her dull eyes but just as quickly, it is gone. When you stop, her $activeSlave.eyeColor eyes track the movements of your hands briefly but then she stares blankly ahead of her, not understanding what is happening. <<elseif ($activeSlave.relationship == -2)>> - In the warmth of your embrace, she turns towards you, her passionate $activeSlave.eyeColor eyes staring intently at your face. She leans closer to you and kisses you as you hold her. Her heart beats faster and then gradually slows as she grows accustomed to your body against hers. Eventually, she relaxes totally and her eyes gradually close, melting in your arms. When you finally stop and relax your embrace, her eyes remain closed and her mouth still in a rapturous shape for a moment before she slowly opens her eyes and smiles at you with a blissful look on her face. <<if ($activeSlave.amp != 1)>> Her hand reaches to your arms and she strokes them longingly.<</if>> <<if ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She slowly opens them and does her best to communicate love with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps dreamily.<<else>>"I love you, <<Master>>," she says dreamily.<</if>> She looks at you, almost begging you with her eyes that she wants much more than a mere embrace. + In the warmth of your embrace, she turns towards you, her passionate $activeSlave.eyeColor eyes staring intently at your face. She leans closer to you and kisses you as you hold her. Her heart beats faster and then gradually slows as she grows accustomed to your body against hers. Eventually, she relaxes totally and her eyes gradually close, melting in your arms. When you finally stop and relax your embrace, her eyes remain closed and her mouth still in a rapturous shape for a moment before she slowly opens her eyes and smiles at you with a blissful look on her face. <<if ($activeSlave.amp != 1)>> Her hand reaches to your arms and she strokes them longingly.<</if>> <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>She slowly opens them and does her best to communicate love with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps dreamily.<<else>>"I love you, <<Master>>," she says dreamily.<</if>> She looks at you, almost begging you with her eyes that she wants much more than a mere embrace. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> - In your soft, warm embrace, she tries hard to stop herself from losing herself in your arms. <<if ($activeSlave.amp != 1)>> She starts to embracing you in her arms as well. When you gently squeeze her in your arms, she breathes more heavily and starts to lovingly squeeze you as well, her tendency towards sexual dominance encouraging her to compete with you in embraces against each other.<<else>> When you gently squeeze her in your arms, she breathes more heavily before relaxing against you.<</if>> When you finally stop and relax your embrace, her eyes are closed and she's smiling blissfully. <<if ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She slowly opens them and does her best to communicate excitement with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," she lisps cheerfully.<<else>>"That was fun, <<Master>>," she says cheerfully.<</if>> She eagerly looks at you, her eyes almost seem to say that she wants you to give her more than a mere hug. + In your soft, warm embrace, she tries hard to stop herself from losing herself in your arms. <<if ($activeSlave.amp != 1)>> She starts to embracing you in her arms as well. When you gently squeeze her in your arms, she breathes more heavily and starts to lovingly squeeze you as well, her tendency towards sexual dominance encouraging her to compete with you in embraces against each other.<<else>> When you gently squeeze her in your arms, she breathes more heavily before relaxing against you.<</if>> When you finally stop and relax your embrace, her eyes are closed and she's smiling blissfully. <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>She slowly opens them and does her best to communicate excitement with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," she lisps cheerfully.<<else>>"That was fun, <<Master>>," she says cheerfully.<</if>> She eagerly looks at you, her eyes almost seem to say that she wants you to give her more than a mere hug. <<elseif ($activeSlave.devotion > 50)>> - She sighs devotedly in your arms and slowly relaxes. She turns towards you, her doting $activeSlave.eyeColor eyes staring intently at your face. You feel her heart beating faster against your chest as you softly squeeze your arms tighter. Her hands reach to your arms and she strokes them longingly as you squeeze. She gradually closes her eyes as she leans her body against yours, melting in your warm embrace, and you feel the intense heat from her body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. When you finally stop, <<if ($activeSlave.amp != 1)>>she reaches to your face with her hand and gently strokes your cheek<</if>>, a euphoric look on her $activeSlave.skin face. <<if ($activeSlave.accent >= 3)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes, since she's not confident in her ability to express it in $language.<<elseif ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps elatedly.<<else>>"I love you, <<Master>>," she says elatedly.<</if>> She looks at you longingly, almost as if she's bursting to say that she wants more than a mere embrace. + She sighs devotedly in your arms and slowly relaxes. She turns towards you, her doting $activeSlave.eyeColor eyes staring intently at your face. You feel her heart beating faster against your chest as you softly squeeze your arms tighter. Her hands reach to your arms and she strokes them longingly as you squeeze. She gradually closes her eyes as she leans her body against yours, melting in your warm embrace, and you feel the intense heat from her body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. When you finally stop, <<if ($activeSlave.amp != 1)>>she reaches to your face with her hand and gently strokes your cheek<</if>>, a euphoric look on her $activeSlave.skin face. <<if ($activeSlave.accent >= 3)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes, since she's not confident in her ability to express it in $language.<<elseif ($activeSlave.amp == 1) && !canTalk($activeSlave)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps elatedly.<<else>>"I love you, <<Master>>," she says elatedly.<</if>> She looks at you longingly, almost as if she's bursting to say that she wants more than a mere embrace. <<elseif ($activeSlave.devotion > 20)>> - She willingly gives herself up to your embracing arms. As you are so close to her, you sense considerable uneasiness in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>>; she's doing her duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of her mind by your soft embrace against her body. She gradually closes her eyes in the feeling of your gentle arms. When you finally stop and relax your embrace, her $activeSlave.eyeColor eyes open to gaze puzzlingly at you. Even though she has accepted life as a sex slave, she looks as though she is unsure of what to make of this non-sexual physical contact. <<if ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>Her eyes beg for an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> + She willingly gives herself up to your embracing arms. As you are so close to her, you sense considerable uneasiness in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>>; she's doing her duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of her mind by your soft embrace against her body. She gradually closes her eyes in the feeling of your gentle arms. When you finally stop and relax your embrace, her $activeSlave.eyeColor eyes open to gaze puzzlingly at you. Even though she has accepted life as a sex slave, she looks as though she is unsure of what to make of this non-sexual physical contact. <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>Her eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust < -20)>> - She shakes at your touch fearfully. As you softly press her trembling body against you, her eagerness to avoid punishment leads her to stiffen in your arms. While she continues to shudder, you continue embracing her, enjoying her fear, and the physical intimacy slowly does its work. She starts to relax, her resistance easing and her eyes start to close. When you relax your arms for a moment, she opens her eyes to look at you for a long moment, her eyes darting up to your face, before visibly catching herself with a reminder that she's a slave and you're her owner. <<if ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>Her eyes beg for an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> + She shakes at your touch fearfully. As you softly press her trembling body against you, her eagerness to avoid punishment leads her to stiffen in your arms. While she continues to shudder, you continue embracing her, enjoying her fear, and the physical intimacy slowly does its work. She starts to relax, her resistance easing and her eyes start to close. When you relax your arms for a moment, she opens her eyes to look at you for a long moment, her eyes darting up to your face, before visibly catching herself with a reminder that she's a slave and you're her owner. <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>Her eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> <<elseif ($activeSlave.trust < -50)>> - She is nearly frozen with fear, and does not resist as you start to squeeze your arms around her. In fact, she barely reacts at all. She stares at your arms as they continue squeezing, but it's like touching a statue. She is so filled with terror that she remains stiff even as it becomes clear to her you're not going to hurt her. When you bore of embracing the still <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>> and release her, she stares at you in utter incomprehension. <<if ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>Her eyes beg for an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs spastically, begging fearfully to know if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks nervously, "I-ith that it, <<Master>>?"<<else>>She asks nervously, "I-is that it, <<Master>>?"<</if>> Then she cringes, unsure of what you are going to do next. + She is nearly frozen with fear, and does not resist as you start to squeeze your arms around her. In fact, she barely reacts at all. She stares at your arms as they continue squeezing, but it's like touching a statue. She is so filled with terror that she remains stiff even as it becomes clear to her you're not going to hurt her. When you bore of embracing the still <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>> and release her, she stares at you in utter incomprehension. <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>Her eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs spastically, begging fearfully to know if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks nervously, "I-ith that it, <<Master>>?"<<else>>She asks nervously, "I-is that it, <<Master>>?"<</if>> Then she cringes, unsure of what you are going to do next. <<else>> - She reflexively tries to break free from your arms, but you keep her wrapped in them. Shuddering, she desperately leans away from you, but you tip forward with her and pin her against your desk, continuing your hold on her. She tries to wriggle out of your grasp desperately, but her struggles slowly subside as she realizes that you're not taking this any farther. When you bore of it and release her, she stares at you in utter incomprehension. <<if ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>Her eyes demand an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs irritably, asking whether that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She splutters, "Ith that it, <<Master>>!?"<<else>>She splutters, "Is that it, <<Master>>!?"<</if>> She shakes uncontrollably, apprehensive at what you are going to do next. + She reflexively tries to break free from your arms, but you keep her wrapped in them. Shuddering, she desperately leans away from you, but you tip forward with her and pin her against your desk, continuing your hold on her. She tries to wriggle out of your grasp desperately, but her struggles slowly subside as she realizes that you're not taking this any farther. When you bore of it and release her, she stares at you in utter incomprehension. <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>Her eyes demand an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs irritably, asking whether that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She splutters, "Ith that it, <<Master>>!?"<<else>>She splutters, "Is that it, <<Master>>!?"<</if>> She shakes uncontrollably, apprehensive at what you are going to do next. <</if>> <</nobr>> diff --git a/src/pregmod/widgets/economyWidgets.tw b/src/pregmod/widgets/economyWidgets.tw index 38f6bb1ebf042d68cc2e4bf79983f2b7620a1688..062d93ee1db29346b2f2884cc6a217feee4fb570 100644 --- a/src/pregmod/widgets/economyWidgets.tw +++ b/src/pregmod/widgets/economyWidgets.tw @@ -389,7 +389,7 @@ | Trade Qty <<textbox `'_Num' + $args[0]` `eval(parse('_Num' + $args[0]))`>><<script>>setTextboxMaxLength(State.temporary["textboxMLArg"], 10);<</script>>: <<link "Buy">> - <<if Number.isInteger(Number.parseFloat(eval(parse('_Num' + $args[0])))) == false>> /* Checks if _Numasset is string */ + <<if !Number.isInteger(Number.parseFloat(eval(parse('_Num' + $args[0]))))>> /* Checks if _Numasset is string */ /* Buy all */ <<if State.temporary[$args[1]].toLowerCase() == "all" || "max">> <<set State.temporary[$args[1]] = Math.floor($corpCash/(State.variables[$args[0]+"AssetPrice"] * 500))>> @@ -449,7 +449,7 @@ <</if>> <</link>> | <<link "Sell">> - <<if Number.isInteger(Number.parseFloat(eval(parse('_Num' + $args[0])))) == false>> + <<if !Number.isInteger(Number.parseFloat(eval(parse('_Num' + $args[0]))))>> /* Sell all */ <<if State.temporary[$args[1]].toLowerCase() == "all" || "max">> <<replace `'#'+$args[0]+'AssetsPurchasing'`>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 2526bedcbd34e7fd972e0e7bae18b5ca5ff20bf0..87c5cec0843468c83f85b69654f72d2e3d88f513 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -2287,7 +2287,7 @@ Setting missing global variables: <<set $justiceEvents = ["slave deal", "slave training", "majority deal", "indenture deal", "virginity deal"]>> <</if>> -<<if (($ver.startsWith("0.6") == true && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7") == true) || ($ver.startsWith("0.8") == true) || ($ver == "0.9"))>> +<<if (($ver.startsWith("0.6") && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7")) || ($ver.startsWith("0.8")) || ($ver == "0.9"))>> <<if $seeDicks == 2>> <<set $seeDicks = 100>> <<elseif $seeDicks == 1>> @@ -2543,7 +2543,7 @@ Setting missing slave variables: <<set _Slave.training = 0>> <</if>> -<<if (($ver.startsWith("0.6") == true && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7") == true) || ($ver.startsWith("0.8") == true)) && ($ver.startsWith("0.8.9") != true) && ($ver.startsWith("0.8.10") != true) && ($ver.startsWith("0.8.11") != true) && ($ver.startsWith("0.8.12") != true)>> +<<if (($ver.startsWith("0.6") && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7")) || ($ver.startsWith("0.8"))) && (!$ver.startsWith("0.8.9")) && (!$ver.startsWith("0.8.10")) && (!$ver.startsWith("0.8.11")) && (!$ver.startsWith("0.8.12"))>> <<if _Slave.attrXX == 2>> <<set _Slave.attrXX = 90>> <<elseif _Slave.attrXX == 1>> @@ -2568,7 +2568,7 @@ Setting missing slave variables: <</if>> <</if>> -<<if (($ver.startsWith("0.6") == true && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7") == true) || ($ver.startsWith("0.8") == true))>> +<<if (($ver.startsWith("0.6") && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7")) || ($ver.startsWith("0.8")))>> <<if _Slave.health <= -9>> <<set _Slave.health = -90>> <<elseif _Slave.health <= -7>> @@ -2643,7 +2643,7 @@ Setting missing slave variables: <</if>> <</if>> -<<if (($ver.startsWith("0.6") == true && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7") == true) || ($ver.startsWith("0.8") == true) || ($ver.startsWith("0.9") == true)) && ($ver.startsWith("0.9.5") != true) && ($ver.startsWith("0.9.6") != true) && ($ver.startsWith("0.9.7") != true) && ($ver.startsWith("0.9.8") != true) && ($ver.startsWith("0.9.9") != true) && ($ver.startsWith("0.9.10") != true)>> +<<if (($ver.startsWith("0.6") && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7")) || ($ver.startsWith("0.8")) || ($ver.startsWith("0.9"))) && (!$ver.startsWith("0.9.5")) && (!$ver.startsWith("0.9.6")) && (!$ver.startsWith("0.9.7")) && (!$ver.startsWith("0.9.8")) && (!$ver.startsWith("0.9.9")) && (!$ver.startsWith("0.9.10"))>> <<if _Slave.oralSkill > 0>> <<if _Slave.oralSkill == 3>> <<set _Slave.oralSkill = 100>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 531adc368fb5787866b21bf51c35a3719fdc377f..2558f0fd4e9ede429fc6a60548179fd6df12b324 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -7245,7 +7245,7 @@ You tell her kindly that you understand, and that she'll be trained to address t she <<say>>s<<if $activeSlave.lips > 70>> past her enormous lips<<elseif $activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2>> past her mouthful of piercings<</if>>. <</if>> She comes eagerly over and sucks you off with enthusiasm. As you cum, she orgasms quickly at the taste of the stuff hitting her mouth<<if $PC.balls > 2>>, even as your load keeps flowing into her gullet<<if $PC.balls > 3>> steadily bloated the poor girl<</if>><</if>>. - <<if canTalk($activeSlave) == false>> + <<if !canTalk($activeSlave)>> She signs that you taste great. <<else>> "<<Master>>, you ta<<s>>te great," she purrs. @@ -8712,7 +8712,7 @@ You tell her kindly that you understand, and that she'll be trained to address t seed. <</if>> She starts blubbering inelegantly and - <<if canTalk($activeSlave) == false>> + <<if !canTalk($activeSlave)>> gesturing <<elseif ($activeSlave.lips > 70) || ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> lisping diff --git a/src/uncategorized/freeRangeDairyAssignmentScene.tw b/src/uncategorized/freeRangeDairyAssignmentScene.tw index 27b0cbb0f425608aa4facf1ede784ae2fcecad3c..b930a0f276dbc96fdb08ad87bb4e6d36fa839812 100644 --- a/src/uncategorized/freeRangeDairyAssignmentScene.tw +++ b/src/uncategorized/freeRangeDairyAssignmentScene.tw @@ -59,7 +59,7 @@ While <<if canWalk($activeSlave) >>walking<<else>>being carried<</if>> to her de /* TODO: watch a specific cow, e.g. lover or relative or huge-titted */ <</if>> -<<if $aroused == true >> +<<if $aroused>> <br> All this lewd display turns $activeSlave.slaveName on and she is almost overcome by lust. She realizes, she probably should not have taken so much interest in the other cows. <<if $activeSlave.dick > 0 >> diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw index 51079a6a8f1b5c6e69badc037c2e3899836a83ab..d62c53c558991bc82bb4a709012671af312a6d05 100644 --- a/src/uncategorized/pRivalryCapture.tw +++ b/src/uncategorized/pRivalryCapture.tw @@ -23,6 +23,13 @@ <</if>> <</if>> <<set _rivalType = _rivalType.random()>> +<<if ndef _rivalType>> + <<if $PC.dick == 1>> + <<set _rivalType = "addict">> + <<else>> + <<set _rivalType = "masculine">> + <</if>> +<</if>> Your <<if passage() == "P rivalry actions">> target is quickly delivered. Politely dismissing the head of your <<if $mercenariesTitle != "mercenaries">> $mercenariesTitle <<else>> mercenaries <</if>>, you savour diff --git a/src/uncategorized/reFullBed.tw b/src/uncategorized/reFullBed.tw index 15914f5e64ae8e45ff2772e060858351906f8970..961db3e3e32d205c8f57be1f4949c8177d612f1e 100644 --- a/src/uncategorized/reFullBed.tw +++ b/src/uncategorized/reFullBed.tw @@ -31,6 +31,12 @@ Today was an unusually relaxing day, and you aren't particularly tired. <<set $slaves[_bedSlaveOne].devotion += 4, $slaves[_bedSlaveTwo].devotion += 4>> <<set $slaves[_bedSlaveOne].analCount++, $slaves[_bedSlaveTwo].analCount++>> <<set $analTotal += 2>> + <<if $PC.dick == 1 && $slaves[_bedSlaveOne].eggType == "human" && canGetPregnant($slaves[_bedSlaveOne])>> + <<KnockMeUp $slaves[_bedSlaveOne] 10 1 -1 1>> + <</if>> + <<if $PC.dick == 1 && $slaves[_bedSlaveTwo].eggType == "human" && canGetPregnant($slaves[_bedSlaveTwo])>> + <<KnockMeUp $slaves[_bedSlaveTwo] 10 1 -1 1>> + <</if>> <</replace>> <</link>> <<if $slaves[_bedSlaveOne].bellyPreg >= 5000 && $slaves[_bedSlaveTwo].bellyPreg >= 5000 && $PC.dick == 1>> @@ -77,7 +83,7 @@ Today was an unusually relaxing day, and you aren't particularly tired. <<if $slaves[_bedSlaveOne].vagina == 0>>Your endeavors have @@.lime;taken her virginity.@@ @@.hotpink;She couldn't be happier.@@ <<set $slaves[_bedSlaveOne].devotion += 10>><</if>> <<set $slaves[_bedSlaveOne].vaginalCount += 3>> <<set $vaginalTotal += 3>> - <<KnockMeUp $slaves[_bedSlaveOne] 100 1 -1>> + <<KnockMeUp $slaves[_bedSlaveOne] 100 0 -1>> <</if>> $slaves[_bedSlaveTwo].slaveName is @@.hotpink;thrilled to carry your child@@ and @@.mediumaquamarine;happily embraces the gift inside her.@@ <<if $slaves[_bedSlaveTwo].mpreg == 1>> @@ -89,7 +95,7 @@ Today was an unusually relaxing day, and you aren't particularly tired. <<if $slaves[_bedSlaveTwo].vagina == 0>>Your endeavors have @@.lime;taken her virginity.@@ @@.hotpink;She couldn't be happier.@@ <<set $slaves[_bedSlaveTwo].devotion += 10>><</if>> <<set $slaves[_bedSlaveTwo].vaginalCount += 3>> <<set $vaginalTotal += 3>> - <<KnockMeUp $slaves[_bedSlaveTwo] 100 1 -1>> + <<KnockMeUp $slaves[_bedSlaveTwo] 100 0 -1>> <</if>> <</replace>> <</link>> @@ -104,22 +110,30 @@ Today was an unusually relaxing day, and you aren't particularly tired. <<set $vaginalTotal += 2>> <<set $slaves[_bedSlaveOne].analCount++>> <<set $analTotal++>> - <<KnockMeUp $slaves[_bedSlaveOne] 10 2 -1 1>> + <<if $PC.dick == 1 && $slaves[_bedSlaveOne].eggType == "human" && canGetPregnant($slaves[_bedSlaveOne])>> + <<KnockMeUp $slaves[_bedSlaveOne] 10 2 -1 1>> + <</if>> <<else>> <<set $slaves[_bedSlaveOne].analCount += 3>> <<set $analTotal += 3>> - <<KnockMeUp $slaves[_bedSlaveOne] 15 1 -1 1>> + <<if $PC.dick == 1 && $slaves[_bedSlaveOne].eggType == "human" && canGetPregnant($slaves[_bedSlaveOne])>> + <<KnockMeUp $slaves[_bedSlaveOne] 15 1 -1 1>> + <</if>> <</if>> <<if canDoVaginal(_bedSlaveTwo)>> <<set $slaves[_bedSlaveTwo].vaginalCount += 2>> <<set $vaginalTotal += 2>> <<set $slaves[_bedSlaveTwo].analCount++>> <<set $analTotal++>> - <<KnockMeUp $slaves[_bedSlaveTwo] 10 2 -1 1>> + <<if $PC.dick == 1 && $slaves[_bedSlaveTwo].eggType == "human" && canGetPregnant($slaves[_bedSlaveTwo])>> + <<KnockMeUp $slaves[_bedSlaveTwo] 10 2 -1 1>> + <</if>> <<else>> <<set $slaves[_bedSlaveTwo].analCount += 3>> <<set $analTotal += 3>> - <<KnockMeUp $slaves[_bedSlaveTwo] 15 1 -1 1>> + <<if $PC.dick == 1 && $slaves[_bedSlaveTwo].eggType == "human" && canGetPregnant($slaves[_bedSlaveTwo])>> + <<KnockMeUp $slaves[_bedSlaveTwo] 15 1 -1 1>> + <</if>> <</if>> <</replace>> <</link>> diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw index 2ed4693fb3b3138cdef4351cc6dd27ab9c8718f4..cc07cafa820bc51cf32a667c84019f5a1392ff4a 100644 --- a/src/uncategorized/saPleaseYou.tw +++ b/src/uncategorized/saPleaseYou.tw @@ -22,368 +22,634 @@ serves you this week. <</if>> <</if>> <<if ($slaves[$i].toyHole == "pussy")>> - <<set _vaginalUse = random(5,10)>> - <<set $slaves[$i].vaginalCount += _vaginalUse>> - <<set $vaginalTotal += _vaginalUse>> - <<set _cervixPump = _vaginalUse>> - <<if $slaves[$i].fuckdoll == 0>> - <<if ($slaves[$i].trust < -20)>> - $pronounCap spends the week in terrified compliance with your use of $possessive pussy. - <<elseif ($slaves[$i].devotion < -20)>> - $pronounCap spends the week alternately struggling and lying corpselike as you use $possessive pussy. - <<elseif ($slaves[$i].devotion <= 20)>> - $pronounCap spends the week reluctantly accepting your use of $possessive pussy. - <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "submissive")>> - $pronounCap spends the week as your adoring submissive, seeing to your pleasure with $possessive womanhood. - <<elseif ($slaves[$i].devotion <= 50)>> - $pronounCap spends the week obediently serving you in the classical way, taking you into $possessive womanhood. - <<else>> - $pronounCap spends the week serving you in the classical way, warming your bed and lovingly taking you into $possessive womanhood. - <</if>> - <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; the constant rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 5>> - <<set $slaves[$i].trust -= 15>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object at least once a day; the regular rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 9>> + $pronounCap spends the week + <<if ($slaves[$i].fetish == "mindbroken")>> + unaware of your intent to use $possessive pussy. + <<elseif ($slaves[$i].trust < -20)>> + in terrified compliance with your use of $possessive pussy. + <<elseif ($slaves[$i].devotion < -20)>> + alternately struggling and lying corpselike as you use $possessive pussy. + <<elseif ($slaves[$i].devotion <= 20)>> + reluctantly accepting your use of $possessive pussy. + <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "submissive")>> + as your adoring submissive, seeing to your pleasure with $possessive womanhood. + <<elseif ($slaves[$i].devotion <= 50)>> + obediently serving you in the classical way, taking you into $possessive womanhood. <<else>> - You have the sexual energy to fuck $object on occasion; the threat of rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 3>> + serving you in the classical way, warming your bed and lovingly taking you into $possessive womanhood. <</if>> - <<elseif ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; submitting to your constant use @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 3>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object at least once a day; submitting to your regular use @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 2>> + You have the sexual energy to fuck $object + <<if ($slaves[$i].fetish == "mindbroken")>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _vaginalUse = random(21,40)>> + several times a day. + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _vaginalUse = random(7,14)>> + at least once a day. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _vaginalUse = random(3,7)>> + on occasion. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + $pronounCap doesn't react, even if $possessive body does. + <<elseif ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _vaginalUse = random(21,40)>> + several times a day; the constant + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _vaginalUse = random(7,14)>> + at least once a day; the regular + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _vaginalUse = random(3,7)>> + on occasion; the threat of + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<elseif ($slaves[$i].devotion <= 20)>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _vaginalUse = random(21,40)>> + several times a day; submitting to your constant + <<set $slaves[$i].devotion += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _vaginalUse = random(7,14)>> + at least once a day; submitting to your regular + <<set $slaves[$i].devotion += 2>> + <<else>> + <<set _vaginalUse = random(3,7)>> + on occasion; submitting to your + <<set $slaves[$i].devotion += 1>> + <</if>> + use @@.hotpink;habituates $object@@ to being your sex slave. <<else>> - You have the sexual energy to fuck $object on occasion; submitting to your use @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 1>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _vaginalUse = random(21,40)>> + several times a day; constant, + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _vaginalUse = random(7,14)>> + several times a day; regular, + <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> + <<else>> + <<set _vaginalUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> + <</if>> + enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <</if>> + <<if ($slaves[$i].fetish != "mindbroken")>> + <<if ($slaves[$i].sexualFlaw == "hates penetration") && ($slaves[$i].devotion > 50)>> + The emotional closeness @@.green;resolves $possessive hatred of penetration.@@ + <<set $slaves[$i].sexualFlaw = "none">> + <</if>> + <<if ($slaves[$i].vaginalSkill < 100)>> + After a lot of time spent having vanilla sex, $possessive vaginal skill improves. + <<VaginalSkillIncrease $slaves[$i]>> + <</if>> + <</if>> + <<if $PC.dick == 1>> + <<if ($slaves[$i].fetish != "mindbroken")>> + <<if $slaves[$i].fetish == "submissive">> + $pronounCap frequently climaxes with your <<if $PC.title == 1>>strong<<else>>soft<</if>> hands holding $object and your cock spreading heat through $possessive core, + <<if $slaves[$i].fetishKnown == 1>> + @@.hotpink;fulfilling her life's role completely.@@ + <<else>> + $pronoun @@.hotpink;seems to enjoy@@ being your fucktoy. + <</if>> + <<set $slaves[$i].devotion += 2>> + <<elseif $fetishChangeChance > random(0,100)>> + <<set $slaves[$i].fetish = "submissive", $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10>> + $pronounCap frequently climaxes with your <<if $PC.title == 1>>strong<<else>>soft<</if>> hands holding $object and your cock spreading heat through $possessive core, teaching $object that @@.lightcoral;a girl's role is to please a man.@@ + <</if>> + <</if>> + <<set _cervixPump = _vaginalUse>> + <<if $slaves[$i].eggType == "human" && canGetPregnant($slaves[$i])>> + <<KnockMeUp $slaves[$i] _vaginalUse 0 -1 1>> + <</if>> + <</if>> + <<set $slaves[$i].vaginalCount += _vaginalUse, $vaginalTotal += _vaginalUse>> + <<if $slaves[$i].cervixImplant == 1 && _cervixPump > 0>> + <<if ($slaves[$i].fetish == "mindbroken")>> + $pronounCap is completely oblivious to $possessive @@.lime;increasingly swollen belly@@ and stands no chance of linking it to all the vaginal sex <<print $object>>'s had with you. + <<else>> + $pronounCap notices $possessive @@.lime;belly has swollen@@ after + <</if>> + <<set $slaves[$i].bellyImplant += _cervixPump*20>> <</if>> <<else>> + You keep $object with you all week, using it as your personal sex toy <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; constant, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 3>> - <<set $slaves[$i].trust += 3>> + <<set _vaginalUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object several times a day; regular, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 2>> - <<set $slaves[$i].trust += 2>> + <<set _vaginalUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to fuck $object on occasion; enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 1>> - <<set $slaves[$i].trust += 1>> + <<set _vaginalUse = random(3,7)>> + on occasion. + <</if>> + When you're not using it, it <<if $activeSlave.amp > 0>>rests<<else>>stands<</if>> nearby, waiting silently for your order to present its pussy. + <<if $PC.dick == 1>> + <<set _cervixPump = _vaginalUse>> + <<if $slaves[$i].eggType == "human" && canGetPregnant($slaves[$i])>> + <<KnockMeUp $slaves[$i] _vaginalUse 0 -1 1>> + <</if>> + <</if>> + <<set $slaves[$i].vaginalCount += _vaginalUse, $vaginalTotal += _vaginalUse>> + <<if $slaves[$i].cervixImplant == 1 && _cervixPump > 0>> + With each deposit of your seed into it, its @@.lime;stomach swells a little larger.@@ + <<set $slaves[$i].bellyImplant += _cervixPump*20>> <</if>> - <</if>> - <<if ($slaves[$i].sexualFlaw == "hates penetration") && ($slaves[$i].devotion > 50)>> - The emotional closeness @@.green;resolves $possessive hatred of penetration.@@ - <<set $slaves[$i].sexualFlaw = "none">> - <</if>> - <<if ($slaves[$i].vaginalSkill < 100)>> - After a lot of time spent having vanilla sex, $possessive vaginal skill improves. - <<VaginalSkillIncrease $slaves[$i]>> - <</if>> - <<if ($slaves[$i].fetishStrength <= 60) && (random(1,500) < 100+$slaves[$i].devotion)>> - <<set $slaves[$i].fetish = "submissive">> - <<set $slaves[$i].fetishKnown = 1>> - <<set $slaves[$i].fetishStrength = 10>> - $pronounCap climaxes with your strong hands holding $object and your cock spreading heat through $possessive core, teaching $object that @@.lightcoral;a girl's role is to please a man.@@ - <</if>> - - <<if $slaves[$i].cervixImplant == 1 && _cervixPump > 0 && canDoVaginal($slaves[$i])>> - $pronounCap notices $possessive @@.lime;belly swell@@ from vaginal sex throughout the week. - <<set $slaves[$i].bellyImplant += _cervixPump*20>> - <</if>> <</if>> <<elseif ($slaves[$i].toyHole == "ass")>> - <<set _analUse = random(5,10)>> - <<set $slaves[$i].analCount += _analUse>> - <<set $analTotal += _analUse>> <<if $slaves[$i].fuckdoll == 0>> - <<if ($slaves[$i].trust < -20)>> - $pronounCap spends the week in terrified compliance with your use of $possessive anus. - <<elseif ($slaves[$i].devotion < -20)>> - $pronounCap spends the week struggling and screaming as you sodomize $object. - <<elseif ($slaves[$i].devotion <= 20)>> - $pronounCap spends the week writhing in pain as you sodomize $object. - <<elseif ($slaves[$i].devotion <= 50)>> - $pronounCap spends the week obediently submitting to your use of $possessive butthole. - <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "buttslut")>> - $pronounCap spends the week as your adoring anal slave, orgasming to the feel of you shooting your seed up $possessive ass. - <<else>> - $pronounCap spends the week warming your bed and devotedly serving your sexual needs with $possessive anus. - <</if>> - <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $possessive butt several times a day; the constant anal rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 5>> - <<set $slaves[$i].trust -= 15>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $possessive butt at least once a day; the regular anal rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 9>> + $pronounCap spends the week + <<if ($slaves[$i].fetish == "mindbroken")>> + unaware of your intent to use $possessive anus. + <<elseif ($slaves[$i].trust < -20)>> + in terrified compliance with your use of $possessive anus. + <<elseif ($slaves[$i].devotion < -20)>> + struggling and screaming as you sodomize $object. + <<elseif ($slaves[$i].devotion <= 20)>> + writhing in pain as you sodomize $object. + <<elseif ($slaves[$i].devotion <= 50)>> + obediently submitting to your use of $possessive butthole. + <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "buttslut")>> + as your adoring anal slave, orgasming to the feel of you<<if $PC.dick == 1>> shooting your seed<<else>>r favorite strap-on<</if>> up $possessive ass. <<else>> - You have the sexual energy to fuck $possessive butt on occasion; the threat of anal rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 3>> + warming your bed and devotedly serving your sexual needs with $possessive anus. <</if>> - <<elseif ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $possessive butt several times a day; constantly allowing you to penetrate $possessive anus @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 3>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $possessive butt at least once a day; regularly allowing you to penetrate $possessive anus @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 2>> + You have the sexual energy to fuck $possessive butt + <<if ($slaves[$i].fetish == "mindbroken")>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _analUse = random(21,40)>> + several times a day. + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _analUse = random(7,14)>> + at least once a day. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _analUse = random(3,7)>> + on occasion. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + $pronounCap doesn't react, even if $possessive body does. + <<elseif ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _analUse = random(21,40)>> + several times a day; the constant + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _analUse = random(7,14)>> + at least once a day; the regular + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _analUse = random(3,7)>> + on occasion; the threat of + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + anal rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<elseif ($slaves[$i].devotion <= 20)>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _analUse = random(21,40)>> + several times a day; constantly + <<set $slaves[$i].devotion += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _analUse = random(7,14)>> + at least once a day; regularly + <<set $slaves[$i].devotion += 2>> + <<else>> + <<set _analUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1>> + <</if>> + allowing you to penetrate $possessive rear @@.hotpink;habituates $object@@ to being your sex slave. <<else>> - You have the sexual energy to fuck $possessive butt on occasion; allowing you to penetrate $possessive anus @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 1>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _analUse = random(21,40)>> + several times a day; constantly + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _analUse = random(7,14)>> + several times a day; regularly + <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> + <<else>> + <<set _analUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> + <</if>> + climaxing to your penetration of $possessive rear brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <</if>> + <<if ($slaves[$i].fetish != "mindbroken")>> + <<if ($slaves[$i].sexualFlaw == "hates anal") && ($slaves[$i].devotion > 50)>> + $pronounCap's devoted enough to derive emotional closeness from buttsex, which @@.green;resolves $possessive hatred of the act.@@ + <<set $slaves[$i].sexualFlaw = "none">> + <</if>> + <<if ($slaves[$i].analSkill < 100)>> + After a lot of time spent getting buttfucked, $possessive anal skill improves. + <<AnalSkillIncrease $slaves[$i]>> + <</if>> + <<if $slaves[$i].fetish == "buttslut">> + <<if $slaves[$i].fetishKnown == 1>> + $pronounCap @@.hotpink;takes great pleasure@@ in $possessive rear being used as your personal <<if $PC.dick == 1>>cock holster<<else>>plaything<</if>>. + <<else>> + $pronounCap @@.hotpink;seems to enjoy@@ anal sex more than the usual slave. + <</if>> + <<set $slaves[$i].devotion += 2>> + <<elseif $fetishChangeChance > random(0,100)>> + <<set $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10, $slaves[$i].fetish = "buttslut">> + After repeated anal orgasms, @@.lightcoral;$pronoun begins to crave $possessive next buttfuck.@@ + <</if>> + <</if>> + <<if $PC.dick == 1 && $slaves[$i].eggType == "human" && canGetPregnant($slaves[$i])>> + <<KnockMeUp $slaves[$i] _analUse 1 -1 1>> + <</if>> + <<set $slaves[$i].analCount += _analUse, $analTotal += _analUse>> <<else>> + You keep $object with you all week, using it as your personal sex toy <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $possessive butt several times a day; constantly climaxing to your penetration of $possessive anus brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 3>> - <<set $slaves[$i].trust += 3>> + <<set _analUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $possessive butt several times a day; regularly climaxing to your penetration of $possessive anus brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 2>> - <<set $slaves[$i].trust += 2>> + <<set _analUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to fuck $possessive butt on occasion; climaxing to your penetration of $possessive anus brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 1>> - <<set $slaves[$i].trust += 1>> + <<set _analUse = random(3,7)>> + on occasion. <</if>> - <</if>> - <<if ($slaves[$i].sexualFlaw == "hates anal") && ($slaves[$i].devotion > 50)>> - $pronounCap's devoted enough to derive emotional closeness from buttsex, which @@.green;resolves $possessive hatred of the act.@@ - <<set $slaves[$i].sexualFlaw = "none">> - <</if>> - <<if ($slaves[$i].analSkill < 100)>> - After a lot of time spent getting buttfucked, $possessive anal skill improves. - <<AnalSkillIncrease $slaves[$i]>> - <</if>> - <<if ($slaves[$i].fetishStrength <= 60) && (random(1,500) < 100+$slaves[$i].devotion)>> - <<set $slaves[$i].fetishKnown = 1>> - <<set $slaves[$i].fetishStrength = 10>> - <<set $slaves[$i].fetish = "buttslut">> - After repeated anal orgasms, @@.lightcoral;$pronoun begins to crave $possessive next buttfuck.@@ - <</if>> + When you're not using it, it <<if $activeSlave.amp > 0>>rests<<else>>stands<</if>> nearby, waiting silently for your order to present its asshole. + <<if $PC.dick == 1>> + <<set _cervixPump = _analUse>> + <<if $slaves[$i].eggType == "human" && canGetPregnant($slaves[$i])>> + <<KnockMeUp $slaves[$i] _analUse 1 -1 1>> + <</if>> + <</if>> + <<set $slaves[$i].analCount += _analUse, $analTotal += _analUse>> <</if>> <<elseif ($slaves[$i].toyHole == "mouth")>> - <<set _oralUse = random(5,10)>> - <<set $slaves[$i].oralCount += _oralUse>> - <<set $oralTotal += _oralUse>> <<if $slaves[$i].fuckdoll == 0>> - <<if ($slaves[$i].trust < -20)>> - $pronounCap spends the week in terrified compliance with your use of $possessive <<if ($PC.dick == 1)>>throat<<else>>mouth<</if>>. - <<elseif ($slaves[$i].devotion < -20)>> - $pronounCap spends the week struggling and gagging as you <<if ($PC.dick == 1)>>throatfuck $object<<else>>ride $possessive face<</if>>. - <<elseif ($slaves[$i].devotion <= 20)>> - $pronounCap spends the week reluctantly <<if ($PC.dick == 1)>>servicing your cock with $possessive mouth<<else>>licking your pussy<</if>>. - <<elseif ($slaves[$i].devotion <= 50)>> - $pronounCap spends the week obediently <<if ($PC.dick == 1)>>sucking your cock<<else>>eating you out<</if>>. - <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "cumslut")>> - $pronounCap spends the week as your adoring oral slave, orgasming when you leave $possessive with a <<if $PC.dick == 1>>mouth full of cum<<if $PC.vagina == 1>> or a <</if>><</if>><<if $PC.vagina == 1>>face covered in your pussyjuice<</if>>. - <<if $PC.dick == 1 && ($fuckSlaves <= ($PC.sexualEnergy/2 + $PC.balls * $PC.balls))>> - Your balls produce so much cum for $object that $pronoun has replaced half $possessive diet with your cum, and you often leave $object dizzy with a face and chest covered in your sticky pearly semen. - <<elseif $PC.dick == 1 && ($fuckSlaves <= ($PC.sexualEnergy + $PC.balls * $PC.balls))>> - Your balls produce enough cum that $pronoun usually gets facials after a mouthful of semen, and $object loves you for it. + $pronounCap spends the week + <<if ($slaves[$i].fetish == "mindbroken")>> + unaware of your intent to use $possessive mouth. + <<elseif ($slaves[$i].trust < -20)>> + $pronounCap spends the week in terrified compliance with your use of $possessive <<if ($PC.dick == 1)>>throat<<else>>mouth<</if>>. + <<elseif ($slaves[$i].devotion < -20)>> + struggling and gagging as you <<if ($PC.dick == 1)>>throatfuck $object<<else>>ride $possessive face<</if>>. + <<elseif ($slaves[$i].devotion <= 20)>> + reluctantly <<if ($PC.dick == 1)>>servicing your cock with $possessive mouth<<else>>licking your pussy<</if>>. + <<elseif ($slaves[$i].devotion <= 50)>> + obediently <<if ($PC.dick == 1)>>sucking your cock<<else>>eating you out<</if>>. + <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "cumslut")>> + as your adoring oral slave, orgasming when you leave $possessive with a <<if $PC.dick == 1>>mouth full of cum<<if $PC.vagina == 1>> or a <</if>><</if>><<if $PC.vagina == 1>>face covered in your pussyjuice<</if>>. + <<if $PC.dick == 1 && ($fuckSlaves <= ($PC.sexualEnergy/2 + $PC.balls * $PC.balls))>> + Your balls produce so much cum for $object that $pronoun has replaced half $possessive diet with your cum, and you often leave $object dizzy with a face and chest covered in your sticky pearly semen. + <<elseif $PC.dick == 1 && ($fuckSlaves <= ($PC.sexualEnergy + $PC.balls * $PC.balls))>> + Your balls produce enough cum that $pronoun usually gets facials after a mouthful of semen, and $object loves you for it. + <<else>> + $pronounCap usually has to fight for $possessive share of cum, making sure to milk cum from your urethra <<if $fuckSlaves > 1>>or suck it out of a pussy<</if>>. + <</if>> <<else>> - $pronounCap usually has to fight for $possessive share of cum, making sure to milk cum from your urethra <<if $fuckSlaves >1>>or suck it out of a pussy<</if>>. + warming your bed and lavishing devoted attention on your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussy<</if>> with $possessive loving mouth. <</if>> - <<else>> - $pronounCap spends the week warming your bed and lavishing devoted attention on your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussy<</if>> with $possessive loving mouth. - <</if>> - <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to <<if ($PC.dick == 1)>>rape $possessive face<<else>>force $object to eat you out<</if>> $object several times a day; the constant sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 5>> - <<set $slaves[$i].trust -= 15>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to <<if ($PC.dick == 1)>>rape $possessive face<<else>>force $object to eat you out<</if>> $object at least once a day; the regular sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 9>> + You have the sexual energy to + <<if ($slaves[$i].fetish == "mindbroken")>> + <<if ($PC.dick == 1)>>use $possessive mouth<<else>>make $object eat you out<</if>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _oralUse = random(21,40)>> + several times a day. + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _oralUse = random(7,14)>> + at least once a day. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _oralUse = random(3,7)>> + on occasion. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + $pronounCap absentmindedly follows your lead. + <<elseif ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> + <<if ($PC.dick == 1)>>rape $possessive face<<else>>force $object to eat you out<</if>> $object + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _oralUse = random(21,40)>> + several times a day; the constant + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _oralUse = random(7,14)>> + at least once a day; the regular + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _oralUse = random(3,7)>> + on occasion; the threat of + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<elseif ($slaves[$i].devotion <= 20)>> + <<if ($PC.dick == 1)>>use $possessive mouth<<else>>make $object eat you out<</if>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _oralUse = random(21,40)>> + several times a day; constantly + <<set $slaves[$i].devotion += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _oralUse = random(7,14)>> + at least once a day; regularly + <<set $slaves[$i].devotion += 2>> + <<else>> + <<set _oralUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1>> + <</if>> + performing oral on you @@.hotpink;habituates $object@@ to being your sex slave. <<else>> - You have the sexual energy to <<if ($PC.dick == 1)>>rape $possessive face<<else>>force $object to eat you out<</if>> $object on occasion; the threat of sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 3>> + <<if ($PC.dick == 1)>>get a blowjob<<if $PC.vagina == 1>> and some pussy licking<</if>> from $object<<else>>let $object eat you out<</if>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _oralUse = random(21,40)>> + several times a day; constantly + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _oralUse = random(7,14)>> + several times a day; regularly + <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> + <<else>> + <<set _oralUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> + <</if>> + giving you pleasure brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <</if>> - <<elseif ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to <<if ($PC.dick == 1)>>use $possessive mouth<<else>>make $object eat you out<</if>> several times a day; constantly performing oral on you @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 3>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to <<if ($PC.dick == 1)>>use $possessive mouth<<else>>make $object eat you out<</if>> at least once a day; regularly performing oral on you @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 2>> - <<else>> - You have the sexual energy to <<if ($PC.dick == 1)>>use $possessive mouth<<else>>make $object eat you out<</if>> on occasion; performing oral on you @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 1>> + <<if ($slaves[$i].fetish != "mindbroken")>> + <<if ($slaves[$i].sexualFlaw == "hates oral") && ($slaves[$i].devotion > 50)>> + $pronounCap's devoted enough to derive emotional closeness from giving you oral, which @@.green;resolves $possessive hatred of the act.@@ + <<set $slaves[$i].sexualFlaw = "none">> + <</if>> + <<if ($slaves[$i].behavioralFlaw == "hates men") && ($PC.dick == 1) && ($slaves[$i].devotion > 20)>> + Spending so much time in close proximity to your dick @@.green;reconciles $object to serving cocks.@@ + <<set $slaves[$i].behavioralFlaw = "none">> + <<elseif ($slaves[$i].behavioralFlaw == "hates women") && ($PC.vagina == 1) && ($slaves[$i].devotion > 20)>> + Spending so much time in close proximity to your womanhood @@.green;reconciles $object to serving a pussy.@@ + <<set $slaves[$i].behavioralFlaw = "none">> + <</if>> + <<if ($slaves[$i].oralSkill < 100)>> + After a lot of time spent <<if $PC.dick == 1>>sucking you off<<if $PC.vagina == 1>> and eating you out<</if>><<else>>eating you out<</if>>, $possessive oral skill improves. + <<OralSkillIncrease $slaves[$i]>> + <</if>> + <<if $slaves[$i].fetish == "cumslut">> + <<if $slaves[$i].fetishKnown == 1>> + $pronounCap @@.hotpink;quivers with ecstasy@@ just from the taste of your <<if $PC.dick == 0>>girl<</if>>cum on $possessive tongue. + <<else>> + $pronounCap @@.hotpink;seems to enjoy@@ $possessive role as a cum receptacle more than you'd expect. + <</if>> + <<set $slaves[$i].devotion += 2>> + <<elseif $fetishChangeChance > random(0,100)>> + <<set $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10, $slaves[$i].fetish = "cumslut">> + $pronounCap frequently climaxes with <<if $PC.dick == 1>>your dick in $possessive mouth<<else>>$possessive mouth on your cunt<</if>>, learning that giving @@.lightcoral;blowjobs is a lot of fun.@@ + <</if>> <</if>> + <<set $slaves[$i].oralCount += _oralUse, $oralTotal += _oralUse>> <<else>> + You keep $object with you all week, using it as your personal sex toy <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to <<if ($PC.dick == 1)>>get a blowjob<<if $PC.vagina == 1>> and some pussy licking<</if>> from $object<<else>>let $object eat you out<</if>> several times a day; constantly giving you pleasure brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 3>> - <<set $slaves[$i].trust += 3>> + <<set _oralUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to <<if ($PC.dick == 1)>>get a blowjob from $object<<else>>let $object eat you out<</if>> several times a day; regularly giving you pleasure brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 2>> - <<set $slaves[$i].trust += 2>> + <<set _oralUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to <<if ($PC.dick == 1)>>get a blowjob<<if $PC.vagina == 1>> and some pussy licking<</if>> from $object<<else>>let $object eat you out<</if>> on occasion; giving you pleasure brings $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 1>> - <<set $slaves[$i].trust += 1>> + <<set _oralUse = random(3,7)>> + on occasion. <</if>> - <</if>> - <<if ($slaves[$i].sexualFlaw == "hates oral") && ($slaves[$i].devotion > 50)>> - $pronounCap's devoted enough to derive emotional closeness from giving you oral, which @@.green;resolves $possessive hatred of the act.@@ - <<set $slaves[$i].sexualFlaw = "none">> - <</if>> - <<if ($slaves[$i].behavioralFlaw == "hates men") && ($PC.dick == 1) && ($slaves[$i].devotion > 20)>> - Spending so much time in close proximity to your dick @@.green;reconciles $object to serving cocks.@@ - <<set $slaves[$i].behavioralFlaw = "none">> - <</if>> - <<if ($slaves[$i].behavioralFlaw == "hates women") && ($PC.vagina == 1) && ($slaves[$i].devotion > 20)>> - Spending so much time in close proximity to your womanhood @@.green;reconciles $object to serving a pussy.@@ - <<set $slaves[$i].behavioralFlaw = "none">> - <</if>> - <<if ($slaves[$i].oralSkill < 100)>> - After a lot of time spent sucking you off, $possessive oral skill improves. - <<OralSkillIncrease $slaves[$i]>> - <</if>> - <<if ($slaves[$i].fetishStrength <= 60) && (random(1,500) < 100+$slaves[$i].devotion)>> - <<set $slaves[$i].fetishKnown = 1>> - <<set $slaves[$i].fetishStrength = 10>> - <<set $slaves[$i].fetish = "cumslut">> - $pronounCap climaxes with <<if $PC.dick == 1>>your dick in $possessive mouth<<else>>$possessive mouth on your cunt<</if>>, learning that giving @@.lightcoral;blowjobs is a lot of fun.@@ - <</if>> + When you're not using it, it <<if $activeSlave.amp > 0>>rests<<else>>stands<</if>> nearby, waiting silently for your order to open its mouth. + <<set $slaves[$i].oralCount += _oralUse, $oralTotal += _oralUse>> <</if>> <<elseif $slaves[$i].toyHole == "boobs">> - <<set _mammaryUse = random(5,10)>> - <<set $slaves[$i].mammaryCount += _mammaryUse>> - <<set $mammaryTotal += _mammaryUse>> <<if $slaves[$i].fuckdoll == 0>> - <<if ($slaves[$i].trust < -20)>> - $pronounCap spends the week in terrified compliance with your use of $possessive breasts. - <<elseif ($slaves[$i].devotion < -20)>> - $pronounCap spends the week trying to keep $possessive tits away from your grasping hands. - <<elseif ($slaves[$i].devotion <= 20)>> - $pronounCap spends the week reluctantly presenting $possessive tits for your use. - <<elseif ($slaves[$i].devotion <= 50)>> - $pronounCap spends the week obediently offering $possessive tits for your use. - <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "boobs")>> - $pronounCap spends the week moaning and shivering as you give it to $possessive where $pronoun likes it best: $possessive tits. - <<else>> - $pronounCap spends the week keeping $possessive tits in constant contact with you, giving you titjobs, resting them against you as you work, and serving as a comfortable pillow at bedtime. - <</if>> - <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to <<if ($PC.dick == 1)>>cum on $possessive boobs<<else>>thoroughly grope $possessive boobs<</if>> $object several times a day; the constant sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 5>> - <<set $slaves[$i].trust -= 15>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to <<if ($PC.dick == 1)>>cum on $possessive boobs<<else>>thoroughly grope $possessive boobs<</if>> $object at least once a day; the regular sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 9>> - <<set $slaves[$i].trust -= 3>> + $pronounCap spends the week + <<if ($slaves[$i].fetish == "mindbroken")>> + unaware of your intent to use $possessive breasts. + <<elseif ($slaves[$i].trust < -20)>> + in terrified compliance with your use of $possessive breasts. + <<elseif ($slaves[$i].devotion < -20)>> + trying to keep $possessive tits away from your grasping hands. + <<elseif ($slaves[$i].devotion <= 20)>> + reluctantly presenting $possessive tits for your use. + <<elseif ($slaves[$i].devotion <= 50)>> + obediently offering $possessive tits for your use. + <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "boobs")>> + moaning and shivering as you give it to $possessive where $pronoun likes it best: $possessive tits. <<else>> - You have the sexual energy to <<if ($PC.dick == 1)>>cum on $possessive boobs<<else>>thoroughly grope $possessive boobs<</if>> $object on occasion; the threat of sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 3>> + keeping $possessive tits in constant contact with you, giving you titjobs<<if $slaves[$i].nipples == "fuckable">>, savoring your enjoyment of $possessive nipplecunts<</if>>, resting them against you as you work, and serving as a comfortable pillow at bedtime. <</if>> - <<elseif ($slaves[$i].devotion <= 20)>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to play with $possessive tits several times a day; constantly submitting to your games @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 3>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to play with $possessive tits at least once a day; regularly submitting to your games @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 2>> + You have the sexual energy to + <<if ($slaves[$i].fetish == "mindbroken")>> + <<if ($PC.dick == 1)>> + <<if $slaves[$i].nipples == "fuckable">> + fuck $possessive boobs + <<else>> + cum on $possessive boobs + <</if>> + <<else>> + thoroughly grope $possessive boobs + <</if>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _mammaryUse = random(21,40)>> + several times a day. + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _mammaryUse = random(7,14)>> + at least once a day. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> + <<else>> + <<set _mammaryUse = random(3,7)>> + on occasion. + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + $pronounCap absentmindedly follows your lead. + <<elseif ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _mammaryUse = random(21,40)>> + <<if ($PC.dick == 1)>> + <<if $slaves[$i].nipples == "fuckable">> + fuck $possessive boobs + <<else>> + cum on $possessive boobs + <</if>> + <<else>> + thoroughly grope $possessive boobs + <</if>> + several times a day; the constant + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _mammaryUse = random(7,14)>> + <<if ($PC.dick == 1)>> + <<if $slaves[$i].nipples == "fuckable">> + fuck $possessive boobs + <<else>> + cum on $possessive boobs + <</if>> + <<else>> + thoroughly grope $possessive boobs + <</if>> + $object at least once a day; the regular + <<set $slaves[$i].devotion -= 9, $slaves[$i].trust -= 3>> + <<else>> + <<set _mammaryUse = random(3,7)>> + <<if ($PC.dick == 1)>> + <<if $slaves[$i].nipples == "fuckable">> + fuck $possessive boobs + <<else>> + cum on $possessive boobs + <</if>> + <<else>> + thoroughly grope $possessive boobs + <</if>> + $object on occasion; the threat of + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> + <</if>> + sexual abuse fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<elseif ($slaves[$i].devotion <= 20)>> + play with $possessive tits + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _mammaryUse = random(21,40)>> + several times a day; constantly + <<set $slaves[$i].devotion += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _mammaryUse = random(7,14)>> + at least once a day; regularly + <<set $slaves[$i].devotion += 2>> + <<else>> + <<set _mammaryUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1>> + <</if>> + submitting to your games @@.hotpink;habituates $object@@ to being your sex slave. <<else>> - You have the sexual energy to play with $possessive tits on occasion; submitting to your games @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 1>> + <<if ($PC.boobs == 1)>>have mutual mammary intercourse until you both orgasm to nipple stimulation<<else>>have mammary intercourse with $object<</if>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _mammaryUse = random(21,40)>> + several times a day; constantly + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _mammaryUse = random(7,14)>> + at least once a day; regularly + <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> + <<else>> + <<set _mammaryUse = random(3,7)>> + on occasion; + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> + <</if>> + giving you pleasure @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <</if>> + <<if ($slaves[$i].fetish != "mindbroken")>> + <<if ($slaves[$i].sexualFlaw == "hates oral") && ($slaves[$i].devotion > 50)>> + $pronounCap's devoted enough to derive emotional closeness from giving you oral, which @@.green;resolves $possessive hatred of the act.@@ + <<set $slaves[$i].sexualFlaw = "none">> + <</if>> + <<if ($slaves[$i].behavioralFlaw == "hates men") && ($slaves[$i].devotion > 20) && $PC.title == 1>> + Spending so much time in close proximity to your masculinity @@.green;reconciles $object to serving the male gender.@@ + <<set $slaves[$i].behavioralFlaw = "none">> + <<elseif ($slaves[$i].behavioralFlaw == "hates women") && ($PC.title == 0) && ($slaves[$i].devotion > 20)>> + Spending so much time in close proximity to your feminity @@.green;reconciles $object to serving the female gender.@@ + <<set $slaves[$i].behavioralFlaw = "none">> + <</if>> + <<if $slaves[$i].fetish == "boobs">> + <<if $slaves[$i].fetishKnown == 1>> + $pronounCap @@.hotpink;quivers with ecstasy@@ just from the touch of your <<if $PC.title == 1>>strong<<else>>soft<</if>> hands against $possessive <<if $slaves[$i].boobs >= 300>>breasts<<else>>flat chest<</if>>. + <<else>> + $pronounCap @@.hotpink;seems to enjoy@@ having $possessive <<if $slaves[$i].boobs >= 300>>breasts<<else>>chest<</if>> fondled more than the average girl. + <</if>> + <<set $slaves[$i].devotion += 2>> + <<elseif $fetishChangeChance > random(0,100)>> + <<set $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10, $slaves[$i].fetish = "boobs">> + $pronounCap climaxes to nipple stimulation alone, and starts acting as though + <<if $slaves[$i].clit > 0 && $slaves[$i].nipples != "fuckable">> + $pronoun has @@.lightcoral;three pleasure buttons@@ rather than just one. + <<elseif $slaves[$i].vagina > -1 && $slaves[$i].nipples == "fuckable">> + $pronoun has @@.lightcoral;a trio of pussies@@ rather than just one. + <<else>> + $possessive tits are $possessive @@.lightcoral;primary erogenous zone.@@ + <</if>> + <</if>> + <</if>> + <<set $slaves[$i].mammaryCount += _mammaryUse, $mammaryTotal += _mammaryUse>> <<else>> + You keep $object with you all week, using it as your personal sex toy <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to <<if ($PC.boobs == 1)>>have mutual mammary intercourse until you both orgasm to nipple stimulation<<else>>have mammary intercourse with $object<</if>> several times a day; constantly giving you pleasure @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 3>> - <<set $slaves[$i].trust += 3>> + <<set _mammaryUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to <<if ($PC.boobs == 1)>>have mutual mammary intercourse until you both orgasm to nipple stimulation<<else>>have mammary intercourse with $object<</if>> several times a day; regularly giving you pleasure @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 2>> - <<set $slaves[$i].trust += 2>> + <<set _mammaryUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to <<if ($PC.boobs == 1)>>have mutual mammary intercourse until you both orgasm to nipple stimulation<<else>>have mammary intercourse with $object<</if>> on occasion; giving you pleasure @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 1>> - <<set $slaves[$i].trust += 1>> + <<set _mammaryUse = random(3,7)>> + on occasion. <</if>> - <</if>> - <<if ($slaves[$i].sexualFlaw == "hates oral") && ($slaves[$i].devotion > 50)>> - $pronounCap's devoted enough to derive emotional closeness from giving you oral, which @@.green;resolves $possessive hatred of the act.@@ - <<set $slaves[$i].sexualFlaw = "none">> - <</if>> - <<if ($slaves[$i].behavioralFlaw == "hates men") && ($slaves[$i].devotion > 20)>> - Spending so much time in close proximity to your masculinity @@.green;reconciles $object to serving the male gender.@@ - <<set $slaves[$i].behavioralFlaw = "none">> - <</if>> - <<if ($slaves[$i].fetishStrength <= 60) && (random(1,500) < 100+$slaves[$i].devotion)>> - <<set $slaves[$i].fetishKnown = 1>> - <<set $slaves[$i].fetishStrength = 10>> - <<set $slaves[$i].fetish = "boobs">> - $pronounCap climaxes to nipple stimulation alone, and starts acting as though $pronoun has @@.lightcoral;three pleasure buttons@@ rather than just one. - <</if>> + When you're not using it, it <<if $activeSlave.amp > 0>>rests<<else>>stands<</if>> nearby, waiting silently for your order to present its chest. + <<set $slaves[$i].mammaryCount += _mammaryUse, $mammaryTotal += _mammaryUse>> <</if>> /*check*/ <<elseif ($slaves[$i].toyHole == "dick")>> - <<set _penetrativeTotal = random(5,10)>> - <<set $slaves[$i].penetrativeCount += _penetrativeTotal>> - <<set $penetrativeTotal += _penetrativeTotal>> <<if $slaves[$i].fuckdoll > 0>> - All it takes is a simple command to force $possessive dick to attention. + All it takes is a simple command to force $possessive dick to attention. You have the sexual energy to ride $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to ride $object several times a day. You have to do all the work, unfortunately. + <<set _penetrativeUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to ride $object at least once a day. You have to do all the work, unfortunately. + <<set _penetrativeUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to ride $object on occasion. You have to do all the work, unfortunately. + <<set _penetrativeUse = random(3,7)>> + on occasion. <</if>> + You have to do all the work, unfortunately. <<elseif $slaves[$i].fetish == "mindbroken">> <<if $slaves[$i].career == "a breeding bull">> <<if isPlayerFertile($PC)>> - $pronounCap spends the week eagerly trying to breed you. + $pronounCap spends the week eagerly trying to breed you. You have the sexual energy to take $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to take $object several times a day. + <<set _penetrativeUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to take $object at least once a day. + <<set _penetrativeUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to take $object on occasion. + <<set _penetrativeUse = random(3,7)>> + on occasion. <</if>> $pronoun happily mounts you and humps away, but $pronoun has no sense of what's pleasurable to you and just excitedly thrusts until $pronoun cums inside you. <<else>> - You spend the week getting humped by $object after you've managed to encourage her to mount you. + You spend the week getting humped by $object after you've managed to encourage her to mount you. You have the sexual energy to use $possessive dick <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to use $possessive dick several times a day. + <<set _penetrativeUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to use $possessive dick at least once a day. + <<set _penetrativeUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to use $possessive dick on occasion. + <<set _penetrativeUse = random(3,7)>> + on occasion. <</if>> $possessiveCap conditioning tells $object to impregnate others, and since $pronoun sees you as already pregnant, just cums inside you for $possessive own pleasure. <</if>> <<else>> - You spend the week using $possessive dick after you've stimulated $object enough to get $object hard. + You spend the week using $possessive dick after you've stimulated $object enough to get $object hard. You have the sexual energy to ride $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to ride $object several times a day. + <<set _penetrativeUse = random(21,40)>> + several times a day. <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to ride $object at least once a day. + <<set _penetrativeUse = random(7,14)>> + at least once a day. <<else>> - You have the sexual energy to ride $object on occasion. + <<set _penetrativeUse = random(3,7)>> + on occasion. <</if>> $pronoun sometimes thrusts out of instinct, but most of the work in the endeavor falls to you. <</if>> @@ -404,39 +670,52 @@ serves you this week. <<else>> eagerly driving $possessive shaft into your womanhood as you knead your aching breasts. <</if>> + You have the sexual energy to desire $possessive dick in you <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to desire $possessive dick in you several times a day; constantly getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence@@ and @@.mediumaquamarine;lessens $possessive fear@@ of you. + <<set _penetrativeUse = random(21,40)>> + several times a day; <<set $slaves[$i].devotion -= 15, $slaves[$i].trust += 7>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to desire $possessive dick in you at least once a day; getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence@@ and @@.mediumaquamarine;lessens $possessive fear@@ of you. + <<set _penetrativeUse = random(7,14)>> + at least once a day; <<set $slaves[$i].devotion -= 10, $slaves[$i].trust += 7>> <<else>> - You have the sexual energy to desire $possessive dick in you on occasion; getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence@@ and @@.mediumaquamarine;lessens $possessive fear@@ of you. + <<set _penetrativeUse = random(3,7)>> + on occasion; <<set $slaves[$i].devotion -= 5, $slaves[$i].trust += 7>> <</if>> + getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence@@ and @@.mediumaquamarine;lessens $possessive fear@@ of you. <<elseif ($slaves[$i].devotion <= 20)>> <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to desire $possessive dick in you several times a day; constantly getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence,@@ yet @@.mediumaquamarine;makes $possessive more trusting@@ of you. + <<set _penetrativeUse = random(21,40)>> + several times a day; <<set $slaves[$i].devotion -= 5, $slaves[$i].trust += 5>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to desire $possessive dick in you at least once a day; getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence,@@ yet @@.mediumaquamarine;makes $possessive more trusting@@ of you. + <<set _penetrativeUse = random(7,14)>> + at least once a day; <<set $slaves[$i].devotion -= 4, $slaves[$i].trust += 4>> <<else>> - You have the sexual energy to desire $possessive dick in you on occasion; getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence,@@ yet @@.mediumaquamarine;makes $possessive more trusting@@ of you. + <<set _penetrativeUse = random(3,7)>> + on occasion; <<set $slaves[$i].devotion -= 3, $slaves[$i].trust += 3>> <</if>> + getting to dominantly fuck $possessive '<<WrittenMaster $slaves[$i]>>' @@.mediumorchid;builds $possessive self-confidence,@@ yet @@.mediumaquamarine;makes $possessive more trusting@@ of you. <<else>> <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to get fucked by $object several times a day; constant, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <<set _penetrativeUse = random(21,40)>> + several times a day; constant, enjoyable <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to get fucked by $object several times a day; regular, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <<set _penetrativeUse = random(7,14)>> + at least once a day; regular, enjoyable <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> <<else>> - You have the sexual energy to get fucked by $object on occasion; enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <<set _penetrativeUse = random(3,7)>> + on occasion; enjoyable <<set $slaves[$i].devotion++, $slaves[$i].trust++>> <</if>> + sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <</if>> <<elseif $PC.preg >= 24 && $PC.pregMood == 2>> $pronounCap spends the week @@ -453,39 +732,52 @@ serves you this week. <<else>> happily pampering and supporting your gravid bulk as you ride $possessive dick in a futile attempt to cool your raging hormones. <</if>> + You have the sexual energy to aggressively mount $object <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to aggressively mount $object several times a day; the constant, violent rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<set _penetrativeUse = random(21,40)>> + several times a day; the constant, <<set $slaves[$i].devotion -= 10, $slaves[$i].trust -= 25>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to aggressively mount $object at least once a day; the regular, violent rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<set _penetrativeUse = random(7,14)>> + at least once a day; the regular, <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> <<else>> - You have the sexual energy to aggressively mount $object on occasion; the threat of violent rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<set _penetrativeUse = random(3,7)>> + on occasion; the threat of <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 5>> <</if>> + violent rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ <<elseif ($slaves[$i].devotion <= 20)>> <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to aggressively mount $object several times a day; submitting to your constant, forceful use @@.hotpink;habituates $object@@ to being a sex slave, though $pronoun learns to @@.gold;fear@@ your bottomless lust. + <<set _penetrativeUse = random(21,40)>> + several times a day; submitting to your constant, <<set $slaves[$i].devotion += 3, $slaves[$i].trust -= 5>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to aggressively mount $object at least once a day; submitting to your regular, forceful use @@.hotpink;habituates $object@@ to being a sex slave, though $pronoun learns to @@.gold;fear@@ your bottomless lust. + <<set _penetrativeUse = random(7,14)>> + at least once a day; submitting to your regular, <<set $slaves[$i].devotion += 2, $slaves[$i].trust -= 4>> <<else>> - You have the sexual energy to aggressively mount $object on occasion; submitting to your rather forceful use @@.hotpink;habituates $object@@ to being a sex slave, though $pronoun learns to @@.gold;fear@@ your bottomless lust. + <<set _penetrativeUse = random(3,7)>> + on occasion; submitting to your rather <<set $slaves[$i].devotion++, $slaves[$i].trust -= 3>> <</if>> + forceful use @@.hotpink;habituates $object@@ to being a sex slave, though $pronoun learns to @@.gold;fear@@ your bottomless lust. <<else>> <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to aggressively mount $object several times a day; constant, rough sex with you teaches $object that @@.hotpink;$possessive place is under your stomach.@@ + <<set _penetrativeUse = random(21,40)>> + several times a day; constant, <<set $slaves[$i].devotion += 3>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to aggressively mount $object several times a day; regular, rough sex with you teaches $object that @@.hotpink;$possessive place is under your stomach.@@ + <<set _penetrativeUse = random(7,14)>> + at least once a day; regular, <<set $slaves[$i].devotion += 2>> <<else>> - You have the sexual energy to aggressively mount $object on occasion; rough sex with you teaches $object that @@.hotpink;$possessive place is under your stomach.@@ + <<set _penetrativeUse = random(3,7)>> + on occasion; <<set $slaves[$i].devotion++>> <</if>> + rough sex with you teaches $object that @@.hotpink;$possessive place is under your stomach.@@ <</if>> <<else>> $pronounCap spends the week @@ -509,44 +801,65 @@ serves you this week. serving you in the classical way, warming your bed and lovingly driving $possessive shaft into your backdoor. <</if>> <<if ($slaves[$i].trust > -20) && ($slaves[$i].devotion <= 20)>> + You have the sexual energy to ride $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to ride $object several times a day; the constant rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<set _penetrativeUse = random(21,40)>> + several times a day; the constant <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to ride $object at least once a day; the regular rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<set _penetrativeUse = random(7,14)>> + at least once a day; the regular <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 9>> <<else>> - You have the sexual energy to ride $object on occasion; the threat of rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ + <<set _penetrativeUse = random(3,7)>> + on occasion; the threat of <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> <</if>> + rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ <<elseif ($slaves[$i].devotion <= 20)>> + You have the sexual energy to ride $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to ride $object several times a day; submitting to your constant use @@.hotpink;habituates $object@@ to being your sex slave. + <<set _penetrativeUse = random(21,40)>> + several times a day; submitting to your constant <<set $slaves[$i].devotion += 3>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to ride $object at least once a day; submitting to your regular use @@.hotpink;habituates $object@@ to being your sex slave. + <<set _penetrativeUse = random(7,14)>> + at least once a day; submitting to your regular <<set $slaves[$i].devotion += 2>> <<else>> - You have the sexual energy to ride $object on occasion; submitting to your use @@.hotpink;habituates $object@@ to being your sex slave. + <<set _penetrativeUse = random(3,7)>> + on occasion; submitting to your <<set $slaves[$i].devotion++>> <</if>> + use @@.hotpink;habituates $object@@ to being your sex slave. <<else>> + You have the sexual energy to get fucked by $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to get fucked by $object several times a day; constant, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <<set _penetrativeUse = random(21,40)>> + several times a day; constant, <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to get fucked by $object several times a day; regular, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <<set _penetrativeUse = random(7,14)>> + at least once a day; regular, <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> <<else>> - You have the sexual energy to get fucked by $object on occasion; enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ + <<set _penetrativeUse = random(3,7)>> + on occasion; <<set $slaves[$i].devotion++, $slaves[$i].trust++>> <</if>> + enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <</if>> <</if>> /*check*/ + <<if ($slaves[$i].fetish != "mindbroken")>> + <<if ($slaves[$i].behavioralFlaw == "hates women") && ($PC.title == 0) && ($PC.vagina == 1) && ($PC.dick == 0) && ($slaves[$i].devotion > 20)>> + Spending so much intimate time with an attractive woman @@.green;reconciles $object to serving the fairer sex.@@ + <<set $slaves[$i].behavioralFlaw = "none">> + <</if>> + <</if>> + <<set $slaves[$i].penetrativeCount += _penetrativeUse, $penetrativeTotal += _penetrativeUse>> <<if isPlayerFertile($PC) && ($slaves[$i].ballType == "human") && ($slaves[$i].vasectomy != 1)>> - <<set _fuckCount = (2*(_penetrativeTotal*2))>> - <<KnockMeUp $PC _fuckCount 0 $slaves[$i].ID>> + <<KnockMeUp $PC _penetrativeUse 0 $slaves[$i].ID>> <</if>> <<if $sexualOpeness == 0>> Rumors spread that you @@.red;enjoy taking it from slaves.@@ @@ -561,15 +874,38 @@ serves you this week. <<set $slaves[$i].trust += 4>> <<elseif ($slaves[$i].anus == 0) && ($slaves[$i].vagina == 0)>> - Since you haven't yet decided to sell or take $possessive virginity or $possessive tight little anus, you let $object please you with $possessive mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object keep $possessive innocence for another week, though $possessive throat gets a little sore doing the work of three holes. + Since you haven't yet decided to sell or take $possessive virginity or $possessive tight little anus, you let $object please you with $possessive mouth<<if $slaves[$i].nipples == "fuckable" && $PC.dick == 1>> and tits<</if>>. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object keep $possessive innocence for another week, though $possessive + <<if $slaves[$i].nipples == "fuckable" && $PC.dick == 1>> + throat and breasts get a little sore picking up the slack. + <<else>> + throat gets a little sore doing the work of three holes. + <</if>> <<set $slaves[$i].trust += 1>> - <<elseif ($slaves[$i].vagina == 0) && canDoVaginal($slaves[$i])>> - Since you haven't yet decided to sell or take $possessive virginity, but $pronoun's taken it up the ass, you let $object be your anal whore. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $possessive keep $possessive innocence for another week, though $possessive butt gets a little sore. + <<elseif ($slaves[$i].vagina == 0)>> + Since you haven't yet decided to sell or take $possessive virginity, you let $object confine $possessive efforts to $possessive + <<if canDoAnal($slaves[$i]) && $slaves[$i].nipples == "fuckable" && $PC.dick == 1>> + anus, nipples and mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $possessive keep $possessive innocence for another week, though $possessive butt, boobs and throat get a little sore. + <<elseif canDoAnal($slaves[$i])>> + anus and mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $possessive keep $possessive innocence for another week, though $possessive butt and throat get a little sore. + <<elseif $slaves[$i].nipples == "fuckable" && $PC.dick == 1>> + nipples and mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $possessive keep $possessive innocence for another week, though $possessive boobs and throat get a little sore. + <<else>> + mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $possessive keep $possessive innocence for another week, though $possessive throat gets a little sore. + <</if>> <<set $slaves[$i].trust += 1>> - <<elseif ($slaves[$i].anus == 0) && canDoAnal($slaves[$i])>> - Since you haven't yet decided to sell or take $possessive tight little anus, you let $object confine $possessive efforts to $possessive <<if canDoVaginal($slaves[$i])>>pussy and <</if>>mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object put off taking it up the butt another week. + <<elseif ($slaves[$i].anus == 0)>> + Since you haven't yet decided to sell or take $possessive tight little anus, you let $object confine $possessive efforts to $possessive + <<if canDoVaginal($slaves[$i]) && $slaves[$i].nipples == "fuckable" && $PC.dick == 1>> + pussy, nipples and mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object put off taking it up the butt another week, though $possessive boobs and throat get a little sore. + <<elseif canDoVaginal($slaves[$i])>> + pussy and mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object put off taking it up the butt another week, though $possessive throat gets a little sore. + <<elseif $slaves[$i].nipples == "fuckable" && $PC.dick == 1>> + nipples and mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object put off taking it up the butt another week, though $possessive boobs and throat get a little sore. + <<else>> + mouth. $pronounCap is @@.mediumaquamarine;duly grateful@@ you let $object put off taking it up the butt another week, though $possessive throat gets a little sore. + <</if>> <<set $slaves[$i].trust += 1>> <<elseif !canWalk($slaves[$i])>> @@ -597,109 +933,116 @@ serves you this week. <<elseif ($slaves[$i].devotion > 50)>> $pronounCap devotedly accompanies you all week, keeping $possessive <<if canDoAnal($slaves[$i]) && canDoVaginal($slaves[$i])>> - mouth, vagina and asshole + mouth, vagina<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>, nipples<</if>> and asshole <<elseif ($slaves[$i].vagina == -1) && canDoAnal($slaves[$i])>> - mouth and asshole + mouth<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>, nipples<</if>> and asshole <<elseif ($slaves[$i].vagina > -1) && !canDoVaginal($slaves[$i]) && canDoAnal($slaves[$i])>> - mouth and, since $possessive pussy is covered by $possessive chastity belt, asshole + mouth<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>, nipples<</if>> and, since $possessive pussy is covered by $possessive chastity belt, asshole <<else>> - mouth + mouth<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>and nipples<</if>> <</if>> available for you at all times. - <<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i]) && $slaves[$i].dickAccessory != "chastity" && $slaves[$i].dickAccessory != "combined chastity">> - Every time $possessive beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> fucks $object, $pronoun gets a hardon. - <<elseif ($slaves[$i].dick != 0) && canDoAnal($slaves[$i])>> - $pronounCap doesn't get a hardon as you use $object, but $pronoun comes from the prostate stimulation when $possessive beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> uses $possessive butt. - <<elseif ($slaves[$i].dick != 0) && canDoVaginal($slaves[$i])>> - $pronounCap doesn't get a hardon as you use $object, but $pronoun comes from the prostate stimulation when $possessive beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> uses $possessive pussy. - <<else>> - $pronounCap comes indecently hard whenever $possessive beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> uses $possessive body. + <<if canAchieveErection($slaves[$i]) && $slaves[$i].dickAccessory != "chastity" && $slaves[$i].dickAccessory != "combined chastity">> + Every time $possessive beloved <<WrittenMaster $slaves[$i]>> fucks $object, $pronoun gets a hardon. + <<elseif ($slaves[$i].dick != 0) && ($slaves[$i].prostate > 0) && canDoVaginal($slaves[$i])>> + $pronounCap doesn't get a hardon as you use $object, but $pronoun comes from the prostate stimulation when $possessive beloved <<WrittenMaster $slaves[$i]>> uses $possessive pussy. + <<elseif ($slaves[$i].dick != 0) && ($slaves[$i].prostate > 0) && canDoAnal($slaves[$i])>> + $pronounCap doesn't get a hardon as you use $object, but $pronoun comes from the prostate stimulation when $possessive beloved <<WrittenMaster $slaves[$i]>> uses $possessive butt. + <<else>> + $pronounCap comes indecently hard whenever $possessive beloved <<WrittenMaster $slaves[$i]>> uses $possessive body. <</if>> - <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; constant, loving sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 3>> - <<set $slaves[$i].trust += 3>> - <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object several times a day; regular, loving sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 2>> - <<set $slaves[$i].trust += 2>> - <<else>> - You have the sexual energy to fuck $object on occasion; loving sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 1>> - <<set $slaves[$i].trust += 1>> - <</if>> - <<set _acts = random(3,5)>> + You have the sexual energy to fuck $object + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + several times a day; constant, + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + at least once a day; regular, + <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> + <<else>> + on occasion; + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> + <</if>> + loving sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <<elseif ($slaves[$i].devotion > 20)>> Whenever you feel the need, you use whichever of $possessive available holes that appears most appealing at the moment, since $pronoun's up for anything. <<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i]) && $slaves[$i].dickAccessory != "chastity" && $slaves[$i].dickAccessory != "combined chastity">> By the end of the week $pronoun gets a hardon when you use $object. <</if>> + You have the sexual energy to fuck $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; constant, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 3>> - <<set $slaves[$i].trust += 3>> + several times a day; constant, + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object several times a day; regular, enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 2>> - <<set $slaves[$i].trust += 2>> + at least once a day; regular, + <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 2>> <<else>> - You have the sexual energy to fuck $object on occasion; enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ - <<set $slaves[$i].devotion += 1>> - <<set $slaves[$i].trust += 1>> + on occasion; + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> <</if>> + enjoyable sex with you draws $object @@.hotpink;closer to you@@ and encourages $object to @@.mediumaquamarine;trust you.@@ <<elseif ($slaves[$i].trust < -20)>> $pronounCap is afraid of you and does $possessive best to offer you $possessive <<if canDoAnal($slaves[$i]) && canDoVaginal($slaves[$i])>> - mouth, vagina and asshole + mouth, vagina<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>, nipples<</if>> and asshole <<elseif ($slaves[$i].vagina == -1) && canDoAnal($slaves[$i])>> - mouth and asshole + mouth<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>, nipples<</if>> and asshole <<elseif ($slaves[$i].vagina > -1) && !canDoVaginal($slaves[$i]) && canDoAnal($slaves[$i])>> - mouth and, since $possessive pussy is covered by $possessive chastity belt, asshole + mouth<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>, nipples<</if>> and, since $possessive pussy is covered by $possessive chastity belt, asshole <<else>> - mouth + mouth<<if $PC.dick == 1 && $slaves[$i].nipples == "fuckable">>and nipples<</if>> <</if>> to save herself from worse treatment than mere rape. <<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i]) && $slaves[$i].dickAccessory != "chastity" && $slaves[$i].dickAccessory != "combined chastity">> By the end of the week $pronoun gets a hardon when you use $object. <</if>> + You have the sexual energy to fuck $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; submitting to your constant use @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 3>> + several times a day; submitting to your constant + <<set $slaves[$i].devotion += 3>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object at least once a day; submitting to your regular use @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 2>> + at least once a day; submitting to your regular + <<set $slaves[$i].devotion += 2>> <<else>> - You have the sexual energy to fuck $object on occasion; submitting to your use @@.hotpink;habituates $object@@ to being your sex slave. - <<set $slaves[$i].devotion += 1>> + on occasion; submitting to your + <<set $slaves[$i].devotion += 1>> <</if>> + use @@.hotpink;habituates $object@@ to being your sex slave. <<else>> Whenever you feel the need, you grab $object and use whichever of $possessive available holes that appears most appealing at the moment. - <<if ($slaves[$i].dick != 0)>> + <<if ($slaves[$i].dick != 0) && canAchieveErection($slaves[$i])>> $possessiveCap dick stays limp as you rape $object. <</if>> + You have the sexual energy to fuck $object <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> - You have the sexual energy to fuck $object several times a day; the constant rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 5>> - <<set $slaves[$i].trust -= 15>> + several times a day; the constant + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 15>> <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> - You have the sexual energy to fuck $object at least once a day; the regular rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 9>> - <<set $slaves[$i].trust -= 3>> + at least once a day; the regular + <<set $slaves[$i].devotion -= 9, $slaves[$i].trust -= 3>> <<else>> - You have the sexual energy to fuck $object on occasion; the threat of rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ - <<set $slaves[$i].devotion -= 3>> - <<set $slaves[$i].trust -= 3>> + on occasion; the threat of + <<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>> <</if>> + rape fills $object with @@.mediumorchid;revulsion@@ and @@.gold;fear.@@ <</if>> - <<set _acts = random(5,10)>> + <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> + <<set _acts = random(21,40)>> + <<elseif ($fuckSlaves <= $PC.sexualEnergy)>> + <<set _acts = random(7,14)>> + <<else>> + <<set _acts = random(3,7)>> + <</if>> <<set _oralUse = 1>> <<if canDoAnal($slaves[$i]) && $slaves[$i].anus > 0>><<set _analUse = 1>><</if>> <<if canDoVaginal($slaves[$i]) && $slaves[$i].vagina > 0>><<set _vaginalUse = 1>><</if>> <<set _mammaryUse = random(0,1)>> + <<if $slaves[$i].nipples == "fuckable">> + <<set _mammaryUse = 1>> + <</if>> <<set _demand = _oralUse+_analUse+_vaginalUse+_mammaryUse>> <<set _oralUse = Math.trunc((_oralUse/_demand)*_acts)>> <<set _analUse = Math.trunc((_analUse/_demand)*_acts)>> @@ -711,20 +1054,22 @@ serves you this week. <<set $slaves[$i].mammaryCount += _mammaryUse, $mammaryTotal += _mammaryUse>> <<if $slaves[$i].fuckdoll == 0>> - <<if ($slaves[$i].health < 0) && (random(1,100) > 50)>> - Under your personal supervision, @@.green;$possessive health improves.@@ - <<set $slaves[$i].health += 10>> - <</if>> - <<if ($slaves[$i].oralSkill < 100)>> - After a lot of time spent with <<if $PC.dick == 1>>your dick in $possessive mouth<<else>>$possessive mouth on your cunt<</if>>, $possessive oral skill improves. - <<OralSkillIncrease $slaves[$i]>> - <<elseif ($slaves[$i].vaginalSkill < 100) && ($slaves[$i].vagina > 0) && canDoVaginal($slaves[$i])>> - After a lot of time spent getting fucked, $possessive vaginal skill improves. - <<VaginalSkillIncrease $slaves[$i]>> - <<elseif ($slaves[$i].analSkill < 100) && ($slaves[$i].anus != 0) && canDoAnal($slaves[$i])>> - After a lot of time spent taking it up the ass, $possessive anal skill improves. - <<AnalSkillIncrease $slaves[$i]>> - <</if>> + <<if ($slaves[$i].health < 0) && (random(1,100) > 50)>> + Under your personal supervision, @@.green;$possessive health improves.@@ + <<set $slaves[$i].health += 10>> + <</if>> + <<if $slaves[$i].fetish != "mindbroken">> + <<if ($slaves[$i].oralSkill < 100)>> + After a lot of time spent with <<if $PC.dick == 1>>your dick in $possessive mouth<<else>>$possessive mouth on your cunt<</if>>, $possessive oral skill improves. + <<OralSkillIncrease $slaves[$i]>> + <<elseif ($slaves[$i].vaginalSkill < 100) && ($slaves[$i].vagina > 0) && canDoVaginal($slaves[$i])>> + After a lot of time spent getting fucked, $possessive vaginal skill improves. + <<VaginalSkillIncrease $slaves[$i]>> + <<elseif ($slaves[$i].analSkill < 100) && ($slaves[$i].anus != 0) && canDoAnal($slaves[$i])>> + After a lot of time spent taking it up the ass, $possessive anal skill improves. + <<AnalSkillIncrease $slaves[$i]>> + <</if>> + <</if>> <</if>> <</if>> @@ -833,7 +1178,7 @@ serves you this week. <</if>> <</if>> -<<set FResult($slaves[$i])>> +<<run FResult($slaves[$i])>> <<Beauty $slaves[$i]>> <<set _multiplier = 0.1>> @@ -882,52 +1227,52 @@ Keeping $object as nothing but your personal <</if>> <<if $slaves[$i].fuckdoll == 0>> -<<if $slaves[$i].relationship == -2>> - $possessiveCap satisfaction with $possessive place near you is obvious, @@.green;bringing attention@@ to how completely you've broken $object. -<<elseif $slaves[$i].relationship == -3 && $slaves[$i].devotion > 50>> - $possessiveCap satisfaction with $possessive wifely duties is obvious, @@.green;bringing attention@@ to the slave future you're building. -<</if>> -<<if $arcologies[0].FSRestart > 50 && $slaves[$i].breedingMark == 1>> - $possessiveCap breeding mark and $possessive place near you as a breeding toy is obvious, @@.green;bringing attention@@ to how beautiful a pairing you make. -<</if>> -<<if $arcologies[0].FSRepopulationFocus > 50 && $slaves[$i].bellyPreg>> - $possessiveCap advanced pregnancy and role as your gravid breeder is obvious, @@.green;bringing attention@@ to a woman's ideal role in $arcologies[0].name. -<</if>> -<<if ($slaves[$i].behavioralQuirk == "confident")>> - $slaves[$i].slaveName @@.mediumaquamarine;confidently enjoys@@ the prestige within the slave hierarchy that comes with being your fucktoy. - <<set $slaves[$i].trust += 1>> -<<elseif ($slaves[$i].behavioralQuirk == "insecure")>> - $slaves[$i].slaveName @@.mediumaquamarine;constantly reassures herself@@ that $pronoun must be pretty, since you keep $object as a fucktoy. - <<set $slaves[$i].trust += 1>> -<</if>> -<<if ($slaves[$i].behavioralQuirk == "adores men")>> - <<if ($PC.dick == 1)>> - $slaves[$i].slaveName @@.hotpink;adores your company,@@ and is happy to spend time with you, even when you don't have your cock in $object. - <<set $slaves[$i].devotion += 1>> + <<if $slaves[$i].relationship == -2>> + $possessiveCap satisfaction with $possessive place near you is obvious, @@.green;bringing attention@@ to how completely you've broken $object. + <<elseif $slaves[$i].relationship == -3 && $slaves[$i].devotion > 50>> + $possessiveCap satisfaction with $possessive wifely duties is obvious, @@.green;bringing attention@@ to the slave future you're building. <</if>> -<<elseif ($slaves[$i].behavioralQuirk == "adores women")>> - <<if ($PC.vagina == 1)>> - $slaves[$i].slaveName @@.hotpink;adores your company,@@ and is happy to spend time with you, even when you aren't fucking. - <<set $slaves[$i].devotion += 1>> + <<if $arcologies[0].FSRestart > 50 && $slaves[$i].breedingMark == 1>> + $possessiveCap breeding mark and $possessive place near you as a breeding toy is obvious, @@.green;bringing attention@@ to how beautiful a pairing you make. <</if>> -<<elseif ($slaves[$i].sexualQuirk == "romantic")>> - $slaves[$i].slaveName knows being part of your harem is the best romance $pronoun can realistically expect, and does $possessive best to @@.mediumaquamarine;be content@@ with it. - <<set $slaves[$i].trust += 1>> -<</if>> -<<if $slaves[$i].fetish != "mindbroken">> - <<if $slaves[$i].fetish == "pregnancy" && ($PC.preg >= 20 || ($PC.preg >= 16 && $PC.career == "escort"))>> - $slaves[$i].slaveName @@.hotpink;enjoys being so close her gravid <<WrittenMaster $slaves[$i]>>.@@ + <<if $arcologies[0].FSRepopulationFocus > 50 && $slaves[$i].bellyPreg >= 5000>> + $possessiveCap advanced pregnancy and role as your gravid breeder is obvious, @@.green;bringing attention@@ to a woman's ideal role in $arcologies[0].name. + <</if>> + <<if ($slaves[$i].behavioralQuirk == "confident")>> + $slaves[$i].slaveName @@.mediumaquamarine;confidently enjoys@@ the prestige within the slave hierarchy that comes with being your fucktoy. + <<set $slaves[$i].trust += 1>> + <<elseif ($slaves[$i].behavioralQuirk == "insecure")>> + $slaves[$i].slaveName @@.mediumaquamarine;constantly reassures herself@@ that $pronoun must be pretty, since you keep $object as a fucktoy. + <<set $slaves[$i].trust += 1>> + <</if>> + <<if ($slaves[$i].behavioralQuirk == "adores men")>> + <<if ($PC.dick == 1)>> + $slaves[$i].slaveName @@.hotpink;adores your company,@@ and is happy to spend time with you, even when you don't have your cock in $object. <<set $slaves[$i].devotion += 1>> - <<if $slaves[$i].fetishKnown == 0>> - She enjoys being tasked with servicing a pregnant woman far more than a normal slave would; @@.lightcoral;she's harboring a pregnancy fetish!@@ - <<set $slaves[$i].fetishKnown = 1>> - <<elseif $slaves[$i].fetishStrength < 95>> - Being tasked with servicing a lusty pregnant woman @@.lightcoral;strengthens her pregnancy fetish.@@ - <<set $slaves[$i].fetishStrength += 4>> - <</if>> - <<elseif $fetishChangeChance > random(0,100) && ($PC.preg >= 20 || ($PC.preg >= 16 && $PC.career == "escort"))>> - At first she found the prospect of being used by her increasingly pregnant <<WrittenMaster $slaves[$i]>> a turn off, but being so close to your gravid form serves to be more erotic than she anticipated. Soon she finds herself aroused less from the prospect of sex and more @@.lightcoral;the chance to be near your child laden belly.@@ - <<set $slaves[$i].fetish = "pregnancy", $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10>> + <</if>> + <<elseif ($slaves[$i].behavioralQuirk == "adores women")>> + <<if ($PC.vagina == 1)>> + $slaves[$i].slaveName @@.hotpink;adores your company,@@ and is happy to spend time with you, even when you aren't fucking. + <<set $slaves[$i].devotion += 1>> + <</if>> + <<elseif ($slaves[$i].sexualQuirk == "romantic")>> + $slaves[$i].slaveName knows being part of your harem is the best romance $pronoun can realistically expect, and does $possessive best to @@.mediumaquamarine;be content@@ with it. + <<set $slaves[$i].trust += 1>> + <</if>> + <<if $slaves[$i].fetish != "mindbroken">> + <<if $slaves[$i].fetish == "pregnancy" && ($PC.preg >= 20 || ($PC.preg >= 16 && $PC.career == "escort"))>> + $slaves[$i].slaveName @@.hotpink;enjoys being so close her gravid <<WrittenMaster $slaves[$i]>>.@@ + <<set $slaves[$i].devotion += 1>> + <<if $slaves[$i].fetishKnown == 0>> + She enjoys being tasked with servicing a pregnant woman far more than a normal slave would; @@.lightcoral;she's harboring a pregnancy fetish!@@ + <<set $slaves[$i].fetishKnown = 1>> + <<elseif $slaves[$i].fetishStrength < 95>> + Being tasked with servicing a lusty pregnant woman @@.lightcoral;strengthens her pregnancy fetish.@@ + <<set $slaves[$i].fetishStrength += 4>> + <</if>> + <<elseif $fetishChangeChance > random(0,100) && ($PC.preg >= 20 || ($PC.preg >= 16 && $PC.career == "escort"))>> + At first she found the prospect of being used by her increasingly pregnant <<WrittenMaster $slaves[$i]>> a turn off, but being so close to your gravid form serves to be more erotic than she anticipated. Soon she finds herself aroused less from the prospect of sex and more @@.lightcoral;the chance to be near your child laden belly.@@ + <<set $slaves[$i].fetish = "pregnancy", $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10>> + <</if>> <</if>> -<</if>> <</if>> diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw index 093e8e7795124979d3cbaf53079c2aac48204561..8164b3636d625e73d8d198fbe31dc06cab9c2b1a 100644 --- a/src/uncategorized/saServeThePublic.tw +++ b/src/uncategorized/saServeThePublic.tw @@ -414,7 +414,7 @@ Her appearance attracted $beauty members of the public (<<print Math.trunc($beau <<set $slaves[$i].devotion += 4>> <</if>> <<else>> - <<if ($slaves[$i].oralSkill + $slaves[$i].analSkill >= 200) && (($slaves[$i].vaginalSkill >= 100) || (canDoVaginal($slaves[$i]) == false))>> + <<if ($slaves[$i].oralSkill + $slaves[$i].analSkill >= 200) && (($slaves[$i].vaginalSkill >= 100) || !canDoVaginal($slaves[$i]))>> She's a @@.aquamarine;sexual master@@ <<if canDoVaginal($slaves[$i])>> whose @@ -433,7 +433,7 @@ Her appearance attracted $beauty members of the public (<<print Math.trunc($beau <</if>> she offers personal training and sexual therapy. <<else>> - She shows diligence, and her @@.green;sexual skills improve,@@ according to what the citizens demand<<if canDoVaginal($slaves[$i]) == false>> and what's possible for her<</if>>. + She shows diligence, and her @@.green;sexual skills improve,@@ according to what the citizens demand<<if !canDoVaginal($slaves[$i])>> and what's possible for her<</if>>. <<set $skillIncrease = 5+$slaves[$i].intelligence+$oralUseWeight>> <<OralSkillIncrease $slaves[$i]>> <<if canDoAnal($slaves[$i])>> @@ -1476,7 +1476,7 @@ Her appearance attracted $beauty members of the public (<<print Math.trunc($beau <<if ($slaves[$i].lips > 70)>> <<set _vignettes.push({text: "she earned extra gratitude from a citizen who likes to play with her lips nonsexually (don't ask),", type: "rep", effect: 1})>> <</if>> -<<if (canTalk($slaves[$i]) == false)>> +<<if !canTalk($slaves[$i])>> <<set _vignettes.push({text: "she impressed a citizen who didn't know how relaxing a girl who can't talk could be,", type: "rep", effect: 1})>> <</if>> <<if ($slaves[$i].muscles > 95)>> diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw index 61fc3bdd59f981b8d1e7e11a205799a3aad619e1..5ab1ab3790b5d5bef3687336e73237e76a3ce327 100644 --- a/src/uncategorized/saWhore.tw +++ b/src/uncategorized/saWhore.tw @@ -411,7 +411,7 @@ Her appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a da <<set $slaves[$i].devotion += 4>> <</if>> <<else>> - <<if ($slaves[$i].oralSkill + $slaves[$i].analSkill >= 200) && (($slaves[$i].vaginalSkill >= 100) || (canDoVaginal($slaves[$i]) == false))>> + <<if ($slaves[$i].oralSkill + $slaves[$i].analSkill >= 200) && (($slaves[$i].vaginalSkill >= 100) || !canDoVaginal($slaves[$i]))>> She's a @@.aquamarine;sexual master@@ <<if canDoVaginal($slaves[$i])>> whose @@ -430,7 +430,7 @@ Her appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a da <</if>> she works social gatherings and high society. <<else>> - She shows diligence, and her sexual skills improve, according to what the customers demand<<if canDoVaginal($slaves[$i]) == false>> and what's possible for her<</if>>. + She shows diligence, and her sexual skills improve, according to what the customers demand<<if !canDoVaginal($slaves[$i])>> and what's possible for her<</if>>. <<set $skillIncrease = 5+$slaves[$i].intelligence+$oralUseWeight>> <<OralSkillIncrease $slaves[$i]>> <<if canDoAnal($slaves[$i])>> @@ -1472,7 +1472,7 @@ In total, you were paid @@.yellowgreen;<<print cashFormat(Math.trunc($beauty*$FR <<if ($slaves[$i].lips > 70)>> <<set _vignettes.push({text: "she earned repeat business from a customer who likes to play with her lips nonsexually (don't ask),", type: "cash", effect: 1})>> <</if>> -<<if (canTalk($slaves[$i]) == false)>> +<<if !canTalk($slaves[$i])>> <<set _vignettes.push({text: "she impressed a customer who didn't know how relaxing a girl who can't talk could be,", type: "rep", effect: 1})>> <</if>> <<if ($slaves[$i].muscles > 95)>> diff --git a/src/uncategorized/seExpiration.tw b/src/uncategorized/seExpiration.tw index fdb0ae15b486242aa369e6141d820a68c659fafe..c53eb120422f58f2a1c66e9d9760d51cf56e63b3 100644 --- a/src/uncategorized/seExpiration.tw +++ b/src/uncategorized/seExpiration.tw @@ -62,7 +62,7 @@ She has been trying desperately hard not to think about this trying situation, b <<else>> throws herself at your feet and clings to your knees, bursting into tears. <</if>> -<<if canTalk($activeSlave) == false>> +<<if !canTalk($activeSlave)>> She does her best to communicate an earnest desire to stay, and repeats over and over that she loves you. She begins to indicate a willingness to accept true, unlimited slavery, if that's what it takes to stay. <<else>> "Plea<<s>>e <<Master>>, don't <<s>>end me away," she sobs. "I love you! I'll d-do anything - I'll be your <<s>>lave! Plea<<s>>e, en<<s>>lave me. I l-love you...," she moans, trailing off into convulsive blubbering. @@ -105,7 +105,7 @@ Her feelings on this are quite mixed, since she has come to feel that she has a Standing before you <</if>> at the moment of her scheduled emancipation, she seems to be struggling to express herself. -<<if canTalk($activeSlave) == false>> +<<if !canTalk($activeSlave)>> She does her best to communicate a willingness to remain your slave, indicating that she wouldn't press too hard about the price if you offered her another indenture. <<else>> "<<Master>>, um," she <<say>>s hesitantly. "I don't mind being your <<s>>lave. Could I - would you plea<<s>>e give me another indenture? I'm, um, not too worried about the pri<<c>>e." diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw index 01e81a4000d315e23b419a6f83b232fb1a28d9e4..564103eb3e96c6114142b32220fc44172ad9d8de 100644 --- a/src/uncategorized/slaveAssignmentsReport.tw +++ b/src/uncategorized/slaveAssignmentsReport.tw @@ -276,7 +276,7 @@ <</if>> <<if $fighterIDs.includes($slaves[$i])>> - <<if canWalk($slaves[$i])>> + <<if !canWalk($slaves[$i])>> ''__@@.pink;$slaves[$i].slaveName@@__'' is no longer independently mobile @@.yellow;and cannot fight any more.@@ She has been removed from $pitName roster<br>. <<set $fighterIDs.delete($slaves[$i].ID)>> <</if>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 64197a73dd4900522053912c84bcd8e977dcb5db..77cb53336b7f259cfcc13d96fbf4a92db12edcf8 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -236,7 +236,7 @@ <<if $activeSlave.sisters > 0>> <<set $relation = 0>> <<for $i = 0; $i < _SL; $i++>> - <<if areSisters($activeSlave, $slaves[$i]) > 0 && isSlaveAvailable($slaves[$i]) == false>> + <<if areSisters($activeSlave, $slaves[$i]) > 0 && !isSlaveAvailable($slaves[$i])>> <<set $relation++>> <</if>> <</for>> @@ -1036,7 +1036,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 | <<link "Anaphrodisiacs">><<set $activeSlave.aphrodisiacs = -1>><<replace "#aphrodisiacs">><strong>anaphrodisiacs</strong><</replace>><</link>> <br> <span id="fertilityblock"> -<<if $activeSlave.fuckdoll == 0 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>> +<<if $activeSlave.fuckdoll == 0 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1 || $activeSlave.preg > 0)>> <<if ($activeSlave.preg < -1)>> //She is sterile// <<elseif ($activeSlave.pubertyXX == 0) && $activeSlave.preg < 1>> @@ -1082,7 +1082,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 [[Abort her pregnancy|Abort]] <</if>> <</if>> -<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>> +<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1 || $activeSlave.preg > 0)>> <<if ($activeSlave.preg < -1)>> //It is sterile// <<elseif ($activeSlave.pubertyXX == 0)>> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index af6cb517d47184c22bec9b79f1a8ffb29dc72208..777a141fead8c48011c3fc9e61d7d31f25e9d6b4 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -790,7 +790,7 @@ <<else>> /* TOGETHER TIME */ <<if ($activeSlave.actualAge >= _partnerSlave.actualAge+10) && canTalk(_partnerSlave)>> tidying up their room together. _partnerSlave.slaveName is chattering about her day, while $activeSlave.slaveName listens quietly, smiling fondly at her _activeSlaveRel's prattle. - <<elseif ($activeSlave.amp !== 1) && (canTalk($activeSlave) == false)>> + <<elseif ($activeSlave.amp !== 1) && !canTalk($activeSlave)>> getting ready for bed. $activeSlave.slaveName is using gestures to tell her $activeSlave.slaveName about her day; _partnerSlave.slaveName is very patient and does her best to follow. <<elseif ($activeSlave.behavioralQuirk == "confident") && canTalk($activeSlave)>> finishing up a meal together. $activeSlave.slaveName is concluding a story, her clear confident voice ringing as she relates a slight. diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index 959e322b1a4e19138c195a38ed5bb306f4d8407a..e230686f40b635c56a202b94aa003dc424cc699c 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -680,7 +680,7 @@ %/ <<widget "SlaveInteractFertility">> <<replace #fertilityblock>> -<<if $activeSlave.fuckdoll == 0 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>> +<<if $activeSlave.fuckdoll == 0 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1 || $activeSlave.preg > 0)>> <<if ($activeSlave.preg < -1)>> //She is sterile// <<elseif ($activeSlave.pubertyXX == 0) && $activeSlave.preg < 1>> @@ -720,7 +720,7 @@ [[Abort her pregnancy|Abort]] <</if>> <</if>> -<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>> +<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1 || $activeSlave.preg > 0)>> <<if ($activeSlave.preg < -1)>> //It is sterile// <<elseif ($activeSlave.pubertyXX == 0)>>