{"id":"ogqjjw","deleted":false,"future_paste":false,"expired":false,"language":"text","created_at":"2025-10-31 23:57:00","expires_at":null,"content":"\/\/SleepWithMinerva rework\r\n\/\/Bold text is now done with [b:]\r\n\/\/if you\u2019re naked, you won\u2019t get undressed, and the part where you get naked now has you remove everything instead of only one piece.\r\n\/\/Metal platebody is now platemail.\r\n\/\/Changed one \u201cyou and Minerva\u201d to be less repetitive\r\n\/\/Added \u201chun\u201d at the end of Minerva\u2019s final sentence to make it clear it\u2019s her and not Valeria.\r\n\r\n\/\/sleepWithMinerva()\/\/\r\nYou 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.\r\n\r\nMinerva guides you to the most comfortable spot. She takes off her tube top, exposing her breasts completely.\r\n\r\n[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.\r\n\r\n\r\n\/\/function sleepWithMinervaII()\/\/\r\n[b:Ten hours pass...]\r\n\r\nYou 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.\r\n\r\n[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.\r\n\r\n\/\/the other two parts are unchanged\r\n\r\nCODE VERSION\r\n\r\n    function sleepWithMinerva() {\r\n        clearOutput();\r\n        minervaSprite();\r\n        images.showImage(\"minerva-sleepwith\");\r\n        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]\");\r\n        outputText(\"Minerva guides you to the most comfortable spot. She takes off her tube top, exposing her breasts completely.[pg]\");\r\n        if (player.armorName == \"goo armor\") {\r\n            outputText(\"You take your time to get the metal platebody off until you're completely naked save for the goo-girl covering you. \");\r\n        } elseif (isNaked) {\r\n            outputText(\"You take your time to take everything off until you're completely naked. \");\r\n        }\r\n        outputText(\"You lay next to Minerva while you rest your head on her soft breasts. \");\r\n        if (player.armorName == \"goo armor\") {\r\n            outputText(\"Valeria, your goo-girl companion, envelopes you and Minerva, helping to keep you warm. \");\r\n        }\r\n        outputText(\"[say: Sweet dreams, hun] she says as you finally close your eyes.\");\r\n        doNext(sleepWithMinervaProcess);\r\n    }\r\n\r\n    function sleepWithMinervaII() {\r\n        clearOutput();\r\n        images.showImage(\"minerva-sleepwith2\");\r\n        outputText(\"[b:Ten hours pass...][pg]\");\r\n        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]\");\r\n        if (player.armorName == \"goo armor\") {\r\n            outputText(\"Valeria encases you once more and you get suited up\");\r\n        } else {\r\n            outputText(\"[if (isNaked){You stretch your body|You get re-dressed in your [armor]}]\");\r\n        }\r\n        outputText(\" and you leave the tower to return to your camp.[pg]\");\r\n        awardAchievement(\"Getaway\", KACHIEVEMENTS.GENERAL_GETAWAY);\r\n        sleepWithMinervaHeal();\r\n        doNext(camp.returnToCampUseOneHour);\r\n    }"}