<h3><i>The world isn't divided into good and evil.</i></h3>
That's what your grandfather used to tell you. It is, however, divided into men and women. Quite literally.
Generations before you were born the two sexes had a falling out, blaming each other for everything that's wrong with the world. Protests turned into riots. Riots turned into civil wars. Civil wars turned into a full-scale world war. When the dust settled, there was no living with each other anymore.
[img[$imgDir + 'intro/segregated.jpeg']]
So they didn't. Land was divided between men and women, the borders fortified. Each formed their own governments and kept contact to a minimum. The official stance says that there is no contact, but babies have to come from somewhere.
[[That's where you come in]]
<<nobr>>
<<set $day = 1>> /* Day counter */
<<set $gameTime = 0>> /* Game Time starts in the morning. See Time System */
<<set $player = {}>> /* Player object */
<<set $player.fitness = 0>> /* Phyiscal fitness player */
<<set $player.stamina = 0>> /* How long you last in bed */
<<set $player.money = 0>> /* Player money */
<<set $player.energy = 100>> /* Player energy */
<<set $player.maxenergy = 100>> /* Max player energy */
<<set $player.paintolerance = 0>> /* Player paintolerance */
<<set $player.worship = 0>>/* Player worship skill */
<<set $player.futanari = 0>>/* Player futanari skill */
<<set $player.personality = 50>>/* Player submissive/dominant meter */
<<set $charlotterelation = 0>> /* How much Charlotte likes the player*/
<</nobr>><<set $times to ['Morning', 'Mid-Day', 'Early Afternoon', 'Late Afternoon', 'Evening', 'Night']>>
<<set $gameTime to 0>>
<<widget "progressTime">>
<<nobr>>
<<if $args[0]>>
<<set $gameTime to $args[0]>>
<<else>>
<<if $gameTime + 1 >= $times.length>>
<<set $gameTime = 0>>
<<else>>
<<set $gameTime to $gameTime + 1>>
<</if>>
<</if>>
<<switch random(0,2)>>
<<case 0>>
<<set $charlottelocation = "outside">>
<<case 1>>
<<set $charlottelocation = "bathroom">>
<<case 2>>
<<set $charlottelocation = "room">>
<</switch>>
<<if $gameTime is 5>>
<<set $charlottelocation = "room">>
<</if>>
<</nobr>>
<</widget>><<set $imgDir to 'resources/'>>
<<include 'Time System'>>
<<newmeter 'paintolerance' 0>>
<<animation false>>
<<sizing '100%'>>
<</newmeter>><<nobr>>
<div style="display:flex; width:100%;">
<a target="_blank" href="https://discord.gg/tYSwD8XZFV" style="width:45%;"><img style="min-width:0px; width:100%;" src='resources/credits/discord.png'></a>
<div style="width:5%;"></div>
<a target="_blank" href="https://patreon.com/AverageHtmlEnjoyer" style="width:45%;">
<img style="min-width:0px; width:100%;" src='resources/credits/patron.png'>
</a>
</div>
<br>
<br>
<<if $introcomplete is true>>
<span>Day: $day</span>
<br>
<span>Time: $times[$gameTime]</span>
<br>
<span>Crowns: $player.money</span>
<br>
<span>Energy: $player.energy</span>
<<if $charlottedebt > 0>>
<br>
<br>
<span>Debt to Charlotte: $charlottedebt crowns</span>
<</if>>
<<if $player.futanariaddiction > 79 and $futanariaddictioncured is not true>>
<br>
<br>
<span style='color:red;'>Your futanari addiction is getting dangerously high!</span>
<</if>>
<</if>>
<<if def $player and def $player.shirt and $player.shirt is not "none">>
<br>
<br>
<<if $player.shirt is "futa">>
<img style="min-width:0px; width:50%;" src="resources/outside/mall/clothesshop/deepthroatprincess.jpeg">
<</if>>
<<if $player.shirt is "worship">>
<img style="min-width:0px; width:50%;" src="resources/outside/mall/clothesshop/footworship.jpeg">
<</if>>
<<if $player.shirt is "masochist">>
<img style="min-width:0px; width:50%;" src="resources/outside/mall/clothesshop/masochist.jpeg">
<</if>>
<</if>>
<</nobr>><<nobr>>
<<if $introcomplete is true>>
[[Stats]]
<br>
[[Achievements]]
<br>
<</if>>
[[Credits]]
<</nobr>><<nobr>>
<<set _worshiplevel = 0>>
<<set _worshipmaxxp = 50>>
<<if $player.worship > 49>>
<<set _worshiplevel = 1>>
<<set _worshipmaxxp = 150>>
<</if>>
<<if $player.worship > 149>>
<<set _worshiplevel = 2>>
<<set _worshipmaxxp = 300>>
<</if>>
<<if $player.worship > 299>>
<<set _worshiplevel = 3>>
<<set _worshipmaxxp = 500>>
<</if>>
<<set _worshiphouse = "Uninitiated">>
<<if $worshippledgecompleted is true>>
<<set _worshiphouse = "Acolyte">>
<</if>>
<<if $nicolemassagetest is true>>
<<set _worshiphouse = "Foot Expert">>
<</if>>
<<if $nicoleassworship is true>>
<<set _worshiphouse = "Butt Muncher">>
<</if>>
<<set _paintolerancelevel = 0>>
<<set _paintolerancemaxxp = 50>>
<<if $player.paintolerance > 49>>
<<set _paintolerancelevel = 1>>
<<set _paintolerancemaxxp = 150>>
<</if>>
<<if $player.paintolerance > 149>>
<<set _paintolerancelevel = 2>>
<<set _paintolerancemaxxp = 300>>
<</if>>
<<if $player.paintolerance > 299>>
<<set _paintolerancelevel = 3>>
<<set _paintolerancemaxxp = 500>>
<</if>>
<<set _painhouse = "Uninitiated">>
<<if $painpigunlocked is true>>
<<set _painhouse = "Beginner">>
<</if>>
<<if $peggingenabled is true>>
<<set _painhouse = "Pegging Piggy">>
<<elseif $player.paintolerance > 149>>
<<set _painhouse = "Intermediate">>
<</if>>
<<if $player.paintolerance > 299>>
<<set _painhouse = "Human Furniture">>
<</if>>
<<set _futanarilevel = 0>>
<<set _futanarimaxxp = 50>>
<<if $player.futanari > 49>>
<<set _futanarilevel = 1>>
<<set _futanarimaxxp = 150>>
<</if>>
<<if $player.futanari > 149>>
<<set _futanarilevel = 2>>
<<set _futanarimaxxp = 300>>
<</if>>
<<if $player.futanari > 299>>
<<set _futanarilevel = 3>>
<<set _futanarimaxxp = 500>>
<</if>>
<<set _staminalevel = 0>>
<<set _staminamaxxp = 50>>
<<if $player.stamina > 49>>
<<set _staminalevel = 1>>
<<set _staminamaxxp = 150>>
<</if>>
<<if $player.stamina > 149>>
<<set _staminalevel = 2>>
<<set _staminamaxxp = 300>>
<</if>>
<<if $player.stamina > 299>>
<<set _staminalevel = 3>>
<<set _staminamaxxp = 500>>
<</if>>
<<set _fitnesslevel = 0>>
<<set _fitnessmaxxp = 50>>
<<if $player.fitness > 49>>
<<set _fitnesslevel = 1>>
<<set _fitnessmaxxp = 150>>
<</if>>
<<if $player.fitness > 149>>
<<set _fitnesslevel = 2>>
<<set _fitnessmaxxp = 300>>
<</if>>
<<if $player.fitness > 299>>
<<set _fitnesslevel = 3>>
<<set _fitnessmaxxp = 500>>
<</if>>
<</nobr>>
<table width=100%>
<tr>
<td valign="top"> <table>
<tr>
<th>Worship</th>
</tr>
<tr>
<td>Level: </td>
<td>_worshiplevel </td>
</tr>
<tr>
<td>Xp: </td>
<<if $player.worship is 300>>
<td>MAX</td>
<<else>>
<td>$player.worship / _worshipmaxxp</td>
<</if>>
</tr>
<tr>
<td>House: </td>
<td>_worshiphouse</td>
</tr>
</table>
</td>
<td valign="top"> <table>
<tr>
<th>Pain tolerance</th>
</tr>
<tr>
<td>Level: </td>
<td>_paintolerancelevel </td>
</tr>
<tr>
<td>Xp: </td>
<<if $player.paintolerance is 300>>
<td>MAX</td>
<<else>>
<td>$player.paintolerance / _paintolerancemaxxp</td>
<</if>>
</tr>
<tr>
<td>House: </td>
<td>_painhouse</td>
</tr>
</table>
</td>
<<if def $player.futanaridickssucked>>
<td valign="top"> <table>
<tr>
<th>Futanari</th>
</tr>
<tr>
<td>Level: </td>
<td>_futanarilevel </td>
</tr>
<tr>
<td>Xp: </td>
<<if $player.futanari >299>>
<td>MAX</td>
<<else>>
<td>$player.futanari / _futanarimaxxp</td>
<</if>>
</tr>
<<if ndef $player.futanariaddiction>>
<tr>
<td>Dicks sucked: </td>
<td>$player.futanaridickssucked</td>
</tr>
<<elseif $futanariaddictioncured is not true>>
<tr>
<td>Addiction level: </td>
<td>$player.futanariaddiction / 100</td>
</tr>
<</if>>
</table>
</td>
<</if>>
<td valign="top"> <table>
<tr>
<th>Fitness</th>
</tr>
<tr>
<td>Level: </td>
<td>_fitnesslevel </td>
</tr>
<tr>
<td>Xp: </td>
<<if $player.fitness is 300>>
<td>MAX</td>
<<else>>
<td>$player.fitness / _fitnessmaxxp</td>
<</if>>
</tr>
</table>
</td>
<td valign="top"> <table>
<tr>
<th>Stamina</th>
</tr>
<tr>
<td>Level: </td>
<td>_staminalevel </td>
</tr>
<tr>
<td>Xp: </td>
<<if $player.stamina is 300>>
<td>MAX</td>
<<else>>
<td>$player.stamina / _staminamaxxp</td>
<</if>>
</tr>
</table>
</td>
</tr>
</table>
<<back>><<say "Charlotte Sartre" 'resources/credits/charlotte.jpg_large'>>https://onlyfans.com/gothcharlotte<</say>>
<<say "Nicole Aniston" 'resources/credits/nicole.jpeg'>>https://onlyfans.com/xnicoleanistonx<</say>>
<<say "Lucie Wilde" 'resources/credits/lucie.jpeg'>>https://twitter.com/luciewildexxx<</say>>
<<say "Sarah Banks" 'resources/credits/sarah.jpeg'>>https://onlyfans.com/thesarahbnkx<</say>>
<<back>>As a fresh conscript in the army you have an exciting time ahead of you. You live in a small male country in Eurasia. There has been trouble at the southern border in recent years, so young adults are expected to do one year of military service.
[img[$imgDir + 'intro/recruits.jpeg']]
Nobody in your squad has ever seen a woman. At best they may have heard stories of border sightings from their older family members. You've never seen a picture either, as the government outlawed those long ago. Even the internet is heavily filtered. With a lot of luck you could find some old drawings or figurines.
You hoped you would get a glimpse of one during your patrol. The stories you could tell!
[[Your first real mission]]You should have been more careful what you wished for. Nothing happened for hours during the patrol, and the men were lulled into a false sense of security. When the company took a break in a small village you scurried off to take a leak, even leaving your gun behind.
Suddenly there was a bunch of shouting, and then gunfire. An ambush by the women, who were waiting for the most vulnerable moment. Everything happened so fast, by the time you got back your comrades were either dead or fleeing. One of the female soldiers noticed you and forced you on your knees.
[img[$imgDir + 'intro/army/armygirl.webp']]
<i>So that's what women look like. She's so close...</i>
<span style="color:lightblue">"What about this one? Clearly a soldier, but he's unarmed and has shown no signs of resistance."</span>
<span style="color:lightgreen">"Just shoot him like the rest. We don't have time to waste on men."</span>
<span style="color:lightblue">"I'm not about to execute an unarmed boy. He barely looks like an adult."</span>
<span style="color:lightgreen">"Not a great time to grow a conscience, Tess. Fine, take him to the captain, maybe we can get some intel out of him."</span>
[[They take you into a nearby building]]You get dragged along and tied to a chair as they discuss what to do with you. They try to interrogate you but you can't answer their questions, distracted by one of the girls who unzipped their top. She catches you looking at her boobs. How could you not, you've never seen a pair!
<span style="color:lightgreen">"Are there more of you coming? What's the name of your commander? Are you listening to me!?"</span>
"Uhhh..."
[img[$imgDir + 'intro/army/armytits2.webp']]
[[She notices what you're staring at]]<span style="color:lightgreen">"Where the fuck do you think you're looking, boy?"</span>
<span style="color:lightblue">"The poor guy, he can't take his eyes off them. He probably fell in love at first sight."</span>
The women giggle as you try to save some dignity by looking away, but to no avail. It's like something switched on in that monkey brain of yours and it's overriding any conscious thought you have.
<span style="color:pink">"Bah, those are nothing. Hey male, check these out!"</span>
[img[$imgDir + 'intro/army/bouncingboobs1.webp']]
You do a double take as a woman shakes her clearly braless breasts in your face. The bouncing and jiggling makes them have an even stronger hypnotic effect than before.
<span style="color:orange">"I can't blame him for staring, those tits are majestic."</span>
[img[$imgDir + 'intro/army/bouncingboobs2.webp']]
Suddenly you let out a small, involuntary grunt, and a sticky warmth spreads in your underwear.
<i>Oh no this can't be happening</i>
Your face goes beet red as you realize you just jizzed yourself, just from seeing boobs for the first time. They weren't even naked! You try to hide it by shifting your legs, only to arouse their suspicion.
<span style="color:lightblue">"Something's wrong with him. Did you check for weapons or substances earlier? Search him!"</span>
[[They inspect your clothes]]
They forcibly strip search you, and there is no hiding the huge wet spot spreading in your underwear. Your penis hasn't gone down at all, still overly excited from it's first encounter with boobs.
<span style="color:lightblue">"Oh. My. God. He actually came in his pants. I guess that's what an entire childhood without women does to a man."</span>
<span style="color:orange">"I'm not so sure it's the childhood, he's probably just a pervert."</span>
<span style="color:lightgreen">"So this is what men in male ruled countries are like? Pathetic."</span>
<i>Please just let this be a bad dream</i>
[img[$imgDir + 'intro/army/cuminpants.jpeg']]
You get saved from any further embarassment by some commotion outside. Your ears make out some shouting, and a bunch of vehicles coming in. More of the women perhaps? Or reinforcements from your military coming to save you?
<span style="color:orange">"We're out of time here. Knock him out and let's move."</span>
<i>Wait what?</i>
The last thing you feel is something hard hitting the back of your head.
[[The world goes black]]<<timed 2s>>
...
<</timed>>
<<timed 4s>>
<i>Ohh, my head...</i>
<</timed>>
<<timed 6s>>
...
<</timed>>
<<timed 8s>>
<i>There's so much noise... Can't they let me sleep in peace?</i>
<</timed>>
<<timed 10s>>
...
<</timed>>
<<timed 13s>>
[[Wake up]]
<</timed>>Slowly opening your eyes you let them adjust to the brightness in the room. Before moving you make an attempt to take in your surroundings, perhaps you can find an escape route. You're on the floor, and completely naked. On the far side is a lady next to another naked man, who seems to be taking bids. You won't learn much more, so while grunting you make an effort to sit up.
<span style="color: #5F9EA0;">"1500 crowns for the lady in the back, going once, going twice."</span>
<i>Is he being sold?</i>
[img[$imgDir + 'intro/slaveauction.jpeg']]
One of the women attending the slaves noticed you getting up, and approaches you.
<span style="color: #5F9EA0;">"Look who's awake. Just in time too, you're our last merchandise for today."</span>
Looks like the bidding ended. The man before you is now being escorted away, and the lady forces you to your feet. After a quick inspection she wipes some drool off your chin and grabs your arm.
[[You're called up to the stand]]You barely have time to get your bearings before the guards move you up next to the announcer, and you can hear the women in the room discussing you. It's hard to make out, but words like "weak" and "small" seem to get repeated a lot. After a few minutes there hasn't even been a single offer to purchase you.
<span style="color: #5F9EA0;">"Looks like this one is another dud. Take him away."</span>
<i>I'm not even worth buying?</i>
...
<span style='color:crimson;'>"I'll take him for 250 crowns."</span>
The woman who just spoke is an attractive twenty-something wearing a latex outfit and carrying a whip. She's staring at you intently, and you can't help but stare back. For some reason the longer you look at her the faster your heart pounds.
[img[$imgDir + 'intro/charlotteintro.jpeg']]
<span style="color: #5F9EA0;">"Ah, miss Charlotte. I was wondering when we'd get to see you again. Are you sure you want this one? He's not one of more impressive specimens. We were just about to send him off to the mines."</span>
<span style='color:crimson;'>"That's fine. I like to see it as an opportunity."</span>
<span style="color: #5F9EA0;">"Well, if you're certain. He's all yours."</span>
[[The security takes you aside]]While the woman in latex and the announcer handle the payment some of the guards approach you with a black collar. The reality of your situation quickly sinks in as they lock it into place, your chances of escaping dropping by the minute.
<span style="color: #5F9EA0;">"You should be grateful, piggy. Life as a slave is much better than dying in some mine shaft."</span>
[img[$imgDir + 'intro/collared.webp']]
After securely attaching your collar you are handed over to Charlotte, who yanks your chain and heads for the exit. She's stronger than she looks, and you don't think resisting would do you much good here.
<span style='color:crimson;'>"Let's go slave. We're wasting daylight."</span>
[[Follow your new owner]]She leaves the building with you in tow, and you head out onto the streets. Your face is beet red and you keep staring at the ground, because you're still practically naked for everyone to see. Charlotte doesn't look back even once.
After a short but humiliating walk, with some of the local women whistling after you and one even pinching your butt, you arrive at Charlotte's place. You follow her inside, and once there she sits down on a nearby chair and instructs you to crawl over to her, almost like a pet.
<span style='color:crimson;'>"Let's see what kind of meat I bought, shall we? How about you kiss my pretty boots to show your devotion."</span>
[img[$imgDir + 'charlotte/femdom/charlottechair.webp']]
[[Kiss her boots]]
[[Refuse]]<<nobr>>
<<if $playerroomupgraded is true>>
[img[$imgDir + 'charlotte/home/playerroom/upgradedroom.jpeg']]
<br>
<br>
Home sweet home. A lot nicer than I'm used to.
<<else>>
[img[$imgDir + 'charlotte/home/playerroom/room.jpeg']]
<br>
<br>
It's not much to look at, but at least you can crash here when you're tired.
<</if>>
<</nobr>>
<<nobr>>
<<if $gameTime is not 5>>
[[Rest]]
<br>
<<if $player.paidoffdebt is true and $playerroomupgraded is not true and $charlottelocation is "room">>
[[Look into upgrading your room]]
<br>
<</if>>
<</if>>
<<if $gameTime is 5>>
[[Sleep]]
<br>
<</if>>
<<if $tshirtfutabought is true or $tshirtworshipbought is true or $tshirtmasochistbought is true>>
[[Wardrobe]]
<br>
<</if>>
<</nobr>>
[[Leave->Home]]
<<nobr>>
<<if $introcomplete is not true>>
<<set $introcomplete = true>>
<</if>>
<<if $charlottedebt > 0 and $player.paidoffdebt is not true and $gameTime is 5 and ($charlotterobbedslept is true or $robbedbyfutanarigang is not true) and $charlottepayment is not true>>
<<goto charlottepayment>>
<</if>>
<<if $gameTime is 0 and $player.futanaridickssucked > 9 and ndef $player.futanariaddiction>>
<<goto futanariwithdrawals>>
<</if>>
<</nobr>><<nobr>>
<div class="row">
<div class="column">
<a data-passage="Bedroom" class="darken"><<if $playerroomupgraded is true>>
<img src="resources/charlotte/home/playerroom/upgradedroom.jpeg" >
<<else>>
<img src="resources/charlotte/home/playerroom/room.jpeg" ><</if>><span>Bedroom</span></a>
</div>
<div class="column">
<<if $charlottelocation is "room">>
<div class="charlotteicon"></div>
<</if>>
<a data-passage="Charlotte's Room" class="darken"><img src="resources/charlotte/home/charlotteroom/charlottebedroom.jpeg" ><span>Charlotte's room</span></a>
</div>
</div>
<div class="row">
<div class="column">
<<if $charlottelocation is "outside">>
<div class="charlotteicon"></div>
<</if>>
<a data-passage="Outside" class="darken"><img src="resources/charlotte/home/outside/outside.jpeg" ><span>Outside</span></a>
</div>
<div class="column">
<<if $charlottelocation is "bathroom">>
<div class="charlotteicon"></div>
<</if>>
<a data-passage="Bathroom" class="darken"><img src="resources/charlotte/home/bathroom/bathroom.jpeg" ><span>Bathroom</span></a>
</div>
</div>
<<if $gameTime is 5 and $robbedbyfutanarigang is true and $charlotterobbedevent is not true>>
<<goto charlotterobbedevent>>
<<elseif $charlottedebt > 0 and $gameTime is 5 and ($charlotterobbedslept is true or $charlotterobbedevent is not true) and $charlottepayment is not true and $player.paidoffdebt is not true>>
<<goto charlottepayment>>
<<else>>
<</if>>
<<if $charlottedebt < 251 and $charlottedebthalfwayevent is not true and $charlottepayment is not true and $gameTime is 0 and $player.paidoffdebt is not true>>
<<goto charlottedebthalfwayevent>>
<</if>>
<<if $charlotteticketevent is not true and $charlottetestcompleteddays > 6>>
<<goto charlotteticketevent>>
<</if>>
<</nobr>><<nobr>>
<<set _dreams = ["military"]>>
<<if def $player.futanaridickssucked>>
<<set _dreams.push("futanariblowjob")>>
<</if>>
<<if $robbedbyfutanarigang is true>>
<<set _dreams.push("futanaririmming")>>
<</if>>
<<if $donationsavailable is true>>
<<set _dreams.push("hospitaldonation")>>
<</if>>
<<if $gymintrocompleted is true>>
<<set _dreams.push("gym")>>
<</if>>
<<if $breedingintrocompleted is true and $breedinglicenseobtained is not true>>
<<set _dreams.push("breeding")>>
<</if>>
<<if $player.paintolerance > 49>>
<<set _dreams.push("houseofpain1")>>
<</if>>
<<if $player.worship > 49 and $worshippledgecompleted is true>>
<<set _dreams.push("worship")>>
<</if>>
<<if $breedingtestcompleted is true>>
<<set _dreams.push("pregnancy")>>
<</if>>
<<if $player.paidoffdebt is true>>
<<set _dreams.push("queen")>>
<</if>>
<<if $gymwrestlingavailable is true>>
<<set _dreams.push("wrestling")>>
<</if>>
<<if $peggingenabled is true>>
<<set _dreams.push("hugestrapon")>>
<</if>>
<<if $paintolerancelevel3popup is true>>
<<set _dreams.push("facesitting")>>
<</if>>
<<if $sarahanaleventcompleted is true>>
<<set _dreams.push("sarahanal")>>
<</if>>
<<switch _dreams.random()>>
<<case futanaririmming>>
You have a restless night, constantly tossing and turning. When you do fall asleep you have nightmares about the Futanari gangs, who decided to keep you as an ass-licking pet after all, before jolting back awake.
<br>
<br>
<i>It's just a dream. You're safely in bed.</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/futanaririmming.webp']]
<<set $player.energy = $player.energy / 2>>
<<case futanariblowjob>>
Since your little adventure in the Futanari bathroom some of the women in your dreams have a huge cock dangling between their legs. You're starting to think you have a problem.
<br>
<br>
<i>Why are all of them so hung</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/futanarisurprise.webp']]
<<case military>>
In your dreams you are captured by the military again, helplessly tied up as they torture you by bouncing their boobs inches away from your face. If only you could reach out and grab them...
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/bouncingboobs.webp']]
<<case hospitaldonation>>
You're having a nightmare about donating sperm, you can't seem to get hard at all. Luckily the nurse takes pity on you and gives you some visual stimulation.
<br>
<br>
<span style='color:pink;'>"Does this help?"</span>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/nurseflashing.webp']]
<<case gym>>
You dream about the babes at the gym, hypnotized by their well trained butts bouncing. Maybe if you keep training you'll be able to impress them...
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/gymdream.webp']]
<<case "breeding">>
At night your brain shows you a glimpse of what could be if you managed to get your breeding license. Beautiful women spreading their legs for you, ready to receive your seed...
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/breedingdream.webp']]
<<case houseofpain1>>
You're back at the house of pain, helplessly tied up as the girls there subject you to some edging torture. At first it's fun, but soon the endless teasing becomes annoying, and then painful. They keep you hard for hours, until you're so sensitive that a single stroke of a finger makes you orgasm.
<br>
<br>
As you finally cum in the dream you jolt awake, a nocturnal orgasm soiling your sheets.
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/houseofpaindream.webp']]
<<case worship>>
You dream of the day you finish your Worship training, the women gladly offering their pussies for you to pleasure. What could be better than a woman trembling and moaning in orgasm on your skillful tongue.
<br>
<br>
<i>I can almost taste it</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/worshipdream.webp']]
<<case pregnancy>>
Your brain fantasizes up an image of Anastasia, with a swollen belly carrying your child and swollen tits filled with milk. You wonder if she would let you suck her nipples for a little bit, it would be a shame to let it go to waste.
<br>
<br>
<span style='color:#faedcd'>"Do you think it'll be a boy or a girl?"</span>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/pregnantdream.webp']]
<<case queen>>
Ever since Charlotte mentioned the Queen's Games you can't get the image of the ruler out of your head. Surely she must be the most powerful and beautiful woman in the land.
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/queen.webp']]
<<case wrestling>>
Your sweet dream about wrestling with a beautiful, almost naked girl soon turns into a nightmare. No matter how much you tap her legs she won't get off you, and the last thing you remember is a pair of ass cheeks smothering your face before everything fades to black.
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/wrestling.webp']]
<<case hugestrapon>>
The mistresses at the House of Pain ordered a special toy just for you, an extra large strapon designed to permanently rearrange your insides. No matter how much you beg they keep telling you to get on your knees and spread 'em.
<br>
<br>
<i>Wait, there's no way that will fit!</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/hugestrapon.webp']]
<<case facesitting>>
You're having trouble breathing in your sleep, probably because you keep imagining a nice round ass covering your face. All that time spent as living furniture has really messed with your brain.
<br>
<br>
<i>So soft and squishy</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/facesittingdream.webp']]
<<case sarahanal>>
Your brain keeps bringing up the memory of Sarah's ass bouncing on your cock. That hole must have been the warmest, tightest one you've ever felt. It's making you toss and turn in your sleep, an erection straining against the blankets.
<br>
<br>
<i>Hopefully that wasn't a one time thing</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/playerroom/dreams/sarahanal.webp']]
<</switch>>
<</nobr>>
[[Wake up->Bedroom]]
<<nobr>>
<<set $day++>>
<<set $gameTime = 0>>
<<set $charlottetraining = false>>
<<if $player.fitness > 299 and $playerroomupgraded is true and $player.maxenergy < 200>>
<<set $player.maxenergy = 200>>
<</if>>
<<set $player.energy = $player.maxenergy>>
<<if $player.paidoffdebt is not true>>
<<set $charlottepayment = false>>
<</if>>
<<if $charlotterobbedevent is true>>
<<set $charlotterobbedslept = true>>
<</if>>
<<if $worshipintrocompleted is true>>
<<set $worshipintroslepton = true>>
<</if>>
<<set $jogged = false>>
<<set $donatedtoday = false>>
<<set $workedout = false>>
<<set $wrestled = false>>
<<set $worshippracticed = false>>
<<set $foxydrinkshad = 0>>
<<if $breedingtestcompleted is true>>
<<set $breedingtestcompleteddays++>>
<</if>>
<<if $charlottetestcompleted is true>>
<<set $charlottetestcompleteddays++>>
<</if>>
<<set $addictblowjob = false>>
<<set $entrancefeepaid = false>>
<<set $danced = false>>
<<script>>Save.autosave.save("Autosave")<</script>>
<</nobr>>You decide to follow her instructions, at least for now. There's no telling what she would do to you if you disobey, and it's not like this will hurt you. Kneeling down further you kiss her latex boots all over as she tells you exactly where to go next.
<span style='color:crimson;'>"Such a good little puppy. I knew you were special the moment I saw you."</span>
<i>God, this is humiliating...</i>
[img[$imgDir + 'charlotte/femdom/charlottebootkissing.webp']]
<span style='color:crimson;'>"That's enough for now, come with me and I'll give you your reward."</span>
<i>Your worship skill has improved!</i>
[[Get up and follow her]]
<<nobr>>
<<notify 5s>>Charlotte likes that<</notify>>
<<set $player.worship = 10>>
<<set $charlotterelation = 5>>
<</nobr>>Slave or not, you're not going to roll over just because she demands it. You look her in the eye and shake your head.
<span style='color:crimson;'>"Feeling a little rebellious are we? That's cute. You should know I've broken dozens of brats just like you, and you look like the wimpiest of them all. I'm not even sure you qualify as a man."</span>
To emphasize her point Charlotte grabs you by the balls gives them a good few squeezes. You grit your teeth and just barely manage to stand the pain, but your legs feel weak and wobbly. Her grip is strong enough to rip them right off.
<i>Fuck!</i>
[img[$imgDir + 'charlotte/femdom/charlottegrabsballs.webp']]
<span style='color:crimson;'>"Now I'm going to give you one more chance to do as you're told. What will it be?"</span>
[[Apologize and kiss her shoes]]
[["Fuck you, bitch!"]]Charlotte takes you upstairs into one of the rooms. It's mostly empty apart from a dirty old mattress, which smells almost as bad as your sleeping bag back in the military. Funnily enough, this is probably an improvement.
[img[$imgDir + 'charlotte/home/playerroom/room.jpeg']]
<span style='color:crimson;'>"This is your room. There's a pile of clothes in the corner there for you to wear. I'm your owner, not your friend. You will spend every day earning money until you pay me back double my investment. That's the only reason I bought you. If you manage to pay me back, then I'll consider releasing you."</span>
"But how am I supposed to earn so much money?"
<span style='color:crimson;'>"I don't care how you do it, go beg for cash or lick some feet, it's not my problem. Just don't come back here empty-handed. Are we clear? Oh, and don't even think about running, runaway males get shot on sight. If you're lucky."</span>
After those final words Charlotte leaves you alone with your thoughts.
<i>How did I get myself into this mess</i>
[[Your new life awaits->Bedroom]]
<<set $charlottedebt = 500>>
<<set $charlottelocation = "room">>You decide to follow her instructions, at least for now. There's no telling what she would do to your balls if you disobeyed, and you'd like to keep them. Kneeling down further you kiss her latex boots all over as she tells you exactly where to go.
<span style='color:crimson;'>"Such a good little puppy. Isn't this much nicer than trying to resist?"</span>
<i>God, this is humiliating...</i>
[img[$imgDir + 'charlotte/femdom/charlottebootkissing.webp']]
<span style='color:crimson;'>"That's enough for now, come with me and I'll give you your reward."</span>
<i>Your worship skill has improved!</i>
[[Get up and follow her]]
<<nobr>>
<<notify 5s>>Charlotte likes that<</notify>>
<<set $player.worship = 10>>
<<set $charlotterelation = 5>>
<</nobr>>She lets out a disappointed sigh and looks at you almost as if she's pitying you.
<span style='color:crimson;'>"If that's how you want to play it, fine by me. "</span>
Without any warning she grabs you by the hair and kicks you straight in the balls. The impact takes you by surprise, and her hard shoes make the hit even harder, but somehow you find the strength to grit your teeth and glare at her.
[img[$imgDir + 'charlotte/femdom/charlottekicksballs1.webp']]
<span style='color:crimson;'>"Oh, you managed to take that one? Well color me surprised. I was certain one would be enough. No matter."</span>
Her next hit is twice as hard as the first, and this time there is no toughing it out. Your legs collapse from under you as the searing pain spreads through your groin. Collapsed into a ball on the ground all you can do is let out a pathetic little grunt.
"Nnnngh..."
[img[$imgDir + 'charlotte/femdom/charlottekicksballs2.webp']]
<i>This woman is crazy!</i>
<span style='color:crimson;'>"Stop squirming already, it's only your balls. You weren't using those anyway. Come on, I have something to show you."</span>
<i>Your pain tolerance has improved!</i>
It takes you a while to recover, but after a few minutes the pain subsides to a manageable level. You should probably do as she says for now, if your balls take another hit like that you can kiss them goodbye.
[[Get up and follow her]]
<<nobr>>
<<notify 5s>>Charlotte doesn't like that<</notify>>
<<set $player.paintolerance = 10>>
<<set $charlotterelation = -5>>
<</nobr>><<if $gameTime is 5>>
<div class="MapContainerNight">
<span class="MapBtn" style='position:absolute;left:44%;top:30%;'><<button "Home">><<goto 'Home'>><</button>></span>
</div>
<<if $futanaridistrictdiscovered is true>>
<span class="MapBtn" style='position:absolute;left:70%;top:25%;'><<button "Futanari District">><<goto 'Futanari District'>><</button>></span>
<</if>>
<<if $parkdiscovered is true>>
<span class="MapBtn" style='position:absolute;left:70%;top:60%;'><<button "Park">><<goto 'Park'>><</button>></span>
<</if>>
<<if $player.paidoffdebt is true and $nightclubdiscovered is not true>>
<span class="MapBtn" style='position:absolute;left:31%;top:86%;'><<button "Explore">><<goto 'ExploreNight'>><</button>></span>
<</if>>
<<if $nightclubdiscovered is true>>
<span class="MapBtn" style='position:absolute;left:38%;top:17%;'><<button "Club R">><<goto 'Club R'>><</button>></span>
<</if>>
<<else>>
<div class="MapContainer">
<span class="MapBtn" style='position:absolute;left:44%;top:30%;'><<button "Home">><<goto 'Home'>><</button>></span>
<<if $gameTime is not 4 and $player.energy > 9 and (($futanaridistrictdiscovered is not true and $futanaridistrictdisabled is not true) or ($parkdiscovered is not true) or ($hospitaldiscovered is not true) or ($houseofpaindiscovered is not true) or ($quarrydiscovered is not true) or ($gymdiscovered is not true) or ($malldiscovered is not true and $charlottedebthalfwayevent is true))>>
<span class="MapBtn" style='position:absolute;left:0%;top:96%;'><<button "Explore">><<goto 'Explore'>><</button>></span>
<</if>>
<<if $parkdiscovered is true>>
<span class="MapBtn" style='position:absolute;left:70%;top:60%;'><<button "Park">><<goto 'Park'>><</button>></span>
<</if>>
<<if $hospitaldiscovered is true>>
<span class="MapBtn" style='position:absolute;left:25%;top:50%;'><<button "Hospital">><<goto 'Hospital'>><</button>></span>
<</if>>
<<if $houseofpaindiscovered is true>>
<span class="MapBtn" style='position:absolute;left:5%;top:50%;'><<button "House of Pain">><<goto 'House of Pain'>><</button>></span>
<</if>>
<<if $quarrydiscovered is true>>
<span class="MapBtn" style='position:absolute;left:47%;top:1%;'><<button "Quarry">><<goto 'Quarry'>><</button>></span>
<</if>>
<<if $futanaridistrictdiscovered is true>>
<span class="MapBtn" style='position:absolute;left:70%;top:25%;'><<button "Futanari District">><<goto 'Futanari District'>><</button>></span>
<</if>>
<<if $parkworshipunlocked is true>>
<span class="MapBtn" style='position:absolute;left:10%;top:70%;'><<button "House of Worship">><<goto 'House of Worship'>><</button>></span>
<</if>>
<<if $gymdiscovered is true>>
<span class="MapBtn" style='position:absolute;left:58%;top:17%;'><<button "Gym">><<goto 'Gym'>><</button>></span>
<</if>>
<<if $dopavailable is true>>
<span class="MapBtn" style='position:absolute; left:10%; top:10%;'><<button "Department of Procreation">><<goto 'Department of Procreation'>><</button>></span>
<<if $breedingtestavailable is true and $breedingtestcompleted is not true>>
<span class="MapBtn" style='position:absolute;left:5%;top:25%;'><<button "Anastasia's apartment">><<goto 'Anastasia apartment'>><</button>></span>
<</if>>
<<if $malldiscovered is true>>
<span class="MapBtn" style='position:absolute;left:32%;top:90%;'><<button "Mall">><<goto 'Mall'>><</button>></span>
<</if>>
<</if>>
</div>
<</if>><<nobr>>
<<if $parkdiscovered is not true>>
<<goto parkdiscovery>>
<<else>>
<<if $futanaridistrictdiscovered is not true and $futanaridistrictdisabled is not true>>
<<goto "explorefutanaridistrict">>
<<elseif $hospitaldiscovered is not true>>
<<goto hospitaldiscovery>>
<<elseif $quarrydiscovered is not true>>
<<goto quarrydiscovery>>
<<elseif $houseofpaindiscovered is not true>>
<<goto houseofpaindiscovery>>
<<elseif $gymdiscovered is not true>>
<<goto gymdiscovery>>
<<elseif $malldiscovered is not true and $charlottedebthalfwayevent is true>>
<<goto malldiscovery>>
<<else>>
<<goto "Outside">>
<</if>>
<</if>>
<</nobr>>During your exploration you come across a run-down neighborhood. The entrance is riddled with warning signs and posters, most of them covered in graffiti. You take a closer look and try to find one that's still legible.
"By decree of the Mayor this area has been assigned as a law-free zone under the rule of the Futanari. As the police cannot protect you inside we strongly urge civilians to stay away. Any crimes committed inside will not be prosecuted."
<i>Futanari? What's that?</i>
[img[$imgDir + 'outside/futanaridistrict/intro/lawlessness.jpeg']]
<span style='color:red;'>WARNING: Chicks with dicks ahead. Enter at your own peril.</span>
[[Go in despite the warning]]
<<link "Leave and never come back (disables Futa content)" "Outside">>
<<set $futanaridistrictdisabled = true>>
<</link>>
<<nobr>>
<<progressTime>>
<<set $player.energy = $player.energy - 10>>
<</nobr>>While wandering the streets you get less and less comfortable by the minute. You constantly get catcalled, and could swear some of the locals are following you. The last straw is a Futanari exposing herself in front of you, wagging her huge erection as if to entice you to come closer.
<i>What the hell? Do all the women here have dicks?</i>
<span style="color: #ffc857;">"You like that, boy? Why don't you come here and I'll show you a good time."</span>
<i>I have to get away from here</i>
[img[$imgDir + 'outside/futanaridistrict/intro/streetflashing.webp']]
[[Look for somewhere to hide]]
<<nobr>>
<<set $futanaridistrictdisabled = false>>
<<set $futanaridistrictdiscovered = true>>
<</nobr>>You find a public restroom and hurry inside, hoping nobody saw you. Unfortunately you're not alone in here, as another Futanari suddenly grabs you by the chest and pushes you against the wall. While she's holding you in place her eyes drift downwards to check you out.
<span style="color: #ffc857;">"What's this, we finally have a new bathroom bitch? About time, the last one quit weeks ago."</span>
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/intromeeting.webp']]
"Uh, I think there's been some kind of misunderstanding..."
<span style="color: #ffc857;">"It's really quite simple baby, you use that pretty mouth of yours to drain my balls and I'll give you a little cash for your troubles. Think of it as doing a public service, most Futanari become aggressive when they're backed up."</span>
<i>Yeah, I can tell</i>
[[Push her off and run while you can]]
[[Stop resisting and get down]]
<<nobr>>
<<progressTime>>
<</nobr>>Resigning yourself to your fate you kneel as she takes out her hardening cock. With a deep breath in your grab it and take the tip in your mouth, trying to figure out what to do. You awkwardly rock back and forth until she interrupts by pulling out.
<span style="color: #ffc857;">"Shit you're really bad at this, have you even sucked a dick before?"</span>
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/introblowjob1.webp']]
"Sorry, it's my first time..."
<span style="color: #ffc857;">"Hah! My lucky day. Change of plans, start licking my balls and I'll show you what you've been missing out on."</span>
Following her instructions you go just a little bit lower, until your lips touch her heavy and swollen sack. It's rather sweaty from being stuffed in her panties, and the musky smell is making you woozy, but you don't dare complain. All you can do is lick, suck, and wait for it to be over.
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/introblowjob2.webp']]
[[She rubs one out]]The Futa spends the next few minutes stroking her shaft while you tongue her balls. When she's getting close she grabs you by the hair and yanks your head back, just in time for her first rope of cum to land on your face.
With every shot more of her thick, sticky jizz covers you, until her orgasm finally starts to subside. For the last few drops she shoves it back in your mouth and then makes you clean every inch of her cum-covered shecock.
<i>Bleh, it tastes like salt</i>
<span style="color: #ffc857;">"Fuuuck, that's the good shit. You earned your pay, slut."</span>
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/introblowjobcum.webp']]
<<nobr>>
<<set $player.money = $player.money + 10>>
<i>You made 10 crowns sucking Futanari dick</i>
<</nobr>>
<span style="color: #ffc857;">"I'll spread the word that there's a new cocksucker in town. Come back here if you want to work some more. Although you might want to work on your technique if you're hoping for bigger tips."</span>
The woman gets dressed and exits the bathroom, leaving you to rethink your life choices while sitting on a cold hard floor covered in dickgirl semen. At least you got some money out of it, right?
[[Clean up and leave the bathroom->Futanari District]]
<<nobr>>
<<set $player.futanari = $player.futanari + 10>>
<<if ndef $player.futanaridickssucked>>
<<set $player.futanaridickssucked = 1>>
<<notify 5s>>Achievement unlocked: Futa cocksucker<</notify>>
<<else>>
<<set $player.futanaridickssucked++>>
<</if>>
<</nobr>><<nobr>>
<<if $gameTime is not 5>>
[img[$imgDir + 'outside/futanaridistrict/futanaridistrict.png']]
<br>
<br>
The dirty streets of the Futanari District are ruled by the Powder Gangs, who spend their time dealing drugs and fighting out rivalries. During the daytime it's mostly quiet, but it's probably a good idea to keep moving.
<br>
<br>
[[Public bathroom]]
<br>
<<if $player.futanari > 49 and $foxysbardiscovered is not true>>
[[Explore more of the district]]
<br>
<</if>>
<<if $player.futanari > 49 and $foxysbardiscovered is true>>
[[Foxy's bar]]
<br>
<</if>>
<br>
[[Leave->Outside]]
<<else>>
[img[$imgDir + 'outside/futanaridistrict/futanaridistrictdark.png']]
<br>
<br>
It's late at night and you can see groups of Futanari on the street corners looking for customers. The district is even more dangerous at this time, your survival instincts are screaming at you to go home already.
<br>
<br>
<<if $robbedbyfutanarigang is not true>>
[[Approach one of the gangs]]
<br>
<</if>>
[[Leave->Outside]]
<</if>>
<</nobr>>[img[$imgDir + 'outside/futanaridistrict/bathroom/bathroom.jpeg']]
The bathroom is a popular "public service" hotspot for the local Futanari. If you wait a while you might get some customers.
<<nobr>>
<<if $gameTime is not 5>>
<<if $player.energy > 29>>
[[Offer blowjobs to strangers]]
<<else>>
<a disabled><strike>Offer blowjobs to strangers</strike> (no energy)</a>
<</if>>
<</if>>
<<if $gotraisefromfoxy is true>>
<br>
<<if $gameTime is not 5>>
<<if $player.energy > 29>>
[[Get fucked for cash]]
<<else>>
<a disabled><strike>Get fucked for cash</strike> (no energy)</a>
<</if>>
<</if>>
<</if>>
<</nobr>>
[[Leave->Futanari District]] <<nobr>>
<<switch random(0,2)>>
<<case 0>>
A college girl walks in and is very excited about getting her first public blowjob, quickly pulling down her pants and revealing a sizeable girlcock. Despite your protests she also whips out her phone and starts filming for social media.
<br>
<br>
<span style="color: #ffc857;">"I can't wait for my friends to see this. They're going to be so jealous!"</span>
<br>
<br>
<i>Great, hope my face isn't in it</i>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/bathroomblowjob1.webp']]
<br>
<br>
When she's satisfied with her clips she grabs you by the hair and starts cumming in your mouth. She makes you swallow every drop and show your empty mouth as proof before finally giving you your tip.
<<case 1>>
You wait in one of the stalls until you hear someone come in. When she's close enough you knock on the wall and wave your hand through the gloryhole to signal your availability. She immediately drops her pants and sticks her hardening dick through the hole.
<br>
<br>
<span style="color: #ffc857;">"I didn't know we had a toilet slut again, about damn time! Let's see what you got."</span>
<br>
<br>
Despite your inexperience you do your best to please her, and you don't hear any complaints. She must have been very backed up, because it only takes her a minute of humping before dumping a massive load into your mouth.
Her cum is thick and slimy, and it just keeps coming as you desperately try to keep swallowing so as not to choke.
<br>
<br>
<span style="color: #ffc857;">"Oh fuck yes, that's exactly what I needed."</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/bathroomblowjob2.webp']]
<br>
<br>
After she's finally done cumming she pulls out of the hole and slides some change under the stall for you.
<br>
<br>
<span style="color: #ffc857;">"See you next time, cumdump. Remember to keep practicing."</span>
<<case 2>>
One of the locals enters the bathroom to freshen up, and you offer her your services. She agrees, and you kneel down between her legs to get to work while she reapplies some of her makeup.
<br>
<br>
<span style="color: #ffc857;">"I could get used to this. How about you become my personal fluffer? You would get to do this every day! No? Let me know me if you change your mind. Here's your payment."</span>
<br>
<br>
<i>All in a day's work</i>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/bathroom/blowjobs/bathroomblowjob3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.futanari < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.futanari < 150>>
<<set _earnings = random(10,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "futa">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns sucking Futanari dick</i>
<</nobr>>
<<nobr>>
<<if $gameTime is 4>>
[[Take the cash->Futanari District]]
<<else>>
[[Take the cash->Public bathroom]]
<</if>>
<</nobr>>
<<nobr>>
<<progressTime>>
<<set $player.energy = $player.energy - 30>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 5>>
<</if>>
<<set $futanaridicksucked = true>>
<<if $player.futanari < 150>>
<<updateFutanari 10>>
<</if>>
<<if ndef $player.futanaridickssucked>>
<<set $player.futanaridickssucked = 1>>
<<notify 5s>>Achievement unlocked: Futa cocksucker<</notify>>
<<else>>
<<set $player.futanaridickssucked++>>
<</if>>
<</nobr>>[img[$imgDir + 'outside/futanaridistrict/night/gang.webp']]
Against your better judgment you walk up to one of the Futanari gangs spread throughout the streets. One of them, presumably the leader, spots you coming and turns to face you, blowing some cigarette smoke right in your face.
<span style='color:#ffc857;;'>"The fuck do you want?"</span>
[[Ask about drugs]]
[[Nevermind->Futanari District]]<span style='color:#ffc857;;'>"Wow! Get a load of this girls, baby boy wants to go on a trip."</span>
<span style='color:lightblue;'>"We don't sell our product to men. But we have something you can try instead."</span>
Before you know it you've been surrounded by the Futas, cutting off any possible escape. Judging by the warning signs placed at the district entrance you can't count on anyone coming to save you, either.
<span style='color:lightblue;'>"I heard boys can get high by eating ass. Let's put that to the test, shall we?"</span>
The leader leans up against a nearby car and pulls down her pants, while the others push you down to your knees and shove your face right between her fat buttcheeks. You have no choice but to start licking her butthole.
<span style='color:#ffc857;;'>"Take a good sniff boy, this shit is of the highest quality!"</span>
[img[$imgDir + 'outside/futanaridistrict/night/nighttimeasslicking.webp']]
After the leader is done with you each of the gang members wants a turn with your tongue up their asshole as well, and you're too afraid to turn them down. You spend hours desperately trying to please them so they won't hurt you.
Eventually they get bored and make you leave, but not before frisking you and taking all the money you earned today.
<span style='color:#ffc857;'>"Thanks for the donation, bitch boy. Now get out of here before we decide to keep you as a pet."</span>
[[Get the hell away from them->Outside]]
<<nobr>>
<<set $player.money = 0>>
<<set $robbedbyfutanarigang = true>>
<<set $player.worship = $player.worship + 10>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 5>>
<</if>>
<</nobr>><<goto gangsurrounded>> /* This prevents the use of the back button to cheat */You make it back in the wee hours of the night, and let out a sigh of relief. Carefully opening the door you plan to tiptoe to your room, but to your surprise Charlotte is still waiting for you, and she does not look happy.
<span style='color:crimson;'>"Where the hell have you been? Do you have any idea what time it is? And why do you smell like shit?"</span>
[img[$imgDir + 'charlotte/femdom/charlottewaiting.webp']]
<<linkreplace "Try to explain">>
Coming clean you tell her how you approached one of the Futanari gangs and how they robbed you after making you lick their ass. She raises an eyebrow at that part, and let's out a deep sigh when you're done.
<span style='color:crimson;'>"Are you hurt?"</span>
"What?"
<span style='color:crimson;'>"I said, Are you hurt?"</span>
"Uh, no I don't think so."
<span style='color:crimson;'>"Idiot. Go to your room. I'll come up with a punishment for you later."</span>
<i>That's strange, I thought she would be angrier</i>
[[Head to bed->Bedroom]]
<</linkreplace>>
<<nobr>>
<<set $charlotterobbedevent = true>>
<</nobr>><<nobr>>
<<if $player.money < 10>>
Before you can go to sleep you have to pay Charlotte what she's owed. She's very disappointed at how little you have for her today. Better not make this a habit.
<<if $player.money > 0>>
<br>
<br>
<i>You paid $player.money crowns toward your debt</i>
<</if>>
<br>
<br>
<span style='color:crimson;'>" I expect more from you, or you'll be sleeping on the street."</span>
<<elseif $player.money > 25>>
Before you can go to sleep you have to pay Charlotte what she's owed. You managed to earn so much today she even lets you keep some of it. At this rate you'll be a free man in no time at all!
<br>
<br>
<i>You paid 25 crowns toward your debt</i>
<br>
<br>
<span style='color:crimson;'>"Good work today. Keep it up."</span>
<<else>>
Before you can go to sleep you have to give Charlotte your earnings for today.
<br>
<br>
<span style='color:crimson;'>"Aren't you a busy little bee? I knew I saw something in you."</span>
<br>
<br>
<i>You paid $player.money crowns toward your debt</i>
<</if>>
<</nobr>>
[img[$imgDir + 'charlotte/home/general/charlottecouch.jpeg']]
<<nobr>>
<<set $charlottepayment = true>>
<<if $charlottedebt <= $player.money>>
<<set $player.money = $player.money - $charlottedebt>>
<<set $charlottedebt = 0>>
<<goto charlottedebtpaid>>
<</if>>
<<if $charlottedebt > $player.money>>
<<if $player.money > 25>>
<<set $charlottedebt = $charlottedebt - 25>>
<<set $player.money = $player.money - 25>>
<<else>>
<<set $charlottedebt = $charlottedebt - $player.money>>
<<set $player.money = 0>>
<</if>>
<</if>>
<</nobr>>
<<nobr>>
<<if $player.money > 0>>
<<link "Give her the rest as well" "Home">>
<<if $charlottedebt <= $player.money>>
<<set $player.money = $player.money - $charlottedebt>>
<<set $charlottedebt = 0>>
<<goto charlottedebtpaid>>
<<else>>
<<set $charlottedebt = $charlottedebt - $player.money>>
<<set $player.money = 0>>
<</if>>
<</link>>
<</if>>
<</nobr>>
[[Head straight to bed->Sleep]]
[[Continue->Home]]You use all your strength to push her off and make a beeline for the exit. Luckily the people following you earlier are also nowhere to be seen. Retracing your steps you make it back to the entrance of the district safely.
<<nobr>>
<<if $gameTime is not 4>>
[img[$imgDir + 'outside/futanaridistrict/futanaridistrict.png']]
<<else>>
[img[$imgDir + 'outside/futanaridistrict/futanaridistrictdark.png']]
<</if>>
<</nobr>>
<i>These Futanari are crazy! I'll have to be more careful from now on</i>
[[Continue->Futanari District]]<<nobr>>
<<if $gameTime is 5>>
[img[$imgDir + 'outside/park/parknight.png']]
<br>
<br>
It's so quiet you can hear animals scuttling about. It looks relatively safe, but you never know what weirdos you might run into at night.
<br>
<br>
[[Walk around]]
<br>
[[Leave->Outside]]
<<else>>
[img[$imgDir + 'outside/park/park.jpeg']]
<br>
<br>
<<if $jogged is not true and $player.energy > 19>>
[[Go jogging]]
<<else>>
<a disabled><strike>Go jogging</strike></a>
<</if>>
<br>
[[Relax for a bit]]
<br>
<<if $parkworshipunlocked is not true >>
[[Try begging for money]]
<<else>>
<<if $player.energy > 29>>
[[Offer to rub some feet]]
<<else>>
<a disabled><strike>Offer to rub some feet</strike> (no energy)</a>
<</if>>
<</if>>
<br>
<<if $nicolemassagetest is true>>
<<if $player.energy > 29>>
[[Look for asses to worship]]
<<else>>
<a disabled><strike>Look for asses to worship</strike> (no energy)</a>
<</if>>
<br>
<</if>>
<<if $charlottelocation is "outside" and $charlotteparkevent is not true and $day > 2>>
<br>
[[You run into Charlotte]]
<br>
<</if>>
<<if $breedingtestavailable is true and $flowerspicked is not true>>
<br>
[[Pick some flowers]]
<br>
<</if>>
<br>
[[Leave->Outside]]
<</if>>
<</nobr>>You find a nearby bench and wait for passersby, asking them if they have any spare change. Most of them look at you in disgust, the others shake their head or straight up ignore you. A little bit later it's obvious that this isn't working.
Just as you're about to give up a girl walks over and sits down next to you, takes off her shoes, and sighs a breath of relief. Deciding to give it one last shot you strike up a conversation, but she laughs when you explain what you're doing.
<span style="color:#e6ccb2">"You're never going to get anywhere like that. Men are expected to work for their dough around here."</span>
[img[$imgDir + 'outside/park/worship/parkfeetintro1.webp']]
"Who's going to hire me? I'm a slave with no skills or physique to speak of."
<span style="color:#e6ccb2">"You just have to think outside the box. For example, offer a tired stranger who's been hiking all day a relaxing foot rub instead. I'm sure a lot of women here would go for that."</span>
"You really think so?"
<span style="color:#e6ccb2">"I know so. Say, the House of Worship isn't too far from here. I heard they train men like you to worship women the way they deserve. Here, I'll write down some directions for you."</span>
"Thanks."
<span style="color:#e6ccb2">"So what do you say, want to give them a little rub? My feet are really killing me. Pretty please?"</span>
[[Agree to rub her feet]]
[[I'm not doing that->Park]]
<<set $parkworshipunlocked = true>>
<<nobr>>
You decide to work on your fitness and go for a nice run, trying not to get distracted by the bouncing boobs of fellow joggers you encounter. There's no telling what they'd do to you if you're caught staring.
<br>
<br>
<i>Why is it so hard not to look at two balls of fat?</i>
<br>
<br>
<<switch random(0,2)>>
<<case 0>>
[img[$imgDir + 'outside/park/jogging/bralessrun1.webp']]
<<case 1>>
[img[$imgDir + 'outside/park/jogging/bralessrun2.webp']]
<<case 2>>
[img[$imgDir + 'outside/park/jogging/bralessrun3.webp']]
<</switch>>
<br>
<br>
<<if $player.fitness < 50>>
<i>Your fitness has improved</i>
<<else>>
<i>You've reached the fitness limit from jogging. Maybe you should find a gym?</i>
<</if>>
<</nobr>>
[[Finish up->Park]]
<<nobr>>
<<progressTime>>
<<if $player.fitness < 50>>
<<set $player.fitness = $player.fitness + 10>>
<<if $player.fitness > 50>>
<<set $player.fitness = 50>>
<</if>>
<</if>>
<<set $player.energy = $player.energy - 20>>
<<set $jogged = true>>
<<if $player.fitness is 50 and $fitnesslevel1popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 1!<</notify>>
<<set $player.maxenergy = 120>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 120<</notify>>
<</timed>>
<<set $fitnesslevel1popup = true>>
<</if>>
<</nobr>>As you're discovering more of the city you come across a large, well-maintained park. There are several women relaxing or going for a jog. This could be a good spot to ask for some money, or work on your fitness.
[img[$imgDir + 'outside/park/parkentrance.jpeg']]
[[Take a look around->Park]]
<<nobr>>
<<progressTime>>
<<set $parkdiscovered = true>>
<<set $player.energy = $player.energy - 10>>
<</nobr>><<progressTime>>
<<set $player.energy = $player.energy + 20>>
<<if $player.energy > $player.maxenergy>>
<<set $player.energy = $player.maxenergy>>
<</if>>
<<goto Bedroom>><<nobr>>
<<if $breedingtestcompleted is true or $playerlostvirginity is true>>
<<if $playerlostvirginity is true>>
<h2>It still counts</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="It still counts" class="darken"><img src="resources/achievements/itstillcountsimage.webp"><span>It still counts</span></a>
</div>
<</if>>
<<if $breedingtestcompleted is true>>
<h2>You're the daddy</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="You're the daddy" class="darken"><img src="resources/achievements/yourethedaddyimage.avif"><span>You're the daddy</span></a>
</div>
<</if>>
<</if>>
<<if def $player.futanaridickssucked>>
<h2>Futanari cocksucker</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Futa Cocksucker" class="darken"><img src="resources/achievements/futacocksuckerimage.jpeg"><span>Futa cocksucker</span></a>
</div>
<</if>>
<<if $nicolemassagetest is true>>
<h2>Expert footboy</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Expert footboy" class="darken"><img src="resources/achievements/expertfootboyimage.jpeg"><span>Expert footboy</span></a>
</div>
<</if>>
<<if $goodsamaritan is true>>
<h2>Good samaritan</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Good samaritan" class="darken"><img src="resources/achievements/goodsamaritanimage.jpeg"><span>Good samaritan</span></a>
</div>
<</if>>
<<if $wrestlingmatchwon is true>>
<h2>To the victor go the spoils</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="To the victor go the spoils" class="darken"><img src="resources/achievements/spoilsimage.webp"><span>To the victor go the spoils</span></a>
</div>
<</if>>
<<if $peggingenabled is true>>
<h2>Just the tip</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Just the tip" class="darken"><img src="resources/achievements/justthetipimage.jpeg"><span>Just the tip</span></a>
</div>
<</if>>
<<if $nicoleassworship is true>>
<h2>Ass crack bandit</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Ass crack bandit" class="darken"><img src="resources/achievements/asscrackbanditimage.png"><span>Ass crack bandit</span></a>
</div>
<</if>>
<<if $foxydrunkrape is true>>
<h2>A drunk adventure</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="A drunk adventure" class="darken"><img src="resources/achievements/adrunkadventureimage.png"><span>A drunk adventure</span></a>
</div>
<</if>>
<<if $dancedachievement is true>>
<h2>Party animal</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Party animal" class="darken"><img src="resources/achievements/partyanimalimage.jpeg"><span>Party animal</span></a>
</div>
<</if>>
<<if $gotraisefromfoxy is true>>
<h2>$20 is $20</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="$20is$20" class="darken"><img src="resources/achievements/$20is$20image.jpeg"><span>$20 is $20</span></a>
</div>
<</if>>
<<if $sarahanaleventcompleted is true>>
<h2>Anything for my clients</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Anything for my clients" class="darken"><img src="resources/achievements/anythingformyclientsimage.jpeg"><span>Anything for my clients</span></a>
</div>
<</if>>
<<if $paintolerancelevel3popup is true>>
<h2>Human furniture</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Human furniture" class="darken"><img src="resources/achievements/humanfurnitureimage.jpeg"><span>Human furniture</span></a>
</div>
<</if>>
<<if $tshirtfutabought is true and $tshirtworshipbought is true and $tshirtmasochistbought is true>>
<h2>Fashionista</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Fashionista" class="darken"><img src="resources/achievements/fashionistaimage.png"><span>Fashionista</span></a>
</div>
<</if>>
<<if $anonymousdonor is true>>
<h2>Anonymous donor</h2>
<div class="column" style="min-width: 100px; max-width: 300px;">
<a data-passage="Anonymous donor" class="darken"><img src="resources/achievements/anonymousdonorimage.webp"><span>Anonymous donor</span></a>
</div>
<</if>>
<</nobr>>
<<back>>You've tasted your first Futanari dick, and you can't say you hated the experience. Sometimes a subtle craving strikes you to go back and try it again. One more can't hurt, right?
[img[$imgDir + 'achievements/futacocksucker.webp']]
<<back>>The girl puts her feet on your lap, and you start massaging them to the best of your abilities. Up close you can really smell the sweaty musk from her recent hike. Despite your initial repulsion there is something arousing about the whole thing. Maybe this isn't so bad after all.
<span style="color:#e6ccb2">"Go ahead, give them a little kiss. I know you want to."</span>
Your curiosity gets the better of you and you lean in to kiss her sweaty toes. As you do so you can feel your cock straining against your pants, hard as a rock. You're afraid that if she so much as brushes against your hardon it will set you off.
Luckily you manage to complete the rest of the massage without incidents. She gives you a little cash for your trouble.
<span style="color:#e6ccb2">"Not bad, but I've had better. You should definitely check out that place I told you about."</span>
[img[$imgDir + 'outside/park/worship/parkfeetintro2.webp']]
<<nobr>>
<<set $player.money = $player.money + 10>>
<i>You made 10 crowns worshipping feet</i>
<</nobr>>
[[She puts on her shoes and leaves->Park]]
<<nobr>>
<<progressTime>>
<<if $player.worship < 50>>
<<set $player.worship = $player.worship + 10>>
<</if>>
<</nobr>><<nobr>>
<<switch random(0,2)>>
<<case 0>>
After waiting on your knees for a while a woman approaches you. She sits down on a nearby bench and takes off her shoes, beckoning you to come closer. It's obvious that she expects you to clean her feet.
<br>
<br>
<span style="color:#BEF0CB;">"Ugh, finally, I've been hiking for hours. You better do a good job, I had to file a complaint about the last guy for lack of enthusiasm. Chop chop!"</span>
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkfeet1.webp']]
<<case 1>>
A pair of college girls hire you to massage them while they study. You don't think they opened their books a single time though, instead they spend the whole time gossipping, giggling, and talking about you as if you're not there.
<br>
<br>
<span style="color:#BEF0CB;">"He's kind of cute, don't you think?"</span>
<br>
<br>
<span style="color:orange;">"Yeah, but do I really want to date a guy who rubs feet in the park for a living?"</span>
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkfeet2.webp']]
<<case 2>>
Some spoiled rich brats call you over and have you kneel in front of them. They may look pretty and smell good, but their attitude stinks worse than their soles. It's clear that they barely even consider you to be a human, and certainly nowhere near equal to them.
<br>
<br>
<span style="color:#BEF0CB;">"Aren't you a lucky boy, it's probably the best day of your life. Say thank you for letting me worship you, goddess!"</span>
<br>
<br>
"Thank you for letting me worship you, goddess..."
<br>
<br>
<span style="color:#BEF0CB;">"Good doggy! Here's your treat."</span>
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkfeet3part1.webp']]
<br>
<br>
After removing their shoes they make you stick your tongue out while they use it as a shoe scraper, wiping off every inch of their perfectly pedicured feet. When you're done they get up and start to leave, until you stop them to ask for payment. Despite all their fancy clothes they only want to give you the bare minimum.
<br>
<br>
<span style="color:orange;">"Just give him the tip, Linda. Sheesh."</span>
<br>
<br>
<span style="color:#BEF0CB;">"Whatever, I still think he should be paying us for the honor of touching our feet."</span>
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkfeet3part2.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.worship < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.worship < 150>>
<<set _earnings = random(12,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping feet</i>
<</nobr>>
[[Finish up->Park]]
<<nobr>>
<<progressTime>>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 10>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<<if $player.worship is 50 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship is 150 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<</nobr>>[img[$imgDir + 'outside/houseofpain/houseofpain.jpeg']]
The House of Pain is always busy, with both men and women constantly coming and going. The men exiting the building walk a little funny, some are even clutching their crotch.
<<nobr>>
<<if $painpigunlocked is true>>
<<if $player.energy > 29>>
[[Serve as a pain pig]]
<<else>>
<a disabled><strike>Serve as a pain pig</strike> (no energy)</a>
<</if>>
<br>
<<if $player.paintolerance > 49 and $peggingenabled is not true and $peggingdisabled is not true>>
[[A woman is wearing a strange device]]
<br>
<</if>>
<<else>>
[[Go in]]
<br>
<</if>>
<<if $player.paintolerance > 149 and $forniphiliaunlocked is not true>>
[[One of the mistresses calls you over (!)]]
<br>
<br>
<</if>>
<<if $forniphiliaunlocked is true>>
<<if $player.energy > 29>>
[[Let women use you as a footstool]]
<<else>>
<a disabled><strike>Let women use you as a foot stool</strike> (no energy)</a>
<</if>>
<br>
<</if>>
<<if $forniphiliaunlocked is true and $player.paintolerance > 224>>
<<if $player.energy > 29>>
[[Become a seat for women]]
<<else>>
<a disabled><strike>Become a seat for women</strike> (no energy)</a>
<</if>>
<br>
<</if>>
[[Leave->Outside]]
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>Just inside is an Asian woman sitting on a naked man, who seems to be serving as a chair for her to sit on. The poor guy is shaking, but she doesn't even acknowledge his existence and instead gives you a smile.
<span style='color:#bc4749;'>"Hello there, little lamb. Are you lost?"</span>
[img[$imgDir + 'outside/houseofpain/dominatrix.webp']]
<i>Just ignore it</i>
"What is this place?"
<span style='color:#bc4749;'>"Why this is heaven on earth of course. Here women get to remind men that they are but a toy to vent their frustrations on. Would you like to try it out? I'll make sure to tell the girls to take it easy on you. At first."</span>
[[It can't be that bad]]
[[No way am I doing that->House of Pain]]<<nobr>>
<<if $player.paintolerance < 75>>
<<switch random(0,4)>>
<<case 0>>
This hot milf is on the prowl for some fresh young blood, and you catch her eye straight away. She gets you naked and tied up, completely helpless as she spanks your bottom with a belt over and over until you beg for mercy.
<br>
<br>
<span style='color:#bc4749;'>"Don't tell me you're done already, your ass isn't even red yet!"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig1.webp']]
<<case 1>>
The client is a sadistic blonde woman, who wants do some asphyxiation play with you. She wraps her powerful thighs around your neck and squeezes down, cutting off your air supply. Every time you tap out she lets you go, but then squeezes even harder the next round.
<br>
<br>
<span style='color:#bc4749;'>"Ohh, how I love that panicked look in your eyes. Not knowing if I'll let you up for air or not. Isn't it the best?"</span>
<br>
<br>
You're unable to answer her, but at least you know she's having a good time. You can literally smell her arousal.
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig2.webp']]
<<case 2>>
A gorgeous redhead wants your services today, wearing a latex outfit that really accentuates her bountiful curves. You can feel the blood rushing to your nether regions the moment she walks in. When she notices your growing penis she scoffs.
<br>
<br>
<span style='color:#bc4749;'>"No! Bad boy! Who said you could get an erection?"</span>
<br>
<br>
She grabs your stiff member and slaps it a few times as a punishment, but it only serves to make you even harder.
<br>
<br>
<span style='color:#bc4749;'>"Why won't this stupid thing go down? I'll just keep trying."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig3.webp']]
<<case 3>>
Your session with a young girl starts with her venting about how terrible a day she's having. From missing her bus to flunking a test and being rejected by her crush, nothing seems to go right.
<br>
<br>
<span style='color:#bc4749;'>"I'm so sorry about this, but I really need to let off some steam. Here, you can look at my tits as a distraction."</span>
<br>
<br>
After pulling up her shirt she immediately starts punching your balls, the pain shooting through your spine. You grit your teeth and try to focus on her bouncing boobs, managing to tune out some of the hurt, until she finally stops.
<br>
<br>
<span style='color:#bc4749;'>"Whew. Thanks, I feel a lot better!"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig4.webp']]
<<case 4>>
Today's customer has you lower your pants and present your penis on a nearby table. She kicks off her heels and starts stomping all over your member, which is slightly painful but also oddly stimulating. After some time you can't hold back anymore and grunt as your jizz leaks out all over her toes.
<br>
<br>
<span style='color:#bc4749;'>"Eww, did you just cum? That's disgusting!"</span>
<br>
<br>Despite her words she shows no signs of slowing down, spreading your seed all over her soles as she continues kicking.
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig5.webp']]
<</switch>>
<<else>>
<<set _end = 4>>
<<if $peggingenabled is true>>
<<set _end = 6>>
<</if>>
<<switch random(0,_end)>>
<<case 0>>
A cruel woman has you restrained in a straitjacket and spends the entire session mercilessly edging your penis. Every time you get close she backs off, only to start again when you've nearly recovered. With less than a minute left on the clock she just barely pushes you over the edge, then quickly pulls back her hand and ruins your orgasm.
<br>
<br>
<span style='color:#bc4749;'>"That was fun. I think I'll book you twice the length next time."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig6.webp']]
<<case 1>>
The client has you tied to a rack and strokes your dick hard, only to grab a whip and flog it until your erection goes down again. She keeps switching between the two, completely ignoring your groans. She's also got great aim, managing to hit the same spot over and over again.
<br>
<br>
"Mmmmmmpfh!"
<br>
<br>
<span style='color:#bc4749;'>"Silence, worm."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig7.webp']]
<<case 2>>
This woman brought her own paddle, which she claims has been used on hundreds of boys to create art. Like a brush on a canvas it strikes your exposed buttcheeks, painting them into the shape and color she wants. Afterwards she likes to take a picture of her work, and promises to show you her collection sometime.
<br>
<br>
<span style='color:#bc4749;'>"That's a nice shade of red. Or maybe just a little darker?"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig8.webp']]
<<case 3>>
With your arms tied above your head there's nothing you can do as a young redhead has her way with you. She has a firm grip on your balls, and starts listing all the different ways she could pop them. You hope she's not actually planning on trying some out.
<br>
<br>
<span style='color:#bc4749;'>"If you want to keep them I suggest you start begging, piggy."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig9.webp']]
<<case 4>>
In the middle of a ballbusting session you cry out as you have an involuntary orgasm, while the woman is still ramming her fist into your ballsack. Even though several ropes land on her face she doesn't stop, hitting the same spot even harder. She's literally beating the cum out of you.
<br>
<br>
<span style='color:#bc4749;'>"That made you cum? This is why men are hopeless."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/painpig10.webp']]
<<case 5>>
A young couple hires you for a hot and steamy session with the three of you. You get all excited for a second, until you notice that both of them are fully strapped, and your cock isn't in the equation. Not exactly how you imagined a threesome would go. They don't even pay you extra!
<br>
<br>
<span style='color:#bc4749;'>"You look so hot pounding his ass, babe!"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/strapon1.webp']]
<<case 6>>
While rubbing the tip of her strapon against your prostate this blonde hottie reaches around to grab your dick and starts stroking. It's not long before she fucks the cum out of you, the drops landing on the table she has you bent over.
<br>
<br>
<span style='color:#bc4749;'>"Already? Are you a buttslut or something? I'm gonna keep going, I paid for an hour."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/painpig/strapon2.webp']]
<</switch>>
<</if>>
<</nobr>>
<<nobr>>
<<if $player.paintolerance < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.paintolerance < 150>>
<<set _earnings = random(12,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "masochist">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You earned _earnings crowns</i>
<</nobr>>
[[Finish session->House of Pain]]
<<nobr>>
<<progressTime>>
<<if $player.paintolerance < 150>>
<<updatePainTolerance 10>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<</nobr>>[img[$imgDir + 'outside/houseofworship/houseofworship.jpeg']]
An imposing building stands before you. The House of Worship employs hundreds of women, all of them beautiful and ambitious. The area has an almost religious feel to it.
<<nobr>>
<<if $worshipintrocompleted is not true>>
[[Find someone to talk to]]
<<elseif $worshipintroslepton is true>>
[[Talk to Nicole]]
<</if>>
<<if $worshippledgecompleted is true>>
<br>
<<if $worshippracticed is true>>
<a disabled><strike>Practice your Worship</strike> (come back tomorrow)</a>
<<elseif ($player.worship > 99 and $nicolefootworship1 is not true and $timesworshippracticed > 1) or ($player.worship > 149 and $nicolemassagetest is not true and $nicolefootworship1 is true and $timesworship2practiced > 1) or ($player.worship > 299 and $nicoleassworship is not true)>>
<a disabled><strike>Practice your Worship</strike> (Nicole wants to see you)</a>
<<else>>
<<if $player.energy > 29>>
[[Practice your Worship]]
<<else>>
<a disabled><strike>Practice your Worship</strike> (no energy)</a>
<</if>>
<</if>>
<<if $player.worship > 149 and $nicolefootworship1 is true>>
<<if $player.energy > 29>>
<br>
[[Work as a worshipper]]
<<else>>
<br>
<a disabled><strike>Work as a worshipper</strike> (no energy)</a>
<</if>>
<</if>>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Leave->Outside]]You enter the building and are greeted by a blonde woman sitting by a desk. You do your best to keep eye contact.
<span style='color:lightblue;'>"Hello, male. You must be new here. We offer an introductory tour for potential acolytes, should you be interested in joining our House. It's non-binding, but know that what you see here is strictly confidential."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolesitting.jpeg']]
[[Take the tour]]
[[Another time perhaps->House of Worship]] <span style='color:lightblue;'>"Need something, boy?"</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolesitting2.jpeg']]
<<nobr>>
<<if $nicolemassagetestslepton is true and $houseofworshipmark is not true>>
<<goto houseofworshipmark>>
<<else>>
<<if $worshippledgecompleted is not true>>
[[Pledge yourself to the house of worship]]
<</if>>
<<if ($player.worship < 100 or ndef $timesworship2practiced or $timesworship2practiced < 2) and $worshippledgecompleted is true>>
<<linkreplace "Ask her about your progress" t8n>><span style="color:lightblue;">"You've only just begun your journey. I recommend spending some more time practicing your Worship." <br></span><</linkreplace>>
<</if>>
<<if $player.worship > 99 and $nicolefootworship1 is not true and $timesworshippracticed > 1>>
<br>
[[Check on your progress->nicolefootworship1]]
<</if>>
<<if $player.worship > 299 and $nicoleassworship is not true>>
<br>
[[You're ready for the ass worship test]]
<br>
<</if>>
<<if $player.worship > 149 and $nicolemassagetest is not true and $nicolefootworship1 is true and $timesworship2practiced > 1>>
<<linkreplace "Ask her about your progress" t8n>><span style="color:lightblue;">"The progress you have made is remarkable. I believe it's time for your level 1 examination. Follow me." <br><br><<if $player.energy > 29>>[[Go with her->nicolefootworshiptest]]<<else>><a disabled><strike>Go with her</strike> (no energy)</a><</if>></span><</linkreplace>>
<<elseif $player.worship > 299 and $nicoleassworship is true>>
<<linkreplace "Ask her about your progress" t8n>><span style="color:lightblue;">"If it isn't my favorite rimboy. Your status in the House is currently in review, I will contact you when we make a decision on how to move forward." <br></span><</linkreplace>>
<<elseif $player.worship > 149 and $nicolemassagetest is true and $nicolefootworship1 is true>>
<<linkreplace "Ask her about your progress" t8n>><span style="color:lightblue;">"Your expertise with feet is now acceptable, it's time for you to focus on the next level of training: ass worship. The instructors can help you, or you can try your luck out in the world." <br></span><</linkreplace>>
<</if>>
<</if>>
<</nobr>>
[[Back->House of Worship]]<<nobr>>
<<if $nicolefootworship1 is not true>>
<<if ndef $timesworshippracticed>>
<<set $timesworshippracticed = 1>>
<<else>>
<<set $timesworshippracticed++>>
<</if>>
<<switch random(0,3)>>
<<case 0>>
For one of your practices the instructor has you strip naked and lay on your back. She uses her heel to push on your chest, forcing you all the way down. The sharp point presses into your skin, but you know not to complain.
<br>
<br>
<span style='color:orange;'>"Men should always know their place. You belong on the ground, even lower than our soles. Let that sink in for a while."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/heelspushdown.webp']]
<<case 1>>
A blonde woman puts you in a collar and shows you the proper way of cleaning a woman's shoes. You spend hours licking and kissing per her instructions. She seems to be taking a lot of pleasure in humiliating you.
<br>
<br>
<span style='color:orange;'>"I want every inch of these shining with your spit, got it newbie? We'll be here all night if we have to."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/heelscleaning1.webp']]
<<case 2>>
You spend your time learning and practicing massage techniques. Because of the free footrubs there is an endless supply of volunteers. When they moan in pleasure you feel especially proud of yourself.
<br>
<br>
<span style='color:orange;'>"Ohh Goddess, can I take you home with me?"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footmassage1.webp']]
<<case 3>>
<span style='color:orange;'>"Come on boy, open up. This is only the second pair. I want them clean and sparkling."</span>
<br>
<br>
As you're tied to the floor the instructor makes you tongue her heels. Looks like she brought her entire shoe collection, so you're going to be working for a while. She even blindfolded you so you can't look up her skirt.
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/heelscleaning2.webp']]
<<case 4>>
With hours and hours of practice, and a little enthusiasm, you've become an expert at footrubs. Some of the girls have started asking for you by name, eager to get their free 30 minutes of heaven.
<br>
<br>
<i>I've gotten pretty good at this. Maybe a lifetime of servitude isn't so bad.</i>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footmassage2.webp']]
<</switch>>
<<elseif $nicolemassagetest is true>>
<<if ndef $timesworship3practiced>>
<<set $timesworship3practiced = 1>>
<<else>>
<<set $timesworship3practiced++>>
<</if>>
<<switch random(0,2)>>
<<case 0>>
Today's lesson is about holding your breath. Some women like to sit on their slaves' faces, and they hate having to come off for air. A properly trained ass worshipper can lick for two minutes straight without needing a single gasp of air. The instructor helps you with some practical training, slowly increasing the time between breaths as she sits her full weight down onto your nose and mouth.
<br>
<br>
<span style='color:orange;'>"10 more seconds, don't pass out!"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/ass/assworship1.webp']]
<<case 1>>
You are ordered to spend your practice training your oral stamina. One of the younger clients picks you, happy to get a free rimming. The entire session you are forced to lick her ass non-stop, no matter how sore or tired you get, for hours and hours on end. By the time it's over you can barely close your mouth anymore.
<br>
<br>
<span style='color:orange;'>"Did I say you could slow down? Pick up the pace!"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/ass/assworship2.webp']]
<<case 2>>
One of the senior instructors wants you to rub her soles even with your face buried deep in her ass. According to her no part of a woman's body should be neglected, and a proper worshipper should know how to multitask.
<br>
<br>
<span style='color:orange;'>"Just because you worship ass now doesn't mean you can forget about our feet".</span>
<br>
<br>
"Yes, mistress."
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/ass/assworship3.webp']]
<</switch>>
<<else>>
<<if ndef $timesworship2practiced>>
<<set $timesworship2practiced = 1>>
<<else>>
<<set $timesworship2practiced++>>
<</if>>
<<switch random(6,8)>>
<<case 6>>
The girl you get paired up with is new to the House of Worship, and it's her very first time having her feet worshipped. You try to take advantage and impress her, but she's mostly just amused by your efforts.
<br>
<br>
<span style='color:orange;'>"Ooh! That tickles."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footlicking1.webp']]
<<case 7>>
A young woman in a sports outfit asks for your services today. When she takes off her socks it reveals a pair of incredibly sweaty feet. At least it's still fresh, judging by the lack of a strong smell.
<br>
<br>
<span style='color:orange;'>"I just finished a 10 mile run, so get to it before it dries up! Oh, and could you clean my shoes as well when you're done?"</span>
<br>
<br>
<i>Better get started...</i>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footlicking3.webp']]
<<case 8>>
One of the instructors is teaching you an efficient way of cleaning feet by doing all five toes at once. She put an electric collar on you, and uses it to shock you every time you make a mistake. You make sure to learn pretty fast.
<br>
<br>
<span style='color:orange;'>"Oops, that was a bit of teeth I felt. Sorry love."</span>
<br>
<br>
BZZZZZT
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footlicking4.webp']]
<</switch>>
<</if>>
<br>
<br>
<<if $player.worship < 300 or ($player.worship < 150 and $nicolemassagetest is not true)>>
<i>Your worship skills have increased</i>
<<else>>
<i>You've reached the skill limit for this version</i>
<</if>>
<br>
<br>
<<if $gameTime is 5>>
[[Finish practice->Outside]]
<<else>>
[[Finish practice->House of Worship]]
<</if>>
<<if $player.worship < 300 or ($nicolemassagetest is not true and $player.worship < 150)>>
<<set $player.worship = $player.worship + 20>>
<<if $player.worship > 300>>
<<set $player.worship = 300>>
<</if>>
<<if $player.worship > 49 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship > 149 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<</if>>
<<progressTime>>
<<set $worshippracticed = true>>
<<set $player.energy = $player.energy - 30>>
<</nobr>>You spend some time chilling on the warm, soft grass, restoring some energy. As a bonus you get a nice view of the local girls doing some outdoors yoga, just need to make sure nobody catches you peeking.
<i>If only the guys back home could see this</i>
<<nobr>>
<<switch random(0,1)>>
<<case 0>>
[img[$imgDir + 'outside/park/relax/parkyoga1.webp']]
<<case 1>>
[img[$imgDir + 'outside/park/relax/parkyoga2.webp']]
<</switch>>
<</nobr>>
[[Get up->Park]]
<<nobr>>
<<progressTime>>
<<set $player.energy = $player.energy + 30>>
<<if $player.energy > $player.maxenergy>>
<<set $player.energy = $player.maxenergy>>
<</if>>
<</nobr>><<nobr>>
<<if $charlottelocation is "bathroom">>
<<switch random(0,2)>>
<<case 0>>
Looks like Charlotte just got in the shower. You get a quick glimpse of her perky butt and nipples, hoping she's not going to turn around and notice you. She would probably bash your head against the wall or something.
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/charlotteshower.webp']]
<br>
<br>
[[Leave before you get noticed->Home]]
<<case 1>>
Charlotte is in the bath, furiously attempting to shove her whole hand into her twitching asshole. Judging by the sounds echoing in the room she's enjoying it very much too. It takes all your willpower just to pull your gaze away.
<br>
<br>
<i>This girl is even kinkier than I thought</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/charlottebath.webp']]
<br>
<br>
[[Sneak back out->Home]]
<<case 2>>
You quietly open the door, hoping to get a glimpe of Charlotte changing. Unfortunately she's on the toilet peeing, and noticed the door opening straight away. Before you have time to close it she jumps up and grabs you, dragging you into the room.
<br>
<br>
<span style='color:crimson;'>"Peeping tom huh? Get over here, you want to see my pussy so bad you can clean it for me."</span>
<br>
<br>
She jumps onto the counter and grabs your head, shoving it directly between her legs. Her snatch is so close all you have to do is stick out your tongue, and off you go. It's a good thing she instructs you how and where to lick, otherwise you'd have no idea what to do.
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/charlottebathroomcaught1.webp']]
<br>
<br>
Even after you've lapped every inch she doesn't let you go, keeping you down there until your jaw aches and your tongue feels like it's going to fall off. Somewhere along the line her pussy started leaking like crazy, betraying her enjoyment. This only makes her taste all the sweeter, renewing your enthusiasm.
<br>
<br>
<span style='color:crimson;'>"That's right, keep licking. Keep this up and I won't have to crush your balls later."</span>
<br>
<br>
<i>Charlotte likes your efforts</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/charlottebathroomcaught2.webp']]
<br>
<br>
[[Finish->Home]]
<<progressTime>>
<<if $player.energy > 19>>
<<set $player.energy = $player.energy - 20>>
<<set $charlotterelation = $charlotterelation + 2>>
<</if>>
<</switch>>
<<else>>
[img[$imgDir + 'charlotte/home/bathroom/bathroom.jpeg']]
<br>
<br>
[[Check the mirror]]
<br>
[[Leave->Home]]
<</if>>
<</nobr>><<nobr>>
<<if $player.fitness < 50>>
A young and slightly unkempt face stares back at you, with short hair from your time in the military. You received some basic training but there's still a bit of flab on your stomach. No matter how much the drill sergeant yelled you just never found the motivation to do your best.
<br>
<br>
<i>I wonder what kind of body women like</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/bellylowfitness.jpeg']]
<<elseif $player.fitness < 150>>
A young and slightly unkempt face stares back at you, framed by medium length hair that's started to grow out. After some regular running sessions at the park notice a little less flab, but you can still grab a handful with ease. At least you know it's not all for nothing.
<br>
<br>
<i>Come on, $playername, keep it up!</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/belly10fitness.jpeg']]
<<elseif $player.fitness < 300>>
A young and slightly unkempt face stares back at you, surrounded by some flowing locks. Your regular workouts have started to pay off, and there's a little bit of muscle visible everywhere. You're not going to win any bodybuilding competitions, but it's a start.
<br>
<br>
<i>Some of the girls at the gym must be impressed. Right?</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/belly20fitness.jpeg']]
<<else>>
A young and slightly unkempt face stares back at you, surrounded by some flowing locks. Your time in the gym has really paid off, as you look athletic and fit. Lately you've even noticed that you're getting more looks from women, both at the gym and on the streets.
<br>
<br>
<i>Being in shape is nice. At least it helps me make money.</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/bathroom/belly30fitness.jpeg']]
<</if>>
<</nobr>>
<<back>>[img[$imgDir + 'outside/hospital/hospitalinside.jpeg']]
<<nobr>>
<<if $breedingintrocompleted and $fertilitytreatmentcompleted is not true>>
[[Inquire about fertility treatment]]
<br>
<</if>>
<<if $donationsavailable is not true>>
[[You notice a sign "Sperm donors wanted"]]
<<else>>
<<if $donatedtoday is not true>>
<<if $player.energy > 9>>
[[Donate some semen]]
<<else>>
<a disabled><strike>Donate some semen</strike> (no energy)</a>
<</if>>
<<else>>
<a disabled><strike>Donate some semen</strike> (once a day)</a>
<</if>>
<</if>>
<<if $player.futanariaddiction > 49 and $futanariaddictioncured is not true>>
<<if $player.money > 49>>
<br>
[[Get a shot for your Futanari addiction (50 crowns)]]
<<else>>
<br>
<a disabled><strike>Get a shot for your Futanari addiction (50 crowns)</strike> (no money)</a>
<</if>>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Leave->Outside]] You follow the sign's instructions to a small room on the ground floor. Inside there's a nurse sorting some towels. She turns around when you knock and enter.
<span style='color:pink;'>"Oh, hi sweetie. Are you here to make a donation? That's great! The hospital is in dire need of more semen. Just take a seat over there and get comfortable. You'll even get a small compensation based on your sperm quality."</span>
[img[$imgDir + 'outside/hospital/donation/milkingnurse.jpeg']]
[[Do as she says]]
[[Not right now->Hospital]]<<nobr>>
<<if $player.timesdonated > 2 and $dopavailable is not true>>
<<goto regulardonorevent>>
<<else>>
<<nobr>>
<<if $player.stamina < 150>>
<<switch random(1,3)>>
<<case 1>>
This nurse enjoys showing off her boobs, and you have no intention of stopping her. Your cock strains in your pants as she reveals and plays with her very nice pair in front of you.
<br>
<br>
<span style='color:pink;'>"I love the way men stare at them, it makes me feel so powerful."</span>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationboobs2.webp']]
<br>
<br>
While you gaze at her chest she expertly milks you, squeezing out almost a dozen shots.
<br>
<br>
<span style='color:pink;'>"Good boy. Maybe next time I'll let you touch one."</span>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationcum2.webp']]
<<case 2>>
You suggest that you're able to do this by yourself, but the nurse insists on assisting you, quoting something about increased volume from female stimulation. The massive load she soon jerks out of your cock only proves her point.
<br>
<br>
<span style='color:pink;'>"See, that wasn't so bad was it?"</span>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationhandjob1.webp']]
<<case 3>>
Today's nurse is a bit overenthusiastic, grabbing your dick with both hands and rapidly rubbing up and down. You try to warn her, but it's already too late as you orgasm in seconds, your cum shooting out all over the place.
<br>
<br>
<span style='color:pink;'>"Oops! I guess I'll have to scoop that up, they'll kill me if I waste it."</span>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationhandjob2.webp']]
<</switch>>
<br>
<br>
<<if $player.stamina < 150>>
<i>Your sexual endurance has improved slightly!</i>
<<set $player.stamina = $player.stamina + 10>>
<br>
<br>
<</if>>
<<else>>
<<switch random(0,2)>>
<<case 0>>
The nurse assigned to you today is very enthusiastic. She sucks you off expertly, working your shaft and nibbling on your balls as a treat. It feels way too good compared to a handjob, and you feel your orgasm rapidly approaching.
<br>
<br>
<span style='color:pink;'>"Guuuh! I fucking love this job!"</span>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationblowjob1.webp']]
<br>
<br>
You do your best to warn her, but the first few shots land straight in her mouth. She even seems to like it judging by the subtle moans coming from her as the salty liquid lands on her tongue.
<br>
<br>
<span style='color:pink;'>"Oops, I swallowed some. Don't tell anyone."</span>
<br>
<br>
<i>And give up this sweet deal? No chance</i>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationblowjob1cum.webp']]
<<case 1>>
There must be something in the water here, because all the hospital's nurses have some amazing boobs. The woman on duty today has an especially spectacular pair. When she catches you staring she gives you a naughty smile.
<br>
<br>
<span style='color:pink;'>"Oh? You like them, do you?"</span>
<br>
<br>
Lucky for you she takes it as a compliment. Even luckier is when she rubs her tits against your rock-hard cock, squeezes it between her soft globes and uses them to milk your donation out of you.
<br>
<br>
<span style='color:pink;'>"Just cover them in spunk whenever you're ready hun. And make it a big one!"</span>
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationtitjob.webp']]
<<case 2>>
Today the department is a bit short-staffed. After a 15 minute wait a nurse enters the room and apologizes, explaining that it's her first day. She's a bit shy, so you are very surprised when she takes your swollen head in her mouth and gently starts sucking. Her doe eyes looking up at you almost make you cum on the spot.
<br>
<br>
<span style='color:pink;'>"The other nurses told me I should use my mouth to make it go faster. Is it like this?"</span>
<br>
<br>
Despite her inexperience she gently sucks a huge load out of you and spits it out into a plastic cup. She seems rather pleased with herself afterwards.
<br>
<br>
[img[$imgDir + 'outside/hospital/donation/donationblowjob2.webp']]
<</switch>>
<br>
<br>
<<if $player.stamina < 250>>
<i>Your sexual endurance has improved slightly!</i>
<<set $player.stamina = $player.stamina + 10>>
<br>
<br>
<</if>>
<</if>>
<<if $fertilitytreatmentcompleted is true>>
<i>You got 15 crowns for your donation</i>
<<else>>
<i>You got 10 crowns for your donation</i>
<</if>>
<</nobr>>
<br>
<br>
[[Leave->Outside]]
<<nobr>>
<<progressTime>>
<<set $donatedtoday = true>>
<<set $player.timesdonated++>>
<<set $player.energy = $player.energy - 10>>
<<if $fertilitytreatmentcompleted is true>>
<<set $player.money = $player.money + 15>>
<<else>>
<<set $player.money = $player.money + 10>>
<</if>>
<<if $player.stamina is 50 and $staminalevel1popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 1! <</notify>>
<<set $staminalevel1popup = true>>
<</if>>
<<if $player.stamina is 150 and $staminalevel2popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 2! <</notify>>
<<set $staminalevel2popup = true>>
<</if>>
<<if $player.stamina is 300 and $staminalevel3popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 3! <</notify>>
<<set $staminalevel3popup = true>>
<</if>>
<</nobr>>
<</if>>
<</nobr>>
<<nobr>>
<<if $player.stamina < 50>>
After helping you pull down your pants she smiles at you and grabs a couple of latex gloves from a nearby dispenser.
<br>
<br>
"What are those for?"
<br>
<br>
<span style='color:pink;'>"For extracting the semen of course. Trust me, this way is much more efficient."</span>
<br>
<br>
The nurse puts on the gloves and pulls down your pants. Using her skilled hands it only takes her a few seconds to get you hard, and a few seconds more for you to blow your load. It's a little embarrassing, but she doesn't seem to mind.
<br>
<br>
<i>This is way better compared to when I do it!</i>
<<else>>
The nurse puts on some gloves and pulls down your pants. Using her skilled hands it only takes her a few seconds to get you hard. You've gotten somewhat used to handjobs, so you can enjoy her stroking for a while before blowing your load.
<</if>>
<</nobr>>
<span style='color:pink;'>"Thank you so much, honey. Be sure to come back again!"</span>
<<nobr>>
<<if $player.stamina < 50>>
<i>Your sexual endurance has improved slightly!</i>
<<set $player.stamina = $player.stamina + 10>>
<</if>>
<</nobr>>
[img[$imgDir + 'outside/hospital/donation/donationcum1.webp']]
<i>You got 10 crowns for your donation</i>
[[Pull up your pants and go->Outside]]
<<nobr>>
<<set $donationsavailable = true>>
<<set $donatedtoday = true>>
<<set $player.timesdonated = 1>>
<<progressTime>>
<<set $player.money = $player.money + 10>>
<</nobr>>[img[$imgDir + 'outside/hospital/hospital.webp']]
You find the local hospital. While you're not sick or injured, it's good to know where to go if you are.
[[Head on in->Hospital]]
<<nobr>>
<<set $hospitaldiscovered = true>>
<<set $player.energy = $player.energy - 10>>
<</nobr>><span style='color:lightblue;'>"Excellent. You may address me as Mistress Nicole. I am a senior instructor here, and will be tracking your progress should you choose to join us. If you would please follow me."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolestanding.jpeg']]
Nicole takes you through a maze of stairs and hallways, each more grand than the last. While walking she explains some of the inner workings of the House, and what is expected of the men who pledge themselves to it.
<span style='color:lightblue;'>"The men here go through different levels of training. Since you are new you will start at the first level, and with effort and good behavior work your way up."</span>
[[The first level]]You arrive somewhere on the first floor, and she instructs you to enter one of the rooms. Inside you find a man on his knees, kissing a woman's bare foot. Several others are waiting for their turn. Looks like he might be here a while.
[img[$imgDir + 'outside/houseofworship/tour/footworshiptour.webp']]
<span style='color:lightblue;'>"He who climbs the ladder must start at the bottom. At first you will learn your place at our feet, using your hands and mouth to please, clean, and show your adoration. Her wishes always come before yours."</span>
[[The second level]]Moving on to the second level, Nicole tells you it's only accessible for those to have mastered their foot worship. She shows you someone tied to a bed as an instructor rubs her bubbly cheeks on his face.
<span style='color:orange;'>"Stick out that tongue, slave! We have another 15 minutes to go."</span>
[img[$imgDir + 'outside/houseofworship/tour/facesittingtour.webp']]
<span style='color:lightblue;'>"A woman's ass is one of her most attractive and sensitive features. Here you will learn the best tongue techniques for her enjoyment, and practice your oral stamina so you may pleasure her for however many hours she desires."</span>
[[The third level]]The third floor of the building is filled with the echoes of womanly moans. Nicole lets you peek inside one of the open doors, where a girl is currently cumming her brains out with a man's face between her legs.
<span style="color:orange;">"Yes, YES! Right there! Don't you dare stop!"</span>
[img[$imgDir + 'outside/houseofworship/tour/pussylickingtour.webp']]
<span style='color:lightblue;'> "Only the most gifted and obedient acolytes are allowed to attempt level 3, worshipping a woman's intimate place. A true master can make their partner orgasm over and over until she begs for mercy."</span>
<i>Seems like a handy skill to have</i>
[[Finish tour]]The two of you make your way back to her desk. While walking you desperately try to hide your erection, but her raised eyebrow and slight smirk tell you she already noticed.
<span style='color:lightblue;'> "Well, that concludes our tour. We also offer further specializations and courses, but you can learn more about that later. If you wish to join us I will be expecting you back here tomorrow for your initiation."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolestanding2.jpeg']]
<i>This is a lot to think about</i>
[[Thank her and go->Outside]]
<<set $worshipintrocompleted = true>>
<<progressTime>>An ancient-looking castle stands out like a sore thumb. Written in large letters on the front is <span style='color:#bc4749;'>"HOUSE OF PAIN"</span>. That doesn't bode well. You think can even hear someone screaming their lungs out inside.
[img[$imgDir + 'outside/houseofpain/houseofpain.jpeg']]
[[Snoop around->House of Pain]]
<<set $houseofpaindiscovered = true>>
<<set $player.energy = $player.energy - 10>>You stumble upon a large quarry just outside the city limits, filled with the sound of grunting and pickaxes hitting rock.
[img[$imgDir + 'outside/quarry/quarry.jpeg']]
[[Continue->Quarry]]
<<nobr>>
<<set $quarrydiscovered = true>>
<<set $player.energy = $player.energy - 10>>
<</nobr>>
[img[$imgDir + 'outside/quarry/quarry.jpeg']]
The local quarry is mostly a labor camp for male criminals and unwanted slaves, who spend the rest of their short lives doing back-breaking work. Due to workforce shortages they also allow outsiders to mine here for a meager pay.
<<nobr>>
<<if $player.energy > 59>>
[[Work a shift]]
<<else>>
<a disabled><strike>Work a shift</strike> (not enough energy)</a>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Leave->Outside]]You spend several hours working under the watchful eye of the overseers, breaking rocks and looking for gems. To prevent theft you are required to work naked, but at least you get to keep most of your dignity.
<span style='color:#e5989b;'>"Let's go maggots, I want to see some sweat on those backs."</span>
<<nobr>>
<<switch random(0,1)>>
<<case 0>>
[img[$imgDir + 'outside/quarry/quarrywork1.webp']]
<<case 1>>
[img[$imgDir + 'outside/quarry/quarrywork2.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.fitness < 50>>
<<set $player.money = $player.money + 10>>
<i>You got 10 crowns for your efforts</i>
<<elseif $player.fitness < 150>>
<<set $player.money = $player.money + 12>>
<i>You got 12 crowns for your efforts</i>
<<else>>
<<set $player.money = $player.money + 15>>
<i>You got 15 crowns for your efforts</i>
<</if>>
<</nobr>>
[[Finish shift->Quarry]]
<<nobr>>
<<set $player.energy = $player.energy - 60>>
<<progressTime>>
<<if $player.fitness < 150>>
<<set $player.fitness = $player.fitness + 5>>
<<if $player.fitness > 150>>
<<set $player.fitness = 150>>
<</if>>
<</if>>
<<if $player.fitness is 50 and $fitnesslevel1popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 1!<</notify>>
<<set $player.maxenergy = 120>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 120<</notify>>
<</timed>>
<<set $fitnesslevel1popup = true>>
<</if>>
<<if $player.fitness is 150 and $fitnesslevel2popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 2!<</notify>>
<<set $player.maxenergy = 150>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 150<</notify>>
<</timed>>
<<timed 12s>>
<<notify 5s>>You've reached the max Fitness for this version<</notify>>
<</timed>>
<<set $fitnesslevel2popup = true>>
<</if>>
<</nobr>>The woman calls over one of her associates, who takes you into one of the rooms. She makes you strip and then ties you up, before grabbing a nearby whip and slinging it around a few times to intimidate you.
<span style='color:#bc4749;'>"Let's see if you can handle a little pain, shall we?"</span>
You gasp as the first hit lands, with the second and third following soon after. She's clearly taking it easy on you, but it still stings like a bitch. Her whip moves just a little bit each time, looking for your most sensitive spots.
[img[$imgDir + 'outside/houseofpain/painpig/painpigintro.webp']]
<span style='color:#bc4749;'>"Not bad. Firm butt, nice little squeals. The girls here are going to love you."</span>
After a couple more hits you are untied and grab your clothes. The dominatrix strokes slowly strokes your chest and tells you that you're welcome back any time you want to earn a few crowns, before escorting you to the entrance.
<<nobr>>
<<if $player.paintolerance < 150>>
<i>Your pain tolerance has improved!</i>
<</if>>
<</nobr>>
[[Your intro session is over->House of Pain]]
<<nobr>>
<<if $player.paintolerance < 150>>
<<updatePainTolerance 10>>
<</if>>
<<set $painpigunlocked = true>>
<<progressTime>>
<</nobr>>[img[$imgDir + 'outside/gym/gym.jpeg']]
The gym is filled with sweaty women working out, too busy with their own thing to notice you.
<<nobr>>
<<if $gymintrocompleted is not true>>
<<if $player.money > 49>>
<<if $player.fitness > 49>>
[[Sign up (50 crowns)]]
<<else>>
<a disabled><strike>Sign up (50 crowns)</strike> (level 1 fitness required)</a>
<</if>>
<<else>>
<a disabled><strike>Sign up (50 crowns)</strike></a>
<</if>>
<<else>>
<<if $workedout is not true>>
<<if $player.energy > 29>>
[[Workout]]
<<else>>
<a disabled><strike>Workout</strike> (no energy)</a>
<</if>>
<<else>>
<a disabled><strike>Workout</strike></a>
<</if>>
<br>
<<if $breedinglicenseobtained and $sarahlicensetalk is not true>>
[[Find Sarah (!)->Find Sarah]]
<<else>>
[[Find Sarah]]
<</if>>
<<if $parkworshipunlocked is true>>
<br>
<<if $player.energy > 29>>
[[Worship feet for cash->gymworship]]
<<else>>
<a disabled><strike>Worship feet for cash</strike></a>
<</if>>
<</if>>
<<if $nicolemassagetest is true>>
<br>
<<if $player.energy > 29>>
[[Worship ass for cash]]
<<else>>
<a disabled><strike>Worship ass for cash</strike> (no energy)</a>
<</if>>
<</if>>
<</if>>
<<if $player.fitness > 149 and $player.stamina > 149>>
<br>
<br>
<<if $gymwrestlingavailable is true>>
<<if $wrestled is not true and $player.energy > 49>>
[[Sign up for a wrestling match]]
<<else>>
<a disabled><strike>Sign up for a wrestling match</strike></a>
<</if>>
<<else>>
[[You notice a poster]]
<</if>>
<</if>>
<</nobr>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<<if $gameTime is 0 and $sarahanaleventavailable is true>>
<<goto sarahanalevent>>
<</if>>
[[Leave->Outside]]You take a quick look around and approach a staff member in the middle of a boxing workout. The sweat is dripping from her toned body, but she doesn't seem to be out of breath at all.
<span style='color:lightgreen;'>"What's up male, here to work out? Entrance fee is 50 crowns."</span>
"But the sign over there says 20?"
<span style='color:lightgreen;'>"That's for women. Men pay extra. And don't think you're going to get a better deal somewhere, we're the only gym in town that accepts guys."</span>
[img[$imgDir + 'outside/gym/sarah/sarah1.jpeg']]
[[Pay up]]
[[Not right now->Gym]]<<nobr>>
<<if $player.fitness < 100>>
<<if $player.fitness > 70 and $sarahboxingworkout1 is not true>>
<<goto sarahboxingworkout1>>
<<else>>
<<switch random(0,2)>>
<<case 0>>
You decide to try some boxing in case Sarah tries to hit you again. The woman next to you seems to know what she's doing, so you ask her for some advice. She's kind enough to give you some pointers and get you started.
<br>
<br>
<span style='color:lightgreen;'>"The trick is to relax. If you tense up you're only going to tire yourself out."</span>
<br>
<br>
Relaxed or not, a couple of 3-minute rounds later and you're an exhausted mess on the floor. She made it look so easy.
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom1.webp']]
<<case 1>>
As you're warming you notice a couple next to you encouraging each other during their sit-ups. You sure wish you had someone to motivate you like that. You would have been ripped by now.
<br>
<br>
<span style='color:lightgreen;'>"15 more to go babe, don't give up!"</span>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom2.webp']]
<<case 2>>
The plan is to hit the weights today, but the rack is occupied. The woman tells you she only has one set left so you wait for her to finish. You can't help but admire her beautiful squat form.
<br>
<br>
<span style='color:lightgreen;'>"All yours. Want me to take off the weights or are you warming up with this?"</span>
<br>
<br>
"Uhh, let's just take them off..."
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom3.webp']]
<</switch>>
<</if>>
<</if>>
<<if $player.fitness > 99 >>
<<if $player.fitness > 110 and $gymevent1 is not true>>
<<goto gymevent1>>
<<elseif $player.fitness > 130 and $gymevent2 is not true>>
<<goto gymevent2>>
<<elseif $player.fitness < 150>>
<<switch random(0,4)>>
<<case 0>>
One of the girls catches you staring at her as she's getting ready for her set. Good thing she seems to take it as a compliment, because she gives you a beautiful smile and even a little wiggle. Bullet dodged.
<br>
<br>
<i>Look away you dumb brain, we're not some perv!</i>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom4.webp']]
<<case 1>>
You do your best not to get hypnotized by the woman doing jump rope in front of you. The way she bounces up and down seems to defy the laws of physics. Hopefully she can't see you gawking in the mirror.
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom5.webp']]
<<case 2>>
You have a general problem with staring at women in the gym, but the sight in front of you is just ridiculous. How can any man be expected not to look at that, she's barely even wearing clothes at this point!
<br>
<br>
<i>Must. Not. Spank it.</i>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom6.webp']]
<<case 3>>
The lady next to you is very vocal during her sets, and the noises she makes are rather... sexual. You try your hardest to ignore her, but the growing bulge in your pants is unmistakable. Maybe you should move to a different part of the gym.
<br>
<br>
<span style='color:lightgreen;'>"Aaargh! Nnngh! Aaaah, fuck!"</span>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom7.webp']]
<<case 4>>
In the middle of your workout you glance over to a nearby woman and do a double take. She's not wearing a bra and you can clearly see her nipple hanging out of her sweater. She's probably looking for it in her gym bag.
<br>
<br>
<span style='color:lightgreen;'>"Where is the damn thing? Oh screw it I'll just go without."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom8.webp']]
<</switch>>
<<else>>
<<set _end = 3>>
<<if $gymwrestlingavailable is true>>
<<set _end = 4>>
<</if>>
<<switch random(0,_end)>>
<<case 0>>
While doing some ab work you can't help but notice the woman next to seems has foregone her bra today, and her sizeable jugs are nearly spilling out of her top. You couldn't say what her face looked like even if you wanted to.
<br>
<br>
<i>She has to be doing this on purpose</i>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom9.webp']]
<<case 1>>
During some stretches you accidentally make eye contact with a woman across the gym, who smiles and wiggles her butt as a greeting. Almost immediately you feel a big tent forming down below, and you walk off to the locker rooms embarrassed while you can hear her giggling in the background.
<br>
<br>
<span style='color:lightgreen;'>"Aww, did someone have a little accident in their pants?"</span>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom10.webp']]
<<case 2>>
The girl who flashed you her ass the other day is back, and she's still up to her usual shenanigans. This time she lifts up her shirt during some situps, giving you an unobstructed view of her tits. You try to ignore her, but your brain just won't let you look away. She's loving every second of it.
<br>
<br>
<span style='color:lightgreen;'>"Did you jerk off to me yet? I bet you did."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom11.webp']]
<<case 3>>
Some woman is doing dumbbell presses in front of the mirror when her friend decides to pull a prank. She sneaks up on her and pulls down her yoga pants, exposing her bubbly ass cheeks to the world. Even the camera was set up beforehand, and you're sure it won't be long until that clip is circulating on the internet.
<br>
<br>
<span style='color:lightgreen;'>"You bitch! I'll get you back for this!"</span>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom12.webp']]
<<case 4>>
A pair of girls are trying out their wrestling techniques, and you pay close attention hoping to pick up a few tricks. Unfortunately the clothes stay on during practice sessions, but you can't have everything in life.
<br>
<br>
<i>Ohhh, so that's how you do it</i>
<br>
<br>
[img[$imgDir + 'outside/gym/random/gymrandom13.webp']]
<</switch>>
<</if>>
<</if>>
<br>
<br>
<<if $player.fitness < 300>>
<i>Your fitness has improved</i>
<<else>>
<i>You've reached max fitness for this version</i>
<</if>>
<</nobr>>
[[Finish training->Gym]]
<<nobr>>
<<progressTime>>
<<set $workedout = true>>
<<set $player.energy = $player.energy - 30>>
<<updateFitness 10>>
<<if $player.fitness > 49 and $fitnesslevel1popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 1!<</notify>>
<<set $player.maxenergy = 120>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 120<</notify>>
<</timed>>
<<set $fitnesslevel1popup = true>>
<</if>>
<<if $player.fitness > 149 and $fitnesslevel2popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 2!<</notify>>
<<set $player.maxenergy = 150>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 150<</notify>>
<</timed>>
<<set $fitnesslevel2popup = true>>
<</if>>
<</nobr>><<nobr>>
<<if $player.fitness < 150>>
<span style='color:lightgreen;'>"Here to train, male? You look like you could use it."</span>
<<else>>
<span style='color:lightgreen;'>"Hey $playername. Up for a couple of rounds on the bag?</span>
<</if>>
<</nobr>>
[img[$imgDir + 'outside/gym/sarah/sarah3.jpeg']]
<<nobr>>
<<if $player.fitness < 100>>
<<linkreplace "Get her to rate your body" t8n><br>><span style="color:lightgreen;">"You still look wimpy to me. Come back after you've hit the weights some more."<br></span><</linkreplace>>
<<elseif $player.fitness < 150>>
<<if $workedout is not true>>
<<if $player.energy > 29>>
[[Do some boxing training]]
<<else>>
<a disabled><strike>Do some boxing training</strike> (no energy)</a>
<</if>>
<<else>>
<a disabled><strike>Do some boxing training</strike></a>
<</if>>
<br>
<<linkreplace "Get her to rate your body" t8n>><br><span style="color:lightgreen;">"Making some progress there, but you still have a ways to go."<br></span><</linkreplace>>
<<elseif $player.fitness < 249>>
<<if $workedout is not true>>
<<if $player.energy > 29>>
[[Do some boxing training]]
<<else>>
<a disabled><strike>Do some boxing training</strike> (no energy)</a>
<</if>>
<<else>>
<a disabled><strike>Do some boxing training</strike></a>
<</if>>
<br>
<<linkreplace "Get her to rate your body" t8n>><br><span style="color:lightgreen;">"You look decent. Still nowhere near my level though."<br></span><</linkreplace>>
<<else>>
<<if $workedout is not true>>
<<if $player.energy > 29>>
[[Do some boxing training]]
<<else>>
<a disabled><strike>Do some boxing training</strike> (no energy)</a>
<</if>>
<<else>>
<a disabled><strike>Do some boxing training</strike></a>
<</if>>
<br>
<<linkreplace "Get her to rate your body" t8n>><br><span style="color:lightgreen;">"Looking good babe. You tried the wrestling yet? It's great for your back."<br></span><</linkreplace>>
<</if>>
<<if $breedinglicenseobtained and $sarahlicensetalk is not true>>
<br>
<br>
[[Show her your breeding license]]
<br>
<</if>>
<</nobr>>
[[Back->Gym]]<<nobr>>
<<set _end = 1>>
<<if def $player.futanaridickssucked and $player.futanaridickssucked > 4>>
<<set _end = 2>>
<</if>>
<<switch random(0,_end)>>
<<case 0>>
One of the gym's MILFs just finished her yoga class and she notices you waiting. She calls you over and points to her shoes. After a quick negotiation you agree to worship her, so you get down on your knees as she takes them off.
<br>
<br>
<span style="color:#BEF0CB;">"Now I don't want you to rush this, darling. What I want is for you to put your tongue slowly in between each and every one of my toes. Really get in there and tell me how good they taste."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymfeet1.webp']]
<br>
<br>
<<if $player.worship < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.worship < 150>>
<<set _earnings = random(12,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping feet</i>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 10>>
<</if>>
<<if $player.worship is 50 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship is 150 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<<case 1>>
A woman who just finished her workout pays you for a session, but you soon regret accepting. She's really mean, constantly insulting you and making you smell her sweaty socks before you even get started.
<br>
<br>
<span style="color:#BEF0CB;">"I didn't know our gym had its own little worshipper boy. You're going to be licking a lot of feet from now on, bitch."</span>
<br>
<br>
True to her word she makes you lick and suck on her feet while she absent-mindedly finishes her snack. After you're done she puts the same smelly socks back on, instantly ruining any cleaning progress you've made.
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymfeet2.webp']]
<br>
<br>
<<if $player.worship < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.worship < 150>>
<<set _earnings = random(12,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping feet</i>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 10>>
<</if>>
<<if $player.worship is 50 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship is 150 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<<case 2>>
You're on your knees waiting for customers when a tall and fit woman approaches you. It's clear from the large bulge in her shorts that this is one of the Futanari. Apparently some of them go to this gym as well.
<br>
<br>
<span style="color:#BEF0CB;">"Wait a second, I know you! You're that new bathroom bitch my friends have been talking about."</span>
<br>
<br>
She moves closer to you, and you notice an irrestible smell coming from her nether regions. Before you realize it your nose is pressed against her growing bulge, and a strange haze comes over you.
<br>
<br>
<span style="color:#BEF0CB;">"I don't need my feet cleaned, but there is something else you can help me with."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymfuta.webp']]
<br>
<br>
The next thing you know you're staring at her stomach as she pumps her large cock in and out of your mouth. You frown, as you don't even remember agreeing to her proposition or anything else in the last few minutes.
<br>
<br>
<span style="color:#BEF0CB;">"Look at you, all confused. Didn't anyone tell you our cum was addictive? Ah well, it's too late now."</span>
<br>
<br>
With a final push her cock starts pulsing, releasing large gobs of semen straight into your mouth. The second her seed hits your tongue the dopamine receptors in your brain start firing, and a wave of pleasure courses through your body. The fog in your head starts clearing up, but the question is for how long.
<br>
<br>
<i>This is not good.
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymfutablowjob.webp']]
<br>
<br>
<<if $player.futanari < 50>>
<<set _earnings = random(8,12)>>
<<else>>
<<set _earnings = random(12,15)>>
<</if>>
<<if def $player.shirt and $player.shirt is "futa">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns sucking Futanari dick</i>
<<set $player.futanaridickssucked++>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 5>>
<</if>>
<</switch>>
<br>
<br>
<<if $gameTime is 5>>
[[Finish->Outside]]
<<else>>
[[Finish->Gym]]
<</if>>
<</nobr>>
<<nobr>>
<<progressTime>>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 10>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<<if $player.worship is 50 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship is 150 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<</nobr>><span style='color:lightgreen;'>"Cool, I'm Sarah. I own the place. Let me show you around."</span>
She takes you on a short tour, going through all the areas like locker rooms, weights, cardio machines, and stretching zone. You eventually end up back at the boxing bags where you started.
<span style='color:lightgreen;'>"Think fast!"</span>
[img[$imgDir + 'outside/gym/sarah/sarah2.jpeg']]
Before you have time to react Sarah tags you in the face, knocking you straight on your ass.
"Ouch! What the hell was that for?"
<span style='color:lightgreen;'>"Huh. I thought you would dodge that. You're a bit of a wimp, aren't you? Well, we'll get you in shape somehow."</span>
[[Time to train->Gym]]
<<nobr>>
<<set $player.money = $player.money - 50>>
<<set $gymintrocompleted = true>>
<</nobr>>You're just about to start your workout when Sarah calls you over for some one-on-one training. You agree partly because you'd like some personal training with her, and partly because you doubt she would take no for an answer.
<span style='color:lightgreen;'>"Now that you've got some exercise under your belt it's time to see what you're made of."</span>
[img[$imgDir + 'outside/gym/sarah/sarahboxing1.webp']]
The two of you take turns hitting the bad while the other holds it. At least this time she's not punching you. Doing your best to keep up with her an hour practically flies by. That was probably the best workout of your life.
<i>Even covered in sweat this woman looks gorgeous</i>
[img[$imgDir + 'outside/gym/sarah/sarahboxing2.webp']]
<span style='color:lightgreen;'>"Not too bad for a man. Come talk to me if you want to do some more training."</span>
[[Go get changed->Gym]]
<<nobr>>
<<set $sarahboxingworkout1 = true>>
<<set $player.fitness = $player.fitness + 10>>
<</nobr>>You train on the bags some more with Sarah, you're starting to get the hang of this. When you ask if you need to pay extra for the training she just blows it off, saying she takes good care of her members.
[img[$imgDir + 'outside/gym/sarah/sarahboxing2.webp']]
Afterwards she asks you to massage her sore shoulders, and you don't see the harm in it. She even lowers her straps to give you easier access. You might be reading into things, but perhaps she's giving you some subtle hints.
<span style='color:lightgreen;'>"Ohhh that's good. You can go a little lower if you want."</span>
[img[$imgDir + 'outside/gym/sarah/sarahboxing3.webp']]
<<nobr>>
<<if $player.fitness < 150>>
<i>Your fitness has improved</i>
<</if>>
<</nobr>>
[[Finish training->Gym]]
<<nobr>>
<<progressTime>>
<<set $workedout = true>>
<<set $player.energy = $player.energy - 30>>
<<if $player.fitness < 150>>
<<set $player.fitness = $player.fitness + 10>>
<<if $player.fitness > 150>>
<<set $player.fitness = 150>>
<</if>>
<</if>>
<<if $player.fitness > 130 and $gymevent2 is not true>>
<<goto gymevent2>>
<</if>>
<<if $player.fitness is 150 and $fitnesslevel2popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 2!<</notify>>
<<set $player.maxenergy = 150>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 150<</notify>>
<</timed>>
<<timed 12s>>
<<notify 5s>>You've reached the max Fitness for this version<</notify>>
<</timed>>
<<set $fitnesslevel2popup = true>>
<</if>>
<</nobr>>As you're doing situps on the floor today a woman comes up and starts doing some dumbbell exercises right in front of you. Her ass is so close you can almost smell it. Just when you're about to say something she looks back.
<span style='color:lightgreen;'>"See something you like, handsome? Here, I'll give you an even better view."</span>
Your eyes go wide as the girl pulls down her shorts, revealing her pussy lips and asshole. She giggles and goes back to her exercise, while you sit there staring like an idiot. You heard about people who like to go naked in public, but you figured that was just a myth...
<span style='color:lightgreen;'>"I love it when boys get all flustered, it's so cute."</span>
[img[$imgDir + 'outside/gym/random/gymflashing.webp']]
<span style='color:lightgreen;'>"Save a mental image for your spank bank!"</span>
<i>Your fitness has improved</i>
[[Continue your workout->Gym]]
<<nobr>>
<<set $gymevent1 = true>>
<</nobr>>Sarah takes you apart for another workout today, and by some miracle you mostly manage to keep up. She even seems mildly impressed. After you're done the two of you go through a couple of stretches together.
<span style='color:lightgreen;'>"You've been coming here a lot lately huh, $playername? Training for anything in particular?"</span>
[img[$imgDir + 'outside/gym/sarah/sarahstretching1.webp']]
[[Just keeping in shape]]
<<nobr>>
<<if $breedingintrocompleted is true>>
[[Tell her about the breeding license]]
<</if>>
<</nobr>><span style='color:lightgreen;'>"I appreciate men who take care of their body. There aren't many of those around. Keep it up."</span>
<i>Is she into me?</i>
[img[$imgDir + 'outside/gym/sarah/sarahstretching2.webp']]
<i>Your fitness has improved</i>
[[Leave->Gym]]
<<nobr>>
<<set $gymevent2 = true>>
<<if $player.fitness is 150 and $fitnesslevel2popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 2!<</notify>>
<<set $player.maxenergy = 150>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 150<</notify>>
<</timed>>
<<timed 12s>>
<<notify 5s>>You've reached the max Fitness for this version<</notify>>
<</timed>>
<<set $fitnesslevel2popup = true>>
<</if>>
<</nobr>><span style='color:lightgreen;'>"Really? Interesting... I don't know any men who managed to get it. If you do be sure to come here and show me. I already have an idea on how to celebrate."</span>
<i>Just one more reason to get that license</i>
[img[$imgDir + 'outside/gym/sarah/sarahstretching2.webp']]
<i>Your fitness has improved</i>
[[Leave->Gym]]
<<nobr>>
<<if $player.fitness is 150 and $fitnesslevel2popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 2!<</notify>>
<<set $player.maxenergy = 150>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 150<</notify>>
<</timed>>
<<timed 12s>>
<<notify 5s>>You've reached the max Fitness for this version<</notify>>
<</timed>>
<<set $fitnesslevel2popup = true>>
<</if>>
<<set $gymevent2 = true>>
<<set $sarahbreedinglicense = true>>
<</nobr>>You find the local gym. The sign says "males welcome", that's encouraging at least.
[img[$imgDir + 'outside/gym/gym.jpeg']]
[[Continue->Gym]]
<<nobr>>
<<set $gymdiscovered = true>>
<<set $player.energy = $player.energy - 10>>
<</nobr>>You head to the fertility department for your donation to sign in like you always do. As the attending nurse is filling in the form you hear a ding coming from her laptop, and she squints to read the popup.
<span style='color:pink;'>"Oh, a regular donor huh? It says here you might qualify for the state breeding program. Would you be interested?"</span>
[img[$imgDir + 'outside/hospital/donation/nurselaptop.jpeg']]
"What's that?"
<span style='color:pink;'>"With the population in decline the government sometimes sponsors exceptionally fertile men, giving them the right to procreate. Although I hear the entrance requirements are quite strict. If you head to the DOP, they can tell you more."</span>
<i>The Department of Procreation is now available on the map!</i>
[[Give it some thought->Hospital]]
<<nobr>>
<<set $dopavailable = true>>
<</nobr>>[img[$imgDir + 'outside/dop/dop.jpeg']]
One of the oldest instutions in the country, the DoP's mission is to ensure a healthy population growth. A challenging task in a world where men and women largely live seperate from each other.
<<nobr>>
<<if $breedingintrocompleted is not true>>
[[Go inside]]
<<else>>
[[Look for Lucie]]
<</if>>
<<if $breedinglicenseobtained is true>>
<br>
[[Check available jobs]]
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Head out->Outside]]As you enter you are quickly stopped by a woman in a red dress.
<span style='color:pink;'>"Hi sweetie, can I help you with something?"</span>
[img[$imgDir + 'outside/dop/lucie/lucie2.png']]
<i>Wow, look at the curves on her</i>
[[I'm here about the breeding program]]
[[Never mind->Department of Procreation]] <<nobr>>
<<if $breedingtestcompleted is true>>
<<if $breedingtestcompleteddays > 6>>
<<if $breedinglicenseobtained is true>>
<span style='color:pink;'>"What can I do for you, sweetie?"</span>
<br>
<br>
[img[$imgDir + 'outside/dop/lucie/lucie1.jpeg']]
<br>
<br>
[[Nothing right now->Department of Procreation]]
<<else>>
<span style='color:pink;'>"Congrats hun, We got news that Anastasia is expecting. You did it!"</span>
<br>
<br>
"I knew it, there's no way she could not be pregnant after all that."
<br>
<br>
[img[$imgDir + 'outside/dop/lucie/lucie1.jpeg']]
<br>
<br>
<span style='color:pink;'>"Here's your license, I had it printed this morning. Don't lose it."</span>
<br>
<br>
"So how does this work?"
<br>
<br>
<span style='color:pink;'>"Well, the message board at the entrance will have jobs for you from time to time. Or you could try your luck out and about, if you can convince any girls that is. You won't have any responsibilities towards children you father.</span>
<br>
<br>
<span style='color:pink;'>"If you decide to take a job let the lady at the front desk know, and we will have a driver take you there and back."</span>
<br>
<br>
<i>That's what I like to hear</i>
<br>
<br>
[[Take it and go->Department of Procreation]]
<<set $breedinglicenseobtained = true>>
<</if>>
<<else>>
<span style='color:pink;'>"Hi hun, how did it go?"</span>
<br>
<br>
"it was a success. At least I think it was."
<br>
<br>
<<if $breedingtestcompleteddays < 2>>
<span style='color:pink;'>"Fantastic! Now we'll just have to wait until we can test for successful insemination. Check back in a week or two, ok?"</span>
<<elseif $breedingtestcompleteddays < 6>>
<<set _daysleft = 7 - $breedingtestcompleteddays>>
<span style='color:pink;'>"Fantastic! Now we'll just have to wait until we can test for successful insemination. Check back about in about _daysleft days, ok?"</span>
<<else>>
<span style='color:pink;'>"Fantastic! Now we'll just have to wait until we can test for successful insemination. They should be in soon, come back tomorrow."</span>
<</if>>
<br>
<br>
[img[$imgDir + 'outside/dop/lucie/lucie4.jpeg']]
<br>
<br>
<<back>>
<</if>>
<<elseif $breedingtestavailable is true>>
<span style='color:pink;'>"Back so soon?"</span>
<br>
<br>
"Oh, I haven't been to the address you gave me yet."
<br>
<br>
<span style='color:pink;'>"Well chop chop! She's not going to impregnate herself you know."</span>
<br>
<br>
[img[$imgDir + 'outside/dop/lucie/lucie4.jpeg']]
<br>
<br>
<<back>>
<<else>>
<span style='color:pink;'>"Hey there hun, back again?"</span>
<br>
<br>
"Yeah, I just wanted a reminder of what I need for the breeding license."
<br>
<br>
<<if $player.fitness > 149 and $player.stamina > 299 and $fertilitytreatmentcompleted is true>>
<span style='color:pink;'>"Oh, it looks like you meet all the requirements! Good for you sweetie. Would you like to attempt the exam?"</span>
<<else>>
<span style='color:pink;'>"Well, looks like you're not quite there yet. Keep practicing!"</span>
<</if>>
<br>
<br>
[img[$imgDir + 'outside/dop/lucie/lucie4.jpeg']]
<br>
<br>
<ul>
<<if $player.fitness < 150>>
<li>Fitness: fail (requires level 2)</li>
<<else>>
<li>Fitness: pass</li>
<</if>>
<<if $player.stamina < 300 >>
<li>Sexual stamina: fail (requires level 3)</li>
<<else>>
<li>Sexual stamina: pass</li>
<</if>>
<<if $fertilitytreatmentcompleted is true>>
<li>Semen quality and volume: pass</li>
<<else>>
<li>Semen quality and volume: fail (requires fertility treatment)</li>
<</if>>
</ul>
<br>
<<if $player.fitness > 149 and $player.stamina > 299 and $fertilitytreatmentcompleted is true>>
[[Ask about the exam]]
<br>
<</if>>
<<back>>
<</if>>
<</nobr>>
<span style='color:pink;'>"You're interested in a breeding license? That's great! Come with me and we'll see what we're working with. I'm Lucie, by the way. What's your name?"</span>
"It's $playername."
<i>I think this is the first time someone's actually asked me for my name since I got here</i>
[img[$imgDir + 'outside/dop/lucie/lucie7.jpeg']]
Lucie takes you to her desk where she asks for your info. After a quick search she finds what she's looking for. Your data must already be in the system from your time in the hospital.
<span style='color:pink;'>"Well, it says here you are flagged as a potential candidate, but at the moment you're still lacking in several departments. We do maintain strict standards. Here is a list of everything we require."</span>
She hands you a small pamphlet with more details. You take a quick glance at the requirements.
<ul>
<li>Pass a rigorous physical fitness test</li>
<li>Be able to produce 3 full-sized ejaculations per day</li>
<li>Healthy sperm quality</li>
<li>Last at least 10 minutes during intercourse</li>
<li>No genetic diseases or other defects</li>
</ul>
<span style='color:pink;'>"I would suggest working on your fitness and sexual stamina before attempting the exam. I also heard the hospital now offers fertility treatments for men, if you're interested. Good luck!"</span>
<i>I'll have to get Charlotte to help me with the stamina... That's going to be a fun conversation</i>
[[Leave->Outside]]
<<nobr>>
<<set $breedingintrocompleted = true>>
<<progressTime>>
<</nobr>>You ask the front desk where you can find info about fertility treatments for men, and they point you to the correct department on the fifth floor. Once there a doctor takes you into her office and interviews you.
<span style='color:pink;'>"So you're looking to increase your potency? Yes, we do offer services like that here. All it takes is one little injection. Oh, and you'll need to stay here a couple of hours for observation afterwards."</span>
[img[$imgDir + 'outside/hospital/fertilitytreatment/injection.jpeg']]
<<nobr>>
<<if $player.money > 99>>
[[Let's do it (100 crowns)]]
<<else>>
<a disabled><strike>Let's do it (100 Crowns)</strike> (no money)</a>
<</if>>
<</nobr>>
[[Maybe another time->Hospital]]The doctor gives you your injection, straight into the shaft. Ouch! After that she calls over a nurse who takes you to a private room so you can wait out the effects.
<span style='color:pink;'>"Now sir it's very important to let the medicine do it's work, so no touching yourself while you wait. Are we clear?"</span>
"Yes ma'am!"
<span style='color:pink;'>"Good, I'll come check up on you in a few hours. If there's an emergency please use the button over there."</span>
Left to your devices you chill on the bed while the minutes go by. After about an hour your cock starts throbbing, soon followed by your balls. They swell up larger than you've ever seen before, almost growing to the size of your forearm.
[img[$imgDir + 'outside/hospital/fertilitytreatment/cockthrobbing.webp']]
As time passes the urge for release grows stronger, until every minute feels like an eternity, your testicles practically begging to be emptied. It takes every ounce of your willpower not to start jerking off.
<i>Can't. Take. Much. Longer!</i>
[[The nurse finally comes back]]You jump up as the nurse enters the room, hoping that this agonizing wait is over.
<span style='color:pink;'>"That should be enough time for the treatment. Now all we need is to check the results!"</span>
Evidently she plans to help you out, kneeling down in front of you. But you're already way ahead of her, having grabbed your cock and started stroking the second she stopped talking.
"Oh God, finally. Fuuuuuuuuuuuuuuuck!"
<span style='color:pink;'>"Wait, slow d-"</span>
After mere seconds the biggest orgasm of your life hits, and you shoot out rope after rope after rope onto the poor, unsuspecting nurse's face. She gasps in surprise and quickly has to close her eyes as you cover her with more than twice the amount of semen than you normally produce.
[img[$imgDir + 'outside/hospital/fertilitytreatment/nursefacial.webp']]
When your orgasm finally subsides you come to your senses and realize what you've done.
<span style='color:pink;'>"..."</span>
"I- I'm so sorry miss, I don't know what came over me!"
<span style='color:pink;'>"Well, I believe we can say it was a success. Feel free to go home at any time."</span>
While you awkwardly grab your clothes and try to stuff your still swollen cock into your pants the nurse grabs some nearby tissues and starts to wipe off your cum. By the time she's removed it all she's gone through half the box.
<i>Your sperm volume and quality have greatly increased!</i>
[[Leave the room->Hospital]]
<<nobr>>
<<set $fertilitytreatmentcompleted = true>>
<<set $player.money = $player.money - 100>>
<<progressTime>>
<</nobr>><span style='color:lightblue;'>"So, you wish to join us after all? Very good, come with me."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolestanding3.jpeg']]
Nicole takes you to a small side room with a bed, and instructs you to sit on it while she prepares. As you're sitting there you wonder what kind of preparations she means? You forgot to ask what the pledge entails.
[[She makes you wait a while]]<span style='color:lightblue;'>"I've been hearing good things about you from the other instructors, $playername. Keep it up. But true worship does not end at simple massages and shoe cleaning. Are you prepared to serve our feet with your tongue as well?"</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolestanding4.jpeg']]
[[Yes, mistress]]
[[Back out->House of Worship]] Nicole takes you to one of the massage rooms, and starts stripping down. You make sure to look down at the ground while she's getting ready. She sloppily covers herself with a towel and gets comfortable, but doesn't really seem to care about you seeing her naked form.
<span style="color:lightblue;">"Well boy, what are you standing around for? I'm waiting. Show me what you've learned."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage1.webp']]
[[Start by rubbing her feet]]Eventually Nicole comes back, wearing a provocative leather outfit that accentuates her generous curves. You don't know what to say, and you're not certain you're capable of producing words at the moment anyway.
<span style='color:lightblue;'>"Don't worry, most men are speechless the first time they see me like this. I'll take it as a compliment."</span>
[img[$imgDir + 'outside/houseofworship/pledge/nicolepledge1.webp']]
<span style='color:lightblue;'>"Let's start the ceremony, shall we? Get down on your knees and place your lips on my boot."</span>
[[Kneel down]]You get down on your knees, and she instructs you to kiss all over her long heels. While doing so her whip shows you where to go next, but luckily she doesn't hit you too hard with it. As long as you obey that is.
<span style='color:lightblue;'>"Such a good boy. I knew you had potential the moment I saw you."</span>
[img[$imgDir + 'outside/houseofworship/pledge/nicolepledge2.webp']]
<span style="color:lightblue;">"Now repeat these words after me."</span>
<span style="color:lightblue;">"I, a man of sound mind and of my own free will"</span>
<<linkreplace "I, a man of sound mind and of my own free will" t8n>><span style="color:lightblue;">"Hereby pledge myself to the House of Worship" <br>
<<linkreplace "Hereby pledge myself to the House of Worship" t8n>><span style="color:lightblue;">"I vow to use my body, mind and soul" <br>
<<linkreplace "I vow to use my body, mind and soul" t8n>><span style="color:lightblue;">"To serve, worship and admire women" <br>
<<linkreplace "To serve, worship and admire women" t8n>><span style="color:lightblue;">"In both this life and the next" <br>
<<linkreplace "In both this life and the next" t8n>>[[Seal the deal]]<</linkreplace>></span><</linkreplace>></span><</linkreplace>></span><</linkreplace>></span><</linkreplace>>
<span style='color:lightblue;'>"As a finishing touch I have a special treat for you. To make your pledge official you get to kiss my ass for a whole 3 seconds! Usually novices are unworthy of touching us. Aren't you lucky?"</span>
As you lay down on the bed Nicole squats over your head, and sits straight down. You eargerly kiss her bottom to show your devotion. Her soft, warm cheeks touching your face is like a few seconds of heaven.
[img[$imgDir + 'outside/houseofworship/pledge/nicolepledge3.webp']]
<span style='color:lightblue;'>"Congratulations, male. You are now an official acolyte of our House. I trust you will not disappoint us."</span>
With those words Nicole gets off you and exits the room.
[[Let your new status sink in and leave->House of Worship]]
<<nobr>>
<<set $worshippledgecompleted = true>>
<<set $worshipskill = 0>>
<<progressTime>>
<</nobr>><span style='color:lightblue;'>"Words are easy. I've been running around all day, and my feet are in desperate need of a good tongue bath. Let's see how dedicated you really are."</span>
Nicole takes you apart and strips down entirely nude apart from some stockings. You're down on your knees staring at the ground until she allows you to look up. She's sitting above you and places her legs on your shoulders.
[img[$imgDir + 'outside/houseofworship/nicole/nicolefootworship1.webp']]
<span style='color:lightblue;'>"Look at my eyes, boy. This is a test. You are only allowed to touch my feet. Anything else is off-limits. Are we clear?"</span>
[[Very clear]]<span style='color:lightblue;'>"In that case, go ahead and get a few good sniffs of my soles. You will be getting very familiar with that scent from now on. I suggest you learn to love it."</span>
Nicole wiggles her toes and places them over your nose and mouth. Left with little choice you inhale through your nostrils. Her feet are slightly sweaty, but the smell is strangely pleasant.
[img[$imgDir + 'outside/houseofworship/nicole/nicolefootworship2.webp']]
<span style='color:lightblue;'>"Good boy. Now get to work, I have much to do today."</span>
[[Use your tongue]]You get to work licking and sucking all over her beautiful feet. Her little coos of approval tell you which techniques she enjoys the most. While sucking her toes you sneak a glance at her pussy, which looks swollen and dripping wet.
<span style='color:lightblue;'>"Couldn't resist a peek huh? I admit, seeing you work so hard on your knees has me aroused. But you're not ready yet. Just know that, if you work hard, perhaps one day I will let you have a taste of my divine nectar."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolefootworship3.webp']]
After a few more minutes of worship she instructs you to get dressed and leave the room. As you close the door you hear loud moans coming from inside. Sounds like Nicole started pleasuring herself the second you left, and she wants you to hear. You adjust your pants and get on your way.
<<nobr>>
<<if $player.worship < 150>>
<i>Your worship skills have increased</i>
<</if>>
<</nobr>>
[[Continue->Outside]]
<<progressTime>>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 20>>
<<if $player.worship > 150>>
<<set $player.worship = 150>>
<</if>>
<<if $player.worship is 50 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship is 150 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<</if>>
<<set $nicolefootworship1 = true>>You put your new massage skills to use and pamper her feet. Sometimes you thank your lucky stars that you even get to touch a woman this beautiful. And she's naked too!
<span style="color:lightblue;">"Mmmm, very good. I can see why you're so popular with the clients.</span>
As this is a test you make sure to be thorough, properly worshipping every inch of her just the way they taught you. Her approving coos mean that you must be doing a good job.
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage2.webp']]
[[Worship them with your mouth]]You suck her sexy toes next, eliciting a few pleasured moans from her. The towel covering her has shifted a little, allowing you to catch some glimpses of her butt cheeks and glistening womanhood.
<i>That's the second time she's gotten wet while I'm sucking her toes. Coincidence?</i>
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage3.webp']]
Nicole eventually turns around, revealing her perky breasts and pussy in their full glory. She absent-mindedly strokes your crotch with her foot while she rubs herself. The smell of her arousal is now heavy in the air.
<span style='color:lightblue;'>"What happens next will be our little secret, okay?"</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage4.webp']]
[[She orders you to strip]]<span style='color:lightblue;'>"Normally instructors are not allowed to touch acolytes, but for my favorite boy I'll make an exception."</span>
She helps you take off your pants and shirt, before having you lay down on the table with her. You're a bit nervous because you don't know what she expects from you.
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage5.webp']]
Your worries are for nothing however, as she caresses your member with her soft feet. While you consider yourself quite skilled by now, Nicole is on a completely different level. She has perfect control of her toes and uses them to find all your erogenous zones. Her gentle touch feels like heaven.
<span style='color:lightblue;'>"You're sensitive, aren't you? Don't worry, I'll make you feel real good."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage6.webp']]
[[Just enjoy it->Fuck her feet]]Nicole holds her feet together and instructs you to fuck the hole in between them. You happily slide into her soles and pump back and forth, trying to hold back your inevitable orgasm for as long as you can.
She knows just the right amount of pressure to use, and with each passing stroke you find it harder to believe that you're not inside an actual pussy. Your humping grows wilder as you start to lose control.
<span style='color:lightblue;'>"You don't have to strain darling. Just relax and let it all go. "</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage7.webp']]
[[Let go]]Pulling away at the last second you release all the tension, covering her amazing soles in a big load of thick, sticky semen. For a second you panic as you never asked for permission to cum on her, but she seems very pleased with you.
<span style='color:lightblue;'>"You did very good, acolyte. You might be one of our most promising new members."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicolemassage8.webp']]
Nicole orders you to hand her a towel, and you help her clean the oil and cum from her body. While she looks completely comfortable you have to try your best not to stare at her naked form, which she seems to have no intention of covering up.
<span style='color:lightblue;'>"I'll talk to the other instructors about moving you up to level 2. Be proud, it usually takes much longer."</span>
<<nobr>>
<<if $player.stamina < 150>>
<br>
<i>Your sexual endurance has improved slightly!</i>
<br>
<</if>>
<</nobr>>
<<nobr>>
<<if $gameTime is 3>>
[[Get dressed->Outside]]
<<else>>
[[Get dressed->House of Worship]]
<</if>>
<<set $worshippracticed = true>>
<<set $nicolemassagetest = true>>
<<notify 5s>>Achievement unlocked: Expert Footboy<</notify>>
<<if $player.stamina < 150>>
<<set $player.stamina = $player.stamina + 10>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<<progressTime>>
<</nobr>><<nobr>>
<<switch random(0,2)>>
<<case 0>>
You're filling in for one of the more senior members today, so you get assigned to the drive-through. Women come by in their cars and get 5 minutes each for a quick foot cleanse. By the end of your shift you've gone through dozens of them.
<br>
<br>
<span style='color:orange;'>"Come on, hurry up! I need the other one done too."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footlickingOutside.webp']]
<<case 1>>
<<if $player.stamina < 50>>
One of the girls you're supposed to worship today demands you take out your cock. She places her feet on your face and grabs your erection. Unfortunately your stamina is still terrible, so you blow your load in just a few pumps. She acts upset at you, but this whole thing was her idea in the first place...
<br>
<br>
<span style='color:orange;'>"Men are so pathetic. All of you cum in seconds when smelling my feet. Loser."</span>
<<else>>
One of the girls you're supposed to worship today demands you take out your cock. She places her feet on your face and grabs your erection. Luckily you've had some practice with handjobs, so you manage to last a few minutes before cumming. She acts upset at you, but this whole thing was her idea in the first place...
<br>
<br>
<span style='color:orange;'>"At least you lasted more than two strokes, unlike the last guy. Still sad though."</span>
<</if>>
<br>
<br>
<<if $player.stamina <150>>
<i>Your sexual endurance has improved slightly!</i>
<br>
<br>
<<set $player.stamina = $player.stamina + 10>>
<</if>>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footlicking2.webp']]
<<case 2>>
You offer your services as a masseuse again, can't let your skills get rusty. Although it doesn't seem like you have to worry about that, you're pretty sure one of the girls you massaged had an orgasm while you rubbed her feet.
<br>
<br>
<span style='color:orange;'>"Ohhhh! Mmmmh."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofworship/lessons/feet/footmassage2.webp']]
<</switch>>
<br>
<br>
<<set _earnings = random(15,20)>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping feet</i>
<br>
<br>
<<if $gameTime is 5>>
[[Finish work->Outside]]
<<else>>
[[Finish work->House of Worship]]
<</if>>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 20>>
<<if $player.worship > 150>>
<<set $player.worship = 150>>
<</if>>
<</if>>
<<if $player.stamina is 50 and $staminalevel1popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 1! <</notify>>
<<set $staminalevel1popup = true>>
<</if>>
<<if $player.stamina is 150 and $staminalevel2popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 2! <</notify>>
<<set $staminalevel2popup = true>>
<</if>>
<<if $player.stamina is 300 and $staminalevel3popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 3! <</notify>>
<<set $staminalevel3popup = true>>
<</if>>
<<progressTime>>
<<set $player.energy = $player.energy - 30>>
<</nobr>><<nobr>>
<<if $charlottelocation is "room">>
<<if $gameTime is 5>>
Charlotte is in bed, best not to disturb her. Looks like she sleeps naked.
<br>
<br>
<i>Thank you Lord for this blessed image</i>
<br>
<br>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottesleeping.jpeg']]
<br>
<br>
[[Go back->Home]]
<<else>>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed3.jpeg']]
<br>
<br>
<<if $player.paidoffdebt is true>>
<span style='color:crimson;'>"What is it, $playername?"</span>
<<else>>
<span style='color:crimson;'>"What is it, slave?"</span>
<</if>>
<br>
<br>
<<if $charlottetalk1 is not true and $charlottedebt > 0>>
[[Ask her why she bought you]]
<br>
<</if>>
<<if $breedingintrocompleted is true and $charlottetrainingunlocked is not true>>
[[Talk to her about the breeding license]]
<br>
<</if>>
<<if $charlottetrainingunlocked is true and ($player.paidoffdebt is not true or $player.stamina < 300)>>
<<if $player.energy > 19>>
<<if $charlottetraining is not true>>
[[Ask for stamina training]]
<<else>>
<a disabled><strike>Ask for stamina training</strike></a>
<</if>>
<<else>>
<a disabled><strike>Ask for stamina training</strike> (no energy)</a>
<</if>>
<br>
<</if>>
<<if $player.paidoffdebt is true and $charlottetestcompleted is not true>>
[[Talk about the Queen's Games]]
<br>
<</if>>
<<if $charlotteticketevent is true and $gamesticketbought is not true>>
<<if $player.money > 999>>
<<linkreplace "Pay for the games entrance (1000 crowns)" t8n>>
<span style="color:crimson;">"Great. I'll buy us the tickets and let you know when it's time to leave."</span>
<br><br>
<h1>End of current content</h1>
[[Continue->Home]]
<<set $player.money = $player.money - 1000>>
<<set $gamesticketbought = true>>
<</linkreplace>>
<<else>>
<a disabled><strike>Pay for the games entrance (1000 crowns)</strike> (no money)</a>
<</if>>
<br>
<</if>>
[[Nothing->Home]]
<</if>>
<<else>>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebedroom.jpeg']]
<br>
<br>
<i>I probably shouldn't be in here without permission</i>
<br>
<br>
[[Go back->Home]]
<</if>>
<</nobr>>
You follow the directions to the address Lucie gave you, which leads to a small but classy apartment in the city center. Your heart is pounding in your chest as you realize behind that door is a complete stranger you have to impregnate.
<i>Well, here goes nothing</i>
[img[$imgDir + 'outside/dop/breedingtest/anastasiaapartment.avif']]
<<nobr>>
<<if $player.energy > 149>>
<<if $flowerspicked is true>>
[[Knock]]
<<else>>
<a disabled><strike>Knock</strike> (I should get her some flowers. Maybe from the park?)</a>
<</if>>
<<else>>
<a disabled><strike>Knock</strike> (you should be well rested)</a>
<</if>>
<</nobr>>
[[Chicken out->Outside]]You knock on the door and a gorgeous young woman opens up. After introducing yourself you hand her the flowers, which seems to break the ice a little. Enough for her to invite you inside, at least.
<span style='color:#faedcd'>"You're the guy the DOP sent me? You look like you just started growing hair on your chest."</span>
"Yeah, I'm kinda new to this..."
<span style='color:#faedcd'>"Great. All this time on the list and this is what I end up with."</span>
[img[$imgDir + 'outside/dop/breedingtest/anastasiagreeting.webp']]
She appears to weigh her options for a few seconds before coming to a decision.
<span style='color:#faedcd'>"In any case, I'm not waiting another 4 years, so let's do this already."</span>
[[She shows you her assets]]Before you can react Anastasia pulls down her top, revealing a perky pair of boobies. You stare at them like a caveman with your mouth open, but strangely enough it seems to give her a confidence boost.
Getting a little more assertive she approaches you and places a hand on your crotch, where your bulge is already growing rapidly. She giggles and gives it a little squeeze, happy with the effect she's had on you.
[img[$imgDir + 'outside/dop/breedingtest/anastasiatits.webp']]
<span style='color:#faedcd'>"There. I showed you mine, now show me yours."</span>
"Oh, uh, okay!"
[[Unzip]]Anastasia sits down and helps you open your shorts, grabs hold of your dick and pulls it out. She lets out a little gasp as it comes into clear view, and it looks huge compared to her tiny hands. You can't help but smirk at her shocked expression.
<span style='color:#faedcd'>"Oh. It's, uh, bigger than I expected. It's been a while since I saw one."</span>
This time it's your turn to get your confidence boosted as she bites her lips and stares at your lengthy member.
[img[$imgDir + 'outside/dop/breedingtest/anastasiaundress1.webp']]
Now eager to get started Anastasia pulls you onto the couch and starts undressing you. She rips open your shirt and pulls down your pants, almost as if she's afraid that you're going to get away if she doesn't hurry.
"Uh, we can take our time you know."
<span style='color:#faedcd'>"Be quiet. You have no idea how long I've waited for this."</span>
[img[$imgDir + 'outside/dop/breedingtest/anastasiaundress2.webp']]
Once you're undressed she grabs your cock and gives it a few strokes, seemingly satisfied with it's hardness.
<span style='color:#faedcd'>"Are you ready?"</span>
[[Ready as I'll ever be]]Turning around Anastasia presents you with a great view of her holes, and grabs your cock. Rubbing it against her lips she spreads some of her juices onto it, getting it ready for penetration. After getting enough lubrication she slowly sits down, and you get to feel the soft, velvety insides of her pussy.
<span style='color:#faedcd'>"Ooooh. Perfect fit, don't you think?"</span>
"Ohhhh wow!"
[img[$imgDir + 'outside/dop/breedingtest/anastasiainsertion.webp']]
After a short adjustment period she starts bouncing up and down, slowly at first but gradually picking up the pace. You can only watch her butt jiggling as she uses your cock for her pleasure, hitting some spots even her toys can't reach. She's doing all the work even though you're supposed to be the one breeding her.
<span style='color:#faedcd'>"Aaah... Haaah... Haaah..."</span>
[img[$imgDir + 'outside/dop/breedingtest/anastasiafuck1.webp']]
[[Her moans keep getting louder]]After a few more bounces Anastasia all of a sudden stands up, and her legs begin to quiver. A huge stream of clear liquid hits your dick as she has an uncontrollable squirting orgasm, while her knees buckle and she tries her hardest to stay upright by holding on to your legs.
<span style='color:#faedcd'>"Fffuuuuuuuuck!"</span>
[img[$imgDir + 'outside/dop/breedingtest/anastasiasquirt1.webp']]
"Holy shit, are you alright?"
She doesn't respond but instead slams back down on your cock, resuming her wild riding, now accompagnied by wet squelching sounds. The pleasure is intense and you feel you're not going to last much longer.
"Anastasia, I'm going to cum soon!"
<span style='color:#faedcd'>"Do it! Give me a child!"</span>
Those words are all you need to let go, and you fill her unprotected pussy with a dozen shots of virile semen. There's no more going back now as it slowly oozes out of her. You burn the image into your brain, as it could be the start of your parenthood.
[img[$imgDir + 'outside/dop/breedingtest/anastasiacreampie1.webp']]
<span style='color:#faedcd'>"There's so much... this has to get me pregnant, right?"</span>
[[You have to make sure]]Now that she's had her fun it's time for the real work to begin. You grab a nearby blanket and put it on the ground, then grab her and wrestle her onto her back, pinning her legs up. Your cock is perfectly aligned with her slit, and you use the head to tease her a little.
<span style='color:#faedcd'>"What are you doing?!"</span>
"Doing my job of course. We have to maximize the chances of pregnancy."
Before she can protest more you slam back into her sopping-wet pussy, making her head fly back in pleasure. Your instincts take over as your hips thrust in and out of her, eager to continue breeding this fertile hole.
[img[$imgDir + 'outside/dop/breedingtest/anastasiafuck2.webp']]
<span style='color:#faedcd'>"Nnnnngh... Wait... This position is embarrassing... Aaaahn!"</span>
You ignore her weakening pleas completely, the only thing on your mind is filling her up again. Even as your leg muscles start to ache you don't slow down, keeping the pace up until your balls start to contract. With a final thrust you bury yourself as deep as you can, and pump a second load deep into her womb.
[img[$imgDir + 'outside/dop/breedingtest/anastasiacreampie2.webp']]
<span style='color:#faedcd'>"Fuck... Are you finally finished?"</span>
[[Giving up is for the weak]]You answer her by ramming back in for round 3, thrusting twice as fast as you were before. Both of you are in an absolute frenzy with juices flying everywhere, your groans and the sound of flesh slapping against flesh echoing through the room.
<span style='color:#faedcd'>"Ah! Ah! Ah! Ah! Aaaaaaah!"</span>
<i>MORE! MORE! MORE! MORE!</i>
[img[$imgDir + 'outside/dop/breedingtest/anastasiafuck3.webp']]
Suddenly you feel her walls contract and even more pussy juices fly out as she squirts for a second time, with your cock still inside her. The squeezing hole milks yet another load out of you, gripping you so tight you can't escape as it demands your seed. Your ejaculation clashes with her climax as she tries to squirt it out and you pump more in.
Even after you manage to pull out she is still orgasming, a mix of your cum and her fluids shooting out like a volcano. It takes a solid minute for her body to stop shaking, and she can't even produce a coherent thought anymore.
<span style='color:#faedcd'>"Haaaaaaaaangh.."</span>
[img[$imgDir + 'outside/dop/breedingtest/anastasiasquirtcreampie.webp']]
[[Admire your work]]As Anastasia slowly catches her breath you check the aftermath of your wild copulation. What looks like half a pint of cum and pussy juice is pooling out of her onto the floor, completely ruining the sheets. Her holes are still twitching with little aftershocks of the orgasms you gave her.
[img[$imgDir + 'outside/dop/breedingtest/anastasiatwitching.webp']]
Suddenly you start to feel tired, both your mind and balls fully drained. You can't help but wonder what's happening inside her body right now, curious if some of your sperm has made it to her egg. They could be penetrating it right this moment.
<i>If this doesn't do it then I don't know what will</i>
[img[$imgDir + 'outside/dop/breedingtest/impregnation.webp']]
Anastasia still isn't moving, so you get dressed again and signal her that you're leaving. She gives you a weak thumbs up and then closes her eyes with a satisfied expression on her face.
<i>I should report back to Lucie</i>
[[Head out->Outside]]
<<nobr>>
<<set $breedingtestcompleted = true>>
<<set $breedingtestcompleteddays = 0>>
<<notify 5s>>Achievement unlocked: You are the father<</notify>>
<<set $player.energy = $player.energy - 150>>
<<progressTime>>
<</nobr>>You do your best to explain everything from the beginning, starting from your donations at the hospital to the lady at the DOP. Apart from a slightly raised eyebrow you don't get much of a reaction out of Charlotte.
<span style='color:crimson;'>"What does this have to do with me?"</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed2.jpeg']]
"Well, you see, the fitness thing I can handle. But the sexual stamina part..."
As you trail off you could swear there is a small smirk forming on Charlotte's lips. This woman is impossible to read.
<span style='color:crimson;'>"Let me guess, you can't last 10 minutes to save your life."</span>
[[Yeah, that's about right...]]<span style='color:crimson;'>"Well, normally I'd say that's your problem. But a slave with a breeding license is about 100 times more valuable than average, and there's even a reward for the owners. That owner being me, of course."</span>
"Sooo, that means?"
<span style='color:crimson;'>"That means it's worth my while to help you get one. If you're serious about this that is."</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed4.jpeg']]
"Of course I am!"
<span style='color:crimson;'>"In that case I'll help you train your stamina. Come see me when you need to practice."</span>
<i>Hell yes!</i>
[[Continue->Charlotte's Room]]
<<nobr>>
<<set $charlottetrainingunlocked = true>>
<</nobr>><<nobr>>
<<if $player.stamina < 50>>
Charlotte has you hop on the bed and pulls down your pants, revealing your dick which hardens in seconds. She smirks and gently grabs it, but barely makes it to 5 strokes before you twitch and a pathetic little orgasm dribbles out.
<br>
<br>
<span style='color:crimson;'>"Really? That's it? I'm starting to think this was a mistake."</span>
<br>
<br>
"Sorry, I'll do better next time..."
<br>
<br><span style='color:crimson;'>"You'd better. It's not too late to return you."</span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottepremature.webp']]
<<elseif $player.stamina < 150>>
<<switch random(0,2)>>
<<case 0>>
After removing her top Charlotte lays down on the bed and beckons you over, grabbing your erection with both hands. While her gentle massaging feels amazing your recent practice has paid off and you resist the urge to cum.
<br>
<br>
<span style='color:crimson;'>"Look at you holding it back, isn't that cute."</span>
<br>
<br>
Encouraged by her words you try your hardest to keep it up, and for a while you're succeeding too. You think you might make it five whole minutes, until Charlotte gives you a mischievous smile.
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottehandjob1.webp']]
<br>
<br>
<span style='color:crimson;'>"Since you're doing so well I'll have to step up my game. How about this?"</span>
<br>
<br>
She scoots down the bed until your cock is inches from her face and speeds up her hand movements. From her position and the way she's aiming it's clear she wants a facial from you.
<br>
<br>
With such an erotic view and her stroking like crazy there is no way to hold back. The idea of staining her beautiful face with your dirty cum quickly overwhelms you, and soon after she makes you orgasm, several ropes of cum landing on her.
<br>
<br>
<span style='color:crimson;'>"See, I knew that would work. Men are so easy."</span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottehandjob1cum.webp']]
<<case 1>>
Charlotte orders you to strip and leans back, lifting up her legs. To your surprise she doesn't use her hands but instead places her feet on either side of your cock, squeezing it between them. As she starts to slowly move them back and forth it's almost as if she's simulating a pussy.
<br>
<br>
"Wait, you're going to use your feet?"
<br>
<br>
<span style='color:crimson;'>"Is that a problem? You need to get used to different ways of stimulation. If you prefer you can train by yourself."</span>
<br>
<br>
"No, no problem here! Please keep going."
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottefootjob1.webp']]
<br>
<br>
Her soles are soft and smooth, and she seems to know all the right techniques to stimulate you like crazy. After just a couple minutes you reach your limit, and your cum dribbles out onto her toes.
<br>
<br>
<span style='color:crimson;'>"What a sad little load. You will have to do better if you want to impregnate a woman."</span>
<br>
<br>
"Yes, miss Charlotte."
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottefootjob1cum.webp']]
<<case 2>>
It must be your lucky day because Charlotte takes off her clothes along with you, treating you to an unobstructed view of her gorgeous body. Even as she starts stroking your dick you can't keep your eyes off her.
<br>
<br>
<span style='color:crimson;'>"I bet you dreamed about this back home, didn't you boy? Naked in bed with a woman like me."</span>
<br>
<br>
<i>Except in my dreams I wasn't the slave...</i>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottehandjob2.webp']]
<br>
<br>
As you start to get closer to climaxing you start to wriggle and hump your hips, desperate for that little extra stimulation to get you over the edge. Charlotte however uses her leg to keep you in place and keeps the same speed.
<br>
<br>
<span style='color:crimson;'>"Nuh uh uh. No moving, I'm in control here."</span>
<br>
<br>
Every time you feel like you're going to cum she slows down, only to speed up again when the feeling subsides. This pattern repeats several times until she finally shows mercy and lets you cover her toes in cum.
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottehandjob2cum.webp']]
<</switch>>
<<elseif $player.stamina < 250>>
<<switch random(0,2)>>
<<case 0>>
With your stamina improving Charlotte needs to pull out some more tricks. Using her spit she lubes your cock and then licks and kisses all over the shaft and even your balls. This is definitely a step up from a normal handjob.
<br>
<br>
"Oh shit, that feels amazing!"
<br>
<br>
She also seems to be enjoying herself a lot more than usual. From time to time you even catch her silently moaning.
<br>
<br>
<span style='color:crimson;'>"Mmmmmm."</span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottelatexblowjob.webp']]
<br>
<br>
The stimulation becomes too much for you, and your knees start to buckle. You sit back down to calm yourself, but Charlotte smells your weakness and starts stroking your cock at top speed, while opening her mouth.
<br>
<br>
Overloaded with pleasure you helplessly start cumming, shots of thick white cream landing directly in her mouth. She seems to enjoy the power she has over you, winking at you before swallowing it down in one big gulp.
<br>
<br>
<span style='color:crimson;'>"You're definitely improving, big boy. Maybe we'll make a stud out of you yet."</span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottelatexblowjobcum.webp']]
<<case 1>>
You lean back and relax as Charlotte gets down on her knees, sucking on your head while her hands jerk the shaft. The rhythmic movements and her eyes staring up at you have a hypnotic effect, almost putting you in a trance.
<br>
<br>
<span style='color:crimson;'><i>shlrp shlrp shlrp shlrp</i></span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottepovblowjob.webp']]
<br>
<br>
Keeping the same rhythm the stimulation slowly but surely gets you closer to orgasm. Without missing a beat she continues jerking and sucking even as your balls contract and you feel your cum shooting out in waves.
<br>
<br>
"Ffffuuuuuuuuuuck!"
<br>
<br>
Finally slowing down her hands come to a stop and she removes your cock from her mouth. She proudly shows off the load you just deposited in it, swirling it around with her tongue and swallowing it piece by piece.
<br>
<br>
<span style='color:crimson;'>"Mmmmm. Tastier than I expected."</span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottepovblowjobcum.webp']]
<<case 2>>
Charlotte says it's time you learned how to fuck, and you get all worked up for a second until she clarifies she means fucking her throat. Still the prospect is exciting and your erection is already straining in your pants.
<br>
<br>
After pulling them down she instructs you to grab her head and thrust your hips, just like you would during actual sex. She keeps telling you to go harder, but her gagging noises hold you back as you don't want to hurt her.
<br>
<br>
<span style='color:crimson;'>"Come on, don't be a pussy. Fuck me like you mean it!"
</span>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottedeepthroat1.webp']]
<br>
<br>
<span style='color:crimson;'>"This isn't working. Let's try something else."
</span>
<br>
<br>
Giving you some time to recover Charlotte positions herself upside down, sticks out her tongue and invites you back in. The view is extremely erotic, and in this position you can slide your shaft down her throat with ease.
<br>
<br>
[img[$imgDir + 'charlotte/training/charlottedeepthroat2.webp']]
<br>
<br>
It feels so good that your thrusts quickly become more erratic, and your mind is solely focused on getting off. With one final push of your hips you lodge yourself all the way in and cream the walls of her throat. Fully drained you slowly pull out and check on her, she has tears in her eyes but seems satisfied with the way you handled it.
<br>
<br>
<span style='color:crimson;'>"Much better. A real breeder only cares about filling the hole with seed, everything else is secondary."</span>
<</switch>>
<<elseif $player.stamina < 300>>
Before your training starts Charlotte takes a minute to talk to you. She's acting a bit strange, as if she's unsure about what comes next. Your mind races, trying to remember if you fucked up somewhere.
<br>
<br>
<span style='color:crimson;'>"I think it's about time we see how you handle actual sex. What do you think?"</span>
<br>
<br>
Your heart starts pounding in your chest as her words slowly sink in. Of course you knew this had to happen eventually, but so soon? What if she gets pregnant? Would you have to get married? Can you even marry a slave?
<br>
<br>
<span style='color:crimson;'>"Calm down. You're not touching my pussy, I don't feel like walking around 9 months with a parasite inside me."</span>
<br>
<br>
"Oh..."
<br>
<br>
<span style='color:crimson;'>"Buuuut, there is another way we can have sex, without the pregnancy risk."</span>
<br>
<br>
<i>Holy shit does she mean anal?</i>
<br>
<br>
[img[$imgDir + 'charlotte/training/charlotteanalintro.webp']]
<br>
<br>
[[Prepare yourself mentally]]
<<else>>
You don't need any more training.
<br>
<br>
<<back>>
<</if>>
<</nobr>>
<<nobr>>
<<if $player.stamina < 250>>
<<set $player.stamina = $player.stamina + 10>>
<br>
<i>Your stamina has improved</i>
<br>
<br>
[[Finish->Home]]
<<progressTime>>
<<set $charlottetraining = true>>
<<if $player.stamina is 50 and $staminalevel1popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 1! <</notify>>
<<set $staminalevel1popup = true>>
<</if>>
<<if $player.stamina is 150 and $staminalevel2popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 2! <</notify>>
<<set $staminalevel2popup = true>>
<</if>>
<<if $player.stamina is 300 and $staminalevel3popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 3! <</notify>>
<<set $staminalevel3popup = true>>
<<timed 6s>>
<<notify 5s>>You've reached the max Stamina for this version <</notify>>
<</timed>>
<</if>>
<<set $player.energy = $player.energy - 20>>
<</if>>
<</nobr>>As you're starting your day Charlotte calls you over, making you think you're in trouble. Fortunately that doesn't seem to be the case, as she would probably have you on your knees by now.
<span style='color:crimson;'>"Good morning slave, I've been crunching the numbers on your debt. Looks like you're halfway there already!"</span>
"Really? That's great. At least all my hard work wasn't for nothing."
<span style='color:crimson;'>"Good behavior deserves to be rewarded don't you think? What would you like? Perhaps a closer view of my ass? I know you've been looking at it while I'm asleep."</span>
<i>Shit. Busted.</i>
[img[$imgDir + 'charlotte/home/general/charlotte.jpeg']]
[[Ass is good. Ass is very good!]]
[[I just want to go home]]
<<nobr>>
<<set $charlottedebthalfwayevent = true>>
<</nobr>><span style='color:crimson;'>"Why? Because it's my job of course. I buy slaves and have them work for me, it's very profitable."</span>
"But why me specifically?"
<span style='color:crimson;'>"You were cheap. And you didn't look like you were broken yet. So I took a gamble."</span>
"Well, thanks I guess."
You notice a faint smile on her lips, that quickly fades away again. Perhaps she's not as evil as you thought.
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed5.jpeg']]
<span style='color:crimson;'>"Now enough of this. Don't you have work to do? You still owe me $charlottedebt crowns."</span>
[[Continue->Home]]
<<nobr>>
<<set $charlottetalk1 = true>>
<<set $charlotterelation = $charlotterelation + 3>>
<</nobr>><<nobr>>
<<set _start = 0>>
<<set _end = 2>>
<<if $addictblowjob is true>>
<<set _end = 1>>
<</if>>
<<switch random(_start, _end)>>
<<case 0>>
While walking around you hear a strange noise coming from some nearby bushes and decide to go investigate. You find a girl with her pants down peeing in plain sight. Judging by the impressive stream she had to go pretty bad.
<br>
<br>
<span style="color:#e6ccb2">"Nnnnnh, finally. Sweet release."</span>
<br>
<br>
After finishing she pulls her clothes back up and waddles away, clearly drunk out of her mind. You hope she will be able to find her way home in that condition, or at least not hit any trees on the way.
<br>
<br>
[img[$imgDir + 'outside/park/night/nightparkpee.webp']]
<br>
<<case 1>>
From a distance you spot a girl on one of the benches nervously looking around. When she's satsified that no one is nearby she spreads her legs and starts rubbing between them. Soon you can even hear her involuntary moans as she picks up the pace.
<br>
<br>
In an attempt to get closer you accidentally step on a branch, and both of you freeze. She stares right at you for a while, then goes back to masturbating, even more furiously than before. After a loud orgasm she quickly gathers her things and hurries off into the distance.
<br>
<br>
[img[$imgDir + 'outside/park/night/nightparkmasturbating.webp']]
<br>
<<case 2>>
At the local playground is a disoriented woman walking around aimlessly, making strange noises and constantly twitching her head around. Judging by her behaviour, and the bloodshot eyes, this is probably an addict looking for some drugs.
When she notices you she approaches you, thinking you are a dealer.
<br>
<br>
<span style="color:#e6ccb2">"Hey, you got any powder? You can touch my tits if you let me have some."</span>
<br>
<br>
"Sorry, I don't have any."
<br>
<br>
<span style="color:#e6ccb2">"Shit. Wait, I know. Powder is made from cum, right? Can you give me some, I really, really need it. Just one last fix."</span>
<br>
<br>
"Uhh, I don't know about that..."
<br>
<br>
<span style="color:#e6ccb2">"Come on, just one load? I'll even suck it out of your balls!"</span>
<br>
<br>
[img[$imgDir + 'outside/park/night/nightparkaddict1.webp']]
<br>
<br>
<<if $player.stamina > 149>>
[[Give her some of your seed]]
<<else>>
<a disabled><strike>Give her some of your seed</strike> (level 2 Stamina required)</a>
<</if>>
<</switch>>
<</nobr>>
[[Head back->Park]]The woman instantly lunges for your pants, pulls them down, and pounces on your cock like a wild animal. She doesn't care about your pleasure at all, using both her hand and mouth in an attempt to draw out her reward as soon as possible.
<span style="color:#e6ccb2">"Shlrp shlrp shlrp. Shluuuuuuurlp."</span>
[img[$imgDir + 'outside/park/night/nightparkaddict2.webp']]
Her tactic is definitely working, your semen rising through your balls getting ready to blow. When you can't take it anymore you tap her on the shoulder, signaling your impending orgasm.
<span style="color:#e6ccb2">"Yes! Give it to me! All of your fresh cum!"</span>
You grunt as your cock starts pumping out ropes of jizz, landing all over her face and in her mouth. She giggles in delight as she finally gets what she wants, using her fingers to scoop up every drop she can find and eating it.
<i>I doubt this will be the last time</i>
[img[$imgDir + 'outside/park/night/nightparkaddict3.webp']]
<<nobr>>
<<if $player.stamina < 250>>
<i>Your sexual endurance has improved!</i>
<<set $player.stamina = $player.stamina + 10>>
<</if>>
<</nobr>>
[[Leave her to it->Park]]
<<nobr>>
<<set $addictblowjob = true>>
<<if $goodsamaritan is not true>>
<<notify 5s>>Achievement unlocked: Good samaritan<</notify>>
<<set $goodsamaritan = true>>
<</if>>
<</nobr>><span style='color:crimson;'>"Really? That's surprising. There aren't many men who want to leave. Unless you're stuck in the mines of course."</span>
"Don't get me wrong, this place has it's perks. But I want to see my family again, and my friends."
Something in your plea must be getting to her, because her expression softens a little bit. She looks around for a moment and then sighs, placing a hand on your shoulder. This must be her awkward way of trying to comfort you.
<span style='color:crimson;'>"Tell you what, you pay off your debt to me and I'll personally buy you a train ticket to the border."</span>
"You mean it?"
<span style='color:crimson;'>"Sure kid. Now get back out there, $charlottedebt crowns to go."</span>
[img[$imgDir + 'charlotte/home/general/charlotte2.jpeg']]
[[Continue->Home]]
<<nobr>>
<<set $charlottereward = "askedforfreedom">>
<</nobr>><span style='color:crimson;'>"All you men are the same. Fine, but we're doing this my way."</span>
Charlotte has you lay down on the floor as she goes and gets some gear from her closet. When she comes back she ties you down and attaches a collar with chain straight onto your junk, making it swollen and sensitive.
<span style='color:crimson;'>"This is so you don't get any funny ideas. Remember I'm the boss here."</span>
To emphasize her point she taps your balls a couple of times, making you groan in pain. She could probably yank them right off with the chain if you misbehave.
[img[$imgDir + 'charlotte/femdom/charlottefacesitting1.webp']]
[[She takes a seat]]
<<nobr>>
<<set $charlottereward = "askedforass">>
<</nobr>>Charlotte seems pleased with your decision, even though she is doing her best not to show it. The two of you start discussing your future together, and decide to make an attempt to move up in the world. Although publicly you remain a slave, she promises to let you have more say in the decisions going forward.
<span style='color:crimson;'>"If you're going to stay you'll need to pull your own weight. I was thinking of having you join the upcoming Queen's Games. They say it's going to be quite a spectacle this time around."</span>
"What's that?"
<span style='color:crimson;'>"It's an annual festival in honor of queen Anne, where slaves compete for the glory of their owners. There's a lot of prestige attached, all of the best trainers in the country will be represented."</span>
[img[$imgDir + 'charlotte/home/general/femdomgroup.jpeg']]
"There's a queen?"
<span style='color:crimson;'>"You really don't know much about this place, do you? In any case, we will need to work on your skills if we want to enter. As you are now you wouldn't make it past the preliminaries. Focus on that, and I'll get us an invitation."</span>
<i>I have my work cut out for me then</i>
[[Continue->Home]]
<<nobr>>
<<set $player.paidoffdebt = true>>
<</nobr>>Charlotte is also in the park, and she's definitely in a good mood. She even invites you along on a hike and smiles often. It's refreshing to see her out and about dressed in normal clothes, it almost makes you forget she literally owns you.
<span style='color:crimson;'>"Don't you just love nature? I could spend all day out here."</span>
Whatever the reason you're not about to question it, and the pair of you have a nice conversation along the way.
[img[$imgDir + 'outside/park/events/charlottepark1.webp']]
As you're walking the terrain gets a little rougher with some hills. The incline causes Charlotte's shorts to slide up, exposing a good part of her buttcheeks. You're wondering if you should say something, or just enjoy the view.
<i>Nah, better not risk it</i>
<span style='color:crimson;'>"Phew. Let's head back, I'm sure you have more work to do."</span>
[img[$imgDir + 'outside/park/events/charlottepark2.webp']]
<<nobr>>
<<if $player.fitness < 50>>
<i>Your fitness has improved</i>
<br>
<br>
<</if>>
[[Finish hike->Park]]
<<set $charlotteparkevent = true>>
<<progressTime>>
<<if $player.fitness < 50>>
<<set $player.fitness = $player.fitness + 10>>
<<if $player.fitness > 50>>
<<set $player.fitness = 50>>
<</if>>
<</if>>
<<if $player.energy > 19>>
<<set $player.energy = $player.energy - 20>>
<</if>>
<<if $player.fitness is 50 and $fitnesslevel1popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 1!<</notify>>
<<set $player.maxenergy = 120>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 120<</notify>>
<</timed>>
<<set $fitnesslevel1popup = true>>
<</if>>
<<set $charlotterelation = $charlotterelation + 3>>
<</nobr>>To help with the nerves Charlotte starts by giving you a blowjob. The familiar feeling calms you down a little, but you're still feeling a little overexcited. It's not every day you lose your virginity after all.
<span style='color:crimson;'>"Don't worry, you've practiced a lot. You'll be fine."</span>
<i>I sure hope so</i>
A little later your cock is as hard as it's ever been, and fully lubricated by her saliva. You're as ready as you're likely to get.
[img[$imgDir + 'charlotte/training/charlotteanalblowjob.webp']]
[[It's time]]Charlotte turns around and presents herself on her hands and knees, giving you the best view of your life. After staring dumbfounded for a minute you snap out of it and place the head of your cock against her puckered little asshole. You start pushing forward, gradually putting more pressure until her hole opens up and you slip an inch or two inside.
<span style='color:crimson;'>"Slowly... Slowly!"</span>
Once you're in you take a moment to enjoy the sensation. Her ass is warm and tight, squeezing on your cock as it tries to fight off the foreign invader, before settling down and accepting its fate as Charlotte relaxes.
<span style='color:crimson;'>"Okay, you can start now."</span>
[img[$imgDir + 'charlotte/training/charlotteanalinsertion.webp']]
[[Begin moving your hips]]
<<nobr>>
<<set $playerlostvirginity = true>>
<<notify 5s>>Achievement unlocked: It still counts!<</notify>>
<</nobr>>Reaching your limit you grab Charlotte and both of you fall sideways, the momentum pushing your balls deep into her ass. Your eyes roll back as you start cumming uncontrollably inside her, Shot after shot after shot with no end in sight.
"Hhnnnnnngh!"
<span style='color:crimson;'>"Ohhhh wow... I can feel it pumping out..."</span>
When your ejaculation finally subsides you carefully pull out, her asshole twitching and spasming as it tries to close again. A little bit of your cum dribbles out, but the vast majority of it is lodged firmly deep inside her bowels.
<span style='color:crimson;'>"Shit... I think you're ready for the real deal."</span>
[img[$imgDir + 'charlotte/training/charlotteanalcreampie.webp']]
[[Finish training->Home]]
<<nobr>>
<<set $player.stamina = $player.stamina + 50>>
<<if $player.stamina is 300 and $staminalevel3popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 3! <</notify>>
<<set $staminalevel3popup = true>>
<<timed 6s>>
<<notify 5s>>You've reached the max Stamina for this version <</notify>>
<</timed>>
<</if>>
<<set $player.energy = $player.energy - 20>>
<<progressTime>>
<</nobr>>By rocking back and forth you get more and more of your length inside her, and her moans simulateously get louder and louder. Soon your balls are slapping against her cheeks as your entire length slides in and out of her. You're still trying to wrap your head around the fact that you're having actual sex with a woman, and a gorgeous one at that.
<span style='color:crimson;'>"Mmmmh... Nnnngh... Fuck!"</span>
[img[$imgDir + 'charlotte/training/charlotteanalfucking1.webp']]
You're getting really into it when Charlotte suddenly gets up and throws you onto the couch. She squats over your still throbbing dick and sits down, taking full control of the situation. You were already feeling it before, and with her setting the pace you don't know how long you'll last.
"Miss Charlotte, I don't think I can-"
<span style='color:crimson;'>"Shut up and let me enjoy this!"</span>
You clench your fists and try to hold on as she has her way with your cock, bouncing up and down to maximize her pleasure. Despite your best efforts you feel your orgasm rapidly approaching.
[img[$imgDir + 'charlotte/training/charlotteanalfucking2.webp']]
[["Breed" her]]<span style='color:pink;'>"It's really quite simple. You'll have to prove your skills out in the field, with a successful conception."</span>
<i>Holy shit. Seriously?</i>
While you're processing your thoughts she looks up some available candidates on her computer. From what you can see out of the corner of your eye it's quite a long list, and she scrolls through it until she finds a suitable match.
<span style='color:pink;'>"Ah, here we go. Anastasia, 25 years old, has been on the waiting list for 4 years. Her DNA is a great match with yours."</span>
Lucie takes a pen and writes down her address on a piece of paper before handing it to you. As fortune has it it's not too far away, so you should be able to reach it on foot.
[img[$imgDir + 'outside/dop/breedingtest/handoverpaper.webp']]
<span style='color:pink;'>"I'll let her know you're coming. Come back here once you've done the deed. And don't take too long!"</span>
<i>Maybe I should bring some flowers?</i>
[[Take the paper->Department of Procreation]]
<<nobr>>
<<set $breedingtestavailable = true>>
<</nobr>>You walk around the park collecting some pretty flowers. It's not exactly an expensive bouquet, but it's better than nothing.
<i>Sorry nature. It's for the greater good.</i>
[img[$imgDir + 'outside/park/events/pickflowers.webp']]
[[Back->Park]]
<<nobr>>
<<set $flowerspicked = true>>
<</nobr>>Squatting down over your head she sits down with all her weight. The warm ass is completely covering your face as your nose is pressed inside her buttcrack, giving you a good whiff of her womanly scent. You never even dared dream of something like this back home.
<span style='color:crimson;'>"Here you go, can't get much closer than this!"</span>
<i>Oh my god this feels amazing</i>
[img[$imgDir + 'charlotte/femdom/charlottefacesitting2.webp']]
She makes a game of seeing how long you can last without air, counting down the seconds as you start feeling lightheaded. You start struggling with your legs trying to get her to move, but the chain on your balls prevents you from putting too much force into it.
<span style='color:crimson;'>"Oh, come now. Surely you can hold your breath longer than that? Don't you like my cheeks crushing you?"</span>
This goes on for some time, with Charlotte occassionally giving you just enough time to take one or two breaths before she slams back down. Despite the feeling of suffocation your cock strains against the collar, obviously aroused.
[img[$imgDir + 'charlotte/femdom/charlottefacesitting3.webp']]
<span style='color:crimson;'>"Well, I think that's enough of a reward. Hope you liked it, slave!"</span>
She dismounts you and leaves you on the floor while you try to catch your breath.
[[On with the day->Home]]
<<nobr>>
<<progressTime>>
<</nobr>>As you head inside it crosses your mind that you now have enough crowns to finish repaying Charlotte. You quickly find her and start handing her coins, meticulously counting them one by one. She just sits there with an amused expression as you excitedly approach the last one.
"...And that's 500! All of my debt repaid."
<span style='color:crimson;'>"Well, color me impressed. I didn't think you could do it so fast."</span>
"So, am I free to go now?"
<span style='color:crimson;'>"Of course. I never go back on a promise."</span>
[img[$imgDir + 'charlotte/home/general/charlottecouch2.webp']]
<span style='color:crimson;'>"Although... You don't have to go. I've gotten kind of attached. If you stay I'll let you live here, we could work together as partners. What do you think? You'll still be worshipping me, of course. We would need to keep up appearances."</span>
<i>What do I think? That's a big decision to make</i>
[[Choose to stay here->stay]]
[[Find your way back home]]The next morning you say your goodbyes to Charlotte and head to the station to take the train. The entire ride is spent looking out the window, memorizing the views of a country you spent little time in but somehow found some fondness for.
<i>Goodbye, strange place</i>
[img[$imgDir + 'endings/returnhome/traintravel.jpeg']]
Once you arrive at the border you are submitted to several checks to affirm you are not an escaped slave, but you pass everything without problems. From here on there is no more train and you'll have to hike quite a while to find a male village for further transportation.
[[A lengthy journey awaits]]
<<nobr>>
<<set $day = $day + 1>>
<<set $gameTime = 0>>
<<set $player.energy = $player.maxenergy>>
<</nobr>>Weeks later, after several hitchhikes, bus rides, and long walks you make it back to your birth village. People there were very surprised to see you, and your family was overjoyed. A few days later the government came and asked you several hours of questions about your experiences, and you answered them to the best of your ability.
Once recovered they sent you back to the military, and to your surprise some of your old squadmates had also survived the ambush by the women. The reunion with them was rather emotional, one of the few times you felt glad to be back.
<span style='color:lightblue;'>"Holy shit, we thought you were dead man! Even had a service for you and everything."</span>
[img[$imgDir + 'endings/returnhome/militaryhug.jpeg']]
[[You lived happily ever after]]
<<nobr>>
<<set $day = $day + 21>>
<</nobr>>After a while you settled back into your old ways and finished your military duty in some dusty base far from the border. When your service was up they awarded you a medal for your exceptional will to survive in the face of adversity, as you were one of the few who ever came back. Soon after that you found a nice job and a house, and life went on.
Your wild tales of the women became the stuff of legend, told around campfires and locker rooms. While recounting your adventures you often wondered how Charlotte was doing, but you never went back and never saw another woman again.
[img[$imgDir + 'endings/returnhome/campfirestories.jpeg']]
As the years passed fewer and fewer of them believed you, until your stories were seen as the ramblings of a senile old man. But you always knew, in your heart, that there was a whole other world out there.
<h1>The End</h1>
<<nobr>>
<<set $day = 1000>>
<</nobr>>It may have been up the butt, but you're officially no longer a virgin. Never thought you'd see the day.
[img[$imgDir + 'achievements/itstillcounts.webp']]
<<back>>After all those creampies Anastasia pretty much has to be pregnant with your child. The first of many offspring?
[img[$imgDir + 'achievements/yourethedaddy.webp']]
<<back>>After endless hours of dedicated feet worship you've become very skilled. And you even enjoyed yourself along the way.
[img[$imgDir + 'achievements/expertfootboy.webp']]
<<back>>You helped a woman in need, even though you didn't have to. Such extraordinary altruism.
[img[$imgDir + 'achievements/goodsamaritan.webp']]
<<back>>The following game contains very adult themes, including Femdom, BDSM and Impregnation. Before continuing please confirm you are an adult, and agree to viewing pornographic material in both text and image form.
Game Version: 0.3
Player name
<<textbox "$playername" "Simon">>
[[I am 18+, Start the game->Introduction]]You spend some time with Charlotte discussing the upcoming games, including your preparation. She has some contacts that can get her an invitation, the rest is mostly up to you. You'll probably also need to shop for some outfits and accessories at some point.
<span style='color:crimson;'>"So, how's the training coming along?"</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed6.jpeg']]
<<nobr>>
<<set _numberOfSkillsAtLevel3 = setup.getNumberOfSkillsAtLevel3()>>
<<if _numberOfSkillsAtLevel3 < 3>>
<i>You need at least 3 skills at level 3 or above, current number
: _numberOfSkillsAtLevel3</i>
<br>
<br>
[[Still working on it->Home]]
<<else>>
[[I think I'm ready]]
<br>
[[I need some more training->Home]]
<</if>>
<</nobr>>
<<nobr>>
<<if $player.fitness > 270 and $wrestlingmatchwon is not true>>
<<goto wrestlingvictory>>
<<else>>
<<switch random(0,2)>>
<<case 0>>
Your opponent today doesn't have much wrestling skills, but she more than makes up for it in the sexual department. From the get-go she's relentlessly attacking your cock, stroking and sucking it every chance she gets.
<br>
<br>
Despite all of your attempts to pin her down, she keeps slipping away using her flexibility and limberness. As you get closer to ejaculation your resistance weakens, until she finally makes you shoot everything out straight into her mouth.
<br>
<br>
<i>Fuuuuuuck!</i>
<br>
<br>
<span style="color:lightgreen;">"I love the taste of loser cum. So much sweeter."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/wrestling/random1.webp']]
<br>
<br>
As her reward she makes you lie down on the floor and starts riding your face, smearing her juices all over you. After some clumsy attempts to lick her pussy she takes over, humping your face until she has a quivering orgasm.
<br>
<br>
<span style="color:lightgreen;">"Just stick out your tongue and let me do the work. You don't know what to do anyway!"</span>
<br>
<br>
[img[$imgDir + 'outside/gym/wrestling/random2.webp']]
<<case 1>>
Your match against a cute redhead is going surprisingly well, until she starts playing dirty. While obstructing the referee's view with her body she rams her foot into your exposed balls, almost crushing one of them.
<br>
<br>
<i>Shit! Is that even allowed?</i>
<br>
<br>
While you're still recovering from the pain in your crotch she goes in for the kill. Under the threat of hitting you again she wraps her legs around your torso and her arms around your neck. Without mercy she keeps trying to choke you out, until you finally have to tap out.
<br>
<br>
[img[$imgDir + 'outside/gym/wrestling/random3.webp']]
<br>
<br>
The referee has barely finished announcing her the winner when she grabs you by the hair and pulls you down to the ground. You spend the next 15 minutes on your knees, forced to worship every inch of her feet and toes while she verbally humiliates you.
<br>
<br>
<span style="color:lightgreen;">"Come here loser, kiss my feet."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/wrestling/random4.webp']]
<<case 2>>
Today's match is hard-fought, with your opponent and you being evenly matched. She keeps trying to switch it up between wrestling and sexual techniques, but you manage to resist cumming and avoid getting pinned down. As time goes on your muscles start giving out, but so do hers.
<br>
<br>
In the end, either of you manages to overpower the other and keep struggling until the time runs out. The ref takes some time to review the footage, and calls out the woman as the winner based on the fact that she spent more time on top.
<br>
<br>
<i>That's some bullshit!</i>
<br>
<br>
[img[$imgDir + 'outside/gym/wrestling/random5.webp']]
<br>
<br>
After the match is over she has you clean her sweaty butt with your tongue, occasionally shoving your entire face into her crack so you can get a good few sniffs of her smell. She doesn't let you go until your jaw is sore and her puckered hole is fresh as a daisy.
<br>
<br>
<span style='color:lightgreen;'>"Get in there you. Weaklings are only good for licking ass."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/wrestling/random6.webp']]
<</switch>>
<</if>>
<br>
<br>
<<if $player.fitness < 300>>
<i>Your fitness has improved!</i>
<<updateFitness 15>>
<</if>>
[[Finish->Gym]]
<<if $player.worship < 300>>
<<updateWorship 10>>
<</if>>
<<set $wrestled = true>>
<<progressTime>>
<<set $player.energy = $player.energy - 50>>
<</nobr>>[img[$imgDir + 'outside/gym/wrestling/poster.jpeg']]
The ad is for a local wrestling club, who are looking for new members judging by the "MALE WRESTLERS WANTED" written just below the poster. You remember the gym having a wrestling ring, so you could go check it out.
[[Give it a try]]
<<back>>
<<nobr>>
<<set $gymwrestlingavailable = true>>
<</nobr>>
At the ring is a tall, imposing woman who you believe to be one of the club managers. There are also several girls around doing stretches or practicing with a partner. Most of them are barely wearing any clothes. After plucking up the courage you head over and talk to her.
<span style='color:lightgreen;'>"What's this? A new challenger approaches?"</span>
"Hi. How does this work exactly?"
<span style='color:lightgreen;'>"It's pretty simple really. Fights are between a man and a woman, first to tap out or cum loses. The winner gets to fuck the loser, but no violence or abuse."</span>
<i>This sounds like a win-win</i>
<span style='color:lightgreen;'>"I doubt any of my girls are going to lose to a wimp like you though. Or want to fuck you for that matter."</span>
"You don't know that!"
[img[$imgDir + 'outside/gym/wrestling/referee.jpeg']]
<span style='color:lightgreen;'>"Back it up then. If you want you can have your introduction fight right now, I have a girl ready to go."</span>
[[Your first opponent awaits]]
<<link "On second thought this is not for me" "Gym">>
<<set $gymwrestlingavailable = false>>
<</link>>
The manager motions to a nearby girl, who quickly comes over. It's a dark-haired beauty who's nearly as tall as you, and she gives you a quick glance before sitting down and focusing her attention on her boss.
<span style='color:lightgreen;'>"Onyx. You're up."</span>
<span style='color:#be95c4'>"This is my opponent? you couldn't find anyone bigger?"</span>
[img[$imgDir + 'outside/gym/wrestling/onyx1.webp']]
Her confidence doesn't do much to calm you down, as you realize you don't even know any wrestling techniques. You had hoped to overpower her physically, but she looks a lot stronger than you imagined. And her outfit is very distracting.
<span style='color:#be95c4'>"Don't worry, it will be over before you know it."</span>
[[The match begins]]<<widget "updateFitness">>
<<nobr>>
<<set $player.fitness = $player.fitness + _args[0]>>
<<if $player.fitness > 300>>
<<set $player.fitness = 300>>
<</if>>
<<if $player.fitness > 49 and $fitnesslevel1popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 1!<</notify>>
<<set $player.maxenergy = 120>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 120<</notify>>
<</timed>>
<<set $fitnesslevel1popup = true>>
<</if>>
<<if $player.fitness > 149 and $fitnesslevel2popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 2!<</notify>>
<<set $player.maxenergy = 150>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 150<</notify>>
<</timed>>
<<set $fitnesslevel2popup = true>>
<</if>>
<<if $player.fitness > 299 and $fitnesslevel3popup is not true>>
<<notify 5s>>Your Fitness skill has improved to level 3!<</notify>>
<<set $player.maxenergy = 180>>
<<timed 6s>>
<<notify 5s>>Max energy increased to 180<</notify>>
<</timed>>
<<timed 12s>>
<<notify 5s>>You've reached the max Fitness level for this version<</notify>>
<</timed>>
<<set $fitnesslevel3popup = true>>
<</if>>
<</nobr>>
<</widget>>
<<widget "updateStamina">>
<<nobr>>
<<set $player.stamina = $player.stamina + _args[0]>>
<<if $player.stamina > 300>>
<<set $player.stamina = 300>>
<</if>>
<<if $player.stamina > 49 and $staminalevel1popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 1! <</notify>>
<<set $staminalevel1popup = true>>
<</if>>
<<if $player.stamina > 149 and $staminalevel2popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 2! <</notify>>
<<set $staminalevel2popup = true>>
<</if>>
<<if $player.stamina > 299 and $staminalevel3popup is not true>>
<<notify 5s>>Your Sexual Stamina has improved to level 3! <</notify>>
<<set staminalevel3popup = true>>
<</if>>
<</nobr>>
<</widget>>
<<widget "updateWorship">>
<<nobr>>
<<set $player.worship = $player.worship + _args[0]>>
<<if $player.worship > 300>>
<<set $player.worship = 300>>
<</if>>
<<if $player.worship > 49 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship > 149 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<<if $player.worship > 299 and $worshiplevel3popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 3! <</notify>>
<<timed 6s>>
<<notify 5s>>You've reached the max Worship level for this version<</notify>>
<</timed>>
<<set $worshiplevel3popup = true>>
<</if>>
<</nobr>>
<</widget>>
<<widget "updatePainTolerance">>
<<nobr>>
<<set $player.paintolerance = $player.paintolerance + _args[0]>>
<<if $player.paintolerance > 300>>
<<set $player.paintolerance = 300>>
<</if>>
<<if $player.paintolerance >49 and $paintolerancelevel1popup is not true>>
<<notify 5s>>Your Pain Tolerance has improved to level 1!<</notify>>
<<set $paintolerancelevel1popup = true>>
<</if>>
<<if $player.paintolerance > 149 and $paintolerancelevel2popup is not true>>
<<notify 5s>>Your Pain Tolerance has improved to level 2!<</notify>>
<<timed 6s>>
<</timed>>
<<set $paintolerancelevel2popup = true>>
<</if>>
<<if $player.paintolerance > 299 and $paintolerancelevel3popup is not true>>
<<notify 5s>>Your Pain Tolerance has improved to level 3!<</notify>>
<<timed 6s>>
<<notify 5s>>You've reached the max Pain Tolerance for this version<</notify>>
<</timed>>
<<timed 12s>>
<<notify 5s>>Achievement unlocked: Human furniture<</notify>>
<</timed>>
<<set $paintolerancelevel3popup = true>>
<</if>>
<</nobr>>
<</widget>>
<<widget "updateFutanari">>
<<nobr>>
<<set $player.futanari = $player.futanari + _args[0]>>
<<if $player.futanari > 300>>
<<set $player.futanari = 300>>
<</if>>
<<if $player.futanari > 49 and $futanarilevel1popup is not true>>
<<notify 5s>>Your Futanari skill has improved to level 1!<</notify>>
<<set $futanarilevel1popup = true>>
<</if>>
<<if $player.futanari > 149 and $futanarilevel2popup is not true>>
<<notify 5s>>Your Futanari skill has improved to level 2!<</notify>>
<<set $futanarilevel2popup = true>>
<</if>>
<<if $player.futanari > 299 and $futanarilevel3popup is not true>>
<<notify 5s>>Your Futanari skill has improved to level 3!<</notify>>
<<timed 6s>>
<<notify 5s>>You've reached the max Futanari skill for this version<</notify>>
<</timed>>
<<set $futanarilevel3popup = true>>
<</if>>
<</nobr>>
<</widget>>
<<widget "updateFutanariAddiction">>
<<nobr>>
<<if $futanariaddictioncured is not true>>
<<set $player.futanariaddiction = $player.futanariaddiction + _args[0]>>
<<if $player.futanariaddiction > 100>>
<<set $player.futanariaddiction = 100>>
<</if>>
<<if $player.futanariaddiction is 100>>
<<goto futanariaddictiongameover>>
<</if>>
<</if>>
<</nobr>>
<</widget>>
<<widget "updatePersonality">>
<<nobr>>
<<if ndef $player.personality>>
<<set $player.personality = 50>>
<</if>>
<<set $player.personality = $player.personality + _args[0]>>
<<if $player.personality > 100>>
<<set $player.personality = 100>>
<</if>>
<<if $player.personality < 0>>
<<set $player.personality = 0>>
<</if>>
<</nobr>>
<</widget>>
After stripping down to your socks and boxers the two of you face off in the ring, and a referee gives you the start signal. Onyx is slow in the initial charge, which allows you to quickly take advantage and throw her onto the mat. She doesn't seem that worried though, and even giggles at your efforts.
<span style='color:#be95c4'>"Ooooh! someone's giving it their best."</span>
[img[$imgDir + 'outside/gym/wrestling/onyx2.webp']]
Your success is short-lived however, as before you realize what's happened it's your turn to be on your back. She's using her full weight to pin you down as your legs struggle with hers, and you're also preoccupied by her boobs which she's pushing against your face every chance she gets.
<span style='color:#be95c4'>"Come on, is that all you've got?"</span>
Her large tits squished against you are cutting off your air supply, and you were already short on oxygen to begin with. Your head starts spinning as your lungs desperately scream for a refill. If you're going to do something, now is the time.
[img[$imgDir + 'outside/gym/wrestling/onyx3.webp']]
[[Try to turn the tables]]With all your might you push your feet into the ground, and manage to lift both her and yourself up. You quickly turn around onto your knees and take a few deep breaths. Your actions seemed to catch her off-guard, but her reflexes and agility allowed her to stay on top.
<span style='color:#be95c4'>"Nice try boy, but you're forgetting something."</span>
With one smooth movement she pulls down your underwear, grabs your cock and immediately starts stroking it. You groan as you realize that you've given her easy access to your biggest weakness.
[img[$imgDir + 'outside/gym/wrestling/onyx4.webp']]
You have to try switching it up again, but this time she's ready for it. As you fall onto your back she clamps her legs around your neck to hold you still. Without missing a beat she takes your now rock-hard cock into her mouth and begins sucking, causing all the strength to leave your legs.
Her powerful thighs are still keeping your head in place as she picks up the speed of the blowjob. If this continues any longer you will lose by orgasming. You try using your arms to pull her ass off you, but she's barely moving an inch.
<<nobr>>
<<if $player.stamina < 250>>
<br>
<i>Your stamina has improved!</i>
<<updateStamina 10>>
<br>
<</if>>
<</nobr>>
[img[$imgDir + 'outside/gym/wrestling/onyx5.webp']]
[[Accept your fate]]
[[Struggle]]You realize there is nothing more to be done, and stop your futile struggling. Onyx uses her hands and mouth to continue stimulating you, until you cum all over her boobs a little while later. With that the referee blows her whistle and announces the end of the match.
<span style='color:#be95c4'>"Aww, looks like someone couldn't hold it in after all."</span>
[img[$imgDir + 'outside/gym/wrestling/onyxcum.webp']]
[[You lost]]After untangling yourselves the referee makes you stand in the center of the ring, and officially announces Onyx as the winner. Even though you didn't manage to beat her you are still proud of the fight you put up, and you got a good workout in at least. You even consider coming back for round 2.
<span style='color:#be95c4'>"Whoo! Undefeated, baby."</span>
[img[$imgDir + 'outside/gym/wrestling/onyxwins.webp']]
Now that her victory is official she comes to collect her prize. You wonder what it is she will make you do, but to your surprise she just grabs your head and pulls you in close for a kiss. Her lips taste like strawberry, and you moan in surprise while your penis starts to harden once again.
<span style='color:#be95c4'>"It's your first match, so I'll let you off the hook this time. But don't think the others will be so forgiving."</span>
[img[$imgDir + 'outside/gym/wrestling/onyxkiss.webp']]
After that she grabs her scattered clothes and walks off, and the ref tells you you're free to go.
<<nobr>>
<<if $player.fitness < 300>>
<i>Your fitness has improved!</i>
<</if>>
<</nobr>>
[[Get dressed->Gym]]
<<nobr>>
<<if $player.fitness < 300>>
<<updateFitness 15>>
<</if>>
<<if $player.energy > 49>>
<<set $player.energy = $player.energy - 50>>
<<else>>
<<set $player.energy = 0>>
<</if>>
<<set $wrestled = true>>
<<progressTime>>
<</nobr>>One last herculean effort allows you to throw her off one more time, but your wild movements are no match for her practiced techniques. She swiftly pins you again with her legs and forces you to tap out. With that the referee blows her whistle and announces the end of the match.
<span style='color:#be95c4'>"You got lucky, next time I'll make you spurt your little cummies."</span>
[img[$imgDir + 'outside/gym/wrestling/onyxpinned.webp']]
[[You lost]]
<<nobr>>
<<set $struggledagainstonyx = true>>
<</nobr>>The woman you're fighting today has you on the ropes. Even though you're on top she has your cock firmly vacuumed in her mouth, trying to suck her way to victory. All of your attempts to pull out have failed, both her hands and the insane pleasure keeping you in place.
In a desperate attempt to turn the tide you shove your face between her legs and start lapping wildly. To your surprise she lets out a load moan into your cock, and her grip weakens considerably.
<span style='color:lightgreen;'>"MMMMMPFH!"</span>
<i>That was a strong reaction...</i>
[img[$imgDir + 'outside/gym/wrestling/victory1.webp']]
[[Exploit her weakness]]The rest of the match you relentlessly hunt down her increasingly wet snatch, licking and sucking on it every chance you get. What you lack in experience you more than make up for in enthusiasm. Her movements have become erratic as she forgets everything she learned, and desperately tries to keep you away from her crotch.
<span style='color:lightgreen;'>"Ohh Goddess, STOP! Nnnnggh... Stop licking my pussyyyyyyy!"</span>
[img[$imgDir + 'outside/gym/wrestling/victory2.webp']]
In a last ditch effort she grabs your cock and tries to make you cum before her, but it's already too late. Her muscles tense and she finally orgasms on your tongue, screaming out her lungs. The referee doesn't miss it, and you hear the sweet sound of the whistle announcing the end of the match.
<span style='color:lightgreen;'>"Noooooooo!"</span>
<i>"Yeeeeeees!"</i>
[img[$imgDir + 'outside/gym/wrestling/victory3.webp']]
[[You actually won!]]In disbelief you get up and watch as the judge grabs your arm and raises it in victory. The other contestant's legs are still wobbly, juices running down her legs from the orgasm that sealed her fate. Several other girls have taken out their phones to take pictures of this rare occasion.
<span style='color:lightgreen;'>"I can't believe I lost..."</span>
[img[$imgDir + 'outside/gym/wrestling/victory4.webp']]
You'd nearly forgotten that you get to have some fun with her, and after some thinking instruct her to get down and start sucking you off. As payback for your earlier defeats you really hammer into her throat, tears welling in her eyes as her spit flies everywhere.
She doesn't even seem to mind, and you notice she's fingering her pussy to another orgasm while she gags on your shaft.
<span style='color:lightgreen;'>"GLK GLK GLK GLK"</span>
[img[$imgDir + 'outside/gym/wrestling/victory5.webp']]
A few minutes later you slam your hips forward and pump her stomach full of seed, while her eyes roll back in her head. Now that you're done with her you push her off and grab your pants, walking off as she lies panting on the floor.
<<nobr>>
<<if $player.fitness < 300>>
<i>Your fitness has improved!</i>
<</if>>
<</nobr>>
[[Continue->Gym]]
<<nobr>>
<<set $wrestlingmatchwon = true>>
<<notify 5s>>Achievement unlocked: To the victor go the spoils<</notify>>
<<if $player.stamina < 250>>
<<updateStamina 10>>
<</if>>
<</nobr>>Through hard work you managed to achieve victory in the ring. As a reward you claimed the loser's throat, finally getting to turn the tables on one of these cocky bitches. Maybe next time you'll go for a different hole.
[img[$imgDir + 'achievements/spoils.webp']]
<<back>>One of the house mistresses is strapping on a penis-shaped toy, right where it would normally be if she was a man. Curious to know what she uses it for you approach her, and she gives you a naughty smile.
"Excuse me, what is that thing you have on?"
[img[$imgDir + 'outside/houseofpain/strapon/strapon.webp']]
<span style='color:#bc4749;'>"This little thing? It's a strapon. We use it fuck cute little boys like you in the ass."</span>
"What!? Why?"
<span style='color:#bc4749;'>"Because it's fun of course! Would you like to give it a ride? I promise it feels amazing."</span>
[[I'm feeling adventurous]]
<<link "Keep that thing away from me!" "House of Pain">>
<<set $peggingdisabled = true>>
<</link>><span style='color:#bc4749;'>"Shame I already have an earlier appointment, I'd have loved to be your first. But I'll set something up for you."</span>
The woman takes you to one of her colleagues and whispers something in her ear, then quickly motions you to come closer. She takes you into one of the rooms and instructs you to strip and wait naked on the bed.
A little later the second woman walks in and smiles as she sees you already in position on all fours, another strapon resting on her hips. Fortunately it seems to be a bit smaller than the first other you saw.
<span style='color:#f4a261;'>"Don't worry darling, I'll take it easy for your first time."</span>
After applying a generous amount of lube she positions herself behind you and gently pushes the plastic toy against your asshole. Slowly but surely it starts to give way, until the head suddenly pops in about an inch or two deep.
<i>Oh shit!</i>
[img[$imgDir + 'outside/houseofpain/strapon/straponintro1.webp']]
<span style='color:#f4a261;'>"There we go! Just relax, you're doing great."</span>
She wastes no time moving her hips, slowly pushing in deeper as you get used to the sensation. You're now properly getting fucked, even receiving a few spanks on your butt cheeks as the mistress gets into the swing of things.
A particularly deep thrust makes your knees buckle out from under you, but she just falls down along with you and continues humping into you. The toy, now rubbing against her clit, elicits several moans from her.
<span style='color:#f4a261;'>"Mmmmmh!"</span>
[img[$imgDir + 'outside/houseofpain/strapon/straponintro2.webp']]
When she gets tired she flips around, having you ride her. The toy is now hitting a spot in your ass that feels strangely pleasant. With the pain mostly fading away you focus on this feeling, until suddenly it overwhelms you. Without either one of you touching your penis you spurt your seed all over her stomach.
<span style='color:#f4a261;'>"Good boy! Cumming during your first time, that's what I like to see."</span>
<i>Oh wow</i>
[img[$imgDir + 'outside/houseofpain/strapon/straponintro3.webp']]
While you lay on the bed processing the recent events the mistress cleans up and blows you a kiss before leaving.
<span style='color:#f4a261;'>"I'll let the others know to send some pegging customers your way from now on."</span>
<<nobr>>
<<if $player.paintolerance < 150>>
<i>Your pain tolerance has improved!</i>
<</if>>
<</nobr>>
[[Exit the room->House of Pain]]
<<nobr>>
<<set $peggingenabled = true>>
<<if $player.paintolerance < 150>>
<<updatePainTolerance 10>>
<</if>>
<<if $player.energy > 29>>
<<set $player.energy = $player.energy - 30>>
<</if>>
<<progressTime>>
<<if $lostanalvirginity is not true>>
<<set $lostanalvirginitytostrapon = true>>
<<set $lostanalvirginity = true>>
<</if>>
<<notify 5s>>Achievement unlocked: Just the tip<</notify>>
<</nobr>>You've been pegged by a woman, and even had your first hands-free orgasm. An interesting experience to say the least.
[img[$imgDir + 'achievements/justthetip.webp']]
<<back>><<nobr>>
<<switch random(0,2)>>
<<case 0>>
A young hiker says she has some work for you, but it needs to be at a specific location. A job is a job, so you reluctantly follow her up a nearby hill. When you get to to the top she pulls down her shorts and tells you to get started. Thanks to the hike she's now nice and sweaty.
<br>
<br>
<span style="color:#BEF0CB;">"Don't you love eating ass with a view?"</span>
<br>
<br>
<i>All I'm gonna be seeing is your butt, lady</i>
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkass1.webp']]
<<case 1>>
The customer is a feisty Latina milf, who is very enthusiastic. She keeps throwing her ass back as you're trying to lick it, pressing your nose straight up against her butthole. It must feel really good, because she grabs you by the head and rubs herself to a wild climax on your face.
<br>
<br>
<span style="color:#BEF0CB;">"Ay, qué rico! What a talented ass muncher."</span>
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkass2.webp']]
<<case 2>>
You get hired by a fit woman with the thickest butt you've ever seen. It literally feels like you're drowning in her cheeks as you push your face between them, trying to get your tongue onto her tight little hole. She mostly seems amused by your efforts, but appreciates the hustle nonetheless.
<br>
<br>
<span style="color:#BEF0CB;">"Can't handle all this ass huh? I've yet to find a man who can."</span>
<br>
<br>
Not one to back away from a challenge you grab her by the hips and forcefully pull yourself deeper into her crack, finally shoving your tongue up ass. She gasps in surprise, then quickly starts shaking her hips begging for more.
<br>
<br>
[img[$imgDir + 'outside/park/worship/parkass3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.worship < 300>>
<<set _earnings = random(15,20)>>
<<else>>
<<set _earnings = random(20,25)>>
<</if>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping ass</i>
<</nobr>>
[[Finish up->Park]]
<<nobr>>
<<progressTime>>
<<set $player.energy = $player.energy - 30>>
<<if $player.worship < 300>>
<<updateWorship 10>>
<</if>>
<</nobr>>You look for Charlotte to discuss the idea, and you find her napping on the couch. You hesitantly prod her awake and ask her what she thinks about getting you a better bed. She doesn't seem very happy about being woken this like.
[img[$imgDir + 'charlotte/home/general/charlottecouchsleeping.jpeg']]
<span style='color:crimson;'>"Ugh. Do whatever you want. But you'll have to pay for the costs yourself."</span>
<<nobr>>
<<if $player.money > 249>>
[[Do it (250 crowns)]]
<<else>>
<a disabled><strike>Do it (250 crowns)</strike></a>
<</if>>
<br>
<<back>>
<</nobr>>With a little help from a moving company you manage to quickly get some upgrades installed in your room. A simple and sleek design, but at least you have a proper bed now. You even got yourself a big plant, though you're not sure how long you'll be able to keep it alive.
[img[$imgDir + 'charlotte/home/playerroom/upgradedroom.jpeg']]
<i>Now I can bring all the girls home! Right?</i>
[[Continue->Bedroom]]
<<nobr>>
<<progressTime>>
<<set $playerroomupgraded = true>>
<<set $player.money = $player.money - 250>>
<<set $player.maxenergy = $player.maxenergy + 20>>
<</nobr>><<nobr>>
<<set _end = 2>>
<<switch random(0,_end)>>
<<case 0>>
A gorgeous, fit woman is doing some ab exercises looking bored when she notices you waiting and beckons for you to come closer. She pulls down her pants and instructs you to eat her ass between sets to make the wait go by faster.
<br>
<br>
<span style="color:#BEF0CB;">"I should really get my own slave, so they can follow me around everywhere and entertain me."</span>
<br>
<br>
You do your best to keep her entertained, and her appreciative moans must mean you're rather successful too.
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymass1.webp']]
<<case 1>>
The gym's spinning class is just ending, and you wait outside the door to see if you can get any customers. Your endeavour is successful, because one of the women instructs you to get against the wall so she can wipe off her sweaty ass on your face. Some of her friends show interest in giving it a try as well.
<br>
<br>
<span style="color:#BEF0CB;">"I'm sure he can handle cleaning us all, can't you boy?"</span>
<br>
<br>
They only take about a minute each, but by the time you finish you have over a dozen different women's butt sweat drying on your cheeks, nose, and mouth. You should probably hit the showers before doing anything else.
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymass2.webp']]
<<case 2>>
You are approached by a woman who says she has an easy job for you. All you have to do is lay there while she does squats on your face, and sits down for a rest whenever she gets tired. Seems like a quick way to get some cash, so you agree and lie down on the floor.
<br>
<br>
What you didn't count on is her stamina, she's easily done over 100 squats now and shows no signs of slowing down. Your nose is starting to feel sore from the repeated slamming of her butt against it, and you can't get the smell out of your nostrils anymore.
<br>
<br>
<span style="color:#BEF0CB;">"What do you think, enough for today? Nah, let's do 50 more."</span>
<br>
<br>
[img[$imgDir + 'outside/gym/worship/gymass3.webp']]
<</switch>>
<br>
<br>
<<if $player.worship < 300>>
<<set _earnings = random(15,20)>>
<<else>>
<<set _earnings = random(20,25)>>
<</if>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping ass</i>
<br>
<br>
<<if $gameTime is 5>>
[[Finish->Outside]]
<<else>>
[[Finish->Gym]]
<</if>>
<</nobr>>
<<nobr>>
<<progressTime>>
<<if $player.worship < 300>>
<<updateWorship 10>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<</nobr>>As usual Nicole takes you apart, and has you wait on your knees as she slowly takes off her clothes. When she's ready she positions herself on all fours on the bed. Eager to get started you go straight for it, but she stops you in your tracks with her legs and points at her toes.
<span style='color:lightblue;'>"Not so fast. Start with the feet."</span>
Quick to correct your mistake you start licking her soles, the ass you desire so much just inches away but still out of reach. She really tests your patience by not letting you do anything else, but you know better than to complain about that.
<span style='color:lightblue;'>"Good. Now beg me for the privilege of worshipping my ass."</span>
[img[$imgDir + 'outside/houseofworship/nicole/nicoleassworshipfeet.webp']]
[[Beg]]"Please mistress, let me give your ass the treatment it deserves."
<span style='color:lightblue;'>"Very well. I will give you one chance. If you fail to make me reach orgasm, I will never let you touch me again."</span>
<i>No pressure then</i>
Without hesitation you plunge into her voluptuous behind, spreading her cheeks and shoving your tongue straight into her fartbox. Her asshole is the best-tasting one you've ever encountered, and you can't help but moan into it as you lick. At least she seems to like that, and her moans join yours.
[img[$imgDir + 'outside/houseofworship/nicole/nicoleassworship1.webp']]
[[Try to make her cum]]Using everything you've learned you pull out all the stops, focusing all of your efforts into pleasing this amazing woman. You go through every tongue technique and position you know, until you end up lying flat with Nicole squatting down on your face.
Her legs are starting to tremble under the pleasure, and you take your chance by licking as hard and fast as you can, ignoring any fatigue or pain in your jaw. Your efforts bear fruit a little while later when she has an earth-shattering orgasm, shaking all over the place and spraying pussy juice all over your stomach.
<span style='color:lightblue;'>"Ohhh dear Goddess YESSSSSS! Don't stop!"</span>
<i>Sweet victory</i>
[img[$imgDir + 'outside/houseofworship/nicole/nicoleassworship2.webp']]
[[She wants to reward you again]]After recovering from her orgasm she leans over and grabs your cock, which has been hard and throbbing the entire time. With her ass still firmly planted on top of you she begins stroking it, making it your turn to feel weak in the legs.
<span style='color:lightblue;'>"Go ahead and cum to the smell of my ass, $playername. I know you want to."</span>
Nobody needs to tell you that twice as you take deep sniffs of her erotic musk, and on the fifth one you feel your cock shooting out it's seed as a tribute to her divine bum.
[img[$imgDir + 'outside/houseofworship/nicole/nicoleassworship3.webp']]
<span style='color:lightblue;'>"Great job honey. One day soon you will be one of the rare men worthy of licking my pussy."</span>
[[The test is over, time to clean up->House of Worship]]
<<nobr>>
<<set $nicoleassworship = true>>
<<progressTime>>
<<notify 5s>>Achievement unlocked: Ass crack bandit<</notify>>
<</nobr>>Your skill at giving pleasure through the ass has become the talk of the town. Even the most stuck-up girls are more than willing to lower their pants, spread their cheeks, and let you give them anal orgasm after orgasm with your gifted tongue.
[img[$imgDir + 'achievements/asscrackbandit.webp']]
<<back>>While traversing some of the back alleys you stumble upon a seedy bar, filled with Futanari drinking and smoking. They holler at you to come inside, promising they will show you a good time.
<i>A good time for who I wonder</i>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/baroutside.jpeg']]
[[Head inside->Foxy's bar]]
[[Leave->Futanari District]]
<<nobr>>
<<set $foxysbardiscovered = true>>
<</nobr>>[img[$imgDir + 'outside/futanaridistrict/foxysbar/bar.jpeg']]
The inside of the bar is filled with smoke and reeks of alcohol, several Futa scattered around trying to drink themselves into a coma. The ones who are still lucid enough to notice you give you a naughty grin.
<<nobr>>
<<if $player.money > 4>>
[[Have a drink (5 crowns)]]
<<else>>
<a disabled><strike>Have a drink</strike> (no money)</a>
<</if>>
<br>
<<if $foxybusboyavailable is true>>
<<if $player.energy > 29>>
[[Work as a "busboy"]]
<<else>>
<a disabled><strike>Work as a "busboy"</strike> (no energy)</a>
<</if>>
<<else>>
[[Ask for work]]
<</if>>
<<if $player.futanari > 149 and $gotraisefromfoxy is not true>>
<br>
<br>
[[Ask for a raise]]
<</if>>
<</nobr>>
[[Leave->Futanari District]]
<<nobr>>
<<if $gameTime is 5>>
<<goto "Futanari District">>
<</if>>
<</nobr>><<nobr>>
<<if $foxydrinkshad > 4>>
<span style="color: #ffc857;">"I'm gonna cut you off here sugar. We don't want a repeat of last time."</span>
<br>
<br>
She gives you a little wink, but takes away the bottle.
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink3.webp']]
<<set $player.money = $player.money + 5>>
<<elseif $foxydrinkshad is 4>>
<span style="color: #ffc857;">"Aren't you a big boy. Most girls here can't hold their liquor for shit, even if they pretend otherwise."</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink3.webp']]
<<elseif $foxydrinkshad is 3>>
<span style="color: #ffc857;">"Yeah, let's keep this party going!"</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink3.webp']]
<<elseif $foxydrinkshad is 2>>
<span style="color: #ffc857;">"Three drinks huh. Celebrating something? Here, I'll have one with you."</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink2.webp']]
<<elseif $foxydrinkshad is 1>>
<span style="color: #ffc857;">"Coming right up!"</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink1.webp']]
<<else>>
<span style="color: #ffc857;">"Here you go, sugar."</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink1.webp']]
<</if>>
<</nobr>>
<<nobr>>
<<if $foxydrinkshad < 5>>
<<if $player.money > 4>>
[[Have another->Have a drink (5 crowns)]]
<<else>>
<a disabled><strike>Have another</strike> (no money)</a>
<</if>>
<br>
<</if>>
[[That's enough->Foxy's bar]]
<<set $player.money = $player.money - 5>>
<<if $foxydrinkshad > 4 and $foxydrunkrape is not true>>
<<goto foxydrunkrape>>
<<else>>
<<if ndef $foxydrinkshad>>
<<set $foxydrinkshad = 1>>
<<else>>
<<set $foxydrinkshad++>>
<</if>>
<</if>>
<</nobr>>Sensing an opportunity you approach the bartender and ask her if she has anything she needs doing. A place this busy always has something going on. You don't have much experience with alcohol, but you're a quick study.
[img[$imgDir + 'outside/futanaridistrict/foxysbar/bartender.webp']]
<span style="color: #ffc857;">"A job? Well, the girls in here are always looking for a boytoy to play with. If you help keep them happy I'm more than willing to throw a few tips your way. It's good for business. You can help clean the tables when it's slow."</span>
[[Better than nothing, I guess->Foxy's bar]]
<<nobr>>
<<set $foxybusboyavailable = true>>
<</nobr>><<nobr>>
<<set _max = 2>>
<<if $gotraisefromfoxy is true>>
<<set _max = 5>>
<</if>>
<<switch random(0,_max)>>
<<case 0>>
One of the Futanari is about to head home for the day, but before she goes she wants to give you a little farewell present. Happy to get some recognition around here you accept, before even knowing what she has in mind. Her gift, of course, is a fresh and steaming load of girlcum deposited straight into your mouth.
<br>
<br>
<span style="color: #ffc857;">"What's wrong, don't you like it?"</span>
<br>
<br>
<i>I should have known</i>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/work/busboy1.webp']]
<<case 1>>
The bar has a reservation for a group of friends celebrating a birthday, and they're happy to have you around as part of the entertainment. While giggling and catching up with gossip they pass you around the table, each of them eager to drain their balls with a cute boy.
<br>
<br>
<span style="color: #ffc857;">"Finish up already girl, you're hogging him!"</span>
<br>
<br>
Rolling her eyes the girl picks up the pace, pushing your head up and down until she mewls contently and pulls out, shooting her jizz all over your face. While it's still dripping down your chin she hands you to the next girl, who's already taken out her cock and started stroking it.
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/work/busboy2.webp']]
<<case 2>>
A regular customer has taken a real liking to you, making a habit of calling you over whenever you're not looking busy. This is already the third time she has you on your knees this shift, and you doubt it will be the last.
<br>
<br>
You consider complaining to the owner about her, but it likely wouldn't accomplish much as she drinks a lot and tips well. Guess you'll just have to suck it up and hope she gets bored of you eventually.
<br>
<br>
<span style="color: #ffc857;">"What are you daydreaming about? You have a job to do, mister!"</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/work/busboy3.webp']]
<<case 3>>
One of the girls is nice enough to jerk you off while she's fucking your ass. Her gentle humping is rubbing against your prostate, she's clearly trying to make you feel good as well. You're starting to think she may even have a crush on you. Or she just likes your holes, it's hard to tell.
<br>
<br>
<span style="color: #ffc857;">"Good boy, cum on mommy's dick."</span>
<br>
<br>
As if on command you both reach orgasm at the same time, your jizz landing on your stomach while she pumps hers in your bowels. She makes you clean her up with your tongue before heading back to her booth and nursing her beer again.
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/work/busboyfuck1.webp']]
<<set $aubreyfucked = true>>
<<case 4>>
Since getting a raise your shifts have gotten a lot harder. Aside from all the blowjobs you now also have to deal with customers wanting to try out the new butt slut while he's still tight. Even with a minimum purchase rule you spend the better part of your shifts bent over.
<br>
<br>
<span style="color: #ffc857;">"This place has the best entertainment!"</span>
<br>
<br>
Meanwhile Foxy is behind the bar counting her money, she's basically your pimp at this point. As the girl fucking you finally finishes you wonder if you should have asked her for a cut of the profits. You don't have much time to think though, as the next girl is already lining up.
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/work/busboyfuck2.webp']]
<<case 5>>
While waiting for her beer a woman decides to use you as entertainment. You try explaining if she would just slow down you can get her beer, but all she hears is "Fuck me harder!". Once a Futanari gets like this there's no reasoning with her.
<br>
<br>
<span style="color: #ffc857;">"Goddess, the service here is atrocious."</span>
<br>
<br>
When she's finally done she gets the drink herself, leaving you a leaking mess on the table. You'd best not rest for too long, if Foxy catches you slacking there will be hell to pay.
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/work/busboyfuck3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.futanari < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.futanari < 150>>
<<set _earnings = random(10,15)>>
<<elseif $player.futanari < 300>>
<<set _earnings = random(20,25)>>
<<else>>
<<set _earnings = random(25,30)>>
<</if>>
<<if def $player.shirt and $player.shirt is "futa">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns serving the Futas</i>
<</nobr>>
[[Finish->Foxy's bar]]
<<nobr>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 5>>
<</if>>
<<set $futanaridicksucked = true>>
<<if $player.futanari < 300>>
<<updateFutanari 10>>
<</if>>
<<if ndef $player.futanaridickssucked>>
<<set $player.futanaridickssucked = 1>>
<<notify 5s>>Achievement unlocked: Futa cocksucker<</notify>>
<<else>>
<<set $player.futanaridickssucked++>>
<</if>>
<<progressTime>>
<<set $player.energy = $player.energy - 30>>
<</nobr>>Despite already feeling it in your head you take one last shot of the drink. As it's sliding down your throat you feel a little dizzy, and put your head down on the bar. The world starts spinning around you and you struggle to keep your eyes open.
<i>Damn, this is some strong stuff</i>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drink4.webp']]
[[Take a little nap]]<<nobr>>
<<timed 2s>>...<</timed>><br><br>
<<timed 5s>>
Hours later you wake up again, with a pounding headache and confused as to where exactly you are. Looking around you conclude you're still in the same bar, but it's now completely deserted. What's also strange is that you can't seem to move very well. Panic sets in as you realize you're tied to one of the tables, and completely naked.
<br>
<br>
<span style="color: #ffc857;">"Well well, look who's up. How was your beauty sleep, princess?"</span>
<br>
<br>
The same barwoman from before is also still here, and similarly completely nude. The large cock between her legs is already hard as a rock, as if she'd just been stroking it. She comes up to you and roams her hands all over your body, like a predator checking on it's prey.
<br>
<br>
<span style="color: #ffc857;">"I guess you're a bit of a lightweight after all huh? Don't fret, momma's gonna take good care of you."</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drunkrape1.webp']]
<br>
<br>
[[Struggle against the binds]]
<</timed>>
<<set $gameTime = 5>>
<</nobr>>Any pulling or pushing you do against the binds seems useless, only serving to make them even tighter. Meanwhile the bartender has positioned herself behind your head, giving your chin a few slaps with her cock. She then grabs you by the chest and firmly shoves herself into your mouth, hitting your throat and making you gag.
<span style="color: #ffc857;">"Ohhh, I've been waiting all day to do that."</span>
She takes her time to enjoy herself, casually throatfucking you while ignoring any choking sounds or need for air. The spit is running down your face while she continues to use you like a fleshlight, a visible bulge forming in your neck with every thrust she makes.
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drunkrape2.webp']]
<span style="color: #ffc857;">"Now then, let's see what your other hole is like shall we?"</span>
<i>Oh God no, anything but that</i>
[[There's nothing you can do]]Stunned by the situation you watch as she rubs her spit-covered dick against your asshole, getting some lubrication on it before gently starting to push. Slowly but surely your sphincter gives way to the invading member, until she pops inside with one final thrust of her pelvis. It feels even more huge inside you.
<span style="color: #ffc857;">"Oh shit, that is TIGHT!"</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drunkrape3.webp']]
Now that she's in she wastes no time and starts to fuck your deflowered hole in earnest. She ignores all of your pleas to stop or slow down, focusing solely on making herself feel good inside your stretched-out ass. Soon her balls are slapping against your butt as she pumps in and out with her full length.
<span style="color: #ffc857;">"This is the best boipussy I've ever had, I'm gonna breed the shit out of you!"</span>
That promise gets fulfilled a few minutes later when she lets out a long, satisfied moan and you feel your ass getting pumped full with fresh, hot girlcum. Her orgasm last three times as long as any of yours, and every shot is just as big if not bigger than the last. You could swear your belly even looks swollen with all the seed inside you.
<span style="color: #ffc857;">"Fuuuuuuuuuck yes!"</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drunkrape4.webp']]
When her nuts are completely emptied she pulls out, a stream of liquid gushing out of your abused hole onto the floor. With a groan you lay there and slowly fart out her cum as she admires her work.
[[Finally she unties you]]With her urges now satisfied she has no more use for you, and pulls you off the table. She barely even gives you time to grab your clothes before kicking you out through the front door, spanking your ass as you go.
<span style="color: #ffc857;">"Make sure to stop by again soon, loverboy!</span>
<i>I am never drinking so much again...</i>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/drink/drunkrape5.webp']]
[[Get out->Futanari District]]
<<nobr>>
<<set $player.energy = 0>>
<<set $charlottelocation = "room">>
<<updateFutanari 20>>
<<set $foxydrunkrape = true>>
<<notify 5s>>Achievement unlocked: A drunk adventure<</notify>>
<<if $lostanalvirginity is not true>>
<<set $lostanalvirginitytofuta = true>>
<<set $lostanalvirginity = true>>
<</if>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 10>>
<<else>>
<<set $player.futanaridickssucked++>>
<</if>>
<</nobr>>After a few too many drinks you had a little mishap with the barwoman in the Futanari district. Safe to say you're never going to breathe a word of this, to anyone.
[img[$imgDir + 'achievements/adrunkadventure.webp']]
<<back>>You get out of bed feeling terrible, stumbling around the room in a dizzy haze. It's difficult to focus, and you are incredibly thirsty. It's unlikely you will be able to do much like this, so you decide to go and see a medical professional.
<i>Hopefully it's nothing serious</i>
[img[$imgDir + 'outside/hospital/addiction/dizzy.webp']]
[[Head to the hospital]]After a short wait in the emergency room you get to see a doctor, who asks for your symptoms and does a few general checks. When you mention the thirst her brow furrows, and she shines a light into your eyes to check your pupils. She doesn't seem very happy with what she sees.
[img[$imgDir + 'outside/hospital/addiction/doctor.jpeg']]
<span style='color:pink;'>"I think I already know what's going on here. You're having withdrawal symptoms."</span>
"Withdrawals from what?"
<span style='color:pink;'>"Have you had any sexual intercourse with a Futanari recently? If you were unaware, their cum is highly addictive."</span>
"Oh, no...It's been more than a few..."
<span style='color:pink;'>"I'm afraid your condition is quite advanced already. We will not be able to cure you, but we can help manage your symptoms with an injection."</span>
The doctor leaves the room for a minute and comes back with a filled syringe, the contents of which she shoots into your arm. Almost immediately you can feel your head clearing up, as if you're waking up from a dream.
[img[$imgDir + 'outside/hospital/addiction/injection.webp']]
<span style='color:pink;'>"There. I would suggest avoiding the Futanari from now on. If you can't, at least come back and get regular shots to help your body fight off their influence."</span>
"And if I don't?"
<span style='color:pink;'>"Then you will slowly worsen until you start to lose your mind, and end up a mindless slave to the Futanari. Believe me, you wouldn't wish that on your worst enemy."</span>
<i>I'll have to be careful from now on</i>
[[Thank the doctor and go->Hospital]]
<<nobr>>
<<progressTime>>
<<set $player.futanariaddiction = 20>>
<</nobr>>Your addiction to Futanari has gotten out of control, and there is nothing left on your mind except their seed. Abandoning everything else in life you head for their district and start begging every woman you see for fresh cum.
<i>Cum... Cum... I need more cum!</i>
The rest of your days are spent mindlessly wandering the streets, only feeling happiness when someone makes use of your holes and gives you what you desire. Lucky for you you're still young and attractive, and you have no shortage of Futa willing to breed you. It's not long before every dickgirl in the city has fucked you, some of them becoming regular clients seeing you every day.
You're so popular in fact that there's usually a line forming, often with girls fighting over who is next as several others make use of you at the same time. But they don't have to worry, because you will satisfy each and every one of them.
[img[$imgDir + 'endings/addict/addictgangbang.webp']]
<h1>Game Over</h1>You pay for another injection to help offset all the Futanari dick you've been taking recently. Fortunately their effectiveness doesn't seem to be wearing off just yet. A little expensive, though.
[img[$imgDir + 'outside/hospital/addiction/injection.webp']]
<span style='color:pink;'>"I would still prefer it if you managed your condition better. These shots are not good for your body."</span>
<i>Yeah yeah</i>
[[Get going->Hospital]]
<<nobr>>
<<progressTime>>
<<set $player.futanariaddiction = $player.futanariaddiction - 50>>
<<set $player.money = $player.money - 50>>
<</nobr>>All your training has really started to pay off, and you feel pretty confident that you can give most slaves a run for their money. Just in time, too, because the qualifying rounds for the games are right around the corner.
<span style='color:crimson;'>"We'll need something to really make you stand out. What would you say your best skill is?"</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed5.jpeg']]
<<nobr>>
<<if $player.worship > 299>>
[[Worship]]
<<else>>
<a disabled><strike>Worship</strike></a>
<</if>>
<br>
<<if $player.fitness > 299>>
[[Fitness]]
<<else>>
<a disabled><strike>Fitness</strike></a>
<</if>>
<br>
<<if $player.stamina > 299>>
[[Stamina]]
<<else>>
<a disabled><strike>Stamina</strike></a>
<</if>>
<br>
<<if $player.paintolerance > 299>>
[[Pain tolerance]]
<<else>>
<a disabled><strike>Pain Tolerance</strike></a>
<</if>>
<<if def $player.futanaridickssucked>>
<br>
<<if $player.futanari > 299>>
[[Futanari]]
<<else>>
<a disabled><strike>Futanari</strike></a>
<</if>>
<</if>>
<</nobr>><span style='color:crimson;'>"Worship huh? And why is it then that you haven't been serving me properly?"</span>
"I want to, you're just hard to approach..."
<span style='color:crimson;'>"Let's see if you're really as good as you say. I can't go to the games with an inadequate slave."</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed11.jpeg']]
[[She shoves her feet in your face]]<span style='color:crimson;'>"Well, you look a bit more in shape. But I'm still not convinced. I'm going to need some real performance."</span>
"What kind of performance?"
<span style='color:crimson;'>"How about a wrestling match? The local gym has an active club we could go to."</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed11.jpeg']]
<<nobr>>
<<if $gymwrestlingavailable is true>>
"You know about that"?
<br>
<br>
<span style='color:crimson;'>"Of course, I used to go there all the time. Didn't you see my picture on the wall?"</span>
<br>
<br>
<i>Now that she mentions it...</i>
<<else>>
"Oh yeah, I think I saw a poster for that."
<br>
<br>
<span style='color:crimson;'>"It's been getting more popular lately. I'll believe you trained enough if you can beat me."</span>
<br>
<br>
<i>If that's what it takes</i>
<</if>>
<</nobr>>
[[Settle it in the ring]]<span style='color:crimson;'>"Stamina? Are you sure? Last I knew you could barely hold it in 5 minutes."</span>
"I've gotten better since then!"
<span style='color:crimson;'>"You'll forgive me for being sceptical. But fine, I'll humor you. Show me what you got."</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed11.jpeg']]
[[Take out your cock]]<span style='color:crimson;'>"Well? I'm waiting."</span>
Without wasting another second you stick out your tongue and start licking, covering everything from her soles to each and every toe. Charlotte's feet are perfectly maintained, and perhaps the most beautiful pair you've laid your eyes on. You wonder why you never tried to worship her sooner.
[img[$imgDir + 'charlotte/femdom/charlotteworship1.webp']]
<span style='color:crimson;'>"Not bad. What about your oral skills?"</span>
[[Show her]]Eager to continue you position yourself between her legs and pull on the fabric to get to the prize underneath. This is a mistake however, as Charlotte doesn't like you going for her pussy. She kicks you away, and before you can recover pins you down. Enraged she wraps her legs around your neck and squeezes them hard, cutting off your air supply.
<span style='color:crimson;'>"No! Who said you could touch me there? Did they teach you nothing?"</span>
"I-I'm sorry! Please, I can't breathe!"
[img[$imgDir + 'charlotte/femdom/charlotteworship2.webp']]
<span style='color:crimson;'>"You have one more chance. Your face, my ass, now."</span>
[[She sits back down]]
With her ass firmly planted on your head you start licking her butthole. She seems a lot more sensitive in that area than other girls, then again you already knew she had a thing for anal. You're surprised at how quickly her breathing becomes ragged and her legs start shaking in pleasure.
<span style='color:crimson;'>"Don't stop, I'm cummmmmmiiiiiiiiing!"</span>
Charlotte continues riding your face in the throes of her orgasm, squeezing every last drop of pleasure out of it. You can feel the dampness of her womanhood even through the fabric. She sits on you until the last aftershocks are gone, and then finally dismounts. That had to be enough to convince her.
[img[$imgDir + 'charlotte/femdom/charlotteworship3.webp']]
"So, do you think I'm ready?"
<span style='color:crimson;'>"Yes, I think that will do nicely. I'll let you know if there is news from my contact."</span>
[[Leave her->Home]]
<<nobr>>
<<set $charlottetestcompleted = true>>
<<set $charlottetestcompleteddays = 0>>
<<set $chosenskill = "worship">>
<<progressTime>>
<</nobr>>You've barely unbuckled your pants or Charlotte is already on your cock, sucking like a pro. This time she's not holding back at all, making it extra sloppy and using every trick in her arsenal to try and make you cum. It's only thanks to your training and experience that you manage to resist.
<span style='color:crimson;'>"Damn, you have improved. Normally you would have been finished already."</span>
[img[$imgDir + 'charlotte/femdom/charlottestamina1.webp']]
She gets up from her knees and takes off the remainder of her clothes, while you do the same.
<span style='color:crimson;'>"What are you waiting for? Fuck me like a man!"</span>
[[Throw her on her back]]Deciding to be a little bold you push her back onto the couch, legs up in the air as you hold her down and get yourself into position. The pleasure you're feeling is almost overwhelming as you finally get to slam yourself into Charlotte's heavenly pussy. Your hips start moving all on their own, making long, deep strokes.
<span style='color:crimson;'>"That's the spirit!"</span>
<i>Oh fuck, this is insanely good</i>
[img[$imgDir + 'charlotte/femdom/charlottestamina2.webp']]
[[Go for the other hole too]]It takes all of your willpower to pull out of her, but Charlotte has another hole that needs your attention. She's more than happy to help share the effort by riding you, as long as your cock is pounding into her sensitive ass. It's a double-edged sword however, while she's feeling good you risk cumming faster because of how tight it is.
<span style='color:crimson;'>"What's wrong $playername, is my asshole too much for you?"</span>
[img[$imgDir + 'charlotte/femdom/charlottestamina3.webp']]
When you get close to finishing in her ass you pull out, but instantly push back into her pussy instead. This catches her by surprise, but the loud squeals tell you she's loving it. Looks like that's worth repeating.
You spend the rest of the time switching between her two holes, the different sensations helping you stave off your orgasm. One particularly aggressive thrust coming from her pussy balls deep into her asshole makes her cry out in climax, clamping down on your cock as the pleasure makes her eyes roll back.
<span style='color:crimson;'>"Nnnnnnnngh!"</span>
[img[$imgDir + 'charlotte/femdom/charlottestamina4.webp']]
[[Finish it off]]Finally you can't take it anymore and have to pull out, just in time for your cum to land onto her freshly-fucked holes. Both her pussy and ass are gaping and twitching, reshaped in the form of your cock. Charlotte moans in satisfaction as she catches her breath on the couch, semen dripping down her legs.
<span style='color:crimson;'>"Fuck, I didn't know you had it in you."</span>
[img[$imgDir + 'charlotte/femdom/charlottestamina5.webp']]
Following her example you also sink into the couch, your breathing slowly returning to normal.
"So, how was that?"
<span style='color:crimson;'>"Mmmm. I think you're about ready. Maybe just one more round to be sure?"</span>
[[Leave her->Home]]
<<nobr>>
<<set $charlottetestcompleted = true>>
<<set $charlottetestcompleteddays = 0>>
<<set $chosenskill = "stamina">>
<<progressTime>>
<</nobr>>You make your way to the gym and quickly set up on the mat. Luckily there's a referee willing to watch over your match, so you don't have to worry about anything but winning. Even if she is your owner you're not going to hold back.
<span style='color:lightgreen;'>"Contestants ready?"</span>
"Ready!"
<span style='color:crimson;'>"Let's do this!</span>
[img[$imgDir + 'charlotte/femdom/charlottefitness1.webp']]
The start signal sounds and you fly into each other, a mess of arms and legs as you each try to get on top. Charlotte wasn't lying about her experience, managing to counter every move you make. You seem to be stronger than her though, because she's having trouble keeping you under control as well.
<span style='color:crimson;'>"Just give it up already! I'll even make you cum if you're a good boy!</span>
"You wish!"
[img[$imgDir + 'charlotte/femdom/charlottefitness2.webp']]
[[She's good, but not good enough]]Over time Charlotte starts to tire, while you're still feeling fresh. You take advantage by pinning her to the ground on her stomach and laying on top of her. Your dick is sandwiched between her buttcheeks, and her resistance is rubbing it so much it's getting hard. After a few more desperate attempts to get out from underneath she taps out.
<span style='color:crimson;'>"Okay, okay! I give up, you win."</span>
[img[$imgDir + 'charlotte/femdom/charlottefitness3.webp']]
You get off of her and the judge comes over to make your win official. Charlotte seems oddly proud of you.
<span style='color:crimson;'>"Alright then victory boy, come over here and fuck me. You deserve it."</span>
<<nobr>>
<<if $player.stamina > 29>>
[[Claim your prize]]
<<else>>
<a disabled><strike>Claim your prize</strike> (level 3 Stamina required)</a>
<</if>>
<</nobr>>
[[That's enough]]You're surprised to see Charlotte presenting herself on all fours, her pussy glistening with juice. Maybe being overpowered turned her on somehow, or maybe she's been horny all day. In any case, you're going to take full advantage.
<span style='color:crimson;'>"Stop gawking and shove it in already!"</span>
You're happy to fulfill her request, penetrating her from behind and finally feeling the inside of her heavenly hole. She wastes no time pushing her hips back, and soon the slapping of flesh against flesh echoes through the ring as you fuck.
[img[$imgDir + 'charlotte/femdom/charlottefitnessfuck1.webp']]
The two of you slowly lose yourselves in the sex, staring into each other's eyes while your hips grind together. Charlotte has you thrust in a particular way so you stimulate her clit as well, and then moans into your face as she cums on your dick for the first time.
<span style='color:crimson;'>"Keep going, use me as your spoils of victory!"</span>
[img[$imgDir + 'charlotte/femdom/charlottefitnessfuck2.webp']]
You're so enthralled in the copulation that you don't even notice how close you are to orgasm. What wakes you up is your throbbing cock already spurting it's first load of seed deep inside Charlotte. It's too late to pull out now, so you lay on top of her and fill her pussy with shot after shot of fresh cum.
"Fucking hell!"
<span style='color:crimson;'>"You really couldn't control yourself? Now I have to get a morning-after pill..."</span>
[img[$imgDir + 'charlotte/femdom/charlottefitnesscum.webp']]
"But my fitness is good, right?"
<span style='color:crimson;'>"Good enough to compete at least. But you should keep training either way."</span>
[[Head out->Gym]]
<<nobr>>
<<set $charlottetestcompleted = true>>
<<set $charlottetestcompleteddays = 0>>
<<set $chosenskill = "fitness">>
<<set $charlottefuckedfitnesstest = true>>
<<progressTime>>
<</nobr>>"Nah, I'm good. Just beating you is enough".
<span style='color:crimson;'>"Really? You might never get a chance like this again you know."</span>
Charlotte seems somewhat disappointed, it hadn't crossed your mind that she may actually be enjoying this. In any case you proved to her that you're more than capable physically.
[img[$imgDir + 'charlotte/femdom/charlottefitnessdenied.webp']]
"But my fitness is good, right?"
<span style='color:crimson;'>"Good enough to compete at least. But you should keep training either way."</span>
[[Head out->Gym]]
<<nobr>>
<<set $charlottetestcompleted = true>>
<<set $charlottetestcompleteddays = 0>>
<<set $chosenskill = "fitness">>
<<progressTime>>
<</nobr>><<nobr>>
<div class="row">
<div class="column" style='width: 25%;'>
<a data-passage="Daisy" class="darken">
<<if $daisyimpregnated is true>>
<img src="resources/outside/dop/jobs/daisy/daisypregnant.jpeg" >
<<else>>
<img src="resources/outside/dop/jobs/daisy/daisy.jpeg" >
<</if>>
<span>Daisy</span></a>
</div>
<div class="column" style='width: 25%;'>
<a data-passage="Brandi" class="darken">
<<if $brandiimpregnated is true>>
<img src="resources/outside/dop/jobs/brandi/brandipregnant.jpeg" >
<<else>>
<img src="resources/outside/dop/jobs/brandi/brandi.jpeg" >
<</if>><span>Brandi</span></a>
</div>
<div class="column" style='width: 25%;'>
<a data-passage="Molly" class="darken">
<<if $mollyimpregnated is true>>
<img src="resources/outside/dop/jobs/molly/mollypregnant.jpeg" >
<<else>>
<img src="resources/outside/dop/jobs/molly/molly.jpeg" >
<</if>><span>Molly</span></a>
</div>
</div>
<</nobr>>
[[Back->Department of Procreation]]<div class="row">
<div class="column" >
<<nobr>>
<<if $daisyimpregnated is true>>
[img[$imgDir + 'outside/dop/jobs/daisy/daisypregnant.jpeg']]
<<else>>
[img[$imgDir + 'outside/dop/jobs/daisy/daisy.jpeg']]
<</if>>
<</nobr>>
</div>
<div class="column" style='padding-left: 100px;'><span style='color:pink;'>
Name: Daisy
Age: 19
<<nobr>>
<<if $daisyimpregnated is not true>>
Status: Available
<<else>>
Status: Impregnated
<</if>>
<</nobr>>
Reward: 50 crowns
Request: I've always wanted to become a mother, but never got much experience in bed. I'd like a gentle boy who can change that, and fullfill my dream at the same time.</span>
<<nobr>>
<<if $daisyimpregnated is not true>>
<<if $player.energy > 149>>
[[Take this job->daisyimpregnation]]
<<else>>
<a disabled><strike>Take this job</strike> (you should be well rested)</a>
<</if>>
<</if>>
<</nobr>>
<<back>>
</div>
</div>
<div class="row">
<div class="column" >
<<nobr>>
<<if $brandiimpregnated is true>>
[img[$imgDir + 'outside/dop/jobs/brandi/brandipregnant.jpeg']]
<<else>>
[img[$imgDir + 'outside/dop/jobs/brandi/brandi.jpeg']]
<</if>>
<</nobr>>
</div>
<div class="column" style='padding-left: 100px;'><span style='color:pink;'>
Name: Brandi
Age: 47
<<nobr>>
<<if $brandiimpregnated is not true>>
Status: Available
<<else>>
Status: Impregnated
<</if>>
<</nobr>>
Reward: 100 crowns
Request: I'm getting on in years, but that doesn't mean I'll just let anyone be the father of my child. Whoever you send me had better worship me like the goddess I am.</span>
<<nobr>>
<<if $brandiimpregnated is not true>>
<<if $player.worship > 299>>
<<if $player.energy > 149>>
[[Take this job->brandiimpregnation]]
<<else>>
<a disabled><strike>Take this job</strike> (you should be well rested)</a>
<</if>>
<<else>>
<a disabled><strike>Take this job</strike> (level 3 Worship required)</a>
<</if>>
<</if>>
<</nobr>>
<<back>>
</div>
</div>
<div class="row">
<div class="column" >
<<nobr>>
<<if $mollyimpregnated is true>>
[img[$imgDir + 'outside/dop/jobs/molly/mollypregnant.jpeg']]
<<else>>
[img[$imgDir + 'outside/dop/jobs/molly/molly.jpeg']]
<</if>>
<</nobr>>
</div>
<div class="column" style='padding-left: 100px;'><span style='color:pink;'>
Name: Molly
Age: 25
<<nobr>>
<<if $mollyimpregnated is not true>>
Status: Available
<<else>>
Status: Impregnated
<</if>>
<</nobr>>
Reward: 100 crowns
Request: Give me a muscly hunk that doesn't talk much. He doesn't need to do anything except keep his dick hard, I'll extract the seed from his balls by force if I need to.</span>
<<nobr>>
<<if $mollyimpregnated is not true>>
<<if $player.fitness > 299>>
<<if $player.energy > 149>>
[[Take this job->mollyimpregnation]]
<<else>>
<a disabled><strike>Take this job</strike> (you should be well rested)</a>
<</if>>
<<else>>
<a disabled><strike>Take this job</strike> (level 3 Fitness required)</a>
<</if>>
<</if>>
<</nobr>>
<<back>>
</div>
</div>
After informing an employee that you're taking on Daisy's request she sets everything up for you and assigns you a chauffeur. They take you to a quaint little suburb where Daisy lives, and you knock on the door.
When she opens up she seems a bit stressed, clutching a beer to her chest not knowing what to do. You make a few jokes about the situation and get a few laughs, but she's still rather tense. Trying to sleep with her like this would probably not go well.
<span style="color: #bc4749;">"Sorry, I thought the alcohol would help me relax but it got worse instead."</span>
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding1.webp']]
[[Find a way to calm her nerves]]After signing up for the job you wait outside the DOP for your driver to pick you up. It's a busy day, and it takes nearly 2 hours for you to arrive at a large mansion just outside the city limits. After ringing the doorbell a servant greets you and instructs you to go upstairs, where Brandi is waiting in her bedroom.
<span style="color: #bc4749;">"There you are. I was wondering if you were even going to show up."</span>
"My apologies, miss, there was a lot of traffic."
<span style="color: #bc4749;">"Well, all this waiting around has made my neck stiff. I hope you know how to fix that."</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding1.webp']]
[[Massage her]]You tell the lady at the front desk you want to take the job, and she notifies the customer while calling you a driver to take you there. A little while later she pulls up to a hotel, and instructs you to go to room 312. Once there you take a deep breath and knock. Molly quickly opens the door, already wearing some spicy lingerie.
<span style="color: #bc4749;">"What a cute little boy they sent me. We're going to have so much fun."</span>
She pulls you into the room and leads you to the bed, where she starts taking off both of your clothes. It's straight to business with her, grabbing your cock to stroke it hard while her other hand explores your body.
[img[$imgDir + 'outside/dop/jobs/molly/mollybreeding1.webp']]
<span style="color: #bc4749;">"Let's get this party started, get on your back."</span>
[[Do as she demands]]During one of your nightly escapades you notice loud music coming from a nearby street. Curious you follow the sound until you come upon a well-lit nightclub bristling with activity.
[img[$imgDir + 'outside/nightclub/nightclub.webp']]
[[Check it out->Club R]]
<<nobr>>
<<set $nightclubdiscovered = true>>
<</nobr>>[img[$imgDir + 'outside/nightclub/nightclub.webp']]
<<nobr>>
<<if $entrancefeepaid is true>>
<<if $danced is not true>>
[[Go in->Pay the entrance fee (50 crowns)]]
<</if>>
<<else>>
<<if $danced is not true>>
<<if $player.money > 49>>
[[Pay the entrance fee (50 crowns)]]
<<else>>
<a disabled><strike>Pay the entrance fee (50 crowns)</strike></a>
<</if>>
<</if>>
<<if $snuckintoclub is not true>>
<br>
[[Try to sneak in]]
<</if>>
<</if>>
<</nobr>>
[[Leave->Outside]][img[$imgDir + 'outside/nightclub/nightclubinside.webp']]
Inside the club it's filled with smoke, loud music, and girls partying. It's hard to see even a few feet in front of you.
<<nobr>>
<<if $danced is not true>>
[[Dance the night away]]
<</if>>
<</nobr>>
[[Leave->Outside]]
<<nobr>>
<<if $entrancefeepaid is not true>>
<<set $entrancefeepaid = true>>
<<set $player.money = $player.money - 50>>
<</if>>
<</nobr>><<nobr>>
<<if $player.futanari > 49 and $nightclubfutaevent is not true>>
You are nursing your drink and swaying your hips to the music alone when a drop-dead gorgeous lady approaches and starts dancing with you. Her movements are hypnotizing and strangely erotic, and she soon has you fully entranced.
<br>
<br>
<span style='color:purple;'>"Hi cutie, I'm Chanel. What's your name?"</span>
<br>
<br>
[img[$imgDir + 'outside/nightclub/dancing/futadancing.webp']]
<br>
<br>
Several songs and drinks later you're getting tired, and she takes you to a private booth. You've barely sat down or she leans in and starts kissing you, which quickly turns into a full-blown makeout session.
<br>
<br>
As you're eating each other's faces she grabs your hand and puts it on her boob, letting you have a few squeezes before moving it further down towards her crotch. Stuffed away in her panties is a massive bulge, which you can feel throbbing against your hand. Once you realize what it is she gives you a devilish grin.
<br>
<br>
<span style='color:purple;'>"Yeah, you know what I am. So let's skip the small stuff, and go straight to the part where you give me a blowjob."</span>
<br>
<br>
[img[$imgDir + 'outside/nightclub/dancing/futakissing.webp']]
<br>
<br>
[[Suck her off]]
<br>
[[Make an excuse to leave->Outside]]
<<set $nightclubfutaevent = true>>
<<else>>
<<if $player.stamina > 149>>
<<set _end = 2>>
<<else>>
<<set _end = 1>>
<</if>>
<<if $nicolemassagetest is true>>
<<set _start = 0>>
<<else>>
<<set _start = 1>>
<</if>>
<<switch random(_start,_end)>>
<<case 0>>
You are on the dance floor having a good time, when one of the girls partying nearby recognizes you from the House of Worship. She moves over to you and starts twerking in your face, pulls down her pants and tells you to get to work. After she's done with you she alerts all of her friends too.
<br>
<br>
<span style='color:purple;'>"Hey girls, free ass licking for everybody!"</span>
<br>
<br>
<span style='color:#fcbf49;'>"Whoooooo!"</span>
<br>
<br>
You spend the rest of the night as their entertainment, an endless lineup of drunk girls shoving their asses in your face.
<br>
<br>
[img[$imgDir + 'outside/nightclub/dancing/asslicking.webp']]
<br>
<br>
<<if $player.worship < 300>>
<i>Your Worship has improved</i>
<br>
<br>
<</if>>
[[Continue->Outside]]
<<if $player.worship < 300>>
<<updateWorship 10>>
<</if>>
<<case 1>>
You party hard until the sun starts to rise, enjoying the company of increasingly tipsy and horny babes all around you. They especially seem to enjoy teasing you, letting you watch but not touch.
<br>
<br>
<span style='color:purple;'>"Too bad male, only I get to suck on these!"</span>
<br>
<br>
[img[$imgDir + 'outside/nightclub/dancing/flashing.webp']]
<br>
<br>
[[Continue->Outside]]
<<case 2>>
A group of girls are having a night out, and one of them takes a special liking to you. The two of you spend hours rocking to the music, and she often grinds her fat bottom against your crotch. When nobody is looking she even lets you squeeze her boobs.
<br>
<br>
When her friends want to go home she tells them she's going to the bathroom first, and grabs you by the arm to drag you along. Once inside she pushes you inside a stall, pulls down your pants and whips out her majestic tits.
<br>
<br>
<span style='color:purple;'>"Give me that thing, it's been rubbing against my ass all night!"</span>
<br>
<br>
[img[$imgDir + 'outside/nightclub/dancing/toiletblowjob1.webp']]
<br>
<br>
She lets you fuck her cleavage and then continues sucking you off, until you deposit a fat nut into her waiting mouth. After proudly showing it laying on her tongue she swallows it all with a big gulp. She then opens the door and disappears into the night.
<br>
<br>
<span style='color:purple;'>"Don't tell my friends about this."</span>
<br>
<br>
[img[$imgDir + 'outside/nightclub/dancing/toiletblowjob2.webp']]
<br>
<br>
[[Continue->Outside]]
<</switch>>
<<if $dancedachievement is not true>>
<<set $dancedachievement = true>>
<<notify 5s>>Achievement unlocked: Party animal<</notify>>
<</if>>
<</if>>
<<set $danced = true>>
<</nobr>>Spending your nights at the club you can party with the best of them. Alcohol makes girls do some crazy things.
[img[$imgDir + 'achievements/partyanimal.webp']]
<<back>>Chanel wastes no time pulling off her clothes and shoving her dick in your mouth. She's so turned on it's making her aggressive, fucking your face with little regard for your wellbeing. Her member is also larger than most, and you need to use all of your experience not to choke on it.
<span style='color:purple;'>"Fuuuck, there's nothing like a drunk blowjob."</span>
[img[$imgDir + 'outside/nightclub/dancing/futablowjob1.webp']]
You spend the rest of the night with her cock down your throat, only getting a break when she heads to the bar to get more drinks. The alcohol only serves to make her hornier, and no matter how many times she cums her she-shaft doesn't soften one bit. It's so outrageous you're starting to think they spike the drinks around here.
<span style='color:purple;'>"I can't stop, here comes another load!"</span>
In the wee hours of the morning you are finally rescued by one of the staff, who come over to tell you that it's closing time. The music has been shut off, and the place is mostly deserted. Chanel pumps one last load into your stomach, then puts her dress back on and heads for the exit.
<span style='color:purple;'>"Sleep well, cutie. I know I will."</span>
[img[$imgDir + 'outside/nightclub/dancing/futablowjob2.webp']]
[[The club is now closed->Outside]]
<<nobr>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 10>>
<<else>>
<<set $player.futanaridickssucked++>>
<</if>>
<<if $player.futanari < 150>>
<<updateFutanari 20>>
<</if>>
<</nobr>>Molly starts by licking and sucking on your balls, coaxing them to create more semen for her impregnation. She keeps going until they are heavily swollen, while you get to enjoy the view of her ass shaking in anticipation.
<span style="color: #bc4749;">"You'd better not be like the last guy they sent me. He got so nervous he went soft. What a loser."</span>
<i>I don't think that will be a problem</i>
[img[$imgDir + 'outside/dop/jobs/molly/mollybreeding2.webp']]
[[The breeding begins]]Without hesitation Molly grabs you by the legs and squats over you, ready to get to the main event. In one fell swoop she slams herself down, burying your dick to the hilt inside her pussy. Her hips first start to rub, then rotate, and finally bounce her up and down as she fucks you like an amazon.
<span style="color: #bc4749;">"Now, be a good boy and fill me up!"</span>
Her riding quickly picks up speed, ignoring everything to focus on one thing, draining the cum from your balls into her womb. Whenever you try to get up or take a break she growls and pushes you back down. This woman is clearly not playing around.
[img[$imgDir + 'outside/dop/jobs/molly/mollybreeding3.webp']]
[[She milks you for all you're worth]]You spend the next couple of hours in that position, serving as a human dildo. Even when you creampie her Molly doesn't slow down one bit, continuing to ride you as long as your dick stays hard. Her creamy pussy squeezes load after load out of you, each one with millions of sperm racing to her fertile egg.
<span style="color: #bc4749;">"Don't give up now, that was only the third cumshot!</span>
Eventually your battered penis throws in the towel, refusing to get hard anymore. Now that she has no more use for you Molly dismounts and promptly kicks you out, without so much as a goodbye.
[img[$imgDir + 'outside/dop/jobs/molly/mollybreeding4.webp']]
Feeling a bit awkward you leave the hotel, find the driver who is still waiting for you, and get in the car.
<span style='color:pink;'>"Here's your payment."</span>
<i>You made 100 crowns breeding Molly</i>
[[Head back to the DOP->Department of Procreation]]
<<nobr>>
<<set $player.energy = $player.energy - 100>>
<<set $mollyimpregnated = true>>
<<set $player.money = $player.money + 100>>
<<progressTime>>
<</nobr>>You successfully manage to avoid the bouncers by blending in with a big group, and once you're inside it's not hard to disappear into the crowd. You're just starting to think you got away with it when a woman approaches you and grabs you forcefully by the arm.
<span style='color:purple;'>"What do we have here, a little rat snuck into my club? I could sniff you out the moment you walked in."</span>
[img[$imgDir + 'outside/nightclub/sneakin/clubsneakin1.webp']]
"I, uh, don't know what you're talking about?"
<span style='color:purple;'>"Tsk tsk. An unaccompagnied slave committing a crime, I wonder what the cops would do to you. I'm sure it involves a cage and some whips. Shall I call them now?"</span>
"Please don't report me, I'll do anything!"
<span style='color:purple;'>"Anything you say? Are you sure about that, you might regret it."</span>
Her smirk tells you she's up to no good, but you may not have much of a choice here.
[[Be her slave for the night]]
[[Make a run for it->Outside]]
<<nobr>>
<<set $snuckintoclub = true>>
<<set $danced = true>>
<</nobr>>The woman smiles and heads for some nearby stairs, pulling you along. She takes you to a small personal area overlooking the entire club, where you have some privacy at least. As the first order of business she makes you strip, and then put on a rather revealing leather slave outfit.
<span style='color:purple;'>"A proper slave should look the part don't you think?"</span>
Next she orders you to kneel while she lays back and kicks off her shoes. Even through the mask you're now wearing you can smell the heavy odor coming from them. Even more so when she pushes them against your face and your nose is pressed between her toes.
<span style='color:purple;'>"My feet have been stuck in these heels all day. I want them sparkling clean."</span>
"Yes, mistress."
[img[$imgDir + 'outside/nightclub/sneakin/clubsneakin2.webp']]
<span style='color:purple;'>"What a good boy you are. I know, as a reward let's go for a little walk."</span>
<<nobr>>
<<if $player.worship < 150>>
<i>Your Worship skill has improved</i>
<br>
<br>
<</if>>
[[Follow her]]
<<set $clubslave = true>>
<<if $player.worship < 150>>
<<updateWorship 10>>
<</if>>
<</nobr>>Yanking on your chain she has you crawl on your hands and knees while she makes her rounds through the club. You often have to stop and wait while she talks to one of her friends or employees. Some of them are curious about you, but none seem surprised by the way you are being treated. This must have happened before.
<span style='color:lightgreen;'>"I didn't know you had a new slave, Heather?"</span>
<span style='color:purple;'>"Oh, don't mind him. He's just learning what happens if you fuck with me."</span>
[img[$imgDir + 'outside/nightclub/sneakin/clubsneakin3.webp']]
[[The humiliation continues]]Back at her little private area Heather is getting bored, so she decides to dance for a while. She hates dancing on a hard floor though, so she has you lay on your back and uses your body as a trampoline. Her entire weight keeps pushing down on top of you, which really hurts. At least she took her heels off again.
<i>Hnnng, that was right in the balls</i>
<span style='color:purple;'>"Stop making so much noise, it's killing my mood!"</span>
[img[$imgDir + 'outside/nightclub/sneakin/clubsneakin4.webp']]
<<nobr>>
<<if $player.paintolerance < 150>>
<i>Your Pain Tolerance has improved</i>
<br>
<br>
<</if>>
[[She finally gets bored of you]]
<<if $player.paintolerance < 150>>
<<updatePainTolerance 20>>
<</if>>
<</nobr>>The night is coming to a close, and the party is slowly winding down. Before giving you your freedom she takes you down to the dance floor and gives you a good few slaps in front of everyone. Several of the guests are cheering her on.
<span style='color:orange;'>"Fuck him up, queen!"</span>
[img[$imgDir + 'outside/nightclub/sneakin/clubsneakin5.webp']]
<span style='color:purple;'>"If I ever catch you sneaking in here again I'll personally castrate you. Are we clear?"</span>
"Crystal clear, ma'am!"
<span style='color:purple;'>"Good. Now get out."</span>
She gives you just enough time to collect your clothes before having one of the bouncers escort you out.
[[Time to go->Outside]]Luckily giving massages is one of your specialties, and you soon have her stress melting away under your refined techniques. Once you're done with her neck she instructs you to go lower and work on her back next.
<span style="color: #bc4749;">"Such strong hands. Are you sure I can't keep you?"</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding2.webp']]
Moving even further down she has you rub her pedicured feet as well, good thing that's one of your specialties. While you're working she keep shifting around, often giving you a clear view of the panties underneath her skirt. You can't help but take a peek now and then.
<span style="color: #bc4749;">"I can see you staring you know. Would you like a taste?"</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding3.webp']]
[[Worship her pussy]]You're not saying no to some tasty pussy. While you haven't learned the best cunnilingus techniques yet, hours of ass worship training has has given you a flexible jaw and the stamina to lick for hours. By putting both to good use you manage to impress Brandi, who can barely contain her arousal at this point.
<span style="color: #bc4749;">"Ohh Goddess, I love it when they're eager!"</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding4.webp']]
[[Time to get to business]]Now that her slit is soaked with both pussy juice and saliva you get up and place your erection against the entrance. While slowly pushing forward you watch as inch by inch disappears inside her, until your hips touch and the entire thing is in.
<span style="color: #bc4749;">"Hnnng, gently, none of my servants are this size."</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding5.webp']]
By rocking back and forth you give her some time to adjust, gradually picking up the speed until you two are properly fucking. She even lets you grab and play with her tits, now encouraging you to go deeper and harder.
Her pussy feels surprisingly good for an older lady. So good in fact, that just a few minutes in you're already blowing your first load. Brandi gasps in surprise as she feels your hot cum inside her, and watches with bemusement as it drips out.
<span style="color: #bc4749;">"Don't tell me you're done already?"</span>
<i>Not even close</i>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding6.webp']]
[[Go for round 2]]Of course you're not done, not when there's such a tempting hole in front of you begging to be bred. You use your cock to rub some of your cum all over her lips, and make sure to push as much of it as you can back inside her. Soon you're pumping her pussy again like nothing happened, apart from the thick jizz you're now using as lube.
<span style="color: #bc4749;">"Mmm, good boy. This is why young studs are the best."</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding7.webp']]
Now that you're getting into the swing of things it's time to get serious. Taking her through a whole series of positions you make sure to give her a fat creampie in every single one. She especially seems to enjoy being on her hands and knees, her juices dripping onto the sheets as you take and breed her from behind.
<span style="color: #bc4749;">"Fuck! You're like an animal!"</span>
<i>Well, it is called doggy style</i>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding8.webp']]
[[Make sure she gets pregnant]]
Despite the great fun you're having you make sure not to lose sight of the goal, putting a baby in her oven. Every move you make has only one purpose, sending more of your swimmers to her egg. Somewhere along the line she started having quivering orgasms every time you pump yet another load in her sensitive pussy.
<span style="color: #bc4749;">"Ohh, I can feel it deep inside me! C-cummmiing!"</span>
[img[$imgDir + 'outside/dop/jobs/brandi/brandibreeding9.webp']]
You keep going until you've put every drop you have to give into her. In the aftermath Brandi is panting on the bed, a puddle of cum forming under her while she has mini after-orgasms. With your job completed you leave the house and get back in the car. The driver gives you a little wink, and your reward.
<i>You made 100 crowns breeding Brandi</i>
[[Head back->Department of Procreation]]
<<nobr>>
<<set $player.energy = $player.energy - 100>>
<<set $brandiimpregnated = true>>
<<set $player.money = $player.money + 100>>
<<progressTime>>
<</nobr>>You notice a console next to her tv and suggest playing some games to get to know each other. She seems to like that idea, and boots up some Mario Kart. To spice things up you both agree that the winner has to flash the loser. There's no way you're going to let her win now. Especially not when she's half drunk.
<span style="color: #bc4749;">"Hey, that's cheating!"</span>
"All is fair in love and war."
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding2.webp']]
After giving her a thorough beating you grin and collect your prize, having her take off her top and bra. Your jaw drops as a majestic pair of boobs is revealed, making Daisy blush. Only by using all of your willpower can you resist the urge to reach out and squeeze them.
<i>Holy cow, those are some melons</i>
<span style="color: #bc4749;">"Really? You like them?!"</span>
"Fuck, yeah!"
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding3.webp']]
[[Take it to the bedroom]]Daisy is a little more into things now so you have her lead you to the bedroom where she takes off the rest of her clothes, while you do the same. She finally lets you play with her boobs, and in return she gets to play with your cock. It must be her first time touching one, because it's all very fascinating to her.
<span style="color: #bc4749;">"Wow, it looks so angry. This is going inside me?"</span>
"If that's what you want."
<span style="color: #bc4749;">"Please, do it. I want a baby so bad."</span>
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding4.webp']]
[[Make her a woman]]First you help prepare her for penetration, rubbing her moistening hole with your cock and fingertips. When she's wet enough you carefully put a finger inside her, and then two. She seems ready for the real thing, so you place your head against her opening and start to push.
<span style="color: #bc4749;">"Ohh Goddess, it's happening!"</span>
Slowly but surely you bury yourself in her virgin pussy, and boy does it feel incredible. It's warm, tight, and clamping down on your shaft like it's never going to let you escape again. Not that you want to.
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding5.webp']]
After taking a minute to process things Daisy gives you the green light to start thrusting. During sex she looks even more beautiful, playing with her boobs and the pleasure clearly visible on her face. God, you want to impregnate this woman so bad, and that's exactly what you're going to do.
<span style="color: #bc4749;">"Mmmmh, fuck... So this is what sex is like."</span>
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding6.webp']]
[[She wants to take over]]Daisy is really getting into it now and suggests you let her ride you. You don't have any objections to that, and lay on your back. She's still a bit shy, so she faces away from you before sitting back down on your cock. It gives you an amazing view of her bouncing ass though.
<span style="color: #bc4749;">"It's going so deep now, hhhnnnggh..."</span>
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding7.webp']]
As time goes on she's getting more confident, and wilder too. It's not long before she turns around to face you, completely absorbed in the pleasure while her boobs bounce in your face. She's speeding up as well, both her bouncing and breathing become more erratic.
<span style="color: #bc4749;">"I think I'm gonna-"</span>
She has no time to finish her sentence as a huge orgasm hits, making her shake and moan on top of you in ecstacy. When her climax is finally ending she collapses onto your chest, and lays there for a minute or two. You're just about to ask if she's okay when she starts grinding her hips again, your cock still buried deep inside.
<span style="color: #bc4749;">"More... Give me more!"</span>
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding8.webp']]
[[You bang like bunnies]]More than happy to oblige you start thrusting your hips as well, matching her rhythm and resuming your lovemaking. You're starting to feel really good too, and look her in the eyes while giving Daisy her very first creampie. You could swear her pussy is squeezing even tighter than before, milking out every drop it can.
<span style="color: #bc4749;">"Yeeeeeeeeesssss!"</span>
Now that you've had a taste of cumming inside her it's impossible for you to hold back anymore. You flip her around and fuck her like a man possessed, only one thing on your mind. Pumping as many loads inside her as you possibly can. Daisy can barely even produce coherent words anymore, completely lost in the pleasure of baby-making sex.
Hours later you've finally tired yourselves out. While you're searching around the room for your discarded clothes, she's still on the bed farting out one of the many cumshots you put inside her. But no matter how much leaks out, there's already an endless amount of swimmers going up her tubes right now.
<span style="color: #bc4749;">"Look at how much there is. It's definitely going to be a girl, don't you think?"</span>
[img[$imgDir + 'outside/dop/jobs/daisy/daisybreeding9.webp']]
Daisy blows you a kiss and gives you a little wave as you're leaving, and thanks you for the great experience.
<i>You made 50 crowns breeding Daisy</i>
[[Back to the DOP->Department of Procreation]]
<<nobr>>
<<set $player.energy = $player.energy - 100>>
<<set $daisyimpregnated = true>>
<<set $player.money = $player.money + 50>>
<<progressTime>>
<</nobr>><span style="color: #ffc857;">"A raise? Sure kid, but you're gonna have to prove you can satisfy my customers."</span>
<i>Of course that's what she wants...</i>
She motions at your clothes, clearly suggesting you take them off. You take a quick look over your shoulder at the customers, but none of them are paying any attention to you. That will probably change quickly once you get naked.
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise1.webp']]
[[Strip down]]
[[Not worth it->Foxy's bar]] You awkwardly start undressing in the middle of the bar, ignoring the whistles and cheers behind you. Foxy personally takes off your underwear, inspecting your body more closely. She must like what she sees, because she smirks and spreads her legs, revealing an already growing bulge under her dress.
<span style="color: #ffc857;">"Alright then, show me why you deserve a raise."</span>
<i>Just relax. You've done this a dozen times.</i>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise2.webp']]
[[Show her your oral skills]]As you kneel down Foxy takes off her dress and pulls down her panties, eager to get her dick inside your mouth. Like most Futa she prefers to take an active role, quickly grabbing your head and fucking it like her personal fleshlight. Any gagging noises you make only serve to arouse her even further.
<span style="color: #ffc857;">"No wonder the girls keep fighting for a turn with your mouth. You're a natural!"</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise3.webp']]
When her entire shaft is covered in spit she gives you a naughty smile.
<span style="color: #ffc857;">"Okay baby, ready for your big test?"</span>
[[Prepare for what comes next]]She has you bend over and gives your dick a few tugs before focusing her attention on your ass. While spreading your cheeks with her hands you can feel her spit on your asshole, adding some more lube that she pushes in with her finger. A soft moan escapes you as it becomes clear she intends to push something else in too.
<span style="color: #ffc857;">"Don't worry, we'll make it fit."</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise4.webp']]
<span style="color: #ffc857;">"Ready or not, here I come."</span>
Next thing you know Foxy climbs on top of you and pushes her cockhead against your hole, forcing it to open. Inch by inch she slides in, until her ballsack rests against your cheeks. She takes a minute to hold it there, enjoying the sensations of a tight ass as you adjust to the sudden invader.
<span style="color: #ffc857;">"Mmmm, can you feel my cock throbbing boy? It's eager to breed you."</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise5.webp']]
[[She makes good use of your ass]]It's not long until she starts moving her hips, her instincts taking over. You spend the next hour on your back, the rock-hard girlcock slamming into you without a single break. Some of the other Futanari in the bar have also taken theirs out, stroking furiously while encouraging Foxy to bang you harder.
<span style="color: lightblue;">"Destroy his ass girl, the slut loves it!"</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise6.webp']]
<span style="color: #ffc857;">"Shit, he's squeezing me hard, here it comes!"</span>
The trial comes to an end as Foxy groans and releases all her pent-up seed inside you. You lose count at the 10th shot, and she shows no signs of slowing down as the hot, sticky jizz paints your bowels white. Her face is contorted in pleasure, overloading her brain during the intense orgasm.
<span style="color: #ffc857;">"Hnnnnnngh!</span>
[img[$imgDir + 'outside/futanaridistrict/foxysbar/raise/raise7.webp']]
When she finally pulls out it leaks out in thick globs, your twitching asshole unable to keep it in.
<span style="color: #ffc857;">"Whew, what a ride. You got your raise boy, though I'm sure the girls will make you work for it."</span>
<i>They better tip generously</i>
[[You'll take it->Foxy's bar]]
<<nobr>>
<<set $gotraisefromfoxy = true>>
<<progressTime>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 10>>
<</if>>
<<if $player.futanari < 300>>
<<updateFutanari 20>>
<</if>>
<<notify 5s>>Achievement unlocked: $20 is $20<</notify>>
<</nobr>><<nobr>>
<<switch random(0,2)>>
<<case 0>>
The client is pretty backed up, and it shows. She's already shot two loads up your ass, and is working on the third one with gusto. You tried telling her it's one shot per customer, but she ignored you completely. With her firm grip on your hips you have no choice but to endure until she gets tired.
<br>
<br>
<span style="color: #ffc857;">"Now this is some quality boipussy. It's squeezing me dry!"</span>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/bathroom/sex/bathroomfuck1.webp']]
<br>
<br>
Several ejaculations later the woman is finally satisfied, pulling out of your hole and letting a stream of jizz squirt out of your abused hole. While she's getting dressed more and more of it leaks out, forming a massive puddle on the floor. She admires her work for a second, and then gives your ass a slap for good measure.
<br>
<br>
<span style="color: #ffc857;">"Meet back here in a few days? I'll save up again just for you."</span>
<br>
<br>
<i>Please don't, that makes it worse</i>
<<case 1>>
You spend some time in the toilet stall, offering your ass to any Futanari that enters the bathroom. Most of them use you without saying a word, you are just another hole to dump their cum in to them. If they do speak it's usually to degrade you or announce that they're filling you up.
<br>
<br>
<span style="color: #ffc857;">"Yeah, you like that slut? I bet you're jerking your little dicklet in there."</span>
<br>
<br>
After they're done with you most slide some money under the stall door, but one of the customers always forgets to pay. You try and remember to ask her for cash up front, but her cock makes you feel so good you simply beg for more and let her do as she pleases.
<br>
<br>
<i>Next time I'll make her pay</i>
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/bathroom/sex/bathroomfuck2.webp']]
<<case 2>>
An Asian customer has been using your ass for over an hour and is showing no signs of stopping anytime soon. Instead of rushing to cum like most Futanari she seems to enjoy riding the edge of orgasm, never quite getting there. At this point you're pretty sure your insides have been reshaped into the form of her cock.
<br>
<br>
"Hurry up!"
<br>
<br>
<span style="color: #ffc857;">"Just five more minutes, I promise I'm almost done!"</span>
<br>
<br>
When she finally cums half an hour later her balls pump so much seed in your ass you feel like you're going to explode. At least she leaves a nice tip for your troubles. Now to go let it all leak out into the toilet before the next customer arrives...
<br>
<br>
[img[$imgDir + 'outside/futanaridistrict/bathroom/sex/bathroomfuck3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.futanari < 300>>
<<set _earnings = random(20,25)>>
<<else>>
<<set _earnings = random(25,30)>>
<</if>>
<<if def $player.shirt and $player.shirt is "futa">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns taking Futanari dick</i>
<</nobr>>
<<nobr>>
<<if $gameTime is 4>>
[[Take the cash->Futanari District]]
<<else>>
[[Take the cash->Public bathroom]]
<</if>>
<</nobr>>
<<nobr>>
<<progressTime>>
<<set $player.energy = $player.energy - 30>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 5>>
<</if>>
<<if $player.futanari < 300>>
<<updateFutanari 10>>
<</if>>
<</nobr>><span style='color:crimson;'>"So you like chicks with dicks huh. Wouldn't have guessed that. Although, you have been walking funny lately."</span>
"I don't want to talk about it..."
<span style='color:crimson;'>"You know, I have a friend from the Futanari district. I think I'll give her a call, and see if you're really as good as you say. Shame I can't do it myself, I always wanted to know what it's like having a cock."</span>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed11.jpeg']]
[[She invites over her friend]]A little while later the three of you are on the couch getting to know each other. Charlotte and her friend Honey haven't seen each other in a while, so it's nice for them to catch up first. The conversation then turns more sexual as Charlotte tells her the real reason she's here.
<span style='color:crimson;'>"Don't hold back babe, I want you to really test his skills. I need him to perform."</span>
<span style='color:purple;'>"No worries, I know just what to do with little sluts like this. Kneel."</span>
[img[$imgDir + 'charlotte/femdom/charlottefuta1.webp']]
[[Get on your knees]]As you kneel down you're surprised to see Charlotte alongside you, hoping to get a taste of her friend's cock as well. Judging by how she lunges for it this isn't the first time the pair of them have fooled around. With her help you get to work on getting Honey hard, one on each side of her shaft.
<span style='color:purple;'>"That's right, my dick is the only one we'll be using today. "</span>
<span style='color:crimson;'>"Mmmf, you taste as good as I remember babe."</span>
[img[$imgDir + 'charlotte/femdom/charlottefuta2.webp']]
With her erection at full strength it's time to show off your skills. Charlotte closely observes you as you deepthroat the entire thing, careful not to show even a hint of gag reflex. Honey's moans are soon echoing throughout the room, which you hope is a good sign. All those hours sucking dick in the toilet and at the bar must have really paid off.
[img[$imgDir + 'charlotte/femdom/charlottefuta3.webp']]
<span style='color:crimson;'>"Look at that, you are an expert cocksucker after all!"</span>
[[Time for the real test]]While you continue to worship some Futa cock Charlotte helps prepare your ass for the pounding to come. A little lube and some stretching never hurt anybody, especially not when taking a cock of Honey's size.
<span style='color:crimson;'>"At least you're still tight. A loose hole won't be appreciated at the games."</span>
[img[$imgDir + 'charlotte/femdom/charlottefuta4.webp']]
Once Charlotte is satisfied with her preparations she signals her friend, who quickly gets in position behind you. She starts by rubbing her cock between your ass cheeks, making sure you can feel just how big she is. When her patience runs out her cock gets placed against your pucker, ready to make you her bitch.
[[You feel her pressing against your ass]]With your ass lubed and stretched it doesn't take much for her to slip inside. Soon the pushing evolves into thrusting, until her hips slam against you over and over. Charlotte gets so turned on watching you get fucked she grabs you by the head and shoves your face onto her pussy.
<span style='color:crimson;'>"Oh yeah, give her some of that talented tongue."</span>
[img[$imgDir + 'charlotte/femdom/charlottefuta5.webp']]
Your moans and groans serve to please Charlotte even more, and you somehow manage to lick her to an explosive orgasm. Meanwhile Honey is still just slamming you from behind, her cock feeling ever bigger inside you. When she finds an angle that makes you weak in the legs she hammers it without mercy, until you can barely stay upright.
[[It's starting to feel really good]]The rhythmic thrusting finally makes you lose control, grabbing your own cock and stroking yourself to orgasm. Honey doesn't slow down one bit, and Charlotte watches in bemusement as you cover your stomach with cum. Your ass is starting to feel raw, so hopefully she isn't too far behind you.
"Shit!"
<span style='color:purple;'>"The boys always cum on my dick before I can!"</span>
[img[$imgDir + 'charlotte/femdom/charlottefuta6.webp']]
A few more minutes of fucking later Honey is ready for the big finale. After she pulls out Charlotte grabs you and starts kissing you, giving her friend a nice target for her load. You make sure to enjoy Charlotte's sweet taste as the thick Futa cum rains onto both of your faces.
<span style='color:purple;'>"Don't you two look cute."</span>
[img[$imgDir + 'charlotte/femdom/charlottefuta7.webp']]
After some quick cleanup Charlotte seems very pleased with your efforts. The pair of you say goodbye to Honey, who promises to drop by again the next time her balls need emptying. Maybe next time you'll get her all to yourself.
<span style='color:crimson;'>"Not bad, $playername. I'm sure there will be a Futa competition at the games. Make sure to spend some more time at the public bathroom before we go, you need to be able to take 9 inches with ease."</span>
[[Can't wait->Home]]
<<nobr>>
<<set $charlottetestcompleted = true>>
<<set $charlottetestcompleteddays = 0>>
<<set $chosenskill = "futanari">>
<<progressTime>>
<</nobr>><span style='color:lightgreen;'>"Holy shit, you actually got one? That's crazy, I didn't think you had it in you."</span>
"Yeah, you have no idea what I had to do to get this thing."
<span style='color:lightgreen;'>"I can only imagine. I had a friend who worked at the DOP, those stories were wild... I even considered applying for a job there myself!"</span>
<i>She seems to like the idea</i>
[img[$imgDir + 'outside/gym/sarah/sarah8.webp']]
<span style='color:lightgreen;'>"Tell you what. Meet me back here in the gym tomorrow morning, before any of the clientele gets here. You and I are going to have a special celebration."</span>
To clarify her intentions as she walks away Sarah sways her hips to make sure you're looking, then gives her ass a little slap. Many years of intense training have shaped her body into a masterpiece, and your jaw is basically on the floor as you admire her buns of steel.
[[I'll make sure to be there->Gym]]
<<nobr>>
<<set $sarahanaleventavailable = true>>
<<set $sarahlicensetalk = true>>
<</nobr>>
[img[$imgDir + 'outside/gym/gym.jpeg']]
The gym is completely deserted, even Sarah is nowhere in sight. She has to be here somewhere though, as the door was unlocked. Hopefully she didn't forget about the little arrangement the two of you made.
<i>Maybe she's changing in the locker room?</i>
[[Look around for her]]
<<nobr>>
<<set $sarahanaleventavailable = false>>
<</nobr>>You check several different rooms, all deserted, until you hear a noise coming from behind a nearby door. When you finally find her you can barely believe what you see. She's riding an exercise bike, which would be normal except she isn't wearing any pants or underwear. Also, strapped to the saddle is some sort of dildo device, which is currently halfway inside her ass. She notices your presence and give you a naughty smile, clearly having planned for you to see this.
[img[$imgDir + 'outside/gym/sarah/sarahanal1.webp']]
<span style='color:lightgreen;'>"Huff... There you are! I was starting to think you wouldn't show up."</span>
"Uhh, what are you doing?"
<span style='color:lightgreen;'>"I'm getting my body warm and ready of course. Good preparation is always important. Care to help out?"</span>
[[With pleasure]]While you take a minute to get an erection, which isn't difficult looking at the sight in front of you, Sarah switches the dildo to her pussy. This opens up her other hole for you, an invitation that you cannot ignore. You place your head against the entrance, and gently push to replace the toy.
<span style='color:lightgreen;'>"Slowly, it's my first time with a real one back there!"</span>
<i>Fucking hell, that is tight!</i>
[img[$imgDir + 'outside/gym/sarah/sarahanal2.webp']]
[[Show her the pleasures of anal sex]]You're not proud of the things you have to do to survive, but a boy's gotta do what a boy's gotta do. With the raise you got from Foxy comes added responsibility, mainly in the form of having your shitter stretched out by the regular clients.
[img[$imgDir + 'achievements/$20is$20.webp']]
<<back>>It doesn't take her long to get used to your size, demanding you shove more of your length into her butthole. Her pussy isn't being forgotten either, the dildo buried in it to the hilt. It's almost like you're double penetrating her.
<span style='color:lightgreen;'>"I'm so full, it feels amazing..."</span>
[img[$imgDir + 'outside/gym/sarah/sarahanal3.webp']]
Sarah's daily flexibility training comes in handy as it let's you try out some more exotic positions. Even after moving off the bike she doesn't let go of her toy, instead taking it into her mouth to suck off the pussy juice she just deposited on it. The smell is certainly driving you crazy, it's making you curious how it feels inside her other fuckhole.
"Hey, you want it in the pussy too?"
<span style='color:lightgreen;'>"No! Anal only, I'm not risking getting pregnant. How would I run the gym?"</span>
[img[$imgDir + 'outside/gym/sarah/sarahanal4.webp']]
[[As the lady wishes->Next]]Taking it to the ground you continue to ram into her, your mind taken over by lust. Even though her pussy is being ignored it's dripping wet, occassionally squirting out some juices as you give Sarah an assgasm. Every time that happens her hole squuezes and quivers around your shaft, sending waves of pleasure through both of you.
<span style='color:lightgreen;'>"Don't stop, I'm cummmiiiiiing!"</span>
[img[$imgDir + 'outside/gym/sarah/sarahanal5.webp']]
When Sarah's ass needs a little break she kindly offers you a blowjob, not something you're about to turn down. She doesn't seem to mind the taste of her own ass on your dick, in fact you could swear she gets off on it. Her sucking is enthusuastic and skilled, and when she takes you into her throat it's almost as tight as her shitter.
<span style='color:lightgreen;'>"Mmmm, what a tasty snack. Just what I needed."</span>
[img[$imgDir + 'outside/gym/sarah/sarahanal6.webp']]
As good as her mouth is you want to get back to the main event. Both of your legs are shot at this point, requiring some creative positions to keep fucking without too much effort involved. Sweat is now dripping down both of your bodies, but somehow it only makes Sarah look even hotter.
<span style='color:lightgreen;'>"Goddess, you're almost done right? I can't take much more!"</span>
"Just a little longer, it feels so good!"
[img[$imgDir + 'outside/gym/sarah/sarahanal7.webp']]
[[Almost there]]To celebrate your license Sarah gave you a special training session, which mostly involved finding various ways to stretch out her no longer virgin asshole. If every day at the gym was like that you would never leave.
[img[$imgDir + 'achievements/anythingformyclients.webp']]
<<back>>To finish things up you take it back to the exercise bike, where Sarah begs you to fill her up with baby-making seed. Between her lustful encouraging and her tightly squeezing sphincter you can soon feel the orgasm rising from your balls. With a grunt you pump it all into her, painting her walls white.
<span style='color:lightgreen;'>"Yes, breed my shithole! Breed it like you do the sluts at the DOP!"</span>
[img[$imgDir + 'outside/gym/sarah/sarahanal8.webp']]
As you catch your breath to recover from the intense fuck there is some noise coming from the entrance of the gym. Looks like you finished just in time for the first early bird gym rats to arrive.
<span style='color:lightgreen;'>"Oh crap, gotta go! I had a great time babe, I know who to call for my next stretching session."</span>
With that quickly grabs her clothes and heads for the changing rooms before anyone can catch you.
[[Get dressed as well->Gym]]
<<nobr>>
<<progressTime>>
<<set $sarahanaleventcompleted = true>>
<<if $player.energy > 99>>
<<set $player.energy = $player.energy - 100>>
<</if>>
<<notify 5s>>Achievement unlocked: Anything for my clients<</notify>>
<</nobr>><<nobr>>
<div class="row">
<div class="column">
<a data-passage="Clothing store" class="darken">
<img src="resources/outside/mall/clothesshop.webp" ><span>Clothing Store</span></a>
</div>
<div class="column">
<a data-passage="Sex shop" class="darken"><img src="resources/outside/mall/sexshop.jpeg" ><span>Sex Shop</span></a>
</div>
</div>
<div class="row">
<div class="column">
<a data-passage="Outside" class="darken"><img src="resources/charlotte/home/outside/outside.jpeg" ><span>Outside</span></a>
</div>
<div class="column">
<a data-passage="Pharmacy" class="darken"><img src="resources/outside/mall/pharmacy.webp" ><span>Pharmacy</span></a>
</div>
</div>
<<if $cfnmmallevent is not true>>
<br>
[[Check out the nearby commotion]]
<br>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>You have to fight with every fiber of your being to prevent your gaze from drifting downwards to her cleavage, something which would no doubt earn you a flogging.
<span style='color:#bc4749;'>""Hello there, little boy. I haven't seen you here before, are you new?"</span>
[img[$imgDir + 'outside/houseofpain/furniture/jasmine.jpeg']]
<span style='color:#bc4749;'>"You can call me Mistress Jasmine. You have good timing, I'm just looking for new recruits for the Forniphilia department."</span>
"What's Forniphilia?"
<span style='color:#bc4749;'>"It's where you serve women by a providing a place for us to sit or lean on, with your body. Of course you'll need to hold it for some time without moving or making noise, but you look reasonably fit. Come on, let's see if you have what it takes."</span>
[[Go with Jasmine]]
[[Maybe another time->House of Pain]]She takes you to one of her private rooms, but not before having you change into something she calls "more appropriate". You're basically naked apart from a mask covering your head, and some knee sleeves that should prevent chafing too much. She also has you on a chain, which she uses to lead you where she wants to go.
In the room is a table with some wine and things Jasmine is working on. While there are chairs present, it quickly becomes clear that she intends to sit on you instead. At least she doesn't look all that heavy.
[img[$imgDir + 'outside/houseofpain/furniture/jasmine1.webp']]
After some basic instructions she sits down on your back, and from that point on she doesn't even acknowledge you exist. As there is nothing to do your mind is free to do what it wants. It's mainly trying to figure out how your life went from a simple military one to now, mostly naked on your knees serving as someone's bench.
<span style='color:#bc4749;'>"Back straight. Do not move. Do not talk. You are a piece of furniture, nothing more and nothing less."</span>
[img[$imgDir + 'outside/houseofpain/furniture/jasmine2.webp']]
[[Keep yourself steady]]Now that you're in position Jasmine focuses on her paperwork. Every time you move or make a sound she berates you, until you learn to stay perfectly still. Time seems to pass at a snail's pace as your muscles start to groan under the load, unused to this strange situation. Your training in the House of Pain so far comes in handy to help tough it out.
<span style='color:#bc4749;'>"Look at you, you're a natural. Don't you love being able to serve in this way?"</span>
[img[$imgDir + 'outside/houseofpain/furniture/jasmine3.webp']]
[[It's been 2 hours]]Satisfied with your perfomance the mistress congratulates you and finally gets off. You almost let out a sigh in relief as you can finally relax. Kneeling for several hours is hard enough even without someone sitting on you.
<span style='color:#bc4749;'>"You can come work for me any time boy, just say the word. Though not all girls will make it as easy as I did."</span>
Jasmine puts the chain back on your collar and walks you back to the entrance of the House, after which she leaves you to your devices. The first thing you do is swap back to your normal clothes, this outfit makes you feel a bit self conscious.
<i>It's hard work but she promised it would pay well. Might be worth another shot.</i>
[img[$imgDir + 'outside/houseofpain/furniture/jasmine4.webp']]
[[Well, that was an experience->House of Pain]]
<<nobr>>
<<progressTime>>
<<if $player.paintolerance < 300>>
<<updatePainTolerance 15>>
<</if>>
<<if $player.energy > 29>>
<<set $player.energy = $player.energy - 30>>
<</if>>
<<set $forniphiliaunlocked = true>>
<</nobr>><<nobr>>
<<switch random(0,2)>>
<<case 0>>
A masked women rests her feet on your back as she reads some magazines. After what seems like an eternity your back is on fire, and you are bored out of your mind. The only thing to distract you are the random tidbits of information she sometimes reads aloud for some reason. Next time there's a quiz you're definitely going to know some answers.
<br>
<br>
<span style='color:#bc4749;'>"Would you look at that, the Red Cats won the championship. First time in 10 years."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/furniture/footstool1.webp']]
<<case 1>>
Some spoiled brat is typing away on her phone as you kneel down for her convenience. She has a very strong body odor, and to make matters worse she took off her shoes and placed them right on front of your face. She explicitly forbade you to touch them or move away, you can only hope it will improve as time goes on.
<br>
<br>
<span style='color:#bc4749;'>"How do my heels smell loser? I've worn them every day this week."</span>
<br>
<br>
You have no trouble believing her words, your eyes are watering and you have to suppress a gag from time to time. You're determined not to show any weakness however, you've handled much worse than this. Some teenager isn't about to break you. Plus making noise would likely earn you a beating from Jasmine.
<br>
<br>
[img[$imgDir + 'outside/houseofpain/furniture/footstool2.webp']]
<<case 2>>
The client takes her time eating some snacks as she rests her soles on your back. Smelling the warm food reminds you that it's been hours since your last meal, and makes you salivate. She doesn't even mind the growling sounds coming from your empty stomach, enjoying the extra torment it gives you.
<br>
<br>
<span style='color:#bc4749;'>"Sorry little piggy, furniture doesn't get to eat."</span>
<br>
<br>
You take a mental note to grab a few bites before your next session. It's bad enough without having to do it while starving.
<br>
<br>
[img[$imgDir + 'outside/houseofpain/furniture/footstool3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.paintolerance < 300>>
<<set _earnings = random(20,25)>>
<<else>>
<<set _earnings = random(25,30)>>
<</if>>
<<if def $player.shirt and $player.shirt is "masochist">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You earned _earnings crowns</i>
<</nobr>>
[[Finish session->House of Pain]]
<<nobr>>
<<progressTime>>
<<if $player.paintolerance < 300>>
<<updatePainTolerance 15>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<</nobr>><<nobr>>
<<switch random(0,2)>>
<<case 0>>
A gamer girl uses your face as her seat while she's playing. She even demands you hold up her feet, so she can be as comfortable as possible, and focus 100% on her playing. Her ass sitting on you isn't so bad as you can lean on the couch, but holding her up with your hands without wobbling is incredibly difficult. You hope she finishes soon.
<br>
<br>
<span style='color:#bc4749;'>"I've almost got him! Wait, no, there's a second phase? Just my luck..."</span>
<br>
<br>
<i>Please hurry up!</i>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/furniture/facesitting1.webp']]
<<case 1>>
This pair of besties love to gossip about their friends, and they love to do it even more with their fat asses firmly planted on a boy's face. They take turns on their favorite seat, your nose pressed against their asshole. Even though your hearing is also somewhat muffled, you can still make out a good bit of juicy details.
<br>
<br>
<span style='color:#bc4749;'>"No way, she really slept with her slave? He's like 40."</span>
<br>
<br>
<span style='color:yellow;'>"From what I heard he's super hung. Like, 9 inches at least."</span>
<br>
<br>
<span style='color:#bc4749;'>"That slut!"</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/furniture/facesitting2.webp']]
<<case 2>>
Some girl has an important event today, and wants you to be her seat as she does her makeup. It takes her a while to find a comfortable position, constantly shifting and bouncing around. Unlike most other clients, who prefer silence, she seems to enjoy talking to and humiliating you. Of course you don't have much of an oppurtunity to talk back, being stuck between her ass cheeks and all.
<br>
<br>
<span style='color:#bc4749;'>"How's it smell down there, boy? Take a good few whiffs! I'll wash later."</span>
<br>
<br>
[img[$imgDir + 'outside/houseofpain/furniture/facesitting3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.paintolerance < 300>>
<<set _earnings = random(20,25)>>
<<else>>
<<set _earnings = random(25,30)>>
<</if>>
<<if def $player.shirt and $player.shirt is "masochist">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You earned _earnings crowns</i>
<</nobr>>
[[Finish session->House of Pain]]
<<nobr>>
<<progressTime>>
<<if $player.paintolerance < 300>>
<<updatePainTolerance 15>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<</nobr>>Somehow you've found yourself work as a human chair, used for women's comfort as they go about their business. While initially hesitant about the idea, something about a beautiful girl's voluptious ass resting on your face, and the smell of her nether regions, is oddly comforting.
[img[$imgDir + 'achievements/humanfurniture.webp']]
<<back>>[img[$imgDir + 'outside/mall/pharmacy.webp']]
<<nobr>>
<<if def $player.futanariaddiction and $futanariaddictioncured is not true>>
[[Ask about medicine for Futanari addiction]]
<br>
<</if>>
<<if $player.money > 49>>
<<link "Ask for an energy booster shot (50 crowns)" "Pharmacy">>
<<set $player.money = $player.money - 50>>
<<set $player.energy = $player.energy + 100>>
<<if $player.energy > 200>>
<<set $player.energy = 200>>
<</if>>
<</link>>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Leave->Mall]]While there doesn't seem to be anything advertised, it can't hurt to ask about a better treatment option than the shots at the hospital. The pharmacist is a gorgeous lady in her 30s, who looks at you disapprovingly when you bring up the Futa.
<span style='color:#588157'>"Oh, you're one of those... It's your lucky day. We have an experimental new treatment that's said to fully cure the addiction with 94% success rate. It's a tad expensive, but you'll be able to suck all the dicks you want while keeping your mind intact. Can't say the same for your dignity, though."</span>
[img[$imgDir + 'outside/mall/pharmacy/pharmacist.jpeg']]
<i>The treatment is 500 crowns</i>
<<nobr>>
<<if $player.money > 499>>
<<link "Get the permanent treatment" "Pharmacy">>
<<set $player.money = $player.money - 500>>
<<set $futanariaddictioncured = true>>
<</link>>
<</if>>
<</nobr>>
[[I can't afford that->Pharmacy]] A group of women have gathered around a mistress walking around with her naked slave. He's cuffed and gagged, and freely lets them touch him wherever they please. The look in his eyes is mostly vacant as they squeeze his ass and talk about him as if he's a piece of meat. Whoever he used to be is gone now, broken by the endless humiliation.
<span style='color:#faedcd'>"How did you get him to be so obedient? Do you cage him?"</span>
<span style='color:#ccd5ae'>"Oh yes, he's locked up for 6 days a week. If he behaves then he gets 10 minutes on Sundays to do his business. One time he went two months without release, but he caved eventually."</span>
<i>If I'm not careful I'm going to end up like that too</i>
[img[$imgDir + 'outside/mall/events/mallcfnm.webp']]
[[Get on with your business->Mall]]
<<nobr>>
<<set $cfnmmallevent = true>>
<</nobr>>[img[$imgDir + 'outside/mall/sexshop.jpeg']]
<<nobr>>
<<if $breedinglicenseobtained is true and $sexshopbackroomunlocked is not true>>
[[The shop owner motions for you to come over (!)]]
<br>
<</if>>
<<if $sexshopbackroomunlocked is true>>
<<if $player.energy > 49>>
[[Breed anonymously in the backroom]]
<<else>>
<a disabled><strike>Breed anonymously in the backroom</strike> (no energy)</a>
<</if>>
<br>
<</if>>
<<if $player.energy > 29 and $painpigunlocked is true>>
[[Let the customers try out some merchandise on you]]
<<else>>
<a disabled><strike>Let the customers try out some merchandise on you</strike> (no energy)</a>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Leave->Mall]]<span style='color:#e63946'>"You there, boy. Come here."</span>
"What is it, miss?"
<span style='color:#e63946'>"A little birdie told me you're a licensed breeder. Is that true?"</span>
"Yes, it is. I have the paperwork right here."
[img[$imgDir + 'outside/mall/sexshop/sexshopmistress.jpeg']]
After confirming the authenticity the lady clicks her tongue and eyes you up and down. A minute or two later, having made up her mind, she motions for you to follow her and goes in the back. There are apparently secret rooms you've never seen or even considered existed. You hesitate for a moment while she impatiently tells you to move it.
<i>Am I being kidnapped?</i>
[[Go with her]][img[$imgDir + 'outside/mall/clothesshop.webp']]
<<nobr>>
<div class="row">
<<if $futanaridistrictdisabled is not true and $tshirtfutabought is not true>>
<div class="column" style='width:25%;'>
<a data-passage="futatshirt" class="darken">
<img src="resources/outside/mall/clothesshop/deepthroatprincess.jpeg" ><span>Deep Throat T-shirt</span></a>
</div>
<</if>>
<<if $tshirtworshipbought is not true>>
<div class="column" style='width:25%'>
<a data-passage="worshipshirt" class="darken"><img src="resources/outside/mall/clothesshop/footworship.jpeg" ><span>Foot Worship T-shirt</span></a>
</div>
<</if>>
<<if $tshirtmasochistbought is not true>>
<div class="column" style='width:25%'>
<a data-passage="masochistshirt" class="darken"><img src="resources/outside/mall/clothesshop/masochist.jpeg" ><span>Masochist T-shirt</span></a>
</div>
<</if>>
</div>
<</nobr>>
<<nobr>>
<<if $parkworshipunlocked is true >>
<<if $player.energy > 29>>
[[Help out in the shoe department]]
<<else>>
<a disabled><strike>Help out in the shoe department</strike> (no energy)</a>
<</if>>
<</if>>
<<if $gameTime is 5>>
<<goto Outside>>
<</if>>
<</nobr>>
[[Leave->Mall]]<<nobr>>
<<switch random(0,1)>>
<<case 0>>
One of the customers is picking out new heels, and she wants your help to make sure she's buying quality stuff. She has you inspect every pair very closely for faults, and gauges your reactions when she uses them to step on you. At least the shoes are still clean and unworn. She eventually settles on some leopard print ones.
<br>
<br>
<span style='color:#2a9d8f'>"Aren't they cute? All the boys are going to love worshipping me now!"</span>
<br>
<br>
[img[$imgDir + 'outside/mall/clothesshop/shoedepartment1.webp']]
<<case 1>>
It's a slow day at the store, so one of the employees asks for your help with a menial task. She needs you to clean all the worn shoes the customers returned, exclusively using your tongue. At least she's helping you out a bit by rubbing them onto your face.
<br>
<br>
<span style='color:#2a9d8f'>"Come on, put that tongue to work! If you don't hurry we will be here all day."</span>
<br>
<br>
[img[$imgDir + 'outside/mall/clothesshop/shoedepartment2.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if $player.worship < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.worship < 150>>
<<set _earnings = random(12,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "worship">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns worshipping feet</i>
<</nobr>>
[[Finish up->Clothing store]]
<<nobr>>
<<progressTime>>
<<if $player.worship < 150>>
<<set $player.worship = $player.worship + 10>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<<if $player.worship is 50 and $worshiplevel1popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 1!<</notify>>
<<set $worshiplevel1popup = true>>
<</if>>
<<if $player.worship is 150 and $worshiplevel2popup is not true>>
<<notify 5s>>Your Worship skill has improved to level 2!<</notify>>
<<set $worshiplevel2popup = true>>
<</if>>
<</nobr>><<nobr>>
<img src="resources/outside/mall/clothesshop/deepthroatprincess.jpeg" width="300px" style="min-width:300px; width:300px;">
<</nobr>>
Improves Futanari earnings when worn
Price: 50 crowns
<<nobr>>
<<if $player.money > 49>>
<<link "Buy it (50 crowns)" "Clothing store">>
<<set $player.money = $player.money - 50>>
<<set $tshirtfutabought = true>>
<<if $tshirtfutabought is true and $tshirtworshipbought is true and $tshirtmasochistbought is true>>
<<notify 5s>>Achievement unlocked: Fashionista<</notify>>
<</if>>
<</link>>
<br>
<</if>>
[[Not interested ->Clothing store]]
<</nobr>>[img[$imgDir + 'outside/mall/mall.webp']]
You find yourself nearby the local mall. With your debt paid off you might have some spare money you can spend here.
[[Go in->Mall]]
<<nobr>>
<<set $malldiscovered = true>>
<<if $player.energy > 9>>
<<set $player.energy = $player.energy - 10>>
<</if>>
<</nobr>><<nobr>>
<<set _start = 1>>
<<set _end = 2>>
<<if $peggingenabled is true>>
<<set _end = 3>>
<</if>>
<<if $gotraisefromfoxy is true>>
<<set _start = 0>>
<</if>>
<<set _random = random(_start,_end)>>
<<switch _random>>
<<case 0>>
You are minding your own business when a Futanari customer comes up to you with a problem. She wanted to try out the new "erection-boosting gummy, now in 5 different flavors!", but forgot to read the instructions and took one of each to see which one she liked best. Turns out you're only supposed to take one a day, and now she has an uncontrollable erection.
<br>
<br>
<span style='color:#ffafcc'>"Please help, I've been jerking in the fitting room for an hour! It just won't go down!"</span>
<br>
<br>
In the end you can't think of anything better than helping her relieve yourself with your body. The girl eagerly gets on top of you and inserts herself, instantly starting to hump you like a woman possessed. Within minutes you feel her flood your insides with jizz, but she shows no signs of slowing down in the slighest.
<br>
<br>
<span style='color:#ffafcc'>"Sorry cutie, I can't stop yet, it's still hard. Maybe another creampie or two will do it?"</span>
<br>
<br>
<i>This is going to take a while...</i>
<br>
<br>
[img[$imgDir + 'outside/mall/sexshop/helpcustomers/futa.webp']]
<<case 1>>
This dominatrix is looking for the strongest vibrator that won't make men cum, and she's willing to pay for quality. As a good test subject you offer your services, and she spends the next few hours mercilessly edging your shaft with any she can find. No matter how much you beg for release she doesn't let you cum even once.
<br>
<br>
<span style='color:#ffafcc'>"What's the matter, is this not enough stimulation for you? That's too bad isn't it."</span>
<br>
<br>
She eventually settles on one that made your cock throb like crazy, and thanks the shop owner for her excellent services. While she left a healthy tip you don't see any of that money, having little to show for your troubles apart from a major set of blue balls.
<br>
<br>
[img[$imgDir + 'outside/mall/sexshop/helpcustomers/vibrator.webp']]
<<case 2>>
One of the recent hypes has been the face dildo, a toy designed for her pleasure and his humiliation. Every second customer is asking you about it, and plenty of them want a live demonstration. You've never given so many women an orgasm, their juices spraying on your face as they ride themselves to climax.
<br>
<br>
<span style='color:#ffafcc'>"Hold still, I'm fucking cumming!"</span>
<br>
<br>
<i>At least the view is nice</i>
<br>
<br>
[img[$imgDir + 'outside/mall/sexshop/helpcustomers/facedildo.webp']]
<<case 3>>
A girl wants to try using a strapon, but she's at a loss for which brand and size to get. You're just about to suggest one of the smaller ones when the shopkeep comes over and tells her to try some out untils he finds one she likes. Before you can ask how she plans to test the toys she grabs you and takes you both to a backroom.
<br>
<br>
Once there she hands the customer a set of strapons, and tells her to have at it. Soon you're being bent over and fucked up the ass by an endless stream of toys, each one larger than the last. While shy at first the girl also seems to be getting into things, clearly having a good time. Hopefully she buys at least one.
<br>
<br>
<span style='color:#ffafcc'>"Woah, this is fun. Moan harder for me, bitch!"</span>
<br>
<br>
[img[$imgDir + 'outside/mall/sexshop/helpcustomers/pegging.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<if _random is not 0>>
<<if $player.paintolerance < 50>>
<<set _earnings = random(8,12)>>
<<elseif $player.paintolerance < 150>>
<<set _earnings = random(12,15)>>
<<else>>
<<set _earnings = random(15,20)>>
<</if>>
<<if def $player.shirt and $player.shirt is "masochist">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You earned _earnings crowns</i>
<<else>>
<<if $player.futanari < 300>>
<<set _earnings = random(20,25)>>
<<else>>
<<set _earnings = random(25,30)>>
<</if>>
<<if def $player.shirt and $player.shirt is "futa">>
<<set _earnings = _earnings + 5>>
<</if>>
<<set $player.money = $player.money + _earnings>>
<i>You earned _earnings crowns</i>
<</if>>
<</nobr>>
[[End shift->Sex shop]]
<<nobr>>
<<progressTime>>
<<if _random is not 0>>
<<if $player.paintolerance < 150>>
<<updatePainTolerance 10>>
<<elseif $player.paintolerance < 300 and $forniphiliaunlocked is true>>
<<updatePainTolerance 15>>
<</if>>
<<else>>
<<if def $player.futanariaddiction>>
<<updateFutanariAddiction 5>>
<</if>>
<<if $player.futanari < 300>>
<<updateFutanari 10>>
<</if>>
<</if>>
<<set $player.energy = $player.energy - 30>>
<</nobr>><<nobr>>
<img src="resources/outside/mall/clothesshop/footworship.jpeg" width="300px" style="min-width:300px; width:300px;">
<</nobr>>
Improves Worship earnings when worn
Price: 50 crowns
<<nobr>>
<<if $player.money > 49>>
<<link "Buy it (50 crowns)" "Clothing store">>
<<set $player.money = $player.money - 50>>
<<set $tshirtworshipbought = true>>
<<if $tshirtfutabought is true and $tshirtworshipbought is true and $tshirtmasochistbought is true>>
<<notify 5s>>Achievement unlocked: Fashionista<</notify>>
<</if>>
<</link>>
<br>
<</if>>
[[Not interested ->Clothing store]]
<</nobr>><<nobr>>
<img src="resources/outside/mall/clothesshop/masochist.jpeg" width="300px" style="min-width:300px; width:300px;">
<</nobr>>
Improves Pain Tolerance earnings when worn
Price: 50 crowns
<<nobr>>
<<if $player.money > 49>>
<<link "Buy it (50 crowns)" "Clothing store">>
<<set $player.money = $player.money - 50>>
<<set $tshirtmasochistbought = true>>
<<if $tshirtfutabought is true and $tshirtworshipbought is true and $tshirtmasochistbought is true>>
<<notify 5s>>Achievement unlocked: Fashionista<</notify>>
<</if>>
<</link>>
<br>
<</if>>
[[Not interested ->Clothing store]]
<</nobr>>You bought all t-shirt options at the mall, now you can be dressed for the occassion no matter what. Maybe some agent will recruit you to become a model!
[img[$imgDir + 'achievements/fashionista.webp']]
<<back>><<nobr>>
<div class="row">
<<if $tshirtfutabought is true>>
<div class="column" style='width:33%;'>
<a data-passage="equipfutashirt" class="darken">
<img src="resources/outside/mall/clothesshop/deepthroatprincess.jpeg" ><span>Equip</span></a>
</div>
<</if>>
<<if $tshirtworshipbought is true>>
<div class="column" style='width:33%'>
<a data-passage="equipworshipshirt" class="darken"><img src="resources/outside/mall/clothesshop/footworship.jpeg" ><span>Equip</span></a>
</div>
<</if>>
<<if $tshirtmasochistbought is true>>
<div class="column" style='width:33%'>
<a data-passage="equipmasochistshirt" class="darken"><img src="resources/outside/mall/clothesshop/masochist.jpeg" ><span>Equip</span></a>
</div>
<</if>>
</div>
<</nobr>>
<<link "Remove t-shirt" "Wardrobe">>
<<set $player.shirt = "none">>
<</link>>
[[Back->Bedroom]]<<nobr>>
<<set $player.shirt = "futa">>
<<goto Wardrobe>>
<</nobr>><<nobr>>
<<set $player.shirt = "worship">>
<<goto Wardrobe>>
<</nobr>><<nobr>>
<<set $player.shirt = "masochist">>
<<goto Wardrobe>>
<</nobr>><<nobr>>
<<if $peggingenabled is true>>
<span style='color:crimson;'>"Ooh, that one is my favorite. We're going to have a lot of fun."</span>
<br>
<br>
"... What kind of fun?"
<br>
<br>
<span style='color:crimson;'>"The kind where you do what I say. Now hold still."</span>
<<else>>
"I'm pretty good at taking punishment. Though I'm not letting anything get near my ass."
<br>
<br>
<span style='color:crimson;'>"What use are you to me then? You'd lose a ton of points at the games for that. I hope you have another well-trained skill."</span>
<</if>>
<</nobr>>
[img[$imgDir + 'charlotte/home/charlotteroom/charlottebed11.jpeg']]
<<nobr>>
<<if $peggingenabled is true>>
[[She ties you up]]
<<else>>
[[Pick something else->I think I'm ready]]
<</if>>
<</nobr>>With masterful skill she ropes up every part of your body until you are completely immobilized. With one hand squeezing your balls and the other slapping any exposed skin she tests just how much punishment you can take. You let out a few groans into the ball gag when she grips extra tight, but otherwise you withstand it well.
<span style='color:crimson;'>"Don't tell me this is too much for you. We're just getting started!</span>
[img[$imgDir + 'charlotte/femdom/charlottebdsm1.webp']]
[[Charlotte takes out her toys]]After taking out a box filled with various devices Charlotte changes up your position for whatever she has planned. All this tying and untying is hard work, so when she's finished she takes a moment to rest on your face. With her asshole rubbing against your mouth it's clear what she wants you to do.
<span style='color:crimson;'>"Ohh yes piggy, eat my ass like it's the most delicious thing you ever tasted!"</span>
<i>Honestly it tastes pretty good</i>
[img[$imgDir + 'charlotte/femdom/charlottebdsm2.webp']]
When she's content for now she climbs back down and rummages in her toy box. She soon fishes out a black strapon and puts it on, applying some lube with a sensual stroking motion. She then slaps your butt and moves closer, lining up her plastic dick with your very vulnerable hole.
<span style='color:crimson;'>"Ready for the pounding of your life?"</span>
"Hah, do your worst!"
Charlotte takes that challenge personally, showing you no mercy while thrusting her hips as hard as she can. The entire thing slides in at once, and without missing a beat you're getting fucked like a bitch in heat. She clearly has experience using this thing, and isn't afraid to use it.
[img[$imgDir + 'charlotte/femdom/charlottebdsm3.webp']]
<span style='color:crimson;'>"This is fun, but how about we turn the roles around? Maybe you'll be a better fuck with the strapon!"</span>
[[You don't have a choice]]She removes the ropes and hands you the toy, motioning for you to put it on. It's a little awkward, owing to the fact that you have your own dick in the way, but you make it work. With the toy secured Charlotte gets on all fours and orders you to ram it in her ass. It slips in even easier than in yours.
<span style='color:crimson;'>"Fuck, now that's what I'm talking about! Nice and hard, and we don't have to worry about you cumming too early"</span>
<i>Yeah, but I can't feel anything...</i>
[img[$imgDir + 'charlotte/femdom/charlottebdsm4.webp']]
Charlotte doesn't seem to care about your pleasure at all. She uses her vibrator to give herself endless orgasms while you do all the work, your poor cock completely ignored. Any time you slow down even slightly she slaps you in the face and motions for you to continue.
<span style='color:crimson;'>"Keep going, I don't care if you're tired."</span>
You are forced to keep "fucking" her until she is fully satisfied. Sex certainly is a lot less fun when it's all work and no pleasure. At least you showed her what you can take, it will have to be enough.
[img[$imgDir + 'charlotte/femdom/charlottebdsm5.webp']]
<span style='color:crimson;'>"Whew, not bad. It's not often someone can keep up with me. You'll do great at the games, I know it. Make sure to stay in tip-top shape until then. And keep making me money, of course"</span>
[[Rest your sore ass->Home]]
<<nobr>>
<<set $charlottetestcompleted = true>>
<<set $charlottetestcompleteddays = 0>>
<<set $chosenskill = "paintolerance">>
<<progressTime>>
<</nobr>>You've barely left your room when Charlotte yells at you to come see her. She's still in the middle of getting dressed, but doesn't seem to mind you barging in on her like this. Whatever she wants must be important. Or she's gotten used to your presence here. As you're staring at her legs a bit too much she coughs to draw you gaze upwards.
<span style='color:crimson;'>"Hey. I heard back from my contact. They can get us in the games, but we'll have pay up front. Tell me you have enough by now? We need 1000 crowns."</span>
[img[$imgDir + 'charlotte/home/general/charlotte3.jpeg']]
<<nobr>>
<<if $player.money > 999>>
<<linkreplace "Pay up (1000 crowns)" t8n>>
<span style="color:crimson;">"Great. I'll buy us the tickets and let you know when it's time to leave."
<br><br>
<<set $player.money = $player.money - 1000>>
<<set $gamesticketbought = true>>
<h1>End of current content</h1>
[[Continue->Home]]
</span><</linkreplace>>
<br>
<</if>>
<<linkreplace "I don't have that much" t8n>><span style="color:crimson;">"Well come talk to me once you do then. And make sure you don't take too long!"
<br><br>
[[Continue->Home]]
</span><</linkreplace>>
<<set $charlotteticketevent = true>>
<</nobr>>She takes you to a small booth with a hole in the wall. On the other side is a naked woman, currently shoving her finger up her snatch. She must have been at it for a while, because it's sopping wet and the room reeks of her juices. When the woman hears someone on the other side she puts her hand through and motions for you to come closer.
<span style='color:#ffafcc'>"Finally! It's been hours. Hurry up, stick your dick through so we can get started."</span>
[img[$imgDir + 'outside/mall/sexshop/gloryhole/gloryholepussy.webp']]
"Holy shit! What is this place?"
<span style='color:#e63946'>"This is a little project I started up a while back. The girls here are desperate for a baby, but were refused by the government for various reasons. Some had run-ins with the law, others have some small genetic defect, in any case the DOP refused them. That is, of course, where you come in. Literally."</span>
"You want me to knock them up? Without ever seeing their face or knowing their name?"
<span style='color:#e63946'>"Yes. I personally make sure everyone down here is clean and fertile. The girls are willing to pay good money for this, so I will give you a cut if you decide to do it. Don't tell me you're not interested? Most men would kill for a chance like this."</span>
<i>It does sound tempting</i>
[[Tell her you'll consider it->Sex shop]]
<<nobr>>
<<set $sexshopbackroomunlocked = true>>
<</nobr>><<nobr>>
There's no shortage of girls willing to risk it all for motherhood. Any time you head down here there is a girl naked and ready to get impregnated by a stranger. Most are eager to suck you and get you hard, as long as you fuck their pussy after. Of course there is little talking involved, apart from encouraging you to blow a fat load straight to their fertile womb.
<br>
<br>
<span style='color:#ffafcc'>"Let it out inside me! I want you to cum till your balls are empty!"</span>
<br>
<br>
You're more than happy to help them achieve their dreams, and the sex is of course a nice bonus. All the girls (and guys) down here are vetted by the sex shop owner, so they are all young and prime for breeding. Warm, tight, and eager, what more could you ask for?
<br>
<br>
<i>I wonder how many little squirts I'll have running around in a year or two</i>
<br>
<br>
<<switch random(0,2)>>
<<case 0>>
[img[$imgDir + 'outside/mall/sexshop/gloryhole/gloryholecreampie1.webp']]
<<case 1>>
[img[$imgDir + 'outside/mall/sexshop/gloryhole/gloryholecreampie2.webp']]
<<case 2>>
[img[$imgDir + 'outside/mall/sexshop/gloryhole/gloryholecreampie3.webp']]
<</switch>>
<</nobr>>
<<nobr>>
<<set _earnings = 25>>
<<set $player.money = $player.money + _earnings>>
<i>You made _earnings crowns for donating your seed</i>
<<if $anonymousdonor is not true>>
<<set $anonymousdonor = true>>
<<notify 5s>>Achievement unlocked: Anonymous donor<</notify>>
<</if>>
<</nobr>>
[[Pull up your pants->Sex shop]]
<<nobr>>
<<progressTime>>
<<set $player.energy = $player.energy - 50>>
<<if ndef $womenbredanonymously>>
<<set $womenbredanonymously = 0>>
<<else>>
<<set $womenbredanonymously++>>
<</if>>
<</nobr>>Some girls want to get pregnant without going through the hassle of the official channels, and you're more than happy to help them do it. If you keep doing this you could build a legacy greater than Genghis Khan himself!
[img[$imgDir + 'achievements/anonymousdonor.webp']]
<<back>>