From c5dedc0a7932d2f2326c2f32e7309e65ba0acd29 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Wed, 14 Feb 2018 20:16:37 -0500 Subject: [PATCH] fixes and harder malus for getting knocked up by unbroken slaves --- devNotes/VersionChangeLog-Premod+LoliMod.txt | 7 ++++++- src/uncategorized/policies.tw | 2 +- src/uncategorized/saDevotion.tw | 7 ++++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 3fb7f17aea8..dca4fa9d917 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -4,8 +4,13 @@ 2/14/18 + 352 + -unbroken slaves' deovtion loss due to knocking you up now increases in severity the more times it happens + -fixed minor text issues + -spellchecked the patch notes this time + 351 - -minor texst fixes + -minor text fixes -slaver background now starts with discounted starting girls 350 diff --git a/src/uncategorized/policies.tw b/src/uncategorized/policies.tw index e9b06491aaf..b34c35b67b8 100644 --- a/src/uncategorized/policies.tw +++ b/src/uncategorized/policies.tw @@ -1024,7 +1024,7 @@ <<if $goodImageCampaign == 0>> <br>''Good Image Campaign:'' positive rumors will be spread throughout the arcology regarding you. [[Implement|Policies][$goodImageCampaign = 1, $cash -=5000, $rep -= 1000]] - <br> //Will cost <<print cashFormat($policyCost)>> weekly to maintain, and lesson any potential rumors about you while giving a small boost to your reputation// + <br> //Will cost <<print cashFormat($policyCost)>> weekly to maintain, and lessen any potential rumors about you while giving a small boost to your reputation// <</if>> <<if $seePreg != 0>> diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw index 60175a32cfa..e50ea0de987 100644 --- a/src/uncategorized/saDevotion.tw +++ b/src/uncategorized/saDevotion.tw @@ -101,11 +101,12 @@ <</if>> <<if $slaves[$i].PCKnockedUp > 0 && $slaves[$i].fetish != "mindbroken" && $slaves[$i].fuckdoll == 0 && $slaves[$i].devotion < -20>> - She got you pregnant and she knows it. This is a @@.mediumorchid;huge boost@@ to her ego and gives her a slight edge on you. - <<set $slaves[$i].devotion -= 10>> + <<set _pregCountFactor = $slaves[$i].PCKnockedUp*5>> + She got you pregnant<<if $slaves[$i].PCKnockedUp > 1>> more than once<</if>> and she knows it. This is a @@.mediumorchid;huge boost@@ to her ego and gives her a slight edge on you. + <<set $slaves[$i].devotion -= _pregCountFactor>> <<if $slaves[$i].PCChildrenFathered > 0>> Even better; you gave birth to her child<<if $slaves[$i].PCChildrenFathered > 1>>ren<</if>>. To her, she is the dominant force and you are just a bitch to be bred. She could create a scandal if she started running her mouth, something she lords over you every chance she gets under the assumption that @@.mediumaquamarine;you'll try to appease her to keep her quiet.@@ - <<set $slaves[$i].devotion -= 10, $slaves[$i].trust += 10>> + <<set $slaves[$i].devotion -= _pregCountFactor, $slaves[$i].trust += _pregCountFactor>> <</if>> <</if>> -- GitLab