diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 00dd7a03aa8dae8c8cc6d89caa659831afa17e27..80d81336dfebee859493b503123edec8ec2aa002 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,12 +2,16 @@ 0.10.7.0/1 +3/14/2018 + + -unbroke fake belly clothing descriptions + -fixed starting girls sometimes having piercings + 3/12/2018 394 -more fixes to pregnancy clearing - 3/11/2018 393 diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index 4580b205796da1a6611c2d17ce9b6c01412e9f85..ca61a9e63c0d2aeb95e80217837ac7e31098970b 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -323,16 +323,16 @@ __You are customizing this slave:__ <<elseif $PC.career == "BlackHat">> <<if $activeSlave.mother == -1 && $activeSlave.father == -1>> <<set $activeSlave.origin = "She was the result of a night of hard celebration after a big score under the glow of monitors and the calming hum of 750 RPM fans. It took quite abit of alcohol to come to terms with drunkenly knocking yourself up.">> - <<set $activeSlave.customTat = "She has your former digial calling card tattooed on her neck.">> + <<set $activeSlave.customTat = "She has your former digital calling card tattooed on her neck.">> <<elseif $activeSlave.mother == -1>> <<set $activeSlave.origin = "She was the result of an intruder brute forcing your firewall, overloading your pleasure sensors, and allowing a corrupted packet to slip by. With a quick wipe of your RAM and cache with some pwerful liquor, you have no idea who planted her in your womb.">> - <<set $activeSlave.customTat = "She has your former digial calling card tattooed on her neck.">> + <<set $activeSlave.customTat = "She has your former digital calling card tattooed on her neck.">> <<elseif $activeSlave.father == -1>> <<set $activeSlave.origin = "She was born out of a trade for secure data access. Nine months later, your daughter was born.">> - <<set $activeSlave.customTat = "She has your former digial calling card tattooed on her neck.">> + <<set $activeSlave.customTat = "She has your former digital calling card tattooed on her neck.">> <<else>> <<set $activeSlave.origin = "She was a case officer you captured after going dark.">> - <<set $activeSlave.customTat = "She has your former digial calling card tattooed on her neck.">> + <<set $activeSlave.customTat = "She has your former digital calling card tattooed on her neck.">> <</if>> <<else>> <<set $activeSlave.origin = "You won her at cards, a memento from your life as one of the idle rich before you became an arcology owner.">> diff --git a/src/uncategorized/generateXXSlave.tw b/src/uncategorized/generateXXSlave.tw index f3d997ea91eb71202480a3ef1e512035776e5d9e..ee10a4b1501f5aa482e10caaec59c557d4d5aeda 100644 --- a/src/uncategorized/generateXXSlave.tw +++ b/src/uncategorized/generateXXSlave.tw @@ -385,13 +385,15 @@ <</if>> <</if>> -<<set $activeSlave.earPiercing = either(0,1)>> -<<set $activeSlave.nosePiercing = either(0,0,0,1)>> -<<set $activeSlave.eyebrowPiercing = either(0,0,0,0,0,1)>> -<<set $activeSlave.clitPiercing = either(0,0,0,0,0,1)>> -<<set $activeSlave.lipsPiercing = either(0,0,0,0,0,1)>> -<<set $activeSlave.navelPiercing = either(0,0,0,1)>> -<<set $activeSlave.nipplesPiercing = either(0,0,0,1)>> +<<if passage() != "Starting Girls">> + <<set $activeSlave.earPiercing = either(0,1)>> + <<set $activeSlave.nosePiercing = either(0,0,0,1)>> + <<set $activeSlave.eyebrowPiercing = either(0,0,0,0,0,1)>> + <<set $activeSlave.clitPiercing = either(0,0,0,0,0,1)>> + <<set $activeSlave.lipsPiercing = either(0,0,0,0,0,1)>> + <<set $activeSlave.navelPiercing = either(0,0,0,1)>> + <<set $activeSlave.nipplesPiercing = either(0,0,0,0,1)>> +<</if>> <<set $activeSlave.face = random(-60,60)>> <<if random(0,2) == 1>><<set $activeSlave.face = random(-10,10)>><</if>> diff --git a/src/uncategorized/generateXYSlave.tw b/src/uncategorized/generateXYSlave.tw index b8bf1e9ffc804fc2c7f48925833e96e30b1367dd..24fdd8bb1386ff85d0c2501bf2711ea5453ed6ab 100644 --- a/src/uncategorized/generateXYSlave.tw +++ b/src/uncategorized/generateXYSlave.tw @@ -362,13 +362,15 @@ <</if>> <</if>> -<<set $activeSlave.earPiercing = either(0,0,0,1)>> -<<set $activeSlave.nosePiercing = either(0,0,0,0,1)>> -<<set $activeSlave.eyebrowPiercing = either(0,0,0,0,0,1)>> -<<set $activeSlave.dickPiercing = either(0,0,0,0,0,1)>> -<<set $activeSlave.lipsPiercing = either(0,0,0,0,0,1)>> -<<set $activeSlave.navelPiercing = either(0,0,0,0,1)>> -<<set $activeSlave.nipplesPiercing = either(0,0,0,0,1)>> +<<if passage() != "Starting Girls">> + <<set $activeSlave.earPiercing = either(0,0,0,1)>> + <<set $activeSlave.nosePiercing = either(0,0,0,0,1)>> + <<set $activeSlave.eyebrowPiercing = either(0,0,0,0,0,1)>> + <<set $activeSlave.dickPiercing = either(0,0,0,0,0,1)>> + <<set $activeSlave.lipsPiercing = either(0,0,0,0,0,1)>> + <<set $activeSlave.navelPiercing = either(0,0,0,0,1)>> + <<set $activeSlave.nipplesPiercing = either(0,0,0,0,1)>> +<</if>> <<set $activeSlave.face = random(-70,20)>> <<if random(0,2) == 1>><<set $activeSlave.face = random(-40,-10)>><</if>> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index 6dbdbea1d2ae5b772434ebfe077e4fbadacb4034..f58d5e55605f04fa42aa735ad1120d9138aab3c8 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -504,8 +504,11 @@ waist. <br> $pronounCap's -<<if $activeSlave.preg > 0>> +<<if $activeSlave.pregKonwn > 0>> pregnant. +<<elseif $activeSlave.preg > 0>> + showing unusual discomfort as $possessive stomach is inspected. A quick test reveals that @@.lime;$pronoun is pregnant.@@ + <<set $activeSlave.pregKnown = 1>> <<elseif $activeSlave.bellyImplant > 0>> got a <<print $activeSlave.bellyImplant>>cc implant filled implant located in $possessive abdomen. <<if $activeSlave.cervixImplant == 1 >> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 5204a299b50ac5277294dde8a0c95919c7176f51..9fba7a992b5386e4e7934cd9f39e1c4356738e06 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -3962,7 +3962,7 @@ $possessiveCap <<elseif $activeSlave.weight > 160>> $possessiveCap face is round and plump with a trio of extra chins. <<elseif $activeSlave.weight > 130>> - $possessiveCap face is chubby with an obivous second chin. + $possessiveCap face is chubby with an obvious second chin. <<elseif $activeSlave.weight > 97>> $possessiveCap face is soft with barely a second chin. <</if>> @@ -5507,14 +5507,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's corset strains around $possessive massive gut. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly comfortably bulges out of $possessive corset. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly comfortably bulges out of $possessive corset. <<else>> $activeSlave.slaveName's huge pregnant belly comfortably bulges out of $possessive corset. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly comfortably bulges out of $possessive corset. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly comfortably bulges out of $possessive corset. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly comfortably bulges out of $possessive corset. @@ -5526,7 +5530,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's huge gut hangs out the hole in $possessive corset designed to accommodate a pregnant belly. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly comfortably bulges out of $possessive corset. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly comfortably hangs out of $possessive corset. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly comfortably bulges out of $possessive corset. @@ -5536,7 +5542,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's large gut hangs out the hole in $possessive corset designed to accommodate a pregnant belly. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly comfortably rounds out $possessive corset. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is lightly compressed by $possessive corset making $possessive uncomfortable. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly comfortably rounds out $possessive corset. @@ -5644,7 +5652,9 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's massively fat belly is brutally squeezed by the suit forming a firm latex globe with the slightest bit of give to it. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly is allowed to bulge out of a huge hole in the suit. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly is allowed to bulge out of a huge hole in the suit. <<else>> @@ -5655,7 +5665,9 @@ $pronounCap has <</if>> <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly is allowed to bulge out of a huge hole in the suit. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly is allowed to bulge out of a huge hole in the suit. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly is allowed to bulge out of a huge hole in the suit. @@ -5667,7 +5679,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's big fat belly is cruelly squeezed by the suit. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly is allowed to bulge out of a hole in the suit. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is allowed to bulge out of a hole in the suit. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly is allowed to bulge out of a hole in the suit. @@ -5677,7 +5691,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's fat belly is cruelly squeezed by the suit. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnancy is tighly squeezed by the suit creating a noticeable bulge. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly squeezed by the suit. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly nearly requires $object to be switched into a suit with a hole for it to hang out from. @@ -5907,7 +5923,19 @@ $pronounCap has $activeSlave.slaveName's blouse is pulled taut just trying to cover the top of $possessive massively fat belly; the rest is allowed to jiggle freely. <</if>> <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + <<if ($activeSlave.boobs > 24000)>> + $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive huge pregnant belly, though they do a fine job of hiding it themselves. + <<elseif ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge pregnant belly is barely hidden by $possessive massive tits and oversized sweater. + <<elseif ($activeSlave.boobs > 8000)>> + $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive huge pregnant belly. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's sweater is pulled taut by $possessive huge pregnant belly; it barely reaches $possessive popped navel. + <<else>> + $activeSlave.slaveName's blouse is pulled taut by $possessive huge pregnant belly; it barely reaches $possessive popped navel. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> <<if ($activeSlave.boobs > 24000)>> $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive huge implant-filled belly, though they do a fine job of hiding it themselves. @@ -5934,10 +5962,22 @@ $pronounCap has <</if>> <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - <<if ($activeSlave.boobs > 20000)>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + <<if ($activeSlave.boobs > 24000)>> + $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive big pregnant belly, though they do a fine job of hiding it themselves. + <<elseif ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's big pregnant belly is hidden by $possessive massive tits and oversized sweater. + <<elseif ($activeSlave.boobs > 8000)>> + $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive big pregnant belly. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's sweater is pulled taut by $possessive big pregnant belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in the material. + <<else>> + $activeSlave.slaveName's blouse is pulled taut by $possessive big pregnant belly, the bottom of which can be seen peeking out from underneath. $possessiveCap popped navel forms a small tent in $possessive shirt. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if ($activeSlave.boobs > 24000)>> $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive hugely swollen belly, though they do a fine job of hiding it themselves. - <<elseif ($activeSlave.boobs > 10000)>> + <<elseif ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's hugely swollen belly is hidden by $possessive massive tits and oversized sweater. <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive hugely swollen belly. @@ -5996,10 +6036,22 @@ $pronounCap has $activeSlave.slaveName's blouse is pulled tight over most of $possessive big fat belly; the rest is allowed to jiggle freely. <</if>> <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - <<if ($activeSlave.boobs > 20000)>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + <<if ($activeSlave.boobs > 24000)>> + $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive pregnant belly, though they do a fine job of hiding it themselves. + <<elseif ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's pregnant belly is hidden by $possessive massive tits and oversized sweater. + <<elseif ($activeSlave.boobs > 8000)>> + $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive pregnant belly. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's sweater is pulled taut by $possessive pregnant belly. $possessiveCap popped navel forms a small tent in material. + <<else>> + $activeSlave.slaveName's blouse is pulled taut by $possessive pregnant belly. $possessiveCap popped navel forms a small tent in $possessive shirt. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if ($activeSlave.boobs > 24000)>> $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive jiggling <<print $activeSlave.inflationType>>-filled belly, though they do a fine job of hiding it themselves. - <<elseif ($activeSlave.boobs > 10000)>> + <<elseif ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is hidden by $possessive massive tits and oversized sweater. <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. @@ -6009,9 +6061,9 @@ $pronounCap has $activeSlave.slaveName's blouse is pulled taut by $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. $possessiveCap popped navel forms a small tent in $possessive shirt. <</if>> <<elseif $activeSlave.bellyImplant > 0>> - <<if ($activeSlave.boobs > 20000)>> + <<if ($activeSlave.boobs > 24000)>> $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive implant-filled belly, though they do a fine job of hiding it themselves. - <<elseif ($activeSlave.boobs > 10000)>> + <<elseif ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's implant-filled belly is hidden by $possessive massive tits and oversized sweater. <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive implant-filled belly. @@ -6046,10 +6098,22 @@ $pronounCap has $activeSlave.slaveName's blouse is pulled tight over $possessive fat belly. The bottom of which peeks out from under it. <</if>> <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> - <<if ($activeSlave.boobs > 20000)>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + <<if ($activeSlave.boobs > 24000)>> + $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive small pregnant belly, though they do a fine job of hiding it themselves. + <<elseif ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's small pregnant belly is hidden by $possessive massive tits and oversized sweater. + <<elseif ($activeSlave.boobs > 8000)>> + $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive small pregnant belly. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's sweater bulges with $possessive small pregnant belly. + <<else>> + $activeSlave.slaveName's blouse bulges with $possessive small pregnant belly. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if ($activeSlave.boobs > 24000)>> $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive <<print $activeSlave.inflationType>>-swollen belly, though they do a fine job of hiding it themselves. - <<elseif ($activeSlave.boobs > 10000)>> + <<elseif ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is hidden by $possessive massive tits and oversized sweater. <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive <<print $activeSlave.inflationType>>-swollen belly. @@ -6059,9 +6123,9 @@ $pronounCap has $activeSlave.slaveName's blouse bulges with $possessive <<print $activeSlave.inflationType>>-swollen belly. <</if>> <<elseif $activeSlave.bellyImplant > 0>> - <<if ($activeSlave.boobs > 20000)>> + <<if ($activeSlave.boobs > 24000)>> $activeSlave.slaveName's immense breasts keep $possessive oversized sweater from covering $possessive implant-rounded belly, though they do a fine job of hiding it themselves. - <<elseif ($activeSlave.boobs > 10000)>> + <<elseif ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's implant-rounded belly is hidden by $possessive massive tits and oversized sweater. <<elseif ($activeSlave.boobs > 8000)>> $activeSlave.slaveName's oversized breasts keep $possessive sweater far from $possessive implant-rounded belly. @@ -6165,14 +6229,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's chains are practically buried in $possessive massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly is tightly wrapped with chains. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily as well as making $object squirm in discomfort. <<else>> $activeSlave.slaveName's huge pregnant belly is tightly wrapped with chains, causing it to bulge angrily as well as making $object squirm in discomfort. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly is tightly wrapped with chains. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly is tightly wrapped with chains, causing it to bulge angrily. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly is tightly wrapped with chains, causing it to bulge angrily. @@ -6184,7 +6252,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's chains sink deep into $possessive big fat belly; most end up swallowed by $possessive folds. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly is tightly wrapped with chains. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly wrapped with chains, causing it to bulge angrily. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly is tightly wrapped with chains, causing it to bulge angrily. @@ -6194,7 +6264,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's chains sink deep into $possessive fat belly, several even disappearing beneath $possessive folds. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly is tightly wrapped with chains. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly wrapped with chains. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly is tightly wrapped with chains. @@ -6256,14 +6328,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's flannel shirt can't close over $possessive massively fat belly, so $pronoun has left the bottom buttons open leaving it to hang, and jiggle, freely. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's flannel shirt can't close over $possessive huge pregnant belly, so $pronoun has left the bottom buttons open leaving $possessive belly hanging out. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's flannel shirt can't close over $possessive huge implant-filled belly, so $pronoun has left the bottom buttons open leaving $possessive stomach hanging out. <<else>> $activeSlave.slaveName's flannel shirt can't close over $possessive huge pregnant belly, so $pronoun has left the bottom buttons open leaving $possessive belly hanging out. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's flannel shirt can't close over $possessive big pregnant belly, so $pronoun has left the bottom buttons open leaving $possessive belly hanging out. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's flannel shirt can't close over $possessive hugely swollen belly, so $pronoun has left the bottom buttons open leaving $possessive belly hanging out. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's flannel shirt can't close over $possessive big implant-filled belly, so $pronoun has left the bottom buttons open leaving $possessive stomach hanging out. @@ -6275,7 +6351,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's flannel shirt can't close over $possessive big fat belly, so $pronoun has left the bottom buttons open leaving it to hang free. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's flannel shirt's buttons strain over $possessive pregnant belly. A patch of $possessive underbelly peeks from beneath the taut fabric and the exhausted garmit frequently rides up in defeat. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's flannel shirt's buttons strain over $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. The struggling garmit frequently rides up in defeat. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's flannel shirt's buttons strain over $possessive implant-filled belly. A patch of $possessive underbelly peeks from beneath the taut fabric and the exhausted garmit frequently rides up in defeat. @@ -6285,7 +6363,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's flannel shirt strains to stay shut over $possessive fat belly, fat bulges between $possessive buttons and quite a bit of $possessive lower belly hangs out beneath $possessive shirt. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's flannel shirt bulges with $possessive small pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's flannel shirt bulges with $possessive <<print $activeSlave.inflationType>>-swollen belly. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's flannel shirt bulges with $possessive implant-rounded belly. @@ -6340,14 +6420,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's massively fat belly is covered in a sheen of special oil meant to prevent stretch marks. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly is covered in a sheen of oil. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks. <<else>> $activeSlave.slaveName's huge pregnant belly is covered in a sheen of special oil meant to prevent stretch marks. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly is covered in a sheen of oil. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly is covered in a sheen of oil. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks. @@ -6359,7 +6443,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's big fat belly is covered in a sheen of special oil meant to prevent stretch marks. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly is covered in a sheen of oil. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is covered in a sheen of oil. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks. @@ -6369,7 +6455,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's fat belly is covered in a sheen of oil. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly is covered in a sheen of oil. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is covered in a sheen of oil. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly is covered in a sheen of oil. @@ -6431,14 +6519,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's toga bares $possessive middle to allow $possessive massively fat belly to hang free. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's toga tightly hugs $possessive huge pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's toga tightly hugs $possessive huge implant-filled belly. <<else>> $activeSlave.slaveName's toga tightly hugs $possessive huge pregnant belly. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's toga bulges greatly with $possessive big pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's toga bulges greatly with $possessive hugely swollen belly. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's toga bulges greatly with $possessive big implant-filled belly. @@ -6450,7 +6542,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's toga bulges greatly with $possessive big fat belly. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly rounds out the front of $possessive toga. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly rounds out the front of $possessive toga. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly rounds out the front of $possessive toga. @@ -6460,7 +6554,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's toga bulges with $possessive fat belly. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly gently bulges $possessive toga. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly gently bulges $possessive toga. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly gently bulges $possessive toga. @@ -6520,14 +6616,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's huipil meekly rests atop $possessive massively fat belly, though it itself is big enough to act in its stead. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly lifts $possessive huipil, exposing $possessive crotch for all to see. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly lifts $possessive huipil, exposing $possessive crotch for all to see. <<else>> $activeSlave.slaveName's huge pregnant belly lifts $possessive huipil, exposing $possessive crotch for all to see. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly lifts $possessive huipil, exposing $possessive crotch for all to see. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly lifts $possessive huipil, exposing $possessive crotch for all to see. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly lifts $possessive huipil, exposing $possessive crotch for all to see. @@ -6539,7 +6639,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's big fat belly lifts $possessive huipil, yet isn't big enough to hide $possessive shame. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly lifts $possessive huipil. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly lifts $possessive huipil. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly lifts $possessive huipil. @@ -6550,7 +6652,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's huipil gets lifted by $possessive fat belly, so it's useless for covering $possessive body. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly slightly bulges under $possessive huipil. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly slightly bulges under $possessive huipil. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly slightly bulges under $possessive huipil. @@ -6619,14 +6723,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $possessiveCap qipao is slit up the side. However, it merely rests atop $possessive massively fat belly. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $possessiveCap qipao is slit up the side. However, it only covers half of $possessive huge pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $possessiveCap qipao is slit up the side. However, it only covers half of $possessive huge implant-filled belly. <<else>> $possessiveCap qipao is slit up the side. However, it only covers half of $possessive huge pregnant belly. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $possessiveCap qipao is slit up the side. However, it barely covers $possessive big pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $possessiveCap qipao is slit up the side. However, it barely covers $possessive hugely swollen belly. <<elseif $activeSlave.bellyImplant > 0>> $possessiveCap qipao is slit up the side. However, it barely covers $possessive big implant-filled belly. @@ -6638,7 +6746,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $possessiveCap qipao is slit up the side. However, it barely covers $possessive big fat belly. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $possessiveCap qipao is slit up the side. However, it only covers $possessive pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $possessiveCap qipao is slit up the side. However, it only covers $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. <<elseif $activeSlave.bellyImplant > 0>> $possessiveCap qipao is slit up the side. However, it only covers $possessive implant-filled belly. @@ -6648,7 +6758,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $possessiveCap qipao is slit up the side. However, it only covers $possessive fat belly, allowing it to hang free. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $possessiveCap qipao is slit up the side. The front is pushed out by $possessive small pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $possessiveCap qipao is slit up the side. The front is pushed out by $possessive <<print $activeSlave.inflationType>>-swollen belly. <<elseif $activeSlave.bellyImplant > 0>> $possessiveCap qipao is slit up the side. The front is pushed out by $possessive implant-rounded belly. @@ -6717,14 +6829,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's slave outfit's straps are practically buried in $possessive massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them. The straps connect to a steel ring around $possessive navel; though the only evidence of its existence is an unusually deep fold across $possessive middle. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's slave outfit's straining straps press into $possessive huge pregnant belly. The straps connect to a steel ring encircling $possessive popped navel. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive huge implant-filled belly, causing flesh to spill out of the gaps and $object squirm with discomfort. The straps connect to a steel ring encircling $possessive popped navel. <<else>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive huge pregnant belly, causing flesh to spill out of the gaps and $object squirm with discomfort. The straps connect to a steel ring encircling $possessive popped navel. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's slave outfit's straining straps press into $possessive big pregnant belly. The straps connect to a steel ring encircling $possessive popped navel. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive big implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. @@ -6736,7 +6852,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's slave outfit's straps sink deep into $possessive big fat belly; most end up swallowed by $possessive folds. The straps connect to a steel ring that parts the fold concealing $possessive navel, allowing it to be seen once again. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's slave outfit's straining straps press into $possessive pregnant belly. The straps connect to a steel ring encircling $possessive popped navel. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive jiggling <<print $activeSlave.inflationType>>-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $possessive popped navel. @@ -6746,7 +6864,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's slave outfit's straps sink deep into $possessive fat belly, several even disappearing beneath $possessive folds. The straps connect to a steel ring that parts the fold concealing $possessive navel, allowing it to be seen once again. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's slave outfit's straining straps press into $possessive small pregnant belly. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive <<print $activeSlave.inflationType>>-swollen belly. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's slave outfit's straining straps press into $possessive implant-rounded belly. @@ -6801,14 +6921,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's binding ropes are practically buried in $possessive massively fat belly. The only hint of their presence are the deep ravines of flesh formed around them. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly is tightly bound with rope. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them. <<else>> $activeSlave.slaveName's huge pregnant belly is tightly bound with ropes; flesh bulges angrily from between them. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly is tightly bound with rope. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly is tightly bound with ropes. It bulges lewdly through the gaps. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them. @@ -6820,7 +6944,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's binding ropes sink deep into $possessive big fat belly; most end up swallowed by $possessive folds. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly is tightly bound with rope. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly bound with rope. It bulges lewdly through the gaps. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly is tightly bound with rope; flesh bulges angrily from between them. @@ -6830,7 +6956,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's binding ropes sink deep into $possessive fat belly, several even disappearing beneath $possessive folds. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly is tightly bound with rope. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly bound with rope forcing it to bulge out the gaps. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly is tightly bound with rope; flesh bulges from between them. @@ -6899,14 +7027,18 @@ $pronounCap has <<elseif $activeSlave.weight > 190>> $activeSlave.slaveName's massively fat belly greatly distends and $possessive latex suit. $pronounCap looks like an over-inflated balloon ready to pop. <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + $activeSlave.slaveName's huge pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's huge implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<else>> $activeSlave.slaveName's huge pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <</if>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + $activeSlave.slaveName's big pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon nearing its limit. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's hugely swollen belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon ready to pop. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's big implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon nearing its limit. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. @@ -6918,7 +7050,9 @@ $pronounCap has <<elseif $activeSlave.weight > 130>> $activeSlave.slaveName's big fat belly greatly distends $possessive latex suit. $pronounCap looks like an over-inflated balloon. <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + $activeSlave.slaveName's pregnant belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-filled belly greatly distends $possessive latex suit, leaving $object looking like an over-inflated balloon. Only $possessive popped navel sticking out the front of $possessive belly disrupts the smoothness. @@ -6928,7 +7062,9 @@ $pronounCap has <<elseif $activeSlave.weight > 95>> $activeSlave.slaveName's fat belly is compressed by $possessive latex suit, leaving it looking round and smooth. <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> - <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + $activeSlave.slaveName's small pregnant belly greatly bulges under $possessive latex suit. + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly greatly bulges under $possessive latex suit. <<elseif $activeSlave.bellyImplant > 0>> $activeSlave.slaveName's implant-rounded belly greatly bulges under $possessive latex suit. @@ -6943,86 +7079,345 @@ $pronounCap has $activeSlave.slaveName's latex suit tightly hugs $possessive stomach to showcase $possessive ripped abs. <</if>> <<case "a military uniform">> - <<if $activeSlave.bellyPreg >= 600000>> - <<if ($activeSlave.boobs > 6000)>> - $activeSlave.slaveName's titanic bulging pregnant belly hangs out $possessive open tunic and shirt - <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt lies half open, since $possessive titanic bulging pregnant belly has triumphed over $possessive buttons. + <<if $activeSlave.belly >= 1000000>> + //WIP// + <<elseif $activeSlave.belly >= 750000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's monolithic implant-filled belly bulges tremendously out of $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive monolithic implant-filled belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive monolithic implant-filled belly. + <</if>> <<else>> - $activeSlave.slaveName's tunic and shirt lie half open, since $possessive titanic bulging pregnant belly has triumphed over $possessive buttons. + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's monolithic pregnant belly bulges tremendously out of $possessive open tunic and undershirt, giving $possessive new recruits the room they need. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; $possessive new recruits taking as much space as they can get. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; $possessive new recruits taking as much space as they can get. + <</if>> <</if>> - <<elseif $activeSlave.bellyPreg >= 300000>> - <<if ($activeSlave.boobs > 6000)>> - $activeSlave.slaveName's massive pregnant belly hangs out $possessive open tunic and shirt - <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt lies half open, since $possessive massive pregnant belly has triumphed over $possessive buttons. + <<elseif $activeSlave.belly >= 600000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's titanic implant-filled belly hangs heavily out of $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive titanic implant-filled belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive titanic implant-filled belly. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's titanic pregnant belly hangs heavily out of $possessive open tunic and undershirt, giving $possessive new recruits the room they need. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive titanic pregnant belly. It takes full advantage of the freedom to hang heavily, $possessive new recruits squirming happily. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive titanic pregnant belly. It takes full advantage of the freedom to hang heavily, $possessive new recruits squirming happily. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 450000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's gigantic implant-filled belly hangs heavily out of $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive gigantic implant-filled belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive gigantic implant-filled belly. + <</if>> <<else>> - $activeSlave.slaveName's tunic and shirt lie half open, since $possessive massive pregnant belly has triumphed over $possessive buttons. + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's gigantic pregnant belly hangs heavily out of $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive gigantic pregnant belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive gigantic pregnant belly. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 300000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's massive implant-filled belly hangs out $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive massive implant-filled belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive massive implant-filled belly. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's massive pregnant belly hangs out $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive massive pregnant belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive massive pregnant belly. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 150000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's giant implant-filled belly hangs out $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive giant implant-filled belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive giant implant-filled belly. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's giant pregnant belly hangs out $possessive open tunic and undershirt. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $possessive giant pregnant belly. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $possessive giant pregnant belly. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 120000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's giant implant-filled belly parts $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since $possessive giant implant-filled belly has triumphed over its buttons and has joined $possessive breasts in dominating $possessive tunic. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since $possessive giant implant-filled belly has triumphed over $possessive buttons. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's giant pregnant belly parts $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since $possessive giant pregnant belly has triumphed over its buttons and has joined $possessive breasts in dominating $possessive tunic. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since $possessive giant pregnant belly has triumphed over $possessive buttons. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 45000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge implant-filled belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since $possessive huge implant-filled belly has triumphed over its buttons and has joined $possessive breasts in dominating $possessive tunic. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since $possessive huge implant-filled belly has triumphed over $possessive buttons. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge pregnant belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt lies half open, since $possessive huge pregnant belly has triumphed over its buttons and has joined $possessive breasts in dominating $possessive tunic. + <<else>> + $activeSlave.slaveName's tunic and undershirt lie half open, since $possessive huge pregnant belly has triumphed over $possessive buttons. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 30000>> + <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge implant-filled belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt barely closes as it struggles to contain $possessive huge implant-filled belly. + <<else>> + $activeSlave.slaveName's tunic lies half open, since $possessive huge implant-filled belly has triumphed over $possessive uniform's buttons. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge pregnant belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt barely closes as it struggles to contain $possessive huge pregnant belly. + <<else>> + $activeSlave.slaveName's tunic lies half open, since $possessive huge pregnant belly has triumphed over $possessive uniform's buttons. + <</if>> <</if>> <<elseif $activeSlave.weight > 190>> - <<if ($activeSlave.boobs > 6000)>> + <<if ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's massively fat belly is barely obscured by $possessive massive tits and, in turn, obscures $possessive skirt. <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt lies half open, since $possessive massively fat belly has triumphed over $possessive buttons. It hangs free, obscuring $possessive skirt. + $activeSlave.slaveName's undershirt lies half open, since $possessive massively fat belly has triumphed over $possessive buttons. It hangs free, obscuring $possessive skirt. <<else>> - $activeSlave.slaveName's tunic and shirt lie half open, since $possessive massively fat belly has triumphed over $possessive buttons. It hangs free, obscuring $possessive skirt. + $activeSlave.slaveName's tunic and undershirt lie half open, since $possessive massively fat belly has triumphed over $possessive buttons. It hangs free, obscuring $possessive skirt. <</if>> - <<elseif $activeSlave.bellyPreg >= 10000 || ($activeSlave.bellyAccessory == "a huge empathy belly") || ($activeSlave.bellyAccessory == "a large empathy belly")>> - <<if ($activeSlave.boobs > 6000)>> - $activeSlave.slaveName's big pregnant belly is obscured by $possessive massive tits. - <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt strains to contain $possessive big pregnant belly. + <<elseif $activeSlave.belly >= 15000 || ($activeSlave.bellyAccessory == "a huge empathy belly")>> + <<if $activeSlave.bellyAccessory == "a huge empathy belly">> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge pregnant belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive huge pregnant belly. + <<else>> + $activeSlave.slaveName's huge pregnant belly threatens to pop the buttons off $possessive uniform's jacket. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge implant-filled belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive huge implant-filled belly. + <<else>> + $activeSlave.slaveName's huge implant-filled belly threatens to pop the buttons off $possessive uniform's jacket. + <</if>> + <<else>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's huge pregnant belly is barely obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive huge pregnant belly. + <<else>> + $activeSlave.slaveName's huge pregnant belly threatens to pop the buttons off $possessive uniform's jacket. + <</if>> + <</if>> + <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a large empathy belly")>> + <<if $activeSlave.bellyAccessory == "a large empathy belly">> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's big pregnant belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive big pregnant belly. + <<else>> + $activeSlave.slaveName's big pregnant belly greatly stretches $possessive uniform's jacket. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's hugely swollen belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive hugely swollen belly. + <<else>> + $activeSlave.slaveName's hugely swollen belly greatly stretches $possessive uniform's jacket. + <</if>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's big implant-filled belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive big implant-filled belly. + <<else>> + $activeSlave.slaveName's big implant-filled belly greatly stretches $possessive uniform's jacket. + <</if>> <<else>> - $activeSlave.slaveName's big pregnant belly greatly stretches $possessive uniform's jacket. + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's big pregnant belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive big pregnant belly. + <<else>> + $activeSlave.slaveName's big pregnant belly greatly stretches $possessive uniform's jacket. + <</if>> <</if>> <<elseif $activeSlave.weight > 160>> - <<if ($activeSlave.boobs > 6000)>> + <<if ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's hugely fat belly is obscured by $possessive massive tits. <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt strains to contain $possessive hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under $possessive poor shirt, obscuring the waist of $possessive skirt. + $activeSlave.slaveName's undershirt strains to contain $possessive hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under $possessive poor top, obscuring the waist of $possessive skirt. <<else>> $activeSlave.slaveName's hugely fat belly distends $possessive uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of $possessive skirt. <</if>> <<elseif $activeSlave.weight > 130>> - <<if ($activeSlave.boobs > 6000)>> + <<if ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's big fat belly is obscured by $possessive massive tits. <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt strains to contain $possessive big fat belly. The bottom of which peeks out from under it and hangs over the waist of $possessive skirt. + $activeSlave.slaveName's undershirt strains to contain $possessive big fat belly. The bottom of which peeks out from under it and hangs over the waist of $possessive skirt. <<else>> $activeSlave.slaveName's big fat belly is notably distends $possessive uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of $possessive skirt. <</if>> - <<elseif $activeSlave.bellyPreg >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> - <<if ($activeSlave.boobs > 6000)>> - $activeSlave.slaveName's pregnant belly is obscured by $possessive massive tits. - <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt strains to contain $possessive pregnant belly. + <<elseif $activeSlave.belly >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> + <<if $activeSlave.bellyAccessory == "a medium empathy belly">> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's pregnant belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive pregnant belly. + <<else>> + $activeSlave.slaveName's pregnant belly notably distends $possessive uniform's jacket. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive jiggling <<print $activeSlave.inflationType>>-filled belly. + <<else>> + $activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly notably distends $possessive uniform's jacket. + <</if>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's implant-filled belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive implant-filled belly. + <<else>> + $activeSlave.slaveName's implant-filled belly notably distends $possessive uniform's jacket. + <</if>> <<else>> - $activeSlave.slaveName's pregnant belly notably distends $possessive uniform's jacket. + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's pregnant belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt strains to contain $possessive pregnant belly. + <<else>> + $activeSlave.slaveName's pregnant belly notably distends $possessive uniform's jacket. + <</if>> <</if>> <<elseif $activeSlave.weight > 95>> - <<if ($activeSlave.boobs > 6000)>> + <<if ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's fat belly is obscured by $possessive massive tits. <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's shirt struggles to cover $possessive fat belly. The bottom of which peeks out from under it. + $activeSlave.slaveName's undershirt struggles to cover $possessive fat belly. The bottom of which peeks out from under it. <<else>> $activeSlave.slaveName's fat belly is covered by $possessive uniform's jacket. The bottom of which just barely peeks out from under it. <</if>> - <<elseif (($activeSlave.bellyPreg >= 1500) || ($activeSlave.bellyAccessory == "a small empathy belly"))>> - <<if ($activeSlave.boobs > 6000)>> - $activeSlave.slaveName's growing belly is obscured by $possessive massive tits. - <<elseif ($activeSlave.boobs > 4000)>> - $activeSlave.slaveName's undershirt covers $possessive growing belly. + <<elseif $activeSlave.belly >= 1500 || $activeSlave.bellyAccessory == "a small empathy belly">> + <<if $activeSlave.bellyAccessory == "a small empathy belly">> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's small pregnant belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt covers $possessive small pregnant belly. + <<else>> + $activeSlave.slaveName's uniform covers $possessive small pregnant belly. + <</if>> + <<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt covers $possessive <<print $activeSlave.inflationType>>-swollen belly. + <<else>> + $activeSlave.slaveName's uniform covers $possessive <<print $activeSlave.inflationType>>-swollen belly. + <</if>> + <<elseif $activeSlave.bellyImplant > 0>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's implant-rounded belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt covers $possessive implant-rounded belly. + <<else>> + $activeSlave.slaveName's uniform covers $possessive implant-rounded belly. + <</if>> <<else>> - $activeSlave.slaveName's uniform covers $possessive growing belly. + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's growing belly is obscured by $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt covers $possessive growing belly. + <<else>> + $activeSlave.slaveName's uniform covers $possessive growing belly. + <</if>> <</if>> <<elseif $activeSlave.weight > 30>> - <<if ($activeSlave.boobs > 6000)>> + <<if ($activeSlave.boobs > 12000)>> $activeSlave.slaveName's chubby belly is obscured by $possessive massive tits. <<elseif ($activeSlave.boobs > 4000)>> $activeSlave.slaveName's undershirt covers $possessive chubby belly. The bottom of which just barely peeks out from under it. <<else>> $activeSlave.slaveName's uniform covers $possessive chubby belly. The bottom of which just barely peeks out from under it. <</if>> + <<elseif $activeSlave.bellyPreg >= 100 || $activeSlave.bellyImplant >= 100>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's slightly swollen belly can be glimpsed beneath $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt tighly hugs the slight swell to $possessive lower belly. + <<else>> + $activeSlave.slaveName's tunic looks a little tight around the middle. + <</if>> + <<elseif $activeSlave.muscles > 30>> + <<if ($activeSlave.boobs > 12000)>> + $activeSlave.slaveName's ripped abs can be glimpsed beneath $possessive massive tits. + <<elseif ($activeSlave.boobs > 4000)>> + $activeSlave.slaveName's undershirt barely conceals $possessive ripped abs. + <<else>> + $activeSlave.slaveName's ripped abs are completely hidden under $possessive uniform. + <</if>> <</if>> <<case "a nice nurse outfit">> <<if $activeSlave.bellyPreg >= 600000>>