if(!pc.ass.hasFlag(GLOBAL.FLAG_SLIGHTLY_PUMPED) && !pc.ass.hasFlag(GLOBAL.FLAG_PUMPED) && !pc.ass.hasFlag(GLOBAL.FLAG_HYPER_PUMPED))
{
kGAMECLASS.output("\n\nYou feel your [pc.asshole] quiver, twitching as if being prodded with a vibrator. You can’t help but lick your lips in anticipation of what’s about to happen,");
if(pc.libido() < 33) kGAMECLASS.output(" stifling a quiet whimper");
else if(pc.libido() < 66) kGAMECLASS.output(" cooing to yourself");
else kGAMECLASS.output(" letting out an exultant groan");
kGAMECLASS.output(". Your anus is starting to thicken with new material, pushing out just enough to let you feel it pressed lightly against your cheeks like a soft little button.");
kGAMECLASS.output("\n\nYou reach back to examine it as the growth stops, and it feels so good that you nearly cum just from the brush of your fingertip. Gone is the trim star once nestled between your buns, replaced by a soft, spongy donut that’s just as");
if(pc.ass.looseness() <= 1) kGAMECLASS.output(" tight");
else if(pc.ass.looseness() <= 5) kGAMECLASS.output(" loose");
else kGAMECLASS.output(" gaping wide");
kGAMECLASS.output(" as before but far more pliable and willing to stretch around your finger. Touching the rim feels almost like");
if(pc.hasVagina()) kGAMECLASS.output(" touching your pussy lips, getting the real thing wetter by the second");
else kGAMECLASS.output(" what you imagine it would be like to have a set of pussy lips to rub, pleasure rushing hot through your veins");
kGAMECLASS.output(". You can’t wait to find out how this feels when you get a real cock crammed in there!");
kGAMECLASS.output("\n\nYou manage to keep yourself from descending into full-on masturbating just yet, standing up straight and putting your gear back on. You’ll be biting your lip for a good long while at the sensation of your new plump pucker rubbing against your ass with every step you take.");
// Anus becomes Slightly Pumped, capacity increases
pc.ass.addFlag(GLOBAL.FLAG_SLIGHTLY_PUMPED);
if(pc.ass.bonusCapacity < 100) pc.ass.bonusCapacity += 10;
pc.lust(50);
}
// Anus has the Slightly Pumped flag but not the Pumped flag:
// Anus loses the Slightly Pumped flag and gains the Pumped flag. Increase bonusCapacity towards 100.
else if(pc.ass.hasFlag(GLOBAL.FLAG_SLIGHTLY_PUMPED) && !pc.ass.hasFlag(GLOBAL.FLAG_PUMPED) && !pc.ass.hasFlag(GLOBAL.FLAG_HYPER_PUMPED))
{
kGAMECLASS.output("\n\nYou");
if(pc.libido() < 33) kGAMECLASS.output(" can’t help it; this time you");
kGAMECLASS.output(" moan like a whore as your anal ring swells and softens further still, thickening until it presses against your buns with delicious firmness. It feels so fat, so sinfully soft, that you don’t know how you’ll ever feel calm again with such an exciting pressure constantly lurking below");
if(pc.hasTails()) kGAMECLASS.output(" your tails");
else if(pc.hasTail()) kGAMECLASS.output(" your tail");
else kGAMECLASS.output(" your tailbone");
kGAMECLASS.output(".");
kGAMECLASS.output("\n\nYou reach behind yourself and cry out at the sensations that rocket through your ass.");
if(pc.hasVagina())
{
kGAMECLASS.output(" It’s every bit as sensitive as [pc.eachCunt], maybe even more so");
if(pc.matchedVaginas() && (pc.vaginas[0].hasFlag(GLOBAL.FLAG_PUMPED) || pc.vaginas[0].hasFlag(GLOBAL.FLAG_HYPER_PUMPED))) kGAMECLASS.output(" had you not juiced that up into a big puffy pleasure mound as well");
kGAMECLASS.output(". The thought of taking a cock in each at once, of feeling this ecstasy in front and back at the same time, has [pc.girlCum] streaming down your thighs.");
}
else
{
kGAMECLASS.output(" Who needs a pussy when you’ve got a hole like this? Your donut’s just as plump and inviting as any cunt could ever be.");
}
kGAMECLASS.output(" Your anus has completely transformed into something meant for pleasure and pleasure alone, a big fat donut with a winking little hole nestled in the center ripe and ready to fuck.");
kGAMECLASS.output("\n\nYou barely manage to resist the urge to see how many fingers you can cram in your new pleasure pit, instead getting up and getting your gear back on. Your pucker twitches with disappointment, but you’re sure you’ll be finding a use for it soon enough.");
// Slightly Pumped anus becomes Pumped, capacity increases
pc.ass.delFlag(GLOBAL.FLAG_SLIGHTLY_PUMPED);
pc.ass.addFlag(GLOBAL.FLAG_PUMPED);
if(pc.ass.bonusCapacity < 100) pc.ass.bonusCapacity += 10;
pc.lust(100);
}