ogqjjw (text, doesn't expire)
//SleepWithMinerva rework
//Bold text is now done with [b:]
//if you’re naked, you won’t get undressed, and the part where you get naked now has you remove everything instead of only one piece.
//Metal platebody is now platemail.
//Changed one “you and Minerva” to be less repetitive
//Added “hun” at the end of Minerva’s final sentence to make it clear it’s her and not Valeria.

//sleepWithMinerva()//
You walk over to the siren and give her a hug. You tell her that you want to sleep with her. [say: Oh, really? You want to sleep with me?] she says. You nod.

Minerva guides you to the most comfortable spot. She takes off her tube top, exposing her breasts completely.

[if (player.armorName == "goo armor"){You take your time to get the platemail off until you're completely naked save for the goo-girl covering you.|[if (!isNaked){You take your time to take everything off until you're completely naked.}]}] You lay next to Minerva while you rest your head on her soft breasts. [if (player.armorName == "goo armor"){Valeria, your goo-girl companion, envelopes you and Minerva, helping to keep you warm.}] [say: Sweet dreams, hun] she says as you finally close your eyes.


//function sleepWithMinervaII()//
[b:Ten hours pass...]

You wake up, feeling refreshed. You thank Minerva for letting you sleep with her and you hug her, making sure to give her a good kiss. [say: Ohhhhh,] she moans and even blushes! You break the kiss. [say: Darling, come back anytime, ok?] she says.

[if (player.armorName == "goo armor"){Valeria encases you once more and you get suited up|[if (isNaked){You stretch your body|You get re-dressed in your [armor]}]}] and you leave the tower to return to your camp.

//the other two parts are unchanged

CODE VERSION

    function sleepWithMinerva() {
        clearOutput();
        minervaSprite();
        images.showImage("minerva-sleepwith");
        outputText("You walk over to the siren and give her a hug. You tell her that you want to sleep with her. [say: Oh, really? You want to sleep with me?] she says. You nod.[pg]");
        outputText("Minerva guides you to the most comfortable spot. She takes off her tube top, exposing her breasts completely.[pg]");
        if (player.armorName == "goo armor") {
            outputText("You take your time to get the metal platebody off until you're completely naked save for the goo-girl covering you. ");
        } elseif (isNaked) {
            outputText("You take your time to take everything off until you're completely naked. ");
        }
        outputText("You lay next to Minerva while you rest your head on her soft breasts. ");
        if (player.armorName == "goo armor") {
            outputText("Valeria, your goo-girl companion, envelopes you and Minerva, helping to keep you warm. ");
        }
        outputText("[say: Sweet dreams, hun] she says as you finally close your eyes.");
        doNext(sleepWithMinervaProcess);
    }

    function sleepWithMinervaII() {
        clearOutput();
        images.showImage("minerva-sleepwith2");
        outputText("[b:Ten hours pass...][pg]");
        outputText("You wake up, feeling refreshed. You thank Minerva for letting you sleep with her and you hug her, making sure to give her a good kiss. [say: Ohhhhh,] she moans and even blushes! You break the kiss. [say: Darling, come back anytime, ok?] she says.[pg]");
        if (player.armorName == "goo armor") {
            outputText("Valeria encases you once more and you get suited up");
        } else {
            outputText("[if (isNaked){You stretch your body|You get re-dressed in your [armor]}]");
        }
        outputText(" and you leave the tower to return to your camp.[pg]");
        awardAchievement("Getaway", KACHIEVEMENTS.GENERAL_GETAWAY);
        sleepWithMinervaHeal();
        doNext(camp.returnToCampUseOneHour);
    }