diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 37f8258eb38a54494b9560d760066bbe8fb998c5..3cecb4afc2ea7fd26c86fd63958aeb2b300f2aa9 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -886,6 +886,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $FrigiditySMR = 0>> <<set $BasicBeautySMR = 0>> <<set $QualityBeautySMR = 0>> +<<set $BasicWeightSMR = 0>> <<set $BasicIntelligenceSMR = 0>> <<set $QualityIntelligenceSMR = 0>> <<set $IntelligenceEugenicsSMR = 0>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index d9e0477f318ae5839d4772dbd2c6ad514edd7f9d..fe6b2bc68101e8f225be8b442bd8175d179719f4 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -143,6 +143,9 @@ <<if ndef $meshImplants>> <<set $meshImplants = 0>> <</if>> +<<if ndef $BasicWeightSMR>> + <<set $BasicWeightSMR = 0>> +<</if>> <<if ndef $FCTVenable>> <<set $FCTVenable = 1>> diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw index a4bd0567a8c6598c76946298b94e244a0ce55052..48d43e94db29a922f42b4344a9ec149dc89ba61c 100644 --- a/src/uncategorized/lawCompliance.tw +++ b/src/uncategorized/lawCompliance.tw @@ -339,6 +339,14 @@ <<set $activeSlave.trust -= 5>> <</if>> +<<if $BasicWeightSMR == 1>> + <<if $activeSlave.weight > 100>> + <<set $activeSlave.weight = random(-50,50)>> + <</if>> + While she was in the slave pens, she saw that obese slaves were immediately designated as menials and cows, and she is @@.gold;terrified@@ that should she get fat, she'll be considered worthless and be reassigned on the spot. + <<set $activeSlave.trust -= 5>> +<</if>> + <<if $BasicIntelligenceSMR == 1>> <<if $activeSlave.intelligence < 0>> <<set $activeSlave.intelligence = either(0,1,1,1,1,1,1,1,1,1,2,2,2,3)>> diff --git a/src/uncategorized/policies.tw b/src/uncategorized/policies.tw index 4b1e080d710280fc2543de8d1c806b0805cfd9ee..4d07c5b4eec51338a3cf24771bc65cc0c4a961ec 100644 --- a/src/uncategorized/policies.tw +++ b/src/uncategorized/policies.tw @@ -15,7 +15,7 @@ ''__Active policies__'' <br>//These policies are active within your arcology. Slave Market Regulations (SMRs) will affect slaves that come through the official slave markets in your arcology. The markets themselves will bear the cost of these regulations, but the minimum practicable slave prices may rise as a result.// -<<if $BasicSMR + $HealthInspectionSMR + $EducationSMR + $IntelligenceEugenicsSMR + $HeightEugenicsSMR + $FaceEugenicsSMR + $HonestySMR + $FrigiditySMR + $BasicBeautySMR + $QualityBeautySMR + $BasicIntelligenceSMR + $QualityIntelligenceSMR > 0>> +<<if $BasicSMR + $HealthInspectionSMR + $EducationSMR + $IntelligenceEugenicsSMR + $HeightEugenicsSMR + $FaceEugenicsSMR + $HonestySMR + $FrigiditySMR + $BasicBeautySMR + $QualityBeautySMR + $BasicWeightSMR + $BasicIntelligenceSMR + $QualityIntelligenceSMR > 0>> <br>__Slave Market Regulations__ <<if $BasicSMR == 1>> @@ -68,6 +68,11 @@ [[Repeal|Policies][$QualityBeautySMR = 0, $minimumSlaveCost -= 10000]] <</if>> +<<if $BasicWeightSMR == 1>> + <br>''Basic Weight Standards:'' no obese slaves may be sold in the slave markets. + [[Repeal|Policies][$BasicWeightSMR = 0, $minimumSlaveCost -= 3000]] +<</if>> + <<if $BasicIntelligenceSMR == 1>> <br>''Basic Intelligence Standards:'' no stupid slaves may be sold in the slave markets. [[Repeal|Policies][$BasicIntelligenceSMR = 0, $minimumSlaveCost -= 2000]] @@ -648,6 +653,14 @@ <</if>> <</if>> +<<if $BasicWeightSMR == 0>> +<<if $arcologies[0].FSHedonisticDecadenceSMR == 0>> + <br>''Basic Weight Standards:'' only attractive slaves may be sold in the slave markets. + [[Implement|Policies][$BasicWeightSMR = 1, $cash -=5000, $rep -= 1000, $minimumSlaveCost += 3000]] + <br> //This will raise the price of slaves. +<</if>> +<</if>> + <<if $BasicIntelligenceSMR == 0>> <<if $QualityIntelligenceSMR == 0>> <br>''Basic Intelligence Standards:'' no stupid slaves may be sold in the slave markets. @@ -1273,11 +1286,13 @@ <</if>> <<if $arcologies[0].FSHedonisticDecadence >= 40>> + <<if $BasicWeightSMR == 0>> <<if $arcologies[0].FSHedonisticDecadenceSMR == 0 && $arcologies[0].FSMaturityPreferentialistSMR == 0>> <br>''@@.lime;Corpulence SMR:@@'' in order to be sold in the arcology, slaves must be plump. [[Implement|Policies][$arcologies[0].FSHedonisticDecadenceSMR = 1, $cash -=5000, $rep -= 1000, $minimumSlaveCost += 500]] <br> //Will help advance Hedonistic Decadence// <</if>> + <</if>> <<if $arcologies[0].FSHedonisticDecadence >= 60>> <<if $arcologies[0].FSHedonisticDecadenceLaw2 == 0 && $arcologies[0].FSSlimnessEnthusiastLaw == 0 && $arcologies[0].FSGenderRadicalistLawBeauty == 0 && $arcologies[0].FSGenderFundamentalistLawBeauty == 0>> <br>''@@.lime;Rotund Feminine Ideal:@@'' you will do your best to start a fashion for thick girls with soft bellies, big butts and luscious tits. diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw index 84df288e23c68cdc841f384c993bd2f0569ae824..f148ad4223b0b7477e4e0a261b5fbedd58527e2e 100644 --- a/src/uncategorized/seCoursing.tw +++ b/src/uncategorized/seCoursing.tw @@ -49,6 +49,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.oralSkill = 0>> <<set $activeSlave.analSkill = 0>> <<set $activeSlave.whoreSkill = 0>> + <<set $activeSlave.weight = random(-50,50)>> is an appealingly young $activeSlave.race girl, and has V symbols drawn over her cunt and on her lower back, in the interests of fairness. She's a @@.pink;double virgin.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <<elseif _origin == "heavily pregnant">> <<set $activeSlaveOneTimeMinAge = $fertilityAge>> @@ -65,6 +66,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.oralSkill = 0>> <<set $activeSlave.analSkill = 0>> <<set $activeSlave.whoreSkill = 0>> + <<set $activeSlave.weight = random(-20,100)>> <<set $activeSlave.career = setup.youngCareers.random()>> is <<if $activeSlave.race == "asian">>an<<else>>a<</if>> $activeSlave.race girl, young and healthy but @@.pink;heavily pregnant.@@ She's probably been selected to be a hare as a joke, or because someone hates her. <<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is attached to her popped navel.<</if>> <<elseif _origin == "housewife">> @@ -88,6 +90,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.analSkill = 15>> <<set $activeSlave.whoreSkill = 35>> <<set $activeSlave.career = either("a housewife", "a trophy wife")>> + <<set $activeSlave.weight = random(-50,100)>> is <<if $activeSlave.race == "asian">>an<<else>>a<</if>> $activeSlave.race woman, no longer young, but attractive enough in a fake sort of way. She has obviously been crying, and has probably been recently enslaved from a comfortable life, like that of a @@.pink;housewife or a trophy wife.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <<elseif _origin == "disobedient young">> <<set $activeSlaveOneTimeMaxAge = 25>> @@ -106,7 +109,8 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "hates men")>> <<set $activeSlave.energy = 10>> <<set $activeSlave.fetish = "none">> - <<set $activeSlave.muscles = either(20, 50)>> + <<set $activeSlave.muscles = random(20,50)>> + <<set $activeSlave.weight = random(-20,20)>> is a fit young $activeSlave.race girl, and is far more watchful and alert than her fellow hares. She may be a @@.pink;disobedient slave@@ here because she was difficult to train.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <<elseif _origin == "disobedient young dickgirl">> <<set $activeSlaveOneTimeMaxAge = 25>> @@ -124,7 +128,8 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.attrXY = 0>> <<set $activeSlave.attrXX = 70>> <<set $activeSlave.fetish = "none">> - <<set $activeSlave.muscles = either(20, 50)>> + <<set $activeSlave.muscles = random(20,50)>> + <<set $activeSlave.weight = random(-20,50)>> is a strong young $activeSlave.race girl with who retains her cock and balls, and looks determined. Perhaps she's a @@.pink;resistant dickgirl@@ who's been difficult to turn into a good girl.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her cock.<</if>> <<elseif _origin == "huge balled">> <<set $activeSlaveOneTimeMaxAge = 25>> @@ -137,6 +142,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.oralSkill = 0>> <<set $activeSlave.analSkill = 0>> <<set $activeSlave.whoreSkill = 0>> + <<set $activeSlave.weight = random(-50,100)>> is <<if $activeSlave.race == "asian">>an<<else>>a<</if>> $activeSlave.race slave whose distinguishing characteristic is a dangling scrotum and a pair of @@.pink;huge balls.@@ This impediment bumps against her thighs as she's made ready.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her hefty testicles.<</if>> <<elseif _origin == "feminized">> <<set $activeSlaveOneTimeMaxAge = 25>> @@ -157,6 +163,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.whoreSkill = 15>> <<set $activeSlave.attrXY = 100>> <<set $activeSlave.attrXX = 0>> + <<set $activeSlave.weight = random(-100,200)>> is <<if $activeSlave.race == "asian">>an<<else>>a<</if>> $activeSlave.race bitch with a tiny dick who has been @@.pink;heavily feminized,@@ yet seems terrified and very new to slavery. Her fake tits and girly behavior must be from her life before she was a slave.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <</if>> diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw index e94a3377a39f16ff6ec5e78940c9317ee6eab734..0b368fd6a8be1cd620535f970a0a00532ae81f2a 100644 --- a/src/utility/descriptionWidgets.tw +++ b/src/utility/descriptionWidgets.tw @@ -8193,59 +8193,67 @@ $pronounCap has $pronounCap is enormously pregnant, <</if>> <<if $activeSlave.pregType == 100>> - <<if $activeSlave.amp == 1>> - with no arms and legs $pronoun is effectively a giant womb. - <<else>> - and $possessive thinning arms and legs rest helpless atop $possessive supermassive belly. - <</if>> + <<if $activeSlave.amp == 1>> + with no arms and legs $pronoun is effectively a giant womb. + <<else>> + and $possessive thinning arms and legs rest helpless atop $possessive supermassive belly. + <</if>> <<elseif $activeSlave.physicalAge <= 3>> - <<if $activeSlave.pregType >= 20>> - and $pronoun is nearly spherical. $possessiveCap toddlerish form is utterly dwarfed by $possessive pregnancy, all $pronoun can do is lay on top of it. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $object. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $possessive to burst. $pronounCap requires multiple slaves to move $possessive bulk when $pronoun must go somewhere. - <<elseif $activeSlave.pregType >= 10>> - and $possessive belly pins $possessive to the ground. $possessiveCap toddlerish form is dwarfed by $possessive pregnancy, and try as $pronoun might $pronoun can not even drag the massive thing. $pronounCap is so pregnant you can barely see the babies within $possessive bulging $possessive stomach.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<else>> - and $possessive toddlerish body is absolutely filled by $possessive womb. $pronounCap can barely move herself and resembles an over inflated blow-up doll. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $pronoun is nearly spherical. $possessiveCap toddlerish form is utterly dwarfed by $possessive pregnancy, all $pronoun can do is lay on top of it. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $object. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $possessive to burst. $pronounCap requires multiple slaves to move $possessive bulk when $pronoun must go somewhere. + <<elseif $activeSlave.pregType >= 10>> + and $possessive belly pins $possessive to the ground. $possessiveCap toddlerish form is dwarfed by $possessive pregnancy, and try as $pronoun might $pronoun can not even drag the massive thing. $pronounCap is so pregnant you can barely see the babies within $possessive bulging $possessive stomach.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<else>> + and $possessive toddlerish body is absolutely filled by $possessive womb. $pronounCap can barely move herself and resembles an over inflated blow-up doll. + <</if>> <<elseif $activeSlave.physicalAge <= 12>> - <<if $activeSlave.pregType >= 20>> - and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $possessive to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<elseif $activeSlave.pregType >= 10>> - and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach. - <<else>> - and $possessive massive, drum-taut belly dominates $possessive poor little frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $possessive to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<elseif $activeSlave.pregType >= 10>> + and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach. + <<else>> + and $possessive massive, drum-taut belly dominates $possessive poor little frame. + <</if>> + <<elseif $activeSlave.weight > 190>> + <<if $activeSlave.pregType >= 20>> + and $possessive massively fat belly is stretched considerably, so much so $possessive folds are pulled flat. $possessiveCap pregnancy is covered in a thick layer of fat, save for the grotesquely bulging upper portion where $possessive fat is thinnest. $possessiveCap womb is so full that every motion within it translates to $possessive soft body. + <<elseif $activeSlave.pregType >= 10>> + and $possessive massively fat belly is stretched considerably; $possessive folds are nearly pulled flat from the strain. $possessiveCap pregnancy is covered in a thick layer of fat, save for the bulging upper portion where $possessive fat is thinnest. + <<else>> + but $pronoun's so massively fat that it's not obvious. Only the firmness at its top gives away $possessive pregnancy. + <</if>> <<elseif $activeSlave.height >= 185>> - <<if $activeSlave.pregType >= 20>> - but $possessive tall frame barely keeps $possessive grotesque, splitting belly off the ground. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $possessive. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $possessive to burst. - <<elseif $activeSlave.pregType >= 10>> - but $possessive tall frame barely bears $possessive obscene, drum-taut belly. $pronounCap is so pregnant you can barely see the babies within $possessive bulging $possessive stomach. - <<else>> - but $possessive tall frame bears $possessive massive, drum-taut belly well. - <</if>> + <<if $activeSlave.pregType >= 20>> + but $possessive tall frame barely keeps $possessive grotesque, splitting belly off the ground. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $possessive. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $possessive to burst. + <<elseif $activeSlave.pregType >= 10>> + but $possessive tall frame barely bears $possessive obscene, drum-taut belly. $pronounCap is so pregnant you can barely see the babies within $possessive bulging $possessive stomach. + <<else>> + but $possessive tall frame bears $possessive massive, drum-taut belly well. + <</if>> <<elseif $activeSlave.height < 150>> - <<if $activeSlave.pregType >= 20>> - and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $possessive to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<elseif $activeSlave.pregType >= 10>> - and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach. - <<else>> - and $possessive massive, drum-taut belly dominates $possessive poor little frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $possessive to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<elseif $activeSlave.pregType >= 10>> + and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach. + <<else>> + and $possessive massive, drum-taut belly dominates $possessive poor little frame. + <</if>> <<elseif $activeSlave.muscles > 30>> - <<if $activeSlave.pregType >= 20>> - and $pronoun can barely hold $possessive overfilled belly upright. $possessiveCap enormous brood greatly protrudes $possessive belly covering it in writhing bulges where they are forced up against $possessive uterus. While $possessive strong body spares $object from the fear of bursting, it does nothing to stop everyone from seeing how many children $pronoun's having. - <<elseif $activeSlave.pregType >= 10>> - and $possessive fit body allows $possessive to carry $possessive obscene belly without too much trouble. $possessiveCap large brood gently bulges $possessive belly. - <<else>> - and $possessive fit body bears $possessive massive, drum-taut belly well. - <</if>> - <<else>> - <<if $activeSlave.pregType >= 20>> - and $pronoun is more belly than girl. $possessiveCap gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive womb through $possessive taut skin. $possessiveCap bulgy belly is at risk of rupturing.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<elseif $activeSlave.pregType >= 10>> - and $pronoun can barely function with $possessive enormous belly. $possessiveCap womb is so full you can see the babies gently bulging the walls of $possessive uterus. + <<if $activeSlave.pregType >= 20>> + and $pronoun can barely hold $possessive overfilled belly upright. $possessiveCap enormous brood greatly protrudes $possessive belly covering it in writhing bulges where they are forced up against $possessive uterus. While $possessive strong body spares $object from the fear of bursting, it does nothing to stop everyone from seeing how many children $pronoun's having. + <<elseif $activeSlave.pregType >= 10>> + and $possessive fit body allows $possessive to carry $possessive obscene belly without too much trouble. $possessiveCap large brood gently bulges $possessive belly. + <<else>> + and $possessive fit body bears $possessive massive, drum-taut belly well. + <</if>> <<else>> - and $possessive massive, drum-taut belly dominates $possessive frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $pronoun is more belly than girl. $possessiveCap gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive womb through $possessive taut skin. $possessiveCap bulgy belly is at risk of rupturing.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<elseif $activeSlave.pregType >= 10>> + and $pronoun can barely function with $possessive enormous belly. $possessiveCap womb is so full you can see the babies gently bulging the walls of $possessive uterus. + <<else>> + and $possessive massive, drum-taut belly dominates $possessive frame. + <</if>> <</if>> <<elseif $activeSlave.preg > 20>> <<if $activeSlave.pregType >= 20>> @@ -8256,108 +8264,116 @@ $pronounCap has $pronounCap is heavily pregnant, <</if>> <<if $activeSlave.physicalAge <= 3>> - <<if $activeSlave.pregType >= 20>> - and $possessive hugely distended belly is bigger than $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<elseif $activeSlave.pregType >= 10>> - and $possessive bulging belly is as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<else>> - and $possessive swollen belly is nearly as big as $possessive toddlerish body. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $possessive hugely distended belly is bigger than $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<elseif $activeSlave.pregType >= 10>> + and $possessive bulging belly is as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<else>> + and $possessive swollen belly is nearly as big as $possessive toddlerish body. + <</if>> <<elseif $activeSlave.physicalAge <= 12>> - <<if $activeSlave.pregType >= 20>> - and $possessive hugely distended belly is nearly as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> - <<elseif $activeSlave.pregType >= 10>> - and $possessive bulging belly looks absolutely huge on $possessive poor little frame. - <<else>> - and $possessive swollen belly dominates $possessive poor little frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $possessive hugely distended belly is nearly as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere.<</if>> + <<elseif $activeSlave.pregType >= 10>> + and $possessive bulging belly looks absolutely huge on $possessive poor little frame. + <<else>> + and $possessive swollen belly dominates $possessive poor little frame. + <</if>> + <<elseif $activeSlave.weight > 130>> + <<if $activeSlave.pregType >= 20>> + and $possessive big fat belly is absolutely enormous when coupled with $possessive filled womb. + <<elseif $activeSlave.pregType >= 10>> + but $pronoun's so fat that $pronoun appears to merely be carrying a giant gut. Only the firmness at its top gives away $possessive pregnancy. + <<else>> + but $pronoun's so fat that it's not obvious. Only the firmness at its top gives away $possessive pregnancy. + <</if>> <<elseif $activeSlave.height >= 185>> - <<if $activeSlave.pregType >= 20>> - but $possessive tall frame keeps $possessive huge belly off the ground. - <<elseif $activeSlave.pregType >= 10>> - but $possessive tall frame lets $possessive keep $possessive posture despite $possessive large belly. - <<else>> - but $possessive tall frame bears $possessive swollen belly well. - <</if>> + <<if $activeSlave.pregType >= 20>> + but $possessive tall frame keeps $possessive huge belly off the ground. + <<elseif $activeSlave.pregType >= 10>> + but $possessive tall frame lets $possessive keep $possessive posture despite $possessive large belly. + <<else>> + but $possessive tall frame bears $possessive swollen belly well. + <</if>> <<elseif $activeSlave.height < 150>> - <<if $activeSlave.pregType >= 20>> - and $possessive hugely distended belly is nearly as big as $pronoun is. - <<elseif $activeSlave.pregType >= 10>> - and $possessive bulging belly looks absolutely huge on $possessive poor little frame. - <<else>> - and $possessive swollen belly dominates $possessive poor little frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $possessive hugely distended belly is nearly as big as $pronoun is. + <<elseif $activeSlave.pregType >= 10>> + and $possessive bulging belly looks absolutely huge on $possessive poor little frame. + <<else>> + and $possessive swollen belly dominates $possessive poor little frame. + <</if>> <<elseif $activeSlave.muscles > 30>> - <<if $activeSlave.pregType >= 20>> - and $possessive fit body allows $possessive to carry $possessive huge belly with only the occasional accident. - <<elseif $activeSlave.pregType >= 10>> - and $possessive fit body carries $possessive bulging belly without much trouble. - <<else>> - and $possessive fit body bears $possessive swollen belly well. - <</if>> - <<else>> - <<if $activeSlave.pregType >= 20>> - and $possessive hugely distended belly juts far out from $possessive front and widely from $possessive sides. - <<elseif $activeSlave.pregType >= 10>> - and $possessive large bulging belly draws all attention away from the rest of $possessive. + <<if $activeSlave.pregType >= 20>> + and $possessive fit body allows $possessive to carry $possessive huge belly with only the occasional accident. + <<elseif $activeSlave.pregType >= 10>> + and $possessive fit body carries $possessive bulging belly without much trouble. + <<else>> + and $possessive fit body bears $possessive swollen belly well. + <</if>> <<else>> - and $possessive swollen belly dominates $possessive frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + and $possessive hugely distended belly juts far out from $possessive front and widely from $possessive sides. + <<elseif $activeSlave.pregType >= 10>> + and $possessive large bulging belly draws all attention away from the rest of $possessive. + <<else>> + and $possessive swollen belly dominates $possessive frame. + <</if>> <</if>> <<elseif $activeSlave.preg > 9>> $pronounCap is visibly pregnant, <<if $activeSlave.physicalAge <= 3>> - <<if $activeSlave.pregType >= 20>> - $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive toddlerish frame. It bulges out from $possessive sides considerably. - <<elseif $activeSlave.pregType >= 10>> - and it looks like $pronoun is ready to birth triplets due to $possessive toddlerish body. - <<else>> - and $possessive swelling belly looks obscene on $possessive toddlerish body. - <</if>> + <<if $activeSlave.pregType >= 20>> + $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive toddlerish frame. It bulges out from $possessive sides considerably. + <<elseif $activeSlave.pregType >= 10>> + and it looks like $pronoun is ready to birth triplets due to $possessive toddlerish body. + <<else>> + and $possessive swelling belly looks obscene on $possessive toddlerish body. + <</if>> <<elseif $activeSlave.physicalAge <= 10>> - <<if $activeSlave.pregType >= 20>> - $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame. - <<elseif $activeSlave.pregType >= 10>> - and $possessive swelling belly appears full term on $possessive tiny frame. - <<else>> - and $possessive swelling belly already looks huge on $possessive tiny frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame. + <<elseif $activeSlave.pregType >= 10>> + and $possessive swelling belly appears full term on $possessive tiny frame. + <<else>> + and $possessive swelling belly already looks huge on $possessive tiny frame. + <</if>> <<elseif $activeSlave.weight > 95>> - <<if $activeSlave.pregType >= 20>> - $possessive fat belly considerably juts out with $possessive rapid growth. - <<elseif $activeSlave.pregType >= 10>> - but $pronoun's sufficiently overweight that $pronoun appears to merely be carrying a large gut. - <<else>> - but $pronoun's sufficiently overweight that it's not obvious. - <</if>> + <<if $activeSlave.pregType >= 20>> + $possessive fat belly considerably juts out with $possessive rapid growth. + <<elseif $activeSlave.pregType >= 10>> + but $pronoun's sufficiently overweight that $pronoun appears to merely be carrying a large gut. + <<else>> + but $pronoun's sufficiently overweight that it's not obvious. + <</if>> <<elseif $activeSlave.height < 150>> - <<if $activeSlave.pregType >= 20>> - $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame. - <<elseif $activeSlave.pregType >= 10>> - and $possessive swelling belly appears full term on $possessive tiny frame. - <<else>> - and $possessive swelling belly already looks huge on $possessive tiny frame. - <</if>> + <<if $activeSlave.pregType >= 20>> + $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame. + <<elseif $activeSlave.pregType >= 10>> + and $possessive swelling belly appears full term on $possessive tiny frame. + <<else>> + and $possessive swelling belly already looks huge on $possessive tiny frame. + <</if>> <<elseif $activeSlave.weight < -10>> - <<if $activeSlave.pregType >= 20>> - $possessive enormous stomach juts far forward and lewdly extends far past $possessive sides. - <<elseif $activeSlave.pregType >= 10>> - $possessive bulging stomach fills $possessive thin frame obscenely. - <<else>> - $possessive thin form making $possessive swelling belly very obvious. - <</if>> - <<else>> - <<if $activeSlave.pregType >= 20>> - and $possessive obvious pregnancy appears full-term. - <<elseif $activeSlave.pregType >= 10>> - $possessive distended stomach makes $possessive look to be in $possessive last trimester. + <<if $activeSlave.pregType >= 20>> + $possessive enormous stomach juts far forward and lewdly extends far past $possessive sides. + <<elseif $activeSlave.pregType >= 10>> + $possessive bulging stomach fills $possessive thin frame obscenely. + <<else>> + $possessive thin form making $possessive swelling belly very obvious. + <</if>> <<else>> - the life growing within $possessive beginning to swell $possessive belly. - <<if $activeSlave.bellySag > 0>> - $possessiveCap new pregnancy reduces the amount of sag to $possessive overstretched middle. + <<if $activeSlave.pregType >= 20>> + and $possessive obvious pregnancy appears full-term. + <<elseif $activeSlave.pregType >= 10>> + $possessive distended stomach makes $possessive look to be in $possessive last trimester. + <<else>> + the life growing within $possessive beginning to swell $possessive belly. + <<if $activeSlave.bellySag > 0>> + $possessiveCap new pregnancy reduces the amount of sag to $possessive overstretched middle. + <</if>> <</if>> <</if>> - <</if>> <<elseif $activeSlave.bellySagPreg > 20>> $possessiveCap stretchmark streaked stomach sags massively after being distended for so long by so many children. <<elseif $activeSlave.bellySag > 20>>