public function dryadBlowjob() : void
//name of the function
{
var pp
regnancyPlaceholder = null;
this.clearOutput();
this.dryadHeader();
pp = this.getDryadPregContainer(); //this is a pregnancy placeholder, apparently it's still to be done.
this.output("You tell her you’ll suck her dick to get her off, and a smile crosses her lust-reddened face.");
// this.output indicates what text to output
this.output("\n\n<i>“Oh, thank you! Thankyouthankyouthankyou!”</i>");
// \n\n indicates a paragraph break. <i></i> indicates the text between the two will show as italics, <b></b> for bold.
this.output("\n\nYou seat yourself");
if(this.pc.isTaur())
//conditional, the text between the { } shows up if the player has a taur body.
{
this.output(" on your haunches");
}
this.output(", the furred underside of her belly gently brushing your head as she hurriedly steps above you to get into position. You scarcely have time to look at her cock, eyes widening slightly at the size of it before you’re overcome by the sensation of her flared head splitting your [pc.lips] into a slutty ‘O’ as she slowly thrusts herself into your depths, groaning all the while.");
this.output("\n\n<i>“Oooohhh fuck, your throat is soooo gooood...”</i>");
this.output("\n\n");
if(this.pc.hasCock())
//another conditional, in this case the text shows if the player has a cock
{
this.output("[pc.EachCock] involuntarily stiffens at her praise, shamefully acknowledging your pleasure in having your face fucked. ");
//[pc.EachCock] is a parser call which will give the description of each of your cocks.
}
this.output("She pants and shoves her thickening length further into the warmth and wetness of your unprepared throat, her hind legs quivering as your lips and tongue roll across her sensitive surface while she roughly plunges in and out of you. Your saving grace is that she’s so horny that her precum is flowing like a river down your gullet, easing her passage into your esophagus. Your ");
if(!this.pc.isBimbo())
//another conditional for bimbos
{
this.output("gag reflex is completely overwhelmed by such a large object passing through where it shouldn’t, which is great because you’d doubt you’d even be able to get her off you in her lustful frenzy.");
}
else
//else means that in case the previous condition is not met then the following text shows up.
{
this.output("throat is completely stuffed by the enormous object, stretched out nice and thick around the big fat cock. Part of you thrills to know that you’re hot enough to warrant a true face-fuck.");
}
this.output("\n\n<i>“Fuuuck, your throat is better than pussy! Hang on babe, I’m gonna cum real soon.”</i>");
this.output("\n\nShe moans desperately and fucks your face with renewed vigor, your loud swallows accentuated by the slap of her heavy, churning balls against your chin as she repeatedly hilts herself in the cocksheath of your mouth, precum drizzling down your throat and leaking from between your [pc.lips].");
if(this.pc.hasCock())
//conditional, if the player has a cock.
{
this.output(" Your own [pc.cocks] ");
if(this.pc.cockTotal() > 1)
//conditional, if the player has more than 1 cock
{
this.output("jerk");
}
else
{
this.output("jerks");
//if the player only has 1 cock
}
this.output(" every time she slides down your throat, the constant ooze of your precum spraying onto the forest floor beneath you.");
}
this.output(" Her hind legs lower to the ground as she fucks you with fierce thrusts of her hips, the warmth in your stomach growing by the second as the drooling from her cock starts to become more like a jet. She screams her pleasure to the skies while your eyes begin to roll upwards from the combination of lack of air and submissive pleasure.");
this.output("\n\n<i>“Oh! <i>Oh, fuck!</i>”</i>");
this.output("\n\nHer orgasm arrives on the heels of her wild screams, the first real stream of seemingly never-ending spunk swelling your belly directly when she hilts herself balls-deep in your throat. The moment the stream begins to slow she pulls back out, only to ram it back home with a low, wordless groan of pleasure as she drains her plump balls into you, each thrust bringing with it a renewed spray of jism straight down your willing throat, your neck bulging while you submissively suck load after hot load down its length. By the time she’s done you’re a mess, although to your credit the vast majority of her cum is settling safely in your stomach instead of splattered across your visage. She slowly withdraws her length from your well-used fuckhole with a light moan, her flare pulling past your [pc.lips] with a wet pop as she sighs in satisfaction.");
this.pc.loadInMouth(pp);
//add the mouth filled status
this.pc.lust(30);
//increase lust by 30
this.processTime(10);
//the time it takes
this.clearMenu();
this.addButton(0,"Next",this.dryadAfterscene);
//next scene
}