QoL features - breasts

RoninFive

Active Member
May 30, 2020
32
16
31
While I'm not exactly an expert in coding I could probably come up with the code to implement such changes if given the source code relevant to what I'll be naming.

First off, the AIR zip .exe opens with adobe projector instead of being a standalone app as .exe suggests, this may be something I'm doing wrong but the .swf opens without the projector which is.. counter-intuitive.

Now to the actual ideas:

We have a LOT of ways to increase breast size, increase breast size minimum, increase lactation, make sure you never stop lactating, etc.
We have NO ways to stop breast size growth from lactation, set a breast size maximum, decrease lactation (at least not without letting the breasts grow humongous first), or make sure you never lactate.

So my suggestion is to implement either some "cheat" perks the way we have STD Immunity from Neuter Rick, or an actual cheat function within the savefile the way we have omit cumflation / cumflation immune etc.

To be specific, I'm referring to the abilities to:
1. Decrease breast growth from lactation / set maximum lactation growth
2. Decrease lactation rate
3. Set maximum breast size
4. Disable lactation (we don't exactly have the option to feed birthed children, and if you want to be a realistic lizard species, well, lizards don't produce milk)

What I /might/ be able to do is code some of that as perks, though I don't trust myself to do it without bugs, but if it's required in order for this to be implemented, I am willing to give it a shot.

While big boobies are nice, it can get ridiculous, like HH cups from lactation where you start at a measly B, and if I want a tomboy character I effectively can't do it because it'll be a bimbo as long as I engage with

I might be completely oblivious to something that already exists along these lines. If so, apologies, but I looked all over and couldn't find em.

I might be alone in this but I play a character who I have a very specific image of and when it constantly turns into a pair of boobs with character attached, it breaks my immersion. Kinks are kinks, whatever turns you on, but I'd rather have the option to be turned on too rather than laugh at my character's scenes of using ZZ cups to titfuck people.
 

Theron

Well-Known Member
Nov 8, 2018
4,162
1,527
45
ReductPro can be used to decrease Breast size. Uthra+ can be used to decrease lactation. Amber Seed can stop lactation entirely and remove all Milk-related perks.

Size gain from fullness should be related to starting size. If you started with B, you should only get +3 (DD) at 200% Fullness. Granted, DD might be bigger than you'd like.

If you don't want to use the methods above to reduce/end lactation, you could go the other way: 10 Lactaid Milk Tank for a 1000% Storage Multiplier. Since size gain is tied to percentage fullness, having a huge storage multiplier would prevent size gain for a long time. Especially if you then reduced your production rate with Uthra+.
 
Last edited:

RoninFive

Active Member
May 30, 2020
32
16
31
Reductpro indeed I overlooked, but Uthra+ and Amber Seed cause other transformations as a random chance, and Amber Seed only stops the current "round" of lactation. Meanwhile we have implants, perks etc to increase breast size with no other effects and even to never stop lactating, but nothing to stop it from happening - other than getting neutered entirely by Neuter Rick since that prevents pregnancy. I might go with the lactaid milk tank as a workaround though, good idea.

Though, I'm not sure what you mean it will only go up +3? I have a character who's got C and went up to a mrecord of HH from lactation without release before I got tired of it and edited the save.

Dunno if items are hard to implement, but yea, other than cheating to remove lactation there isn't a way to do it that isn't RNG, meanwhile there are plenty of ways to cause it to happen without cheating, which strikes me as odd since there's so many things we can choose to do to our characters' bodies, but specifically "maximum cup DD" (when we have several "minimum DD" perks) doesn't exist for example, and neither does something to stop lactation or disable it while we have ways to start it and make it so it never stops. Amber Seed is RNG and will make you a bird with repeated use without save-scumming. at which point might as well pull up TiTSed.
 

Theron

Well-Known Member
Nov 8, 2018
4,162
1,527
45
public function setBoobSwelling():void
{
var x:int;
//No swelling!
if(milkFullness < 75)
{
//Reset swelling
for(x = 0; x < bRows(); x++)
{
breastRows[x].breastRatingLactationMod = 0;
}
}
//75 - 99
else if(milkFullness < 100)
{
for(x = 0; x < bRows(); x++)
{
if(breastRows[x].breastRatingRaw >= 5) breastRows[x].breastRatingLactationMod = 1.5;
else breastRows[x].breastRatingLactationMod = 1;
}
}
//100 - 149
else if(milkFullness < 150)
{
for(x = 0; x < bRows(); x++)
{
if(breastRows[x].breastRatingRaw >= 5) breastRows[x].breastRatingLactationMod = 2.5;
else breastRows[x].breastRatingLactationMod = 1.5;
}
}
else if(milkFullness < 200)
{
for(x = 0; x < bRows(); x++)
{
if(breastRows[x].breastRatingRaw >= 5) breastRows[x].breastRatingLactationMod = 3.5;
else breastRows[x].breastRatingLactationMod = 2;
}
}
else
{
for(x = 0; x < bRows(); x++)
{
if(breastRows[x].breastRatingRaw >= 5) breastRows[x].breastRatingLactationMod = 4.5;
else breastRows[x].breastRatingLactationMod = 3;
}
}
}
Just tried a C-cup character (with Mega Milk). Waited for 1 year. Went from C to Big-DD. Did you have Honeypot? Same experiment, went from C to Hyper-J. But then, Honeypot's whole thing is Breast Expansion.

What, exactly, are you trying to do? I was under the impression that most of that stuff is optional.

If you want to prevent Pregnancy, there's always 1-3x Sterilex or the Prostitute Pro Implant.
 
Last edited: