<<nobr>>
<div class="tc-bg"></div>
<div class="tc-noise"></div>
<div class="tc-particles" id="tc-particles"></div>
<div class="tc-vignette"></div>
<div class="tc-container">
<header class="tc-header">
<div class="tc-series">A Prequel to</div>
<h1 class="tc-title">Truecalling</h1>
<p class="tc-subtitle"><span class="tc-w1">When</span> <span class="tc-w2">We</span> <span class="tc-w3">Were</span> <span class="tc-w4">Young</span></p>
</header>
<div class="tc-ornament">
<div class="tc-orn-line"></div>
<div class="tc-orn-dia"></div>
<div class="tc-orn-line"></div>
</div>
<main class="tc-card">
<p class="tc-blurb">
Follow the journey of young <em>Inledya</em> and her coming of age.<br>
Before the <strong class="tc-war">war</strong>. Before the <strong class="tc-fall">fall</strong>.
</p>
<div class="tc-warning">
<span class="tc-warning-icon">⛧</span>
<div class="tc-warning-msg">
This game contains <strong>explicit adult content</strong>. All characters depicted in H-scenes are of age. You must be of legal age in your jurisdiction to play.
</div>
</div>
<div class="tc-btns">
<div class="tc-btn-primary">[[Begin the Journey|InledyaStory1]]</div>
<div class="tc-sep"></div>
<div class="tc-btn-ghost"><a href="https://www.youtube.com/watch?v=tER-Gsu_X8Q" target="_blank">I am not of legal age</a></div>
</div>
<div class="tc-version-row">
<span class="tc-version-tag">v0.1 Demo</span>
[[What's new?|Game updates]]
</div>
</main>
<footer class="tc-footer">
<p>Some stories begin long before you hear them.</p>
</footer>
</div>
<<script>>
$(document).ready(function() {
var pc = document.getElementById('tc-particles');
if (pc) {
pc.innerHTML = '';
for (var i = 0; i < 35; i++) {
var p = document.createElement('div');
p.className = 'tc-particle';
p.style.left = Math.random() * 100 + '%';
p.style.animationDuration = (8 + Math.random() * 16) + 's';
p.style.animationDelay = (Math.random() * 10) + 's';
var size = (1 + Math.random() * 3) + 'px';
p.style.width = size;
p.style.height = size;
pc.appendChild(p);
}
}
});
<</script>>
<<set $endingmode = 1>>
<<set $trackedQuest = null>>
<<set $dayOneFuckForAmmends to false>>
<<set $mainStory = 0>>
<<set $feverValue = 0>>
<<set $lastTime = $time>>
<<set $firstDay = 0>>
<<set $unlockedNotebook = false>>
<style>
#story {
margin: 0 !important;
padding: 0 !important;
max-width: none !important;
}
#passages,
.passage {
margin: 0 !important;
padding: 0 !important;
max-width: none !important;
font-size: inherit !important;
}
html {
margin: 0 !important;
padding: 0 !important;
}
:root {
--gold: #c9a84c;
--gold-light: #e8d48b;
--gold-dark: #8a6d2b;
--blood: #8b2020;
--ink: #1a1410;
}
body {
background: #0a0806 !important;
font-family: Georgia, 'Times New Roman', serif !important;
color: #c4b89a !important;
overflow-x: hidden;
margin: 0 !important;
padding: 0 !important;
}
.tc-bg {
position: fixed;
inset: 0;
z-index: 0;
background:
radial-gradient(ellipse at 20% 80%, rgba(138, 109, 43, 0.08) 0%, transparent 60%),
radial-gradient(ellipse at 80% 20%, rgba(139, 32, 32, 0.06) 0%, transparent 50%),
linear-gradient(180deg, #0a0806 0%, #12100c 40%, #0d0b08 100%);
pointer-events: none;
}
.tc-noise {
position: fixed;
inset: 0;
z-index: 1;
opacity: 0.03;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
pointer-events: none;
}
.tc-vignette {
position: fixed;
inset: 0;
z-index: 2;
pointer-events: none;
background: radial-gradient(ellipse at center, transparent 40%, rgba(5, 3, 1, 0.7) 100%);
}
.tc-particles {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 3;
pointer-events: none;
overflow: hidden;
}
.tc-particle {
position: absolute;
bottom: -10px;
background: var(--gold);
border-radius: 50%;
opacity: 0;
box-shadow: 0 0 4px rgba(201, 168, 76, 0.4);
-webkit-animation: tc-float linear infinite;
animation: tc-float linear infinite;
}
@-webkit-keyframes tc-float {
0% {
-webkit-transform: translateY(0) translateX(0);
transform: translateY(0) translateX(0);
opacity: 0;
}
3% {
opacity: 0.8;
}
25% {
-webkit-transform: translateY(-25vh) translateX(15px);
transform: translateY(-25vh) translateX(15px);
opacity: 0.6;
}
50% {
-webkit-transform: translateY(-50vh) translateX(-10px);
transform: translateY(-50vh) translateX(-10px);
opacity: 0.4;
}
75% {
-webkit-transform: translateY(-75vh) translateX(20px);
transform: translateY(-75vh) translateX(20px);
opacity: 0.2;
}
100% {
-webkit-transform: translateY(-110vh) translateX(5px);
transform: translateY(-110vh) translateX(5px);
opacity: 0;
}
}
@keyframes tc-float {
0% {
transform: translateY(0) translateX(0);
opacity: 0;
}
3% {
opacity: 0.8;
}
25% {
transform: translateY(-25vh) translateX(15px);
opacity: 0.6;
}
50% {
transform: translateY(-50vh) translateX(-10px);
opacity: 0.4;
}
75% {
transform: translateY(-75vh) translateX(20px);
opacity: 0.2;
}
100% {
transform: translateY(-110vh) translateX(5px);
opacity: 0;
}
}
.tc-container {
position: relative;
z-index: 10;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 2rem 2rem;
margin: 0;
}
.tc-header {
text-align: center;
margin-bottom: 0.5rem;
animation: tc-fadeIn 2s ease-out;
}
.tc-series {
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 0.5em;
text-transform: uppercase;
color: var(--gold-dark);
margin-bottom: 0.3rem;
opacity: 0.7;
}
.tc-title {
font-weight: 700;
font-size: clamp(2rem, 6vw, 3.8rem);
color: var(--gold);
line-height: 1.1;
text-shadow: 0 0 40px rgba(201, 168, 76, 0.15), 0 2px 4px rgba(0, 0, 0, 0.8);
margin-bottom: 0.3rem;
}
.tc-subtitle {
font-size: clamp(1.1rem, 2.5vw, 1.5rem);
font-weight: 300;
font-style: italic;
letter-spacing: 0.05em;
}
.tc-w1 { color: coral; }
.tc-w2 { color: darkorange; }
.tc-w3 { color: orangered; }
.tc-w4 { color: darkmagenta; }
.tc-ornament {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin: 1rem 0;
animation: tc-fadeIn 2.5s ease-out;
}
.tc-orn-line {
width: 80px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.tc-orn-dia {
width: 8px;
height: 8px;
background: var(--gold-dark);
transform: rotate(45deg);
flex-shrink: 0;
}
.tc-card {
background: rgba(12, 10, 7, 0.92);
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 2px;
padding: 2.5rem 2.5rem 2rem;
max-width: 560px;
width: 100%;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
animation: tc-cardIn 1.5s ease-out 0.3s both;
box-sizing: border-box;
overflow: hidden;
}
@keyframes tc-cardIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.tc-blurb {
font-size: 1.05rem;
line-height: 1.7;
color: #a89b82;
text-align: center;
margin-bottom: 1.8rem;
}
.tc-blurb em {
color: inherit;
font-style: normal;
}
.tc-war {
color: darkmagenta;
}
.tc-fall {
color: darkmagenta;
}
.tc-warning {
display: flex;
align-items: flex-start;
gap: 0.6rem;
background: rgba(139, 32, 32, 0.08);
border-left: 2px solid rgba(139, 32, 32, 0.4);
padding: 0.8rem 1rem;
margin-bottom: 1.5rem;
border-radius: 0 2px 2px 0;
}
.tc-warning-icon {
color: var(--blood);
font-size: 0.9rem;
flex-shrink: 0;
margin-top: 2px;
}
.tc-warning-msg {
font-size: 0.85rem;
color: #9a7a6a;
line-height: 1.5;
}
.tc-warning-msg strong {
color: #b8705a;
}
.tc-btns {
display: flex;
flex-direction: column;
gap: 0.7rem;
}
.tc-btns a {
display: block !important;
width: 100% !important;
max-width: 100% !important;
padding: 0.9rem 1.5rem !important;
font-family: Georgia, 'Times New Roman', serif !important;
font-size: 0.85rem !important;
font-weight: 600 !important;
letter-spacing: 0.15em !important;
text-transform: uppercase !important;
text-align: center !important;
text-decoration: none !important;
border: none !important;
border-radius: 1px !important;
cursor: pointer !important;
transition: all 0.4s ease !important;
overflow: hidden !important;
box-sizing: border-box !important;
}
.tc-btn-primary {
display: block;
width: 100%;
}
.tc-btn-primary a {
background: linear-gradient(180deg, var(--gold-dark) 0%, #6b5420 100%) !important;
color: #f5ecd5 !important;
box-shadow: 0 2px 12px rgba(201, 168, 76, 0.15) !important;
}
.tc-btn-primary a:hover {
background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3) !important;
transform: translateY(-1px);
color: #1a1410 !important;
}
.tc-btn-ghost {
display: block;
width: 100%;
}
.tc-btn-ghost a {
background: transparent !important;
color: #6b5f4d !important;
font-size: 0.75rem !important;
padding: 0.6rem !important;
letter-spacing: 0.1em !important;
}
.tc-btn-ghost a:hover {
color: var(--blood) !important;
}
.tc-sep {
width: 100%;
height: 1px;
background: rgba(201, 168, 76, 0.08);
margin: 0.3rem 0;
}
.tc-version-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1.2rem;
padding-top: 1rem;
border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.tc-version-tag {
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #4a4234;
}
.tc-version-row a {
font-size: 0.8rem !important;
color: var(--gold-dark) !important;
text-decoration: none !important;
opacity: 0.6;
transition: opacity 0.3s !important;
text-transform: none !important;
letter-spacing: normal !important;
padding: 0 !important;
background: none !important;
border: none !important;
box-shadow: none !important;
}
.tc-version-row a:hover {
opacity: 1;
text-decoration: underline !important;
transform: none !important;
}
.tc-footer {
margin-top: 2rem;
text-align: center;
animation: tc-fadeIn 3s ease-out;
}
.tc-footer p {
font-size: 0.8rem;
color: #3d3628;
font-style: italic;
letter-spacing: 0.05em;
}
@keyframes tc-fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@media (max-width: 600px) {
.tc-card { padding: 1.8rem 1.5rem 1.5rem; }
.tc-orn-line { width: 50px; }
}
</style>
<</nobr>><<set document.body.style.backgroundImage = "url('')">>\<<set document.body.style.backgroundImage = "url('wwwy/Locations/startDream.png')">>\
<<talks "—">>So peaceful here. Calm and quiet. <img src="wwwy/Update01P/Update01P1.png" width=600px/> Water flows, birds sing. Sun warms my skin.<</talks>>
<<talks "Veric">>"Hey, beautiful." He gives me a soft smile.<</talks>>
<<talks "Inledya" "blushing">>"Veric! What are you doing here?" As I ask, he steps closer, his arms wrapping gently around me.<</talks>>
<<talks "Inledya" "blushing1">>"Oh! Veric!" <img src="wwwy/Update01P/Update01P2.png" width=600px/> I can't help but blush. His arms are so strong. A true farmer.<</talks>>
<<talks "Veric">>"You know what I want?" He pauses, and a grin appears on his face, making my heart race.<</talks>>
<<talks "Inledya" "blushing2">> "W-what?!" Heat rushes to my cheeks, my whole body tenses at what's about to happen.<</talks>>
<<talks "—">>Suddenly a strong wind appears. <img src="wwwy/Update01P/Update01P3.png" width=700px/> In the background, the whole village is torn into the sky. What is happening? What is going- It hits me.<</talks>>
<<talks "Inledya" "sleeping">>It's a dream. A beautiful dream. "Veric, I don't want to wake I-." My eyes snap open taking me away from my Veric.<</talks>>
<<talks "Visenya" "wwwy/Locations/startHomeBedroom.png">>"Wakey! Wakey!" <img src="wwwy/Update01P/Update01P4.png" width=600px/> She's blowing air onto my face. "I said wakey-wakey!"<</talks>>
<<talks "Inledya" >>"Would you stop that." I rub my eyes as I get up.<</talks>>
<<talks "Visenya" "smug">>"How was Veric? Did he fuck you good again?" She smirks at me. Then recites, "Oh! Veric! Your arms are so strong! Oh Veric!" I'm going to show her.<</talks>>
<<talks "Inledya" "angry">>"Come here you!" <img src="wwwy/Update01P/Update01P5.png" width=600px/> Visenya escapes my grasp and runs out of my bedroom. "(Sigh...)" A second passes, and she pops her head back into my vision.<</talks>>
<<talks "Visenya" "smug1">>"Veric! Take me! Veric!"<img src="wwwy/Update01P/Update01P6.png" width=400/> That's it!<</talks>>
<span id="choice1" > \
<<link "//Fake going after her. Gather myself first!//">>
<<replace "#choice1">>
<<set $unlockedForestGirl = true>>
<<include "FakeGoAfterHer">>
<<include "Tutorial">>
<</replace>>
<</link>> \
<<link "//Run after her!//">>
<<replace "#choice1" >>
<<set $unlockedForestGirl = false>>
<<include "RunAfterHer">>
<<include "Tutorial">>
<</replace>>
<</link>></span>Version: Demo
Made by <span style="color: #1FA1F4; font-weight: bold; font-size: 1.2em;">Luna Production</span>
You can support the
game on patreon:
<a href="https://www.patreon.com/LunaProduction" target="_blank">
<img src="wwwy/UI/patreon-logo-free.jpg" alt="Image Description" width="50" style="border-radius: 50%;">
</a>
<<nobr>>
<<if $introDone is true>>
<div class="char-switch">
<<if passage() is "MainRoom">>
<<link "<">>
<<if $currentChar is "inledya">>
<<set $currentChar = "visenya">>
<<else>>
<<set $currentChar = "inledya">>
<</if>>
<<run $(".char-inledya").toggle(); $(".char-visenya").toggle();
var newName = State.variables.currentChar === "inledya" ?
'<span style="color: coral;">Inledya</span>' :
'<span style="color: darkorange;">Visenya</span>';
$("#char-name").html(newName);
$("#passages .passage").empty().wiki(Story.get(passage()).text);
if (window.reapplyColorization) window.reapplyColorization();>>
<</link>>
<</if>>
<span id="char-name" style="font-size: 1.2em;">
<<if $currentChar is "inledya">>
<span style="color: coral;">Inledya</span>
<<else>>
<span style="color: darkorange;">Visenya</span>
<</if>>
</span>
<<if passage() is "MainRoom">>
<<link ">">>
<<if $currentChar is "inledya">>
<<set $currentChar = "visenya">>
<<else>>
<<set $currentChar = "inledya">>
<</if>>
<<run $(".char-inledya").toggle(); $(".char-visenya").toggle();
var newName = State.variables.currentChar === "inledya" ?
'<span style="color: coral;">Inledya</span>' :
'<span style="color: darkorange;">Visenya</span>';
$("#char-name").html(newName);
$("#passages .passage").empty().wiki(Story.get(passage()).text);
if (window.reapplyColorization) window.reapplyColorization();>>
<</link>>
<</if>>
</div>
<div class="char-inledya" @style="$currentChar is 'inledya' ? '' : 'display: none;'">
<div class="portrait-container">
<img src="wwwy/Char/inledyaSidePort1.webp" class="char-portrait char-portrait-default"/>
<img src="wwwy/Char/inledyaSidePort1Shown.webp" class="char-portrait char-portrait-hover"/>
<div class="corruption-overlay">
<div class="corruption-display">
<span class="corruption-icon">😈</span>
<span class="corruption-number"><<print $inledyaCorruption>></span>
</div>
<<set _level = "Saint">>
<<if $inledyaCorruption > 50>><<set _level = "Tempted">><</if>>
<<if $inledyaCorruption > 100>><<set _level = "Fallen">><</if>>
<<if $inledyaCorruption > 150>><<set _level = "Depraved">><</if>>
<<run Meter.get("inledyaCorrupt").options({label: _level})>>
<div class="meter-wrapper"><<showmeter "inledyaCorrupt" `$inledyaCorruption / 200`>></div>
</div>
</div>
</div>
<div class="char-visenya" @style="$currentChar is 'visenya' ? '' : 'display: none;'">
<div class="portrait-container">
<img src="wwwy/Char/visenyaSidePort1.webp" class="char-portrait char-portrait-default"/>
<img src="wwwy/Char/visenyaSidePort1Shown.webp" class="char-portrait char-portrait-hover"/>
<div class="corruption-overlay">
<div class="corruption-display">
<span class="corruption-icon">😈</span>
<span class="corruption-number"><<print $visenyaCorruption>></span>
</div>
<<set _level = "Saint">>
<<if $visenyaCorruption > 50>><<set _level = "Tempted">><</if>>
<<if $visenyaCorruption > 100>><<set _level = "Fallen">><</if>>
<<if $visenyaCorruption > 150>><<set _level = "Depraved">><</if>>
<<run Meter.get("visenyaCorrupt").options({label: _level})>>
<div class="meter-wrapper"><<showmeter "visenyaCorrupt" `$visenyaCorruption / 200`>></div>
</div>
</div>
</div>
<</if>>
<div class="sidebar-icons-always">
<div class="sidebar-icon-btn" onclick="window.openGameSettings()" title="Settings">
<span>⚙️</span>
</div>
<<if $introDone is true>>
<div class="sidebar-icon-btn" onclick="SugarCube.Engine.play('Tutorial')" title="Tutorial">
<span>❓</span>
</div>
<</if>>
</div>
<<if $introDone is true>>
<div class="time-display">
<<if $time is "Morning">>
<img src="wwwy/UI/morning.png" alt="Morning" class="time-icon"/>
<<elseif $time is "Afternoon">>
<img src="wwwy/UI/afternoon.png" alt="Afternoon" class="time-icon"/>
<<elseif $time is "Evening">>
<img src="wwwy/UI/evening.png" alt="Evening" class="time-icon"/>
<<else>>
<img src="wwwy/UI/night.png" alt="Night" class="time-icon"/>
<</if>>
<span class="day-text">Day <<print $dayNumber>></span>
</div>
<div class="sidebar-icons">
<<if $unlockedNotebook is true>>
<<if passage() is "RevisitHiddenFragments">>
<<link '<div class="sidebar-icon-btn sidebar-icon-active" title="Close Collection"><span>📖</span></div>' $previousPassage>><</link>>
<<else>>
<<link '<div class="sidebar-icon-btn" title="Hidden Fragments"><span>📓</span></div>'>>
<<set $previousPassage = passage()>>
<<goto "RevisitHiddenFragments">>
<</link>>
<</if>>
<</if>>
</div>
<</if>>
<</nobr>>
<style>
#story-caption::first-line {
display: none;
}
#menu-item-settings {
display: none;
}
.game-title {
font-family: 'Cinzel', 'Times New Roman', serif;
font-size: 1.8em;
text-align: center;
margin: 10px 0;
font-weight: bold;
}
#story-caption a[target="_blank"]::after {
display: none !important;
}
#story-caption a[href*="patreon"] img {
transition: transform 0.3s ease;
}
#story-caption a[href*="patreon"]:hover img {
transform: scale(1.15);
}
.time-display {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin: 15px 0;
padding: 8px;
background: none;
}
.time-icon {
width: 40px;
height: 40px;
object-fit: contain;
border-radius: 5px;
}
.day-text {
font-size: 1.1em;
color: #fff;
font-weight: 500;
background: none;
}
.sidebar-icons-always {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin: 15px 0;
}
.sidebar-icons {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin: 15px 0;
}
.sidebar-icon-btn {
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
}
.sidebar-icon-btn:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
transform: scale(1.1);
}
.sidebar-icon-btn span {
font-size: 1.5em;
}
#story-caption a:has(.sidebar-icon-btn) {
display: inline-block;
padding: 0;
margin: 0;
background: none;
border: none;
text-decoration: none;
}
#story-caption a:has(.sidebar-icon-btn):hover {
transform: none;
box-shadow: none;
background: none;
}
#game-settings-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
}
.settings-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(3px);
}
.settings-panel {
position: relative;
background: #1a1a1a;
border: 2px solid #1589d4;
border-radius: 16px;
width: 90%;
max-width: 400px;
box-shadow: 0 0 30px rgba(31, 161, 244, 0.2), 0 20px 60px rgba(0, 0, 0, 0.5);
animation: settingsSlideIn 0.3s ease;
}
@keyframes settingsSlideIn {
from {
opacity: 0;
transform: scale(0.9) translateY(-20px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
.settings-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 25px;
border-bottom: 1px solid #1589d4;
}
.settings-header h2 {
margin: 0;
font-size: 1.5em;
color: #fff;
font-weight: 600;
}
.settings-close {
background: none;
border: none;
color: #888;
font-size: 2em;
cursor: pointer;
padding: 0;
line-height: 1;
transition: color 0.2s;
}
.settings-close:hover {
color: #fff;
}
.settings-content {
padding: 25px;
}
.setting-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.setting-item:last-child {
border-bottom: none;
}
.setting-item label {
display: flex;
flex-direction: column;
gap: 4px;
cursor: pointer;
}
.setting-label {
font-size: 1.1em;
color: #fff;
font-weight: 500;
}
.setting-desc {
font-size: 0.85em;
color: #888;
}
.toggle-switch {
position: relative;
display: inline-block;
width: 56px;
height: 30px;
flex-shrink: 0;
}
.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}
.toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #2a2a2a;
transition: 0.3s;
border-radius: 30px;
border: 1px solid #1589d4;
}
.toggle-slider:before {
position: absolute;
content: "";
height: 22px;
width: 22px;
left: 3px;
bottom: 3px;
background-color: #fff;
transition: 0.3s;
border-radius: 50%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.toggle-switch input:checked + .toggle-slider {
background: linear-gradient(90deg, #1FA1F4, #1589d4);
border-color: #1FA1F4;
}
.toggle-switch input:checked + .toggle-slider:before {
transform: translateX(26px);
}
.toggle-switch input:focus + .toggle-slider {
box-shadow: 0 0 5px rgba(31, 161, 244, 0.5);
}
.portrait-container {
position: relative;
display: block;
width: fit-content;
margin: 0 auto 10px auto;
}
.char-portrait {
max-width: 100%;
height: auto;
box-shadow: 0 0 8px 1px currentColor;
transition: all 0.3s ease;
display: block;
}
.char-portrait-default {
position: relative;
}
.char-portrait-hover {
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: all 0.3s ease;
}
.portrait-container:hover .char-portrait-hover {
opacity: 1;
filter: brightness(0.85);
}
.portrait-container:hover .char-portrait-default {
opacity: 0;
}
.char-inledya .char-portrait {
border: 3px solid coral;
color: coral;
border-radius: 15%;
}
.char-visenya .char-portrait {
border: 3px solid darkorange;
color: darkorange;
border-radius: 50%;
}
.corruption-overlay {
position: absolute;
top: 3px;
left: 3px;
right: 3px;
bottom: 3px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgba(128, 0, 128, 0.035);
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
overflow: hidden;
}
.char-inledya .corruption-overlay {
border-radius: 12%;
}
.char-visenya .corruption-overlay {
border-radius: 50%;
}
.portrait-container:hover .corruption-overlay {
opacity: 1;
}
.portrait-container:hover .char-portrait {
box-shadow: 0 0 8px 1px rgba(128, 0, 128, 1);
border-color: rgba(128, 0, 128, 1);
}
.corruption-display {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
font-size: 1.2em;
margin-bottom: 8px;
}
.corruption-icon {
font-size: 1.5em;
opacity: 0.55;
}
.corruption-number {
color: #9370DB;
font-weight: bold;
font-size: 1.3em;
-webkit-text-stroke: 1px black;
}
.meter-wrapper {
width: 80%;
opacity: 0.75;
}
.char-switch {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
margin-bottom: 10px;
}
.char-switch a, .char-switch span {
font-size: 1.3em;
color: #888;
text-decoration: none;
user-select: none;
padding: 0;
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
text-align: center;
cursor: pointer;
}
.char-switch a {
color: #fff;
cursor: pointer;
}
.char-switch a:hover {
color: #ddd;
cursor: pointer;
}
.char-switch span.disabled {
opacity: 0.3;
}
</style><<set $sawAHumanGoIntoTheForest = true>>\
<<set $FoughtWithSisterBeginning = false>>\
<<talks "Inledya" "angry">>"SHAAA!" Visenya runs away giggling as she does. "(Sigh...)" What a nice dream. I should get myself ready. I go over the barrel and splash some water onto my face, <img src="wwwy/Update01P/Update01P7.png" width=600px/> the coldness of it sharply wakes me up. "Hmmm? What's that?"<</talks>>
<<talks "Inledya" "curious">>"Is that a... human?" <img src="wwwy/Vids/Vids1.webp" width=600px/> I haven't seen one, but I've heard of them. "Whoa?" A girl runs over to him and takes his hand. Leading him off the trail into the forest. "Huh.." What's that about? Now that I saw him there, I should go and have a look, after saying good morning to the rest of my family.<</talks>>
<<talks "Reyna" "smug" "wwwy/Locations/startKitchen.png">>"Morning sleepyhead", she has that strange look on her face. One she has when-<</talks>>
<<talks "Inledya" "curious">>"What did she tell you?" I look over at Visenya who spreads her arms.<</talks>>
<<talks "Reyna">>"Veric indeed is a good farmer-" Oh. No. I can't hear this.<</talks>>
<<talks "Inledya" "angry">>"MOM!" <img src="wwwy/Update01P/Update01P8.png" width=600px/> She giggles as I raise my voice at her. Visenya shows me her tongue as she continues to eat. I knew I should have run after her, to stop her from telling them.<</talks>>
<<talks "Reyna" "laughing">>"The Day finally happened for you last week. You're an adult now. It's only natural for you to have these dreams." I give her a piercing look. Shut up! Shut up! Shut up!<</talks>>
<<talks "Uuri">>"She's right, dear." <img src="wwwy/Update01P/Update01P9.png" width=600px/> He says while continuing to read the newsletter. Not you too, Dad.<</talks>>
<<talks "Visenya" "smug1">>"Grab something to eat, sis. You look awkward standing there like a lost sheep." I roll my eyes and go to sit down to get something into my stomach.<</talks>>
<<talks "Uuri">>"Kids. Stay safe when you go outside. A human caravan is staying in the village. There are some important people there so try not to cause any trouble." <img src="wwwy/Update01P/Update01P10.png" width=600px/> He says that while specifically eying down Visenya.<</talks>>
<<talks "Visenya" "blushing">>"What?" She looks our farther for a few seconds until finally saying, "Fineee..." She says that, but I know somehow she'll get herself in trouble.<</talks>>
<<talks "Reyna">>"Honey. Kids. I'll be off, I'll bring some meat and tatoes on my way back."<</talks>>
<<talks "Uuri">>"Wait, I'm coming with. Alright. Later kids." He follows mom out.<</talks>><<set $sawAHumanGoIntoTheForest = false>>\
<<set $FoughtWithSisterBeginning = true>>\
<<talks "Inledya" "angry">>"You've done it now!" <img src="wwwy/Vids/Vids2.webp" width=600px/> I run after her! "Come back here!" She keeps running while laughing as I chase her. As we're about to reach the kitchen I lunge forth at her only to end up tripping and landing face first on the ground. "Ow..."<</talks>>
<<talks "Visenya" "laughing1" "wwwy/Locations/startKitchen.png">>"HAHAHAHAHA." <img src="wwwy/Update01P/Update01P11.png" width=400/> She points at me while laughing.<</talks>>
<<talks "Inledya" "angry1">>"You think that's funny?" I grab her leg, causing her to fall too. "AHAHAHA." She falls just as hard as I did. I get on top of her holding her hands in place. "Who is laughing now?"<</talks>>
<<talks "Visenya" "struggeling">>"Get off me big tits!" <img src="wwwy/Update01P/Update01P12.png" width=600px/> She struggles but I keep her pinned down.<</talks>>
<<talks "Reyna" "angry">>"Kids stop it! You're both adults for Lunas sake!" Hearing her say that immediately compels me to let go of her. "Who-"<</talks>>
<<talks "Visenya" "angry">>"You started it!" And of course Visenya interupts her, shoving me lightly as she gets up.<</talks>>
<<talks "Inledya" "angry">>"You started it!" This line of high level argumentation we're having loops around a few more times.<</talks>>
<<talks "Reyna" "serious">>"You done?" We look at her in silence. "Good! Now. Dad has something to tell you." She clears her throat and looks at dad, signaling for him to speak.<</talks>>
<<talks "Uuri">>"Kids. Stay safe when you go outside. A human caravan is staying in the village. There are some important people there so try not to cause any trouble." <img src="wwwy/Update01P/Update01P10.png" width=600px/> He says that while specifically eyeing down Visenya.<</talks>>
<<talks "Visenya" "blushing">>"What?" She looks at our farther for a few seconds until finally saying, "Fineeee..." She says that, but I know somehow she'll get herself in trouble.<</talks>>
<<talks "Reyna">>"Alright. Honey. Kids. I'll be off, I'll bring some meat and tatoes on my way back."<</talks>>
<<talks "Uuri">>"Wait, I'm coming with. Alright. Later kids." He follows mom out.<</talks>><<talks "Tutorial" "wwwy/Locations/blackness.png">>
You have one stat to manage: Corruption 😈. Corruption doesn’t unlock scenes. It shapes the character’s state of mind throughout the story. You can raise it with 💜 or lower it with ❤️. (You can see corruption after the tutorial on the left, hovering over character portrait).
<</talks>>
<<talks "Tutorial">>
Each day has four time slots: "Morning", "Afternoon", "Evening", and "Night".
<</talks>>
<<talks "Tutorial">>
In your room, you'll see available actions. Quest Actions marked with ❗ will advance time - choose these when you're ready to move forward. Sometimes you're even presented with multiple of them. It's up to you to make a decision what to go for. You can't get every option in a single playthrough.
<</talks>>
<<talks "Tutorial">>
Sometimes you'll see a ⭐ next to ❗. This means the action unlocked because of a choice you made.
<</talks>>
<<talks "Tutorial">>
You can switch characters from the left sidebar. Each character will have their own actions they can take. Sometimes characters have ❗mark quests at the same time, again you can't get everything in one playthrough.
<</talks>>
<<talks "Tutorial">>
By "pressing key 1" you can skip the typewriting effect on dialouge boxes (Double Tapping on mobile devices). When "continue" button shows up you can use the key 1 to advance as well.
<</talks>>
<<talks "Tutorial">>
Holding the key 1 down however skips the text until choice section.
<</talks>>
<<talks "Tutorial">>
You can turn off the typewriter effect completely in the settings on the left. (After clicking Adventure awaits). To revisit the tutorial section you can find it on the left navbar.
<</talks>>
<span id="choice1">
<<link "Adventure awaits">>
<<goto "MainRoom">>
<</link>>
</span><<if $currentChar is "inledya">>
<<run setupLoopingBackground("inledya")>>
<<elseif $currentChar is "visenya">>
<<run setupLoopingBackground("visenya")>>
<</if>>
<<set $canSwitchCharacters = true>>\
<<set $currentPassage = passage()>>\
<<set $introDone = true>>\
<<set _boxClass = "big-box mr-styled " + ($currentChar is "inledya" ? "char-inledya" : "char-visenya")>>\
<<nobr>>
<div @class="_boxClass">
<div class="mr-page-ornament">
<div class="mr-orn-line"></div>
<div class="mr-orn-dia"></div>
<div class="mr-orn-line"></div>
</div>
<<if $time neq "Night">>
<div class="box-title box-title-interactions">Interactions</div>
<div class="img-grid img-grid-interactions">
<<if $currentChar is "inledya">>
<<include "InledyaInteractionsHome">>
<<elseif $currentChar is "visenya">>
<<include "VisenyaInteractionsHome">>
<</if>>
</div>
<</if>>
<div class="box-title box-title-quests">Quests</div>
<div class="img-grid img-grid-quests">
<<if $currentChar is "inledya">>
<<include "InledyaStorysHome">>
<<elseif $currentChar is "visenya">>
<<include "VisenyaStorysHome">>
<</if>>
</div>
<<if $dayNumber gte 2>>
<div class="box-title box-title-fragments">Hidden Fragments</div>
<div class="img-grid img-grid-fragments">
<<include "HiddenFragments">>
</div>
<</if>>
<div class="mr-page-footer">
<div class="mr-orn-line"></div>
</div>
</div>
<style>
.big-box.mr-styled {
background: rgba(10, 8, 6, 0.85) !important;
border: 1px solid rgba(201, 168, 76, 0.12) !important;
border-radius: 3px !important;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5) !important;
outline: 1px solid rgba(201, 168, 76, 0.05);
outline-offset: -6px;
}
.mr-page-ornament {
display: flex;
align-items: center;
justify-content: center;
gap: 0.8rem;
margin-bottom: 1rem;
position: relative;
z-index: 1;
}
.mr-orn-line {
width: 60px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}
.mr-orn-dia {
width: 6px;
height: 6px;
background: rgba(201, 168, 76, 0.3);
transform: rotate(45deg);
flex-shrink: 0;
}
.mr-page-footer {
margin-top: 0.8rem;
padding-top: 0.8rem;
display: flex;
justify-content: center;
}
.mr-page-footer .mr-orn-line {
width: 120px;
}
.big-box.mr-styled .box-title {
border-bottom: 2px solid transparent !important;
border-image: linear-gradient(90deg, transparent 5%, rgba(201, 168, 76, 0.3) 40%, rgba(201, 168, 76, 0.3) 60%, transparent 95%) 1 !important;
padding-bottom: 8px !important;
}
</style>
<</nobr>><<set $typewriterEnabled = true>>
<<set $currentChar = "inledya">>
<<set $inledyaCorruption = 10>>
<<set $visenyaCorruption = 75>>
<<set $canSwitchCharacters = false>>
<<set $currentPassage = "MainRoom">>
<<set $time = "Morning">>
<<set $dayNumber = 1>>
<<set $onlyImages = false>>
<<set $transContent = true>>
<<set $ntrContent = true>>
Bathroom:
<<set $inledyaFirstBathroom = false>>
<<set $inledyaVisitingBathroomFirsttime = true>>
<<set $visenyaVisitingBathroomFirsttime = true>>
<<set $visenyaFirstBathroom = false>>
<<set $visenyaStreak = 0>>
<<set $inledyaStreak = 0>>
<<set $homeBathroomEvent1 = false>>
<<set $homeBathroomEvent2 = false>>
<<set $homeBathroomEvent3 = false>>
Kitchen:
<<set $visitedKitchenFirstWithInledya = false>>
<<set $visitedKitchenFirstWithVisenya = false>>
Laundery:
<<set $doneLaunderyToday = false>>
Barn:
<<set $doneBarnToday = false>>
Mom Room:
<<set $momRoomVisit = false>>
Dinner:
<<set $hadDinnerWithFamilyToday = false>>
Day1Night:
<<set $Day1TalkedToWillAlready = false>>
<<set $question1WillIntro = false>>
<<set $question2WillIntro = false>>
<<set $question3WillIntro = false>>
<<set $question4WillIntro = false>>
<<set $question5WillIntro = false>>
NIGTH:
<<set $visitedNightEvent = false>>\
<<newmeter "inledyaCorrupt" 0>>
<<colors "#4a0080" "#ff69b4" "#333">>
<<sizing "100%" "30px">>
<<label "Saint" "#ffffff" "center">>
<</newmeter>>
<<newmeter "visenyaCorrupt" 0>>
<<colors "#4a0080" "#ff69b4" "#333">>
<<sizing "100%" "30px">>
<<label "Saint" "#ffffff" "center">>
<</newmeter>><<set $homeBathroomEvent1 = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBathroomBackground.png')">>\
<<if $inledyaFirstBathroom is false and $inledyaVisitingBathroomFirsttime is true and $visenyaFirstBathroom is false>>\
<<set $inledyaStreak = 1>>\
<<set $inledyaFirstBathroom to true>>\
<<set $inledyaVisitingBathroomFirsttime to false>>\
<<talks "Inledya" "excited">>"Ooooo I've waited for this." <img src="wwwy/Update01P/Update01P13.png" width=600px/> I throw my top off. And run straight into the shower area. "Please work." Dad promised to fix it. I turn the handel. "Please work. Please work. Please work!"<</talks>>
<<talks "Inledya" "wethappy">>"Yess!!..." <img src="wwwy/Vids/Vids3.webp" width=400/> It makes me so happy that it works that I start bouncing under it in joy as the water hits my skin. "Yey! Yey! Yey!"<</talks>>
<<talks "Inledya" "wet">>The water stops. "That's it? Ughhhhh". I hate- No I don't. I should be thankful that it even worked for as long as it did.<</talks>>
<<elseif $inledyaFirstBathroom is true and $inledyaVisitingBathroomFirsttime is false and $visenyaFirstBathroom is false>>\
<<talks "Inledya">>"What am I doing here?" No. I can't be thinking straight. Showering twice a day? What is wrong with me.<</talks>>
<<elseif $inledyaFirstBathroom is false and $inledyaVisitingBathroomFirsttime is true and $visenyaFirstBathroom is true>>\
<<set $inledyaVisitingBathroomFirsttime to false>>\
<<talks "Inledya">>"(Sigh...) I could use a nice shower." As I get closer to the door I hear Visenya's humming through the thin wooden door. I fold my arms, leaning against the wall outside.<</talks>>
<<talks "Inledya" "curious">>Can't wait for my turn.... <img src="wwwy/Update01P/Update01P15.png" width=600px/> She's been there a while now.... I hear the shower abruptly stopping.<</talks>>
<<talks "Visenya">>"If anyone asks Visenya you don't know nothing." But I do. Ughhh.. Why do you always do this Visenya?<</talks>>
<<elseif $inledyaFirstBathroom is false and $inledyaVisitingBathroomFirsttime is false and $visenyaFirstBathroom is true>>\
<<talks "Inledya">>Maybe I get lucky and there's some water still left. Nope! It's ok. I'll just beat her to shower next time.<</talks>>
<</if>>\
<span id="choice">\
<<link "Continue">>
<<set document.body.style.backgroundImage = "none">>
<<goto "MainRoom">>
<</link>>
</span><<set $homeBathroomEvent1 = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBathroomBackground.png')">>\
<<if $inledyaFirstBathroom is false and $visenyaVisitingBathroomFirsttime is true and $visenyaFirstBathroom is false>>\
<<set $visenyaStreak = 1>>\
<<set $visenyaFirstBathroom to true>>\
<<set $visenyaVisitingBathroomFirsttime to false>>\
<<talks "Visenya">>"Don't mind if I do." I drop my shirt on the floor.<</talks>>
<<talks "Visenya" "smug1">>Before entering the shower room, I stop at a mirror. "Damn you look good." <img src="wwwy/Update01P/Update01P16.png" width=600px/> I spank my ass in a boost of confidence. Warm water, here I come.<</talks>>
<<talks "Visenya" "wet">>"Mhhhh... Goddess, it feels good in here." Was worried there for a sec that Dad still hadn't fixed it. I'm glad he did. I should stop. <img src="wwwy/Vids/Vids4.webp" width=400/> No! A bit more. A bit... more.... After a while the water stops running. "If anyone asks Visenya... you don't know nothing."<</talks>>
<<elseif $inledyaFirstBathroom is true and $visenyaVisitingBathroomFirsttime is true and $visenyaFirstBathroom is false>>\
<<set $visenyaVisitingBathroomFirsttime to false>>\
<<talks "Visenya">>"Don't mind if I do" I drop my shirt on the floor.<</talks>>
<<talks "Visenya" "smug1">>Before entering the shower room, I stop at a mirror. "Damn you look good". <img src="wwwy/Update01P/Update01P16.png" width=600px/> I spank my ass in a boost of confidence. Warm water, here I come.<</talks>>
<<talks "Visenya" "nakedangry">>I step into the wet shower room, "What the?" Goddess you used all the water again Inledya! "Ughhh! And that's why, dear sis, I like to bully you."<</talks>>
<<elseif $inledyaFirstBathroom is true and $visenyaVisitingBathroomFirsttime is false and $visenyaFirstBathroom is false>>\
<<talks "Visenya">>"Right...." How could I have forgotten. She used up all the water. I hate her. I don't. Ugghhhh. Damn you, Inledya.<</talks>>
<<elseif $inledyaFirstBathroom is false and $visenyaVisitingBathroomFirsttime is false and $visenyaFirstBathroom is true>>\
<<talks "Visenya">>"Hmmm.." I would love to go. But the water ran out. Wait let me check maybe there's some left. I turn the handle. "Told you." No water.<</talks>>
<</if>>\
<span id="choice">\
<<link "Continue">>
<<set document.body.style.backgroundImage = "none">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $visitedKitchenFirstWithInledya is false and $visitedKitchenFirstWithVisenya is false>>
<<set $visitedKitchenFirstWithVisenya = true>>\
<<talks "Visenya">>I feel hungry. I don't get it. I already ate but my stomach- my stomach growls. "Better find something quick." I open the cupboards and find... Two slices of bread. "I can work with that."<</talks>>
<<talks "Visenya">>I take one, leave the other one there. "Don't worry. I'll eat you too." I say as to comfort the piece of bread. <img src="wwwy/Update01P/Update01P20.png" width=600px/> I make myself a sandwich, sit down and begin to eat. As I'm halfway through with it I hear footsteps.<</talks>>
<<talks "Inledya">>I don't pay any mind to her and continue eating my sandwich. "Can I-"<</talks>>
<<talks "Visenya" "cuteangry">>"No!" I shut her down immediately. My stomach agrees with me by growling some more.<</talks>>
<<talks "Inledya" "curious">>"Rude." Ugh... I'd love to fight with her again, but this sandwich... I take a big bite, it's just too good. I don't get it. She looks so hurt. Why does she have to be so dramatic? She'll find something else. Probably.<</talks>>
<<talks "Visenya" "cuteangry1">>Wait, she's looking at the last piece of bread. "That's mine!" My stomach once again agrees with me.<</talks>>
<<talks "Inledya" "sad">>"But- But-" Oh give me a break. "Why are you always like this?" She's about to cry. And I'm about to look like a real asshole. "Fiineee! Take it! Ughhh!" I like to mess around with her, but seeing her cry... I just- Inledya comes in with a heartwarming hug. Stop it! <img src="wwwy/Update01P/Update01P19.png" width=600px/> Her big breasts are squeezing me. "(chuckles) Thank you." I'd Better start with my day.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visitedKitchenFirstWithInledya is true and $visitedKitchenFirstWithVisenya is false>>\
<<talks "Visenya">>Ughh.. I am kinda hungry still. I can't believe I gave her that slice. Whatever. Better see what I can get up to today.<</talks>>
<span id="choice2">\
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visitedKitchenFirstWithInledya is false and $visitedKitchenFirstWithVisenya is true>>\
<<talks "Visenya">>Ughh.. I am kinda hungry still. I can't believe I gave her that slice. Whatever. Better see what to do today.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $visitedKitchenFirstWithInledya is false and $visitedKitchenFirstWithVisenya is false>>\
<<set $visitedKitchenFirstWithInledya to true>>\
<<talks "Inledya">>As I go to the kitchen, I notice Visenya sitting and eating a sandwich. Goddess, that looks delicious. "Can I-"<</talks>>
<<talks "Visenya" "cuteangry1">>"No!" She shuts me down immediately.<</talks>>
<<talks "Inledya" "angry">>"Rude." I turn to the cupboards, searching for something to eat. My eyes land on the piece of bread. A smirk plays on my lips as I reach for it.<</talks>>
<<talks "Visenya" "cuteangry">>"That's mine!" <img src="wwwy/Update01P/Update01P18.png" width=600px/> What? Why?<</talks>>
<span id="choice1"> \
<<link "//Look for something else.//❤️">>
<<replace "#choice1">>
<<set $inledyaCorruption -=5>>\
<<talks "Inledya" "curious">> I flinch back as if the bread itself had bitten me. My hand retreats to my side. "Didn't you just eat?" She spreads her arms like she has no idea what I'm talking about. This is pointless. "Fine," I mumble, my appetite suddenly vanishing.<</talks>>
<<talks "Visenya" "annoyed">>"Fiineee! Take it!" Yay! "Ughhh!" She acts all dramatic, but deep down I know she loves me. I take the bread, run over to her and hug her. "Stop it!" <img src="wwwy/Update01P/Update01P19.png" width=600px/> She blushes. "Hehe." Time to start the day.<</talks>>
<span id="choice1">\
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//Confront her.//💜">>
<<replace "#choice1">>
<<set $inledyaCorruption +=5>>\
<<talks "Inledya" "sad">>"But- But-" I can't even confront her. Tears start welling up. "Why are you always like this?" I manage to say, my voice cracking. My heart hurting.<</talks>>
<<talks "Visenya" "annoyed">>"Fiineee! Take it!" Yay! "Ughhh!" She acts all dramatic, but deep down I know she loves me. <img src="wwwy/Update01P/Update01P19.png" width=600px/> I take the bread, run over to her and hug her. "Stop it!" She blushes, hehe. Time to start the day.<</talks>>\
<span id="choice2">\
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $visitedKitchenFirstWithInledya is true and $visitedKitchenFirstWithVisenya is false>>\
<<talks "Inledya">>I got a piece of bread in me. No need to go overboard. I should start with my day.<</talks>>
<span id="choice2">\
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visitedKitchenFirstWithInledya is false and $visitedKitchenFirstWithVisenya is true>>\
<<talks "Inledya">>I got a piece of bread in me. No need to go overboard. I should start with my day.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<set document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForest.png')">>\
<<talks "Inledya" "curious">>I rush out of the house and run towards the forest where I saw the girl lead the human. As I enter the forest, I look around trying to spot them but I don't see anyone. I swear I saw them coming this way.<</talks>>
<<talks "Girl in forest" "aroused">>"AHHH!" I hear screaming from further down the road. "MORE! AHHH!" More? More of what? I rush towards the sound.<</talks>>
<<talks "Human male voice">>"Take it all!"..."Scream for me!" TAKE IT ALL? Scream for me? What is going on? I slowly walk towards the sounds. This is it. They're just over this ridge. I breathe in and peek over it- "<</talks>>
<<talks "Girl in forest" "aroused1">>"AHHH! You're hitting me so deep!"<img src="wwwy/Vids/Vids5.webp" width=600px/> Oh my goddess. They're fucking. They're actually fucking. What am I doing? I should stop watching. I feel my cheeks burning. My heart is beating like a drum.<</talks>>
<span id="choice1"> \
<<link "//Run away! ❤️//">>
<<replace "#choice1">>
<<set $inledyaCorruption -=5>>\
<<talks "Inledya" "blushing3">>I can't do this. Watching them is wrong. But my feet don't move. For a moment, I just stand there. Listening. Watching. What am I- No. I turn, my feet moving before me like the wind. I run, not looking back, twigs snapping under my bare feet. My face still burns as the cool air hits my cheeks.<</talks>>
<<talks "Visenya" "curious" "wwwy/Locations/homeEntrance.png">>"Where did you run off to?"<img src="wwwy/Update01P/Update01P24.png" width=400px/> I can't tell her. I can't tell anyone. "Hello? You left just a moment ago-" I rush past her back into my room.<</talks>>
<<talks "Inledya" "panic" "wwwy/Locations/inledyasBedroomHome.png">>Calm down Inledya. Nothing happened. It was just. Two people fucking a few meters away from me. I sit down on my bed, taking deep breaths.<img src="wwwy/Update01P/Update01P22.png" width=600px/> The images of what I saw burn in my mind. The way the human took her from behind, giving it to her. Stop it. Calm down. Breathe.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Afternoon">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//Stay! 😈//">>
<<replace "#choice1">>
<<set $inledyaCorruption +=5>>
<<talks "Inledya" "blushing3">>My hands fly to my mouth, stopping the gasp that tries to escape. Every instinct tells me to turn away, to run back to the safety of the house, but for some reason I want to stay here and watch.<</talks>>
<<talks "Girl in forest" "aroused">>"Your cock is perfect! It's perfect!" Perfect? I feel a need to swallow a lump in my throat as she screams out. <img src="wwwy/Update01P/Update01P23.png" width=600px/> She looks in so much pleasure. In so much- "AHHH! I'm going to cum! Are you close?" The man speeds up the thrusts behind her and shoots his load all over her back. <</talks>>
<<talks "Girl in forest">>"Oh.. Fuck... You know you could have just shot it in me. It's extremely rare for an elf to get pregnant by a human." As she says that -CRACK-, SHIT! I stepped onto a twig. I turn away and run back home.<</talks>>
<<talks "Visenya" "curious" "wwwy/Locations/homeEntrance.png">>"Where did you run off to?" <img src="wwwy/Update01P/Update01P24.png" width=400px/> I can't tell her. I can't tell anyone. "Hello? You left just a moment ago-" I rush past her back into my room.<</talks>>
<<talks "Inledya" "panic" "wwwy/Locations/inledyasBedroomHome.png">>Calm down Inledya. Nothing happened. It was just. Two people having sex few meters away from me. I sit down on my bed, taking deep breaths to calm myself down. <img src="wwwy/Update01P/Update01P22.png" width=600px/> The images of what I saw burn in my mind. The way the human took her from behind, giving it to her. Stop it. Calm. Breathe.<</talks>>
<span id="choice4"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Afternoon">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span><<set document.body.style.backgroundImage = "url('wwwy/Locations/HomeHallway.png')">>\
<<talks "Inledya" "reflecting">>It was such a stupid fight I got into with Visenya. "(Sigh...)" I better go and apologize to her. "Visenya? Are you there?" I knock on her door. It's slightly ajar, and I can hear a faint shuffling sound from within. "Can I come in?"<</talks>>
<<talks "Visenya" "surprised">>"Wait!" She yells back instantly as my hand is on her doorknob ready to push it open. <img src="wwwy/Vids/Vids6.webp" width=600px/> Fine. I'll just wait then. "Ok. You can come in!" I open the door and head in.<</talks>>
<<talks "Inledya" "wwwy/Locations/visenyaBedroomHome.png">>"Hey!" I see her sitting on her bed. Her blanket is on the floor, that's odd. Usually her bed is the only thing she keeps clean.. really odd.. the rest of her room a disaster which isn't unusual for her.<</talks>>
<<talks "Visenya" "interested">>"You going to say something?" <img src="wwwy/Vids/Vids7.webp" width=600px/> She asks me, almost as if to stop me from looking around too much.<</talks>>
<<talks "Inledya" "hopeful">>"I just wanted to say sorry for before." I pause for a moment. "It was rude of me to put you down like I did, and I'm sorry."<</talks>>
<<talks "Visenya" "smug1">>"It's ok. I'm also sorry. I shouldn't have made fun of your... Veric dream." She looks to the side as if to act as if she is thinking about something. "Was it that good of a dream to have made you so flustered like that?" She grins, her teasing nature getting the better of her. "Ok. Ok. I'll stop. Hehehe."<</talks>>
<<talks "Inledya" "blushing1">>I walk over to her and hug her. Squishing her head against my breasts. "You are a little rascal, you know that?" <img src="wwwy/Update01P/Update01P25.png" width=600px/> I hug her tighter. Even though she likes to have fun with me, I love her with all my heart.<</talks>>
<<talks "Visenya" "cuteangry1">>"Ok. Ok. Ok. Stop! You're smothering me!" I let her go, letting her take a deep breath. "These things are dangerous!" She yells with conviction as she points at my chest. I give her a soft smile and leave.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Afternoon">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/visenyaBedroomHome.png')">>\
<<talks "Visenya" "blushing">>I sit down on my bed. "(Deep inhale...)" I should apologise to that doofus. "(Sigh...)" But she started it. She made it all physical. I was just joking around. I still feel angry about how helpless it felt being stuck under her big breasts. Humiliating. Once I calm down, I'll talk to her. And what better way to calm down than to-<img src="wwwy/Update01P/Update01P26.png" width=600px/> To get naked and have some "Mhhhhh"<</talks>>
<<talks "Inledya">>Knock. Knock. Knock. Shit! "Visenya? Are you there?" Where's my tunic? "Can I come in?"<</talks>>
<<talks "Visenya" "nakedpanic">>"Wait!" I frantically look around the room to see where I tossed it. There! I quickly run for it making my blanket fall off the bed and onto the floor. Ok. Tunic on. "Ok. You can come in!"<</talks>>
<<talks "Inledya">>She walks in. "Hey!" Her eyes land on the blanket that's on the floor. The only thing I take really good care of is my bed. She's thinking something's up, doesn't she? <</talks>>
<<talks "Visenya" "interested">>"You going to say something?"<img src="wwwy/Vids/Vids7.webp" width=600px/> I ask her quickly to get her to stop looking around.<</talks>>
<<talks "Inledya" "hopeful">>"I just wanted to say sorry for before." She pauses. "It was rude of me to put you down like I did, and I'm sorry."<</talks>>
<<talks "Visenya" "smug1">>"It's ok. I'm also sorry. I shouldn't have made fun of your... Veric dream." I just need to know. "Was it that good of a dream to have made you so flustered like that?" I grin, seeing her get all embarrassed again is so much fun. "Ok. Ok. I'll stop. Hehehe."<</talks>>
<<talks "Inledya" "blushing1">>She walks over to me and hugs me. Her breasts pressing against my face. "You are a little rascal, you know that?" <img src="wwwy/Update01P/Update01P25.png" width=600px/> Her embrace gets tighter, making it hard to breathe. Why are her breasts so big? Mine aren't small but compared to- Ok I can't think! They're squishing me!<</talks>>
<<talks "Visenya" "cuteangry1">>"Ok. Ok. Ok. Stop! You're smothering me!" I push her away, finally able to take a deep breath. I look at her chest. "These things are dangerous." I point at her chest. She just smiles at me and leaves. I almost got caught by her. I need to pick my time for self relief more carefully.<</talks>>
<span id="choice1"> \
<<set $time = "Afternoon">>
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<nobr>>
<<if $dayNumber is 1>>
<<if $time is "Morning">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBathroomLink.png][HomeBathroomInledya]]>><</link>>
<span class="img-text">Bathroom</span>
</div>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][HomeKitchenInledya]]>><</link>>
<span class="img-text">Kitchen</span>
</div>
<<elseif $time is "Afternoon">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBackyardLink.png][HomeLounderyInledya]]>><</link>>
<span class="img-text">Chore time!</span>
</div>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBarnLink.png][HomeBarnInledya]]>><</link>>
<span class="img-text">Helping out. Barn.</span>
</div>
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][HomeKitchenInledyaDinner]]>><</link>>
<span class="img-text">Dinner time!</span>
</div>
<<elseif $time is "Night">>
<</if>>
<<elseif $dayNumber is 2>>
<<if $time is "Morning">>
<<if $homeBathroomEvent1 is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBathroomLink.png][HomeBathroomInledya]]>><</link>>
<span class="img-text">Bathroom</span>
</div>
<<elseif $homeBathroomEvent1 is true>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBathroomLink.png][HomeBathroomInledyaEvent2]]>><</link>>
<span class="img-text">Bathroom</span>
</div>
<</if>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/Day1ForestGirlLink.png][Day2InledyaHerbsInteraction]]>><</link>>
<span class="img-text">Herbs.</span>
</div>
<<elseif $time is "Afternoon">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBackyardLink.png][Day2InledyaWashingDuty]]>><</link>>
<span class="img-text">Washing duty.</span>
</div>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBarnLink.png][Day2InledyaBarn]]>><</link>>
<span class="img-text">Not again.</span>
</div>
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/kaysaClassroomLink.png][day2InledyaInteraction]]>><</link>>
<span class="img-text">Should I go and take Kaysa's class?</span>
</div>
<</if>>
<</if>>
<</nobr>> <<nobr>>
<<if $dayNumber is 1>>
<<if $time is "Morning">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBathroomLink.png][HomeBathroomVisenya]]>><</link>>
<span class="img-text">Bathroom</span>
</div>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][HomeKitchenVisenya]]>><</link>>
<span class="img-text">Kitchen</span>
</div>
<<elseif $time is "Afternoon">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenSinkLink.png][HomeLounderyVisenya]]>><</link>>
<span class="img-text">Chore time...</span>
</div>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeParentBedroomLink.png][HomeSnoopVisenya]]>><</link>>
<span class="img-text">Parents bedroom!</span>
</div>
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][HomeKitchenVisenyaDinner]]>><</link>>
<span class="img-text">Time for Dinner!</span>
</div>
<</if>>
<<elseif $dayNumber is 2>>
<<if $time is "Morning">>
<<if $homeBathroomEvent1 is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBathroomLink.png][HomeBathroomInledya]]>><</link>>
<span class="img-text">Bathroom</span>
</div>
<<elseif $homeBathroomEvent1 is true>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeBathroomLink.png][HomeBathroomVisenyaEvent2]]>><</link>>
<span class="img-text">Bathroom</span>
</div>
<</if>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][Day2VisenyaMakingLunch]]>><</link>>
<span class="img-text">Something to do...</span>
</div>
<<elseif $time is "Afternoon">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][Day2VisenyaWashing]]>><</link>>
<span class="img-text">Chore time...</span>
</div>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/villageCentreHomeLink.png][Day2VisenyaMarket]]>><</link>>
<span class="img-text">What's going on in town?</span>
</div>
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeKitchenLink.png][Day2talkingToDad]]>><</link>>
<span class="img-text">Huh? Someone in the kitchen?</span>
</div>
<</if>>
<</if>>
<</nobr>><<nobr>>
<<if $dayNumber is 1>>
<<if $time is "Morning">>
<<if $unlockedForestGirl is true>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/Day1ForestGirlLink.png][Day1Forest]]>><</link>>
<span class="img-text">Where did that girl go?❗⭐</span>
</div>
<<elseif $unlockedForestGirl is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/villageCentreHomeLink.png][Day1InledyaApologise]]>><</link>>
<span class="img-text">Make up with Visenya. ❗⭐</span>
</div>
<</if>>
<<elseif $time is "Afternoon">>
If you didn't read the tutorial: YOU CAN CHANGE CHARACTERS ON THE LEFT NAVBAR!
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/villageCentreHomeLink.png][Day1ExplanationEveningInledya]]>><</link>>
<span class="img-text">Someone's calling. ❗⭐</span>
</div>
<<elseif $time is "Night">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/nightVisenyaBedroomHomeLink.png][Day1NightInledya]]>><</link>>
<span class="img-text">I can't take it. ❗</span>
</div>
<</if>>
<<elseif $dayNumber is 2>>
<<if $time is "Morning">>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P147.png][Day2MorningStoryInledya]]>><</link>>
<span class="img-text">Hmmm... Notebook... ❗</span>
</div>
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P327.png][Day2InledyaEveningVericDinner]]>><</link>>
<span class="img-text">Dinner Time ❗</span>
</div>
<<elseif $time is "Night" and $visitedNightEvent is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P349.png][Day2NightInledyaRite1]]>><</link>>
<span class="img-text">Bonfire ❗</span>
</div>
<</if>>
<</if>>
<</nobr>> <<nobr>>
<<if $dayNumber is 1>>
<<if $time is "Morning">>
<<if $unlockedForestGirl is true>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/OutsideHomeLink.png][Day1VisenyaSees]]>><</link>>
<span class="img-text">Going for a walk.❗⭐</span>
</div>
<<elseif $unlockedForestGirl is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/visenyaBedroomHomeLink.png][Day1VisenyaApologise]]>><</link>>
<span class="img-text">Alone time. ❗⭐</span>
</div>
<</if>>
<<elseif $time is "Afternoon">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeRiverBankLink.png][Day1StoryVisenyaPriest]]>><</link>>
<span class="img-text">Strange man. ❗</span>
</div>
<<elseif $time is "Evening">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/villageCentreHomeLink.png][Day1ExplanationEveningVisenya]]>><</link>>
<span class="img-text">Someone's calling. ❗</span>
</div>
<<elseif $time is "Night">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/nightOutsideHomeVillageLink.png][Day1NightVisenya]]>><</link>>
<span class="img-text">Sneaking out to talk to Will. ❗</span>
</div>
<</if>>
<<elseif $dayNumber is 2>>
<<if $time is "Morning">>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P151.png][Day2MorningStoryVisenya]]>><</link>>
<span class="img-text">Chilling with leaves. ❗</span>
</div>
<</if>>
<<if $time is "Afternoon">>
<div class="img-link-wrapper">
<<link [img[wwwy/Locations/homeRiverBankLink.png][Day2VisenyaAfternoonMeetingEmory]]>><</link>>
<span class="img-text">Where's Will? ❗</span>
</div>
<</if>>
<<if $time is "Night" and $visitedNightEvent is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P350.png][Day2NightVisenyaRite1]]>><</link>>
<span class="img-text">Bonfire ❗</span>
</div>
<</if>>
<</if>>
<</nobr>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeEntrance.png')">>\
<<talks "Visenya">>I hear the front door opening and closing. Huh? I look out of my room and see Inledya running towards the forest. What is she up to? I should head out myself, now where did I put my shoes? "Hmm... Not here".... Maybe I left them outside. As I'm about to open the front door. <img src="wwwy/Update01P/Update01P27.png" width=600px/> Inledya rushes in, she looks at me for a split second and continues running towards her room "Where did you run off to?" No response. "Hello? You left just a moment ago-" And she's gone.<</talks>>
<<talks "Visenya" "interested">>"Whatever." I'll just head out and find something to do. Maybe even find the humans Dad told us about.<</talks>>
<<talks "Visenya" "happy" "wwwy/Locations/OutsideHome.png">>Ahhh. Sunlight. I take a deep breath, enjoying the warmth on my skin. I start wandering off towards the village center when I hear-<</talks>>
<span id="choice1"> \
<<link "//Ignore it. (skips parental intimacy)//">>
<<replace "#choice1">>
<<talks "Reyna">>"Hurry up dear." Great they're at it again. Hiding in the barn. I think they're going there because of Inledya's unique shyness.<</talks>>
<<talks "Visenya" "smug">>I mean. Thinking of my good friend Iira. Her parents do it right in the main room every morning. We're elves. We make love under this wonderful world Luna created for us.<</talks>>
<<talks "Visenya" "curious">>Anyway I guess I should just have a walk. <img src="wwwy/Update01P/Update01P28.png" width=600px/><</talks>>
<span id="choice2"> \
<<link "Continue">>
<<set $time to "Afternoon">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//Check it out.//">>
<<replace "#choice1">>
<<talks "Unknown Woman">>"Hurry up dear." I look towards the sound. It's coming from the barn. I sneak closer, peering through a crack in the wooden wall.<</talks>>
<<talks "Visenya" "blushing">>Wait! MOM! DAD! <img src="wwwy/Update01P/Update01P29.png" width=600px/> They're fucking. Mom is bent over, holding onto a table, Dad thrusts into her from behind. I knew they did it, but seeing it?<</talks>>
<span id="choice3"> \
<<link "//How romantic. ❤️//">>
<<replace "#choice3">>
<<set $visenyaCorruption -=5>>\
<<talks "Uuri">>"I want to feel your whole body!" <img src="wwwy/Vids/Vids8.webp" width=600px/> He takes her dress off<</talks>>
<<talks "Reyna">>"Finee. But you better hurry up!"<</talks>>
<<talks "Visenya">>I watch them, my heart starting to beat faster. My good friend Iira told me her parents started fucking in front of her when she turned adult. It's the elven way, they said to her. How we learn about love. I thought she was lying, but seeing my parents... <img src="wwwy/Vids/Vids9.webp" width=600px/> It's... beautiful. They love each other. It's why goddess Luna put us onto this world right?<</talks>>
<<talks "Visenya" "curious">>But why in the barn? It must be because of Inledya's unique shyness. She would die of embarrassment if she were to ever see them like this.<</talks>>
<<talks "Visenya">>Anyway, I guess I should just have a walk. <img src="wwwy/Update01P/Update01P28.png" width=600px/><</talks>>
<span id="choice4"> \
<<link "Continue">>
<<set $time to "Afternoon">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//Get it dad! 💜//">>
<<replace "#choice3">>
<<set $visenyaCorruption +=5>>\
<<talks "Uuri" "wwwy/Locations/homeBarn.png">>"I want to feel your whole body!" <img src="wwwy/Vids/Vids8.webp" width=600px/> He takes her dress off.<</talks>>
<<talks "Reyna">>"Finee. But you better hurry up!"<</talks>>
<<talks "Visenya" "happy2">>I should leave them to it. But... this is too good an opportunity to miss. "Hehehe" A wicked grin spreads across my face. I walk up to the main entrance of the barn. I take a deep breath. Alright, here I go! I kick the door open with a loud bang. "Get it dad!"<</talks>>
<<talks "Reyna" "angry">>"WHAT THE! VISENYA?" <img src="wwwy/Update01P/Update01P30.png" width=600px/> Mom lets out a yelp and tries to cover her naked body with her hands, but Dad's still holding her hips, so it just looks clumsy and funny. I can't help but grin. "Where's your sister? She with you?" She sounds panicked.<</talks>>
<<talks "Visenya" "smug">>"Yeah she's standing right there by the door." I'm pointing towards the door with my thumb, lying my ass off. Mom looks at the door then back at me.<</talks>>
<<talks "Reyna" "smug">>"Very funny." She resumes her position and looks up at dad. "Go on dear. I have places to be today." They continue expecting me to leave.<</talks>>
<<talks "Visenya" "curious">>"Why are you doing it here? In the barn?" Mom doesn't answer she just gives me that you-know-why-look. Right. Because of Inledya's weird shyness. "Alright. I'll be off." <img src="wwwy/Vids/Vids9.webp" width=600px/> Mom doesn't reply and continues taking it from Dad.<</talks>>
<<talks "Visenya">>Anyway, I guess I should just go have a walk. <img src="wwwy/Update01P/Update01P28.png" width=600px/> <</talks>>
<span id="choice6"> \
<<link "Continue">>
<<set $time to "Afternoon">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<</replace>>
<</link>></span><<if $doneLaunderyToday is false>>\
<<set $doneLaunderyToday = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Reyna">>"Ok girls. It's chore time. Visenya you'll clean the plates. Inledya. The clothes need scrubbing. You'll help me with that." This means I'll have my hands in cold water for the next hour. And Visenya gets the easier task. Life is unfair.<</talks>>
<<talks "Inledya" "curious">>"Will we go to the river?"<</talks>>
<<talks "Reyna">>"No. Not today. We have some fresh water stored in a barrel in the backyard still." Ughhh.. I would love to go to the river. The sun is so warm today, a little swim would be perfect.<</talks>>
<<talks "Reyna" "smug">>"Let's get to it then." <img src="wwwy/Update01P/Update01P17.png" width=600px/> She picks up a basket with dirty clothes from the corner of the kitchen.<</talks>>
<<talks "Inledya" "wwwy/Locations/homeBackyard.png">>Time flies as I am scrubbing. Water is quite cold against my skin but I get used to it after a while.<</talks>>
<<talks "Reyna">>"Good job dear. Another one done. You've become quite skilled at that." I can't help but smile at her praise. "You'll be a good housewife one day."<</talks>>
<<talks "Inledya" "blushing">>"Moooom!" I groan, my cheeks flushing with embarrassment. Suddenly I feel hands on my back pushing me forth into the water. SPLASH!<</talks>>
<<talks "Visenya" "laughing2">>"Hahaha! Totally worth it!" <img src="wwwy/Vids/Vids10.webp" width=400/> She says as she runs off.<</talks>>
<<talks "Reyna" "angry">>"Visenya! Get back here!" She looks at me. "Here." She offers me a hand and helps me up. "I'll have a talk with her later..."<</talks>>
<<talks "Unknown Man">>"Good day to you miss Reyna." I turn to see who it is. <img src="wwwy/Update01P/Update01P35.png" width=400/>"And to you..." It's a group of village boys. Wait! He stopped mid-sentence? Why did he stop? Why is he just staring at me? Why are they all staring at me? Is something wrong?<</talks>>
<<talks "Reyna" "laughing">>"Hehehe. Oh my." <img src="wwwy/Update01P/Update01P21.png" width=400/> I look down. Ehhhhhh? My breasts are showing through the tunic! "I know right. They are quite breathtaking." She tells the boys who are just standing there looking at me.<</talks>>
<span id="choice1"> \
<<link "//Cover yourself, idiot!❤️//">>
<<replace "#choice1">>
<<set $inledyaCorruption -=5>>\
<<talks "Inledya" "panic">>I cover my breasts and quickly run into the house. "OML! OML! OML!" <img src="wwwy/Update01P/Update01P14.png" width=600px/> They didn't see. They didn't see. They didn't see.<</talks>>
<<talks "Reyna">>"She got them from me!" She proudly tells the boys as I run. "Now, run along you boys. Nothing more to see here." The boys run off.<</talks>>
<<talks "Reyna" "serious" "wwwy/Locations/inledyasBedroomHome.png">> A minute later I hear a knock on my door. "May I come in?" No. Don't. The door opens. "Honey?" She walks up to me and sits next to me. "It's alright, dear."<</talks>>
<<talks "Inledya" "sad">>"It's not alright! Everyone saw!" Was one of them Cedric? My face feels like it's on fire. "Why am I like this mom? Every other elf wouldn't even blink an eye if this happened but I-" My mind races back to the faces of the boys. The way their eyes were locked on me.<</talks>>
<<talks "Reyna" "smug">>"Because you're not every other elf." Her fingers trace a path along my jaw. "And there's nothing I would want to change about you." <img src="wwwy/Update01P/Update01P31.png" width=600px/> She says that as she grips my jaw tighter between her fingers. "Now. I'll go finish up the rest of the clothes." She leaves the room.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//They saw everything…💜//">>
<<replace "#choice1">>
<<set $inledyaCorruption +=5>>\
<<talks "Inledya" "panic">>I cover my breasts and quickly run into the house. "OML! OML! OML!" <img src="wwwy/Update01P/Update01P14.png" width=600px/> They saw. They saw. They saw. They totally saw.<</talks>>
<<talks "Reyna">>"She got them from me!" She proudly tells the boys as I run. "Now, run along you boys. Nothing more to see here." The boys run off.<</talks>>
<<talks "Reyna" "serious" "wwwy/Locations/inledyasBedroomHome.png">>A minute later I hear a knock on my door. "May I come in?" No. Don't. The door opens. "Honey?" She walks up to me and sits next to me. "It's alright, dear."<</talks>>
<<talks "Inledya" "sad">>"It's not alright! Everyone saw!" Was one of them Cedric? My face feels like it's on fire.<</talks>>
<<talks "Reyna" "smug">>"So what?" Her fingers trace a path along my jaw. "You're beautiful." <img src="wwwy/Update01P/Update01P31.png" width=600px/> She says that as she grips my jaw tighter between her fingers. "It's not everyday you get to see an elven beauty like yourself. Now. I'll go finish up the rest of the clothes." She gives me a soft smile and lets go of my jaw. She gets up and leaves the room. Why am I like this?<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $doneLaunderyToday is true>>\
<<talks "Inledya" "wwwy/Locations/homeBackyard.png">>I go outside to see if Mom is still washing clothes. <img src="wwwy/Update01P/Update01P32.png" width=600px/> I'm greeted with a sight of all the clothes drying on the line. So she finished everything up.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<if $doneLaunderyToday is false>>\
<<set $doneLaunderyToday = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Reyna">>"Ok girls. It's chore time. Visenya you'll clean the plates. Inledya. The clothes need scrubbing. You'll help me with that." Great... Scrubbing plates. While Inledya gets to hang out with Mom. Life is unfair.<</talks>>
<<talks "Inledya""curious">>"Will we go to the river?"<</talks>>
<<talks "Reyna">>"No. Not today. We have some fresh water stored in a barrel in the backyard still." Oh. Nevermind then. I'll stay here and scrub the damned plates.<</talks>>
<<talks "Reyna" "smug">>"Let's get to it then." <img src="wwwy/Update01P/Update01P17.png" width=600px/> She picks up a basket with dirty clothes from the corner of the kitchen.<</talks>>
<<talks "Visenya" "cuteangry1" "wwwy/Locations/homeKitchenSink.png">>"How can there be so many damn plates?" Scrub, scrub, scrub. This is so boring. This is torture! I look out the window and see a group of village boys walking by. "Hehehe." Let's have some fun shall we.<</talks>>
<<talks "Visenya">>"Hey! How's it going?" I call out to Cedric, who immediately runs to me.<</talks>>
<<talks "Cedric">>"Visenya... Hey!" He pauses and looks inside to get a better look at me. "You on washing duty?" I show him one of the plates. "Haha." He gathers himself. "And Inledya? She about?"<</talks>>
<<talks "Visenya" "smug2">>"Oh yeah! Actually she's in the backyard. You should go say hi." He looks at his friends and nods. They walk off towards the backyard. A devilish smile forms on my face as I walk out the back door. <</talks>>
<<talks "Visenya" "smug" "wwwy/Locations/homeBackyard.png">> I see Inledya with her back to me, bent over, washing. Perfect! I creep up behind her, getting ready to push. SPLASH!<</talks>>
<<talks "Visenya" "laughing2">>"Hahaha! Totally worth it!" <img src="wwwy/Vids/Vids10.webp" width=400/> I need to get out of here.<</talks>>
<span id="choice1"> \
<<link "//It was just a joke!❤️//">>
<<replace "#choice1">>
<<talks "Reyna" "angry">>"Visenya! Get back here!" Oh no, she's angry. But she'll forgive me. Mom always does. It was just a joke.<</talks>>
<<talks "Visenya" "laughing1" "wwwy/Locations/HomeHallway.png">> I see Inledya run into the house, her arms wrapped tightly around her chest. <img src="wwwy/Update01P/Update01P14.png" width=600px/> "Hahahaha". Then I see mom coming in.<</talks>>
<<talks "Reyna" "angry1">>"You finished with the dishes?" I feel her patience wearing thin.<</talks>>
<<talks "Visenya" "shy">>"N-no..."<</talks>>
<<talks "Reyna" "angry2">>"Then go finish them!" She interupts me before I can add anything else. Ughhh....<</talks>>
<<talks "Visenya" "shy1">>"It was just a joke!"<</talks>>
<<talks "Reyna" "serious">>"It's not a very good one if you're the only one laughing now is it?" Come on. Maybe I took it too far just a little, but it was funny.<</talks>>
<<talks "Reyna" "serious">>"Now go finish the dishes" Ughhh... <img src="wwwy/Update01P/Update01P33.png" width=600px/> I go back to the kitchen and start scrubbing again. I would still do it again though. The look on her face when she was running back inside was priceless.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//She totally deserved that…💜//">>
<<replace "#choice1">>
<<talks "Reyna" "angry">>"Visenya! Get back here!" Oh, she's mad. But who cares. She'll get over it.<</talks>>
<<talks "Visenya" "laughing1" "wwwy/Locations/HomeHallway.png">>I see Inledya run into the house, her arms wrapped tightly around her chest. <img src="wwwy/Update01P/Update01P14.png" width=600px/> "Hahahaha." Then I see mom coming in. Oh no.<</talks>>
<<talks "Reyna" "angry1">>"You finished with the with the dishes?" She looks at me with that disappointed look.<</talks>>
<<talks "Visenya" "shy">>"N-no"<</talks>>
<<talks "Reyna" "angry2">>"Then go finish them!" Ughhh...<</talks>>
<<talks "Visenya" "shy1">>"It was pretty funny mom, I even heard you laugh."<</talks>>
<<talks "Reyna" "serious">>"Don't test my patience Visenya." I feel her patience wearing thin. "Now go finish the dishes!" <img src="wwwy/Update01P/Update01P33.png" width=600px/> Ughhh... I go back to the kitchen and start scrubbing again. I would 100% do it again. The look on her face when she was running back inside was priceless. Fuck these plates!<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $doneLaunderyToday is true>>\
<<talks "Visenya" "wwwy/Locations/homeBackyard.png">>"Hmmm..." <img src="wwwy/Update01P/Update01P34.png" width=600px/> The ground is still wet here. I need to ask Cedric later if he liked the view. <</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<if $doneBarnToday is false>>\
<<set $doneBarnToday = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Reyna">>"Inledya. Can you help me with something?" She calls me over. "Can you bring a sack into the barn?"<</talks>>
<<talks "Inledya">>"Yes mom." Of course I can. "Which sack?"<</talks>>
<<talks "Reyna" "smug">>"Right by the door." She points to a sack containing totoe skins. "Kaino asked me earlier if I have anything to give for the chickens."<</talks>>
<<talks "Inledya" "happy">>"Sure." I pick up the sack and make my way towards the barn. <</talks>>
<<talks "Inledya" "curious" "wwwy/Locations/homeBarn.png">>As I place the sack down, I can't help but notice a strange white liquid on the ground. "Huh...". What is this? Did someone bring a cow here? I reach down to touch it. <img src="wwwy/Update01P/Update01P36.png" width=600px/> It's... It's sticky. I bring it up to my nose. OML it's cum!<</talks>>
<span id="choice1"> \
<<link "//Disgusting!❤️//">>
<<replace "#choice1">>
<<set $inledyaCorruption -=5>>\
<<talks "Inledya" "blushing3">>"Ahhhh!" <img src="wwwy/Update01P/Update01P37.png" width=600px/> I quickly wipe it against my dress. Disgusting! Who would even have sex here? No don't think about that Inledya. Just leave. Leave! <</talks>>
<<talks "Reyna" "worried" "wwwy/Locations/homePorch.png">>As I come out of the barn. "Everything alright dear?" She asks me worriedly.<</talks>>
<<talks "Inledya" "nervous">>"Y-yes." I manage to say, my face is still red from the whole ordeal.<</talks>>
<<talks "Reyna" "serious2">>"You sure?" <img src="wwwy/Update01P/Update01P39.png" width=600px/> I just continue on my pace not slowing down.<</talks>>
<<talks "Reyna" "regretting">>As I walk off towards my room I hear her say. "Shit."<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//Sniff!💜//">>
<<replace "#choice1">>
<<set $inledyaCorruption +=5>>\
<<talks "Inledya" "blushing3">>Sniff. <img src="wwwy/Update01P/Update01P38.png" width=600px/> What! "Ahhhh!" Why did I sniff it? I quickly wipe it against my dress. Disgusting! Who would even have sex here? No don't think about that Inledya. Just leave. Leave!<</talks>>
<<talks "Reyna" "worried" "wwwy/Locations/homePorch.png">>As I come out of the barn. "Everything alright dear?" She asks me worriedly.<</talks>>
<<talks "Inledya" "nervous">>"Y-yes." I manage to say, my face is still red from the whole ordeal.<</talks>>
<<talks "Reyna" "serious2">>"Hold up. What's this?" <img src="wwwy/Update01P/Update01P40.png" width=600px/> She takes her hand and touches my nose. OML did I have cum on my nose? I just leave as she ponders behind me. <</talks>>
<<talks "Reyna" "regretting">>Then I hear as if she's figured it out. "Shit!"<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $doneBarnToday is true>>\
<<talks "Inledya" "blushing" "wwwy/Locations/homeBarn.png">>I'm not going back in there. Nuk-uh. No thanks. <</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<if $momRoomVisit is false>>\
<<set $momRoomVisit = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/HomeHallway.png')">>\
<<talks "Visenya" "curious">>"Huh?" Mothers door is ajar? It's always locked. Did she forget to lock it? Let's see. I push the door open. <</talks>>
<<talks "Visenya" "wwwy/Locations/homeParentBedroom.png">> "Wow." It's so neat in here. I can't believe I'm actually in here. I always wanted to see what she hides from us. "Wait!" I realize. I'm actually in here. I can find out what she's hiding!<</talks>>
<<talks "Visenya">>I run to her closet and open it. Nothing. Only clothes. Ughhh... Wait! I look up. A closed box. I grab the box from the top. <img src="wwwy/Update01P/Update01P41.png" width=600px/> "Darn it." It's locked. "Hmmm... If I were to hide what opens you... where would I..." My eyes scan the room until they land on the drawer next to her bed.<</talks>>
<<talks "Visenya" "interested">>The top most drawer is locked. "What the? How many things are you hiding here?" I try to pull open the second one. Also locked. The third. Opens up. "Yesss! And there's the key." I try the key on the box and it matches. Klick. The box is unlocked.<</talks>>
<<talks "Visenya" "curious">>"What's this?" I pause as I pull out. "Clothes?" Wait. What's this material? Silk. <img src="wwwy/Update01P/Update01P42.png" width=600px/> Is it underwear? "Why would she keep underwear here? " I want to try it on.<</talks>>
<<talks "Visenya" "nakedcurious">>I pull up the socks, they feel so nice against my skin. Then the panties. "Is this supposed to be a bra?" There's... Holes in them? But it does feel nice under my breasts.<</talks>>
<<talks "Visenya" "lingeriestunned">>"Tadaa!" I say as I jump infront of the mirror. <img src="wwwy/Update01P/Update01P43.png" width=600px/> "Wow." I look stunning. How does it fit me so perfectly?<</talks>>
<<talks "Visenya" "lingeriepanic">>I hear footsteps. "Oh no!" Panick kicks in. I try to take the lingerie off but it's-<</talks>>
<<talks "Reyna" "serious">>"And what are you doing here?" Stuck... "(Sigh...) Come here."<</talks>>
<<talks "Visenya" "lingeriecute">>I walk over to her. "I'm sorry."<</talks>>
<<talks "Reyna">>"Shush. Turn around." She's not as mad as I thought she'd be. I turn around. Click. The top part opens up. "You're wondering why it fit you perfectly, right?" I nod. "Because it's enchanted with magic."<</talks>>
<<talks "Visenya" "nakedsurprised">>"Magic?" The word escapes my lips. "You have magical underwear?"<</talks>>
<<talks "Reyna" "smug">>She chukles. "It's not underwear." She points to my socks. "Stockings too." Stockings? <img src="wwwy/Update01P/Update01P44.png" width=600px/> I pull down the soc- stockings. She continues her previous point. "It's lingerie. For seducing men." My jaw drops. "I managed to get your father to become my bondmate with this." Wow. "Hehe."<</talks>>
<<talks "Reyna">>"Go on now." She points at the door. And I make my way out.<</talks>>
<span id="choice1"> \
<<link "//I could also use it to find a bondmate ❤️//">>
<<replace "#choice1">>
<<set $visenyaCorruption -=5>>\
<<talks "Visenya" "wwwy/Locations/HomeHallway.png">>My mind is blown. My mom... My mom has magical und- lingerie. What else does she have in there? But... wow. She used this to make Dad her bondmate? Just... wow. I could find a bondmate too with that one day. Not yet though. But one day.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//I could get so much more attention from boys with that. 💜//">>
<<replace "#choice1">>
<<set $visenyaCorruption +=5>>\
<<talks "Visenya" "wwwy/Locations/HomeHallway.png">>My mind is blown. My mom... My mom has magical und- lingerie. What else does she have in there? But... wow. She used this to make Dad her bondmate? Just... wow. A wicked grin spreads across my face. Forget bondmates. Think about all the looks I'd get from the boys.<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $momRoomVisit is true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/HomeHallway.png')">>\
<<talks "Visenya">>As I suspected. The door is closed. "Damn it." I need to get my hands on that again. The feeling of it on my skin... Just the thought of it makes me bite my lip. The way my body looked in the mirror. Ugghhh... I'll figure out a way to get back in there.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Visenya" "curious">>"Who's that?" <img src="wwwy/Update01P/Update01P45.png" width=600px/> I ponder to myself as I look out of the window. There's a strange man sitting on the hill looking towards the river, dressed in black robes. He's just sitting there. Curious. So curious that I have to go and see what's up with him.<</talks>>
<<talks "Visenya" "wwwy/Locations/homeRiverBank.png">>"Who are you? Aren't you hot under this sunlight wearing that?" I ask as I get closer.<</talks>>
<<talks "Human in black robes">>"Hahaha." He just started... laughing?<</talks>>
<<talks "Visenya" "interested">>"What's so funny?" The man stops, a wide grin on his face.<</talks>>
<<talks "Human in black robes" "laughing">>"You're right. Why wear black under this..." He spreads his arms and looks up at the sun and then begins laughing again. "Hahaha." He laughs some more. "Sorry." He says, composing himself. Then he takes a swig from a wineskin.<</talks>>
<<talks "Visenya" "shy">>"You're drunk." I state. The man looks down at the wineskin, then back at me.<</talks>>
<<talks "Human in black robes" "laughing1">>"Hahahahaha" <img src="wwwy/Update01P/Update01P46.png" width=600px/> And he begins laughing again. What a strange man? "Your observational skills are ...impressive." He says between his laugh. He then extends a hand towards me. "Name's Will." What a strange name?<</talks>>
<<talks "Visenya" "smug1">>I accept his hand. "Visenya." Dad did say to be careful around these humans. But something about him. A strange sense of safety. The way he smiles. How he carries himself. He seems genuine.<</talks>>
<<talks "Will" "smiles">>"Visenya..." He says slowly, as if tasting the name. "A beautiful name for a beautiful elf." He says with a smile. I can't help but blush. "Why don't you sit with me?"<</talks>>
<<talks "Visenya" "curious1">>I sit next to him. <img src="wwwy/Update01P/Update01P47.png" width=600px/> As I sit I can't help but stare at his ears. They're so small. How can they even hear with them? He notices me staring and quickly looks over catching me in the act.<</talks>>
<<talks "Will" "laughing1">>"Hahaha." The man begins laughing again. "Never seen a human ear before?" He asks me, his tone playful. He pauses. Falling into a deep silence and mutters "How lucky you are..." He looks at the river. Something dark passed over him for a moment. "Sorry about that. I think I've had too much to.." He takes a swig. "Drink." Everything falls into silence.<</talks>>
<<talks "Visenya" "interested">>I decide to break the silence. "Who are you?"<</talks>>
<<talks "Will" "thinking">>"I'm a priest." A priest? "I'm traveling with that." He points at the river. <img src="wwwy/Update01P/Update01P48.png" width=600px/> I look over and see a bunch of humans washing themselves near the riverbank. I was so focused on him that I didn't even notice them before. <</talks>>
<<talks "Will">>He continues once my eyes find the one he's pointing at. <img src="wwwy/Update01P/Update01P49.png" width=600px/> "Man over there. That fucker." I sense a heavy disdain in his tone as he continues. "A bishop."<</talks>>
<<talks "Visenya" "curious2">>"You don't like him. Why?" I ask out bluntly.<</talks>>
<<talks "Will" "serious1">>"Oh we disagree on almost everything." He takes another swig.<</talks>>
<<talks "Visenya" "curious1">>"Like what?" I ask bluntly once again. I don't care. I find it thrilling to talk to him. Dangerous. Exciting.<</talks>>
<<talks "Will">>"He seeks to spread our religion among the elves, while I wish to bring the great goddess Luna to the humans." Huh?<</talks>>
<<talks "Visenya" "interested">>"So that's why all of you are here?"<</talks>>
<<talks "Will">>"No. Just me and him, and some other priests. The others are mostly knights. Getting ready for the invasion that's about to happen. Getting their rocks off before they head out." I hear giggling come from near the water.<img src="wwwy/Vids/Vids11.webp" width=600px/> Half-naked elf girls are running towards the men.<</talks>>
<<talks "Visenya" "surprised">>"Invasion?"<</talks>>
<<talks "Will">>"To the orc lands." He whispers into my ear. "Don't tell anyone. It's a state secret." He winks at me.<</talks>>
<<talks "Visenya" "shy1">>My heart pounds against my ribs. An invasion? Orcs? War?<</talks>>
<<talks "Will" "serious">>"Just look at them. Hypocrites all. So much for being chaste and chivalrous."<</talks>>
<<talks "Visenya" "curious">>"Chaste? Chivalrous?"<</talks>>
<<talks "Will" "thinking2">>"I guess it makes perfect sense for it to be a foreign concept to you." He looks at me pondering. "Haha. I can see I'm overwhelming you. But that." He points to naked girls talking to the boys. <img src="wwwy/Update01P/Update01P51.png" width=600px/> "That's the opposite of that." Hmmm?<</talks>>
<<talks "Reyna" "worried">>"Visenya?" She yells from the front door. I can immediately tell she's a bit worried.<</talks>>
<<talks "Visenya">>"Gotta go." I get up from the ground.<</talks>>
<<talks "Will">>"Will I see you again?"<</talks>>
<span id="choice1"> \
<<link "//Maybe... ❤️//">>
<<replace "#choice1">>
<<set $visenyaCorruption -=5>>\
<<talks "Visenya" "blushing">>I hesitate, pretending to think it over, while inside I'm screaming yes. "Maybe." <img src="wwwy/Update01P/Update01P52.png" width=600px/> This man is the most interesting thing to happen in this village in a long time.<</talks>>
<<talks "Will" "smiles">>"I'll be here at night. I want to see how the river looks under the moon. Till later. Visenya." He says my name again, a slow, deliberate sound that sends a strange little shiver down my spine.<</talks>>
<<talks "Reyna" "serious" "wwwy/Locations/homePorch.png">>"Visenya! What were you doing with that human? We told you to be careful." She pulls me into the house once I make it to the doorway, her grip tight on my arm.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<set $time = "Evening">>\
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//Of course! 💜//">>
<<replace "#choice1">>
<<set $visenyaCorruption +=5>>\
<<talks "Visenya" "blushing1">>"Of course." <img src="wwwy/Update01P/Update01P53.png" width=600px/> The words escape my lips. And I don't regret that they did. Just thinking about seeing him again. What he knows. What he might tell me. I don't care what mom and dad say, I want to come back. I can't wait.<</talks>>
<<talks "Will" "smiles">>"I'll be here at night. I want to see how the river looks under the moon. Till later. Visenya." He says my name again, a slow, deliberate sound that sends a strange little shiver down my spine.<</talks>>
<<talks "Reyna" "serious" "wwwy/Locations/homePorch.png">>"Visenya! What were you doing with that human? We told you to be careful." She pulls me into the house once I make it to the doorway, her grip tight on my arm.<</talks>>
<span id="choice4"> \
<<link "Continue">>
<<set $time = "Evening">>\
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>c<<if $hadDinnerWithFamilyToday is false>>\
<<set $hadDinnerWithFamilyToday = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Reyna">>"Dinner's ready!" I hear my mom shout from the kitchen. The family sits around the dinner table. Uuri at the head, Reyna to his right, me and Visenya across from them. "How was your work day honey?"<</talks>>
<<talks "Uuri">>"Same old, same old. The crop will be good this year." He says while serving himself a portion of the stew. I serve myself a bowl too. "And how did your day went?" As soon as he asks that Visenya looks at me. <img src="wwwy/Update01P/Update01P50.png" width=600px/> Giving me a sly smirk.<</talks>>
<<talks "Reyna" "curious">>"Our day was... eventful." She says, her eyes glancing from me to Visenya.<</talks>>
<<talks "Uuri">>"Hmm. Good. Good." He's not even paying attention. He's too busy enjoying his stew. "Honey."<</talks>>
<<talks "Reyna" "smug">>"Yes dear?" She answers immediately.<</talks>>
<<talks "Uuri">>"Orne asked if we would want to go have dinner at their place tomorrow." Orne? That's Verics dad. My cheeks instantly go red.<</talks>>
<<talks "Visenya" "happy">>"That would be great dad." <img src="wwwy/Update01P/Update01P54.png" width=600px/> She says with overwhelming enthusiasm. "Inledya would also love to go. She would get to see Veric." I want to kill her.<</talks>>
<<talks "Uuri">>"Ok. Kids are in. Honey?" She looks over at mom. Waiting for her response.<</talks>>
<<talks "Reyna" "serious">>She looks at me. Thinking. If they want to go, then I can't be the reason for them to stay at home. I give her a soft approving smile. "Alright." She says and we continue eating dinner.<</talks>>
<<talks "Inledya">>After I finish eating I look back and see mom grabbing Visenyas arm. <img src="wwwy/Update01P/Update01P55.png" width=600px/> She's telling her something. Visenya just nods at her.<</talks>>
<span id="choice1"> \
<<link "//I don't even know what to say.❤️//">>
<<replace "#choice1">>
<<set $inledyaCorruption -= 5>>\
<<talks "Inledya" "blushing2">>I'm really going to see Veric tomorrow? My heart does a little skip in my chest. I need to look perfect for tomorrow.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//I wonder if he'll notice me.💜//">>
<<replace "#choice1">>
<<set $inledyaCorruption += 5>>\
<<talks "Inledya" "blushing2">>I wonder if he'll notice me. He's always so busy with the farm. I look down at my breasts. These will certainly help... I hope.<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $hadDinnerWithFamilyToday is true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Inledya" "blushing2">>Tonight's stew was delicious. So tomorrow we'll be having dinner with Veric and his family. Huh... Deep breaths Inledya. Deep breaths.<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<if $hadDinnerWithFamilyToday is false>>\
<<set $hadDinnerWithFamilyToday = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Reyna">>"Dinner's ready!" Finally. I'm starving. The family sits around the dinner table. Uuri at the head, Reyna to his right, me and Inledya across from them. "How was your work day honey?"<</talks>>
<<talks "Uuri">>"Same old, same old. The crop will be good this year." He says while serving himself a portion of the stew. I serve myself a bowl too. "And how did your day went?" As soon as he asks that I look at Inledya. <img src="wwwy/Update01P/Update01P50.png" width=600px/> I can't help but to give her a sly smirk.<</talks>>
<<talks "Reyna" "curious">>"Our day was... eventful." Mother jumps in.<</talks>>
<<talks "Uuri">>"Hmm. Good. Good." He's not even paying attention. "Honey."<</talks>>
<<talks "Reyna" "smug">>"Yes dear?" She answers immediately.<</talks>>
<<talks "Uuri">>"Orne asked if we would want to go have dinner at their place tomorrow." Orne? I look over at Inledya. Her cheeks are blushing hard and her fingers twisting nervously under the table.<</talks>>
<<talks "Visenya" "happy">>"That would be great dad!" <img src="wwwy/Update01P/Update01P54.png" width=600px/> I say with overwhelming enthusiasm. "Inledya would also love to go. She would get to see Veric." Her face turns an even deeper shade of red. Hahaha. I can't.<</talks>>
<<talks "Uuri">>"Ok. Kids are in. Honey?" He looks over at mom. Say yes! Say yes! It's going to be so good.<</talks>>
<<talks "Reyna">> "Alright." YES! We continue eating dinner. Dad and Inledya finish up and make their way. I'm about to finish too. As I stand up I feel my arm being grabbed. Huh? <</talks>>
<<talks "Reyna" "serious2">> "You better. And I mean you better. Be on your best behavior tomorrow." <img src="wwwy/Update01P/Update01P56.png" width=600px/> My mom says with a death grip on my arm. I nod at her. Of course I will. Pshhh. Can't wait for tomorrow. Hehe. <</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $hadDinnerWithFamilyToday is true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Visenya">>My stomach's full. Might even go for a nap...<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/HomeHallway.png')">>\
<<talks "Uuri">>"Ok. Let's get going." Wait?<</talks>>
<<talks "Visenya" "curious2">>"Go where?" <img src="wwwy/Update01P/Update01P57.png" width=400/> Visenya pops her head out the door.<</talks>>
<<talks "Uuri">>"Didn't I tell you at the dinner table?"<</talks>>
<<talks "Reyna" "laughing">>"Hehehe.1" She chuckles softly. "No you forgot to mention it." She turns towards us. "Come on. Let's get going." She gestures for us to follow. "The humans will address the village on why they've come. Come on now." She waits for us at the door.<</talks>>
<<talks "Inledya">>I nod, Visenya runs out the room eager to go out. We walk towards the center of the village.<</talks>>
<<talks "Inledya" "wwwy/Locations/villageCentreHome.png">>As we finally make it there. <img src="wwwy/Update01P/Update01P58.png" width=600px/> I notice that the whole village folk is already here. All gathered around a large wooden platform. I see knights in armor. Some men who are wearing black robes. It looks so interesting. The knights stand so still, their metal armor reflecting the evening sun.<</talks>>
<<talks "Bishop Reynar">>A man in white robes steps forth and raises his arms. "Greetings all, I am Bishop Reynar." He speaks with a clear, powerful voice that cuts through the whispers of the crowd. "We have come to take part in your lovely festival." Festival? Does he mean Lunasong fe- "Lunasong festival." He pauses the whole crowd begins whispering amongst themselves. "I know. I know. I understand this is a sacred two-week period for you, so I've come with an offering. We'll allow twenty of your brightest young minds to accompany us to the capital, where we'll provide them scholarships to Imeria's finest academy."<</talks>>
<<talks "Inledya" "curious">>Wait? Even I've heard of it. The Klimmore Academy. I've only heard stories from merchants about how amazing that place is.<</talks>>
<<talks "Bishop Reynar" "calm">>"Now I've already presented my proposal to your village chief." He puts his arm on his shoulder. <img src="wwwy/Update01P/Update01P59.png" width=600px/> "But he tells me that it needs to be put on vote whether you will have us or not."<</talks>>
<<talks "Inledya">>The crowd falls into silence for a moment. Then people begin to cheer. Agreeing with the bishop's proposal. I find myself clapping too. This is a wonderful opportunity for someone.<</talks>>
<<talks "Uuri">>"I don't like it." I hear my father say behind me.<</talks>>
<<talks "Reyna">>"Hush." My mother silences him.<</talks>>
<<talks "Bishop Reynar" "excited">>"I guess it's decided then. Let us have a festivaaaal!" The crowd gets louder. And the knight next to the bishop pulls a lever. <img src="wwwy/Update01P/Update01P60.png" width=600px/> Releasing a swarm of colorful lanterns that float up into the darkening evening sky. The whole crowd goes: Woow.<</talks>>
<<talks "Visenya" "happy2">>"Wow." Even Visenya is impressed by this spectacle. We stay until the lights disappear completely into the clouds, before we head back home.<</talks>>
<<talks "Reyna" "wwwy/Locations/homeEntrance.png">>"Ok. Kids. Time for bed." She softly pats our asses as we get through the front door. Then both of us hear.<</talks>>
<<talks "Uuri">>"I don't like this at all. You know why they're here right?" Pauses. "To mate with the women. To plough them." I feel my cheeks flush. I never heard him talk like this. I take a look at Visenya who is crouching next to me. She seems as shocked as I am.<</talks>>
<<talks "Reyna" "serious">>"I know. But we're bondmates under Luna. There's nothing to worry about." <img src="wwwy/Update01P/Update01P63.png" width=600px/> She assures him with a comforting voice.<</talks>>
<<talks "Uuri">>"I'm not worried about you. It's the kids. They don't have bondmates." He looks down. "(Sighh...)"<</talks>>
<<talks "Reyna" "smug">>"They can still decline, dear." She's trying to be even more comforting now.<</talks>>
<<talks "Uuri" >>"You think they'd decline? Did you?" He looks down. "No you didn't."<</talks>>
<<talks "Reyna">>"They're adults. It's up to them." She's trying her best.<</talks>>
<<talks "Uuri">>"I know. This just feels off. Humans joining our festival. This is a start of something bigger."<</talks>>
<<talks "Reyna">>"It's going to be alright, dear." She pauses for a moment. "Besides I want both our kids to get the scholarship." <img src="wwwy/Update01P/Update01P61.png" width=600px/> What? I look at Visenya who is as surprised as I am.<</talks>>
<<talks "Uuri">>"What? You can't be serious."<</talks>>
<<talks "Reyna" "serious">>"I am. Think of that opportunity. And if you really think things are going to get bad, I want them far away from here. The scholarship would give them Klimmore citizenship, it would be the safest place for them to be."<</talks>>
<<talks "Uuri">>"You're right." He gives up.<</talks>>
<<talks "Reyna" "flirting">>"Right answer. And for that right answer I'll let you put it in my ass tonight." UGHHH!!! MOOOMMM!! Why? <img src="wwwy/Update01P/Update01P62.png" width=600px/> I run into my room.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Night">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/HomeHallway.png')">>\
<<talks "Uuri">>"Ok. Let's get going." What? Go where?<</talks>>
<<talks "Visenya" "curious2">>"Go where?"<img src="wwwy/Update01P/Update01P57.png" width=400/> I pop my head out of my room.<</talks>>
<<talks "Uuri">>"Didn't I tell you at the dinner table?"<</talks>>
<<talks "Reyna" "laughing">>"Hehehe." She chuckles softly. "No you forgot to mention it." She turns towards us. "Come on. Let's get going." She gestures for us to follow. "The humans will address the village on why they've come. Come on now." She waits for us at the door. Really?? I hurry out my room.<</talks>>
<<talks "Visenya" "wwwy/Locations/villageCentreHome.png">>We walk towards the center of the village. <img src="wwwy/Update01P/Update01P58.png" width=600px/> As we get closer, I see the whole village folk is already here. Did I miss anything? I look around and see a wooden platform. I see knights in armor. Cool! And priests in their black robes! So theres a lot more of them. Oh? There's Will.<</talks>>
<<talks "Bishop Reynar">>A man in white robes steps forth and raises his arms. "Greetings all, I am Bishop Reynar." He speaks with a clear, powerful voice that cuts through the whispers of the crowd. "We have come to take part in your lovely festival." Festival? Does he mean Lunasong fe- "Lunasong festival." He pauses the whole crowd begins whispering amongst themselves. "I know. I know. I understand this is a sacred two-week period for you, so I've come with an offering. We'll allow twenty of your brightest young minds to accompany us to the capital, where we'll provide them scholarships to Imeria's finest academy."<</talks>>
<<talks "Visenya">>I look over at mom with pleading eyes. I want that! To go to the city? So many people. So many places. So much to see!<</talks>>
<<talks "Bishop Reynar" "calm">>"Now I've already presented my proposal to your village chief." <img src="wwwy/Update01P/Update01P59.png" width=600px/> He puts his arm on his shoulder. "But he tells me that it needs to be put on vote whether you will have us or not."<</talks>>
<<talks "Visenya">>The crowd falls into silence for a moment. Then people begin to cheer. Agreeing with the bishop. I join them, clapping my hands together. "YEAHHHH!" I cheer loudly along.<</talks>>
<<talks "Uuri">>"I don't like it." I hear my father say behind me.<</talks>>
<<talks "Reyna">>"Hush." Mom silences him.<</talks>>
<<talks "Bishop Reynar" "excited">>"I guess it's decided then. Let us have a festivaaaal!" The crowd gets louder. And the knight next to the bishop pulls a lever, <img src="wwwy/Update01P/Update01P60.png" width=600px/> releasing a swarm of colorful lanterns that float up into the darkening evening sky. The whole crowd goes "Woow."<</talks>>
<<talks "Visenya" "happy2">>"Wow." Beautiful. As I glance back down, I look around to see Will, but I... don't see him. Did he leave already? We stay until the lights disappear completely before we head back home.<</talks>>
<<talks "Reyna" "wwwy/Locations/homeEntrance.png">>"Ok. Kids. Time for bed." He softly pats our asses as we get through the front door. Then both of us hear.<</talks>>
<<talks "Uuri">>"I don't like this at all. You know why they're here right?" Pauses. "To mate with the women. To plough them." Plough them? He's worried about us? That's cute.<</talks>>
<<talks "Reyna" "curious">>"I know. But we're bondmates under Luna. There's nothing to worry about." <img src="wwwy/Update01P/Update01P63.png" width=600px/>She assures him with a comforting voice.<</talks>>
<<talks "Uuri">>"I'm not worried about you. It's the kids. They don't have bondmates." He looks down. "(Sighh...)"<</talks>>
<<talks "Reyna" "smug">>"They can still decline, dear." She's trying to be even more comforting now.<</talks>>
<<talks "Uuri">>"You think they'd decline? Did you?" He looks down. "No you didn't." That's harsh dad.<</talks>>
<<talks "Reyna">>"They're adults. It's up to them." She's trying her best.<</talks>>
<<talks "Uuri">>"I know. This just feels off. Humans joining our festival. This is a start of something bigger."<</talks>>
<<talks "Reyna">>"It's going to be alright, dear." She pauses for a moment. "Besides I want both our kids to get the scholarship."<img src="wwwy/Update01P/Update01P61.png" width=600px/> What? I look at Inledya, who also seems surprised. She wants us to go to the academy? YES!<</talks>>
<<talks "Uuri">>"What? You can't be serious."<</talks>>
<<talks "Reyna" "serious">>"I am. Think of that opportunity. And if you really think things are going to get bad, I want them far away from here. The scholarship would give them Klimmore citizenship, it would be the safest place for them to be."<</talks>>
<<talks "Uuri">>"You're right." He gives up.<</talks>>
<<talks "Reyna" "flirty">>"Right answer. And for that right answer, I'll let you put it in my ass tonight." Oh. Boy. Get it dad! <img src="wwwy/Update01P/Update01P62.png" width=600px/> I look to my right and see Inledya run off. Hahaha. Never gets old.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Night">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/NightInledyasBedroomHome.png')">>\
<<talks "Inledya" "angry">>I can't help but think why am I like this? So shy? So afraid? <img src="wwwy/Update01P/Update01P64.png" width=400/> Ever since I was young I've been like this. I thought when I finally became an adult it would finally go away. But it has been a whole week now? And it's getting worse. Why can't I be like all the other elves? To be free? To not feel embarrassed or shy?<</talks>>
<<if $unlockedForestGirl is true>>
<<talks "Inledya" "reflecting">>Ughhhh. <img src="wwwy/Update01P/Update01P23.png" width=600px/> Even now I'm seeing that girl in the forest. Taking it from behind. And the human. He resembled so much of....<</talks>>
<<talks "Inledya" "nervous">>Veric. Oh Luna. <img src="wwwy/Update01P/Update01P76.png" width=600px/> I'm picturing myself now instead of her. Veric thrusting into me. I can't take this anymore. I get out of my room and open Visenya's door.<</talks>>
<<else>>
<<talks "Inledya" "reflecting">>Ughhhh. I mean I got to a petty fight with Visenya over what I saw in my dream. <img src="wwwy/Update01P/Update01P76.png" width=600px/> Oh Veric... Even now I see you taking me. I can't take this anymore. I get out of my room and open Visenya's door.<</talks>>
<</if>>
<<talks "Inledya" "wwwy/Locations/nightVisenyaBedroomHome.png" "blushing1">>"Visen-" <img src="wwwy/Update01P/Update01P65.png" width=600px/> I freeze. She climbs back through the window into her room. She just looks at me wide-eyed, her hair slightly messy, cheeks flushed.<</talks>>
<<talks "Visenya" "shy">>"Emmm. Don't tell mom." She puts her finger against her lips.<</talks>>
<<talks "Inledya" "sad">>I look down, thoughts still racing in my head. Tears start to well up in my eyes. "I can't take this!"<</talks>>
<<talks "Visenya" "comforting">>Visenya rushes to me. Grabbing me by my arms. "Hey. Hey. What's wrong?" I can't help but cry. "Hey. It's ok." She holds me in a hug. "Come here." She sits me down onto her bed. "Tell me what's wrong?"<</talks>>
<<talks "Inledya" "sad1">>"Everything..." Is the only word that I can let out... After gathering myself a bit. "W-what. (sniffs) W-what were you doing outside?"<</talks>>
<<talks "Visenya" "comforting1">>"Oh. I kissed a priest." She answers calmly making me-<</talks>>
<<talks "Inledya" "sad">>"Whaaaaa" <img src="wwwy/Update01P/Update01P66.png" width=600px/> cry again. Why? Just why?<</talks>>
<<talks "Visenya" "shy">>She starts stroking my hair. "Hey. Everything's ok. Just. Calm down and tell me what's wrong ok." Her hand keeps stroking my hair. It's.... Comforting....<</talks>>
<<talks "Inledya" "angry">>After some time I have calmed down a bit. "I'm so... shy... I'm scared of everything." I look down at my hands fidgeting in my lap. "I hate that I'm like this!"<</talks>>
<<talks "Visenya" "happy2">>She quickly jumps in. "Then don't be." She says that so simply. "We can change who we are Inledya."<</talks>>
<<talks "Inledya" "nervous">>"H-how?" I mutter.<</talks>>
<<talks "Visenya" "happy">>"By taking small steps. Change doesn't happen overnight." I look up at her. <img src="wwwy/Update01P/Update01P67.png" width=600px/> "You just need to allow yourself to change." I'm about to shake my head as she shakes me by my shoulder. "Hey! You can do it. I know you can." She looks me deep into my eyes making my heart warm. "I'll even help you. If you want."<</talks>>
<<talks "Inledya" "happy">>"You... will?" She nods. She looks so... supportive and kind all of a sudden... and I feel like she's genuinely trying to help. I smile at her. "Ok." I wipe my last tears away.<</talks>>
<<talks "Inledya" "curious">>"So? You kissed a human? How was it?" I try to lighten the mood.<</talks>>
<<talks "Visenya" "laughing">>"Hahaha. Shut up." She smirks. "It was good. Different." I smile at her.<</talks>>
<<talks "Inledya" "blushing1">>I get up. "Thanks Visenya." And head back into my room, <img src="wwwy/Update01P/Update01P68.png" width=600px/> where I fall deep into sleep without any thoughts disturbing me.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Night">>
<<run document.body.style.backgroundImage = "">>
<<goto "EndOfDay1">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/nightOutsideHomeVillage.png')">>\
<<if $Day1TalkedToWillAlready is false>>\
<<talks "Visenya">>The house is quiet. Perfect time to sneak out. I open my window as silently as I can. The moon is out, perfectly giving me light to see in the dark. I climb down the roof and head towards the hill. My heart is beating fast. The feeling of intense thrill and excitement comes over me. Feeding my addiction for it.<</talks>>
<<talks "Visenya" "happy">>There he is. <img src="wwwy/Update01P/Update01P73.png" width=600px/> Sitting at the same spot. Looking over at the river. He seems sad again. "Hey." I say as I approach him. He doesn't seem to notice me. He's just staring at the river. I sit down next to him.<</talks>>
<<talks "Will">>"You came". He says softly. "Wanted to continue our conversation?" He finally looks over at me. I nod at him. "Heh. Go ahead. I'll answer." He looks back at the river. He pulls out his wineskin and takes a sip. By Luna, does he drink every waking moment?<</talks>>
<<elseif $Day1TalkedToWillAlready is true>>\
<<talks "Will">>"Anything else?" <img src="wwwy/Update01P/Update01P74.png" width=600px/><</talks>>
<</if>>\
<<if $question1WillIntro is false>>\
<span id="choice1"> \
<<link "So most of you are here for the festival? Why?">>\
<<goto "So most of you are here for the festival? Why?">>
<</link>>\
</span>\
<</if>>\
<<if $question1WillIntro is true and $question2WillIntro is false>>\
<span id="choice1"> \
<<link "Are you always this drunk?">>\
<<goto "Are you always this drunk?">>
<</link>>\
</span>\
<</if>>\
<<if $question1WillIntro is true and $question3WillIntro is false>>\
<span id="choice2"> \
<<link "Strategy? What about pregnancies?">>\
<<goto "Strategy? What about pregnancies?">>
<</link>> \
</span>\
<</if>>\
<<if $question4WillIntro is false>>\
<span id="choice3"> \
<<link "Earlier you called the knights hypocrites.">>\
<<goto "Earlier you called the knights hypocrites.">>
<</link>> \
</span>\
<</if>>\
<<if $question4WillIntro is true and $question5WillIntro is false>>\
<span id="choice4"> \
<<link "So why do you want to bring Luna to humans?">>\
<<goto "So why do you want to bring Luna to humans?">>
<</link>> \
</span> \
<</if>>\
<<if $question1WillIntro is true or $question4WillIntro is true>>\
<span id="choice5"> \
<<link "It was great talking to you. (Leave)">>\
<<goto "It was great talking to you. (Leave)">>
<</link>> \
</span>\
<</if>>\<<set $question1WillIntro = true>>\
<<set $Day1TalkedToWillAlready = true>>\
<<talks "Visenya" "curious">>I shift on the grass, pulling my knees up to my chest. "So... most of you are here for the festival? Why?"<</talks>>
<<talks "Will" "thinking2">>"Me, the bischop and other priests are here to scout the villages and see traditions." He takes a swig. "The knights however as I mentioned earlier are here to get their rocks off. They'll be heading far north to fight the orcs." He pauses. "A moral boost for them if you will."<</talks>>
<<talks "Visenya" "interested">>"Hmmm... Only this village or-" He interupts me.<</talks>>
<<talks "Will" "serious1">>"Oh no. All the elf villages." He expands his arm towards the river and swings it as he says. "That are settled on the river. All 200 of them." Wow. "That's 20 000 knights. Getting them all ready for battle. Brilliant military strategy, actually, if you think about it."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<goto "Day1NightVisenya">>
<</link>>
</span><<set $question2WillIntro = true>>\
<<talks "Visenya" "curious">>"Are you always this drunk. Cant be good for you?" I point at his wineskin that he grips in his hands.<</talks>>
<<talks "Will" "smiles">>"Heheh" He chukles. "Again your observational skills don't cease to fail you." <img src="wwwy/Update01P/Update01P75.png" width=600px/> He takes another swig. And looks at the river. Not saying anything about why he has been drinking. What is he hiding?<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<goto "Day1NightVisenya">>
<</link>>
</span><<set $question3WillIntro = true>>\
<<talks "Visenya" "curious2">>"Strategy? What about pregnancies?" I blurt out.<</talks>>
<<talks "Will" "serious">>He looks at me surprised. "You must not be familiar with elf and human anatomy." He gives me a condescending smile. "There's like a one percent chance to get pregnant. And if an elven woman does get pregnant by a human, the child would take all the characteristics of the mother, making them full elves." He gestures with his wineskin. "And since your society is so heavily on being polyamorists, nobody would notice or question who the father was." He looks me up and down. "I was under the impression elves know that. I guess you're young still."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<goto "Day1NightVisenya">>
<</link>>
</span><<set $question4WillIntro = true>>\
<<set $Day1TalkedToWillAlready = true>>\
<<talks "Visenya" "curious">>"Earlier you called the knights hypocrites. Why?" I lean forward, trying to catch his gaze. "You said they weren't being chaste or chivsomething."<</talks>>
<<talks "Will" "smiles">>"Hah." A short, sharp laugh escapes him. "Chivalrous. You're not familiar with the concept? Not surprising." He takes another swig, the wineskin makes strong glugging sounds. "It's a human code of conduct. For knights. It means they're supposed to be honorable, pious, defenders of the weak. And chaste." He says the last word with a bitter taste, as if he's resenting something deeply.<</talks>>
<<talks "Visenya" "interested">>"Chaste?" I ask still not understanding it's meaning.<</talks>>
<<talks "Will">>"Means not fucking around." He puts it bluntly. "The knights are supposed to be celibate. They take vows of chastity-" He pauses. Looking at me. Celibate? Chastity? Chaste? He's just throwing out words at this point. "Ok. I see you're not following me so let me, put it this way." He gathers himself for a moment. "Knights can't have sex until they're allowed to be married by the bishop. Very few of them get that blessing from the bishop." He sighs heavily. "(Sighhh...) But lately, the upholding of those wows has become a joke."<</talks>>
<<talks "Visenya" "surprised">>No sex? That's crazy. Wait. "So no sex?" He shakes his head. "No anal?" He shakes his head again. "Blowjob?" Once again. "Handjob?" And again the head shake. That's crazy!<</talks>>
<<talks "Will">>"Not even touching yourself," he adds.<</talks>>
<<talks "Visenya">>"WHAAT?" That is crazy. Who would want to do that? "Can they even talk to a girl?" He chukles.<</talks>>
<<talks "Will" "laughing1">>"They can do that." He chuckles again.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<goto "Day1NightVisenya">>
<</link>>
</span><<set $question5WillIntro = true>>\
<<talks "Visenya" "interested">>"So why do you want to bring Luna to humans? Because you also think that chaste thing is redicilus?" My questions linger in the air a bit before he looks at me.<</talks>>
<<talks "Will" "serious">>"Partly yes." He looks away at the river. There's something more to that than that.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<goto "Day1NightVisenya">>
<</link>>
</span><<talks "Visenya">>"I should get back." I pull my knees closer to my chest. I want to stay here and talk to him more but I need to go before someone notices I'm gone. "It was great talking to you."<</talks>>
<<talks "Will" "smiles1">>He looks at me locking his eyes with mine. This is something new. He hasn't looked at me like that before. "It was great talking to you too, Visenya." <img src="wwwy/Update01P/Update01P71.png" width=600px/> He stands up and extends a hand to help me up.<</talks>>
<<talks "Visenya" "blushing1">>I take it. It's warm and strong. He pulls me up. I just stand there and look at him. My feet keeping me in place. The moonlight is reflecting against the water behind him making him look more... I can't find the words. I just. Feel. My heart quickening and-<</talks>>
<<talks "Visenya" "blushing">>"Mhhh.." <img src="wwwy/Update01P/Update01P72.png" width=600px/> He leans in for a kiss. And I let him. His tongue feels different. I'm losing- He breaks the kiss.<</talks>>
<<talks "Will" "embarrassed">>"I shouldn't have." His face changes completely.<</talks>>
<<talks "Visenya" "shy">>"Hey. It's ok." I try to be as comforting as I can be.<</talks>>
<<talks "Will">>"Good night." He shuts everything down. Fine. I'll turn around and walk back towards the house. Him shutting me down makes me want him even more. Nobody has ever shut me down before.<</talks>>
<<talks "Inledya" "blushing1" "wwwy/Locations/nightVisenyaBedroomHome.png">>As I climb back through my window. "Visen-" <img src="wwwy/Update01P/Update01P65.png" width=600px/> I freeze. She just stands there in place and looks at me.<</talks>>
<<talks "Visenya" "shy">>"Emmm. Don't tell mom." I put my finger against my lips.<</talks>>
<<talks "Inledya" "sad">>She looks down. Tears start to well up in her eyes. "I can't take this!"<</talks>>
<<talks "Visenya" "comforting">>I rush to her. Grabbing her by her arms. "Hey. Hey. What's wrong? " She just starts crying. "Hey. It's ok." I hold her in a hug. "Come here." I sit her down onto my bed. "Tell me what's wrong?"<</talks>>
<<talks "Inledya" "sad1">>"Everything..." Is the only word that she can let out. After gathering herself a bit. "W-what. (sniffs) W-what were you doing outside?"<</talks>>
<<talks "Visenya" "comforting1">>"Oh. I kissed a priest." I answer calmly. Which seems to be making her-<</talks>>
<<talks "Inledya" "sad">>"Whaaaaa" <img src="wwwy/Update01P/Update01P66.png" width=600px/> cry... again. I hate seeing her like this.<</talks>>
<<talks "Visenya" "shy">>I start stroking her hair. "Hey. Everything's ok. Just. Calm down and tell me what's wrong ok." My hand keeps stroking her hair.<</talks>>
<<talks "Inledya" "angry">>After some time she has calmed down a bit. "I'm so... shy... I'm scared of everything." She looks down at her hands fidgeting in her lap. "I hate that I'm like this."<</talks>>
<<talks "Visenya" "happy2">>I quickly jump in. "Then don't be." I try comforting her. "We can change who we are Inledya."<</talks>>
<<talks "Inledya" "nervous">>"H-how?" She mutters.<</talks>>
<<talks "Visenya" "happy">>"By taking small steps. Change doesn't happen overnight."<img src="wwwy/Update01P/Update01P69.png" width=600px/> I look at her. "You just need to allow yourself to change." She is about to shake her head and say something. But I beat her to it. "Hey! You can do it. I know you can." I look her deep into her eyes. "I'll even help you. If you want."<</talks>>
<<talks "Inledya" "happy">>"You... will?" I nod. "Ok." She wipes her tears away.<</talks>>
<<talks "Inledya" "curious">>Suddenly she asks. "So? You kissed a human? How was it?"<</talks>>
<<talks "Visenya" "laughing">>"Hahaha. Shut up." I smirk at her. "It was good. Different." She smiles at me.<</talks>>
<<talks "Inledya" "blushing1">>She gets up. "Thanks Visenya." And heads back into her room.<</talks>>
<<talks "Visenya" "happy3">>As I stay there, <img src="wwwy/Update01P/Update01P70.png" width=600px/> looking into the ceiling I can't help but think about that kiss. "I want you." I close my eyes.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "EndOfDay1">>
<</link>>
</span><<talks "Tutorial">>
You’ve finished Day One. A new section is now available: "Hidden Fragments." Hidden Fragments are tied to the current day and time. If you advance the story, any Fragments you didn’t view from that segment will no longer be available.
<</talks>>
<<talks "Tutorial">>
You can "unlock them by doing interactions or by advancing the story. They’re fully optional." They don't advance time and you don’t need them to continue the story.
Each Fragment has clear tags, so you always know what kind of themes they have in them. (Hint: To get all of them always start with Interactions.)
<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Morning">>
<<set $dayNumber = 2>>
<<set $inledyaFirstBathroom = false>>
<<set $inledyaVisitingBathroomFirsttime = true>>
<<set $visenyaVisitingBathroomFirsttime = true>>
<<set $visenyaFirstBathroom = false>>
<<set $visenyaVisetedKitchen = false>>
<<set $inledyaHerbs = false>>
<<set $afterNoonWashingInledya = false>>
<<set $afterNoonWashingVisenya = false>>
<<set $afterNoonInledyaBarn = false>>
<<set $afterNoonVisenyaMarket = false>>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span> <<nobr>>
<<if $dayNumber is 2>>
<<if $time is "Morning">>
<<if $day2MorningParents is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P88.png][Day2MorningParents]]>><</link>>
<span class="img-text">Reyna in Basement. (Romance, Parents)</span>
</div>
<</if>>
<<if $day2MorningRori is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P91.png][Day2MorningRori]]>><</link>>
<span class="img-text">Hearing voices. (Slice of Life, Voyeur, Humour)</span>
</div>
<</if>>
<<if $day2ForestDominanceGirlForest is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P97.png][Day2MorningDomForest]]>><</link>>
<span class="img-text">The crack in the woods. (Dominance, Risky) (Submission, Risky)</span>
</div>
<</if>>
<<if $day2GirlsAtTheRiver is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P98.png][Day2GirlsAtTheRiver]]>><</link>>
<span class="img-text">Girls at the river. (Slice of Life, After sex)</span>
</div>
<</if>>
<<if $day2OldCouple is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P99.png][Day2MorningOldYoung]]>><</link>>
<span class="img-text">Lovely old couple. (Old/Young, Sharing)</span>
</div>
<</if>>
<<if $ntrContent is true and $day2ReynaFirstTime is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P115.png][Day2MorningReynaFirstTime]]>><</link>>
<span class="img-text">Reynas first time. (Netorase)</span>
</div>
<</if>>
<<if $ntrContent is true and $day2UuriReynaFirstTime is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P116.png][Day2MorningUuriReynaFirstTime]]>><</link>>
<span class="img-text">Reynas first time. (NTR)</span>
</div>
<</if>>
<<if $day2CoupleOutsideTheWindow is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P103.png][Day2MorningOutsideWindow]]>><</link>>
<span class="img-text">Under the kitchen window. (Slice of Life, Pretending, Humour)</span>
</div>
<</if>>
<<elseif $time is "Afternoon">>
<<if $day2ShopkeeperInterracial is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P168.png][day2ShopkeeperInterracial]]>><</link>>
<span class="img-text">What happened in the shop? (Interracial, Domination) (Submission, Interracial)</span>
</div>
<</if>>
<<if $day2VisenyaFirstTime is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P170.png][day2VisenyaFirstTime]]>><</link>>
<span class="img-text">Visenya year ago. (Romance)</span>
</div>
<</if>>
<<if $day2VericsMom is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P235.png][day2VericsMom]]>><</link>>
<span class="img-text">Verics mom Alcina. (Dominance, cheating) (Submission, cheating)</span>
</div>
<</if>>
<<if $day2RoriSeesInledya is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P237.png][day2RoriSeesInledya]]>><</link>>
<span class="img-text">Good morrow! (Slice of Life)</span>
</div>
<</if>>
<<if $wierdoBoyDay2 is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P259.png][wierdoBoyDay2]]>><</link>>
<span class="img-text">On Visenya's way back. (Slice of Life, Humiliation, Humour)</span>
</div>
<</if>>
<<if $meetingNeravineDay2 is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P252.png][meetingNeravineDay2]]>><</link>>
<span class="img-text">Sister??? (Trans, FutaDom) (Submission, Interracial)</span>
</div>
<</if>>
<<if $day2NoonOldYoungLooking is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P291.png][day2NoonOldYoungLooking]]>><</link>>
<span class="img-text">Second floor window. (Old/Young)</span>
</div>
<</if>>
<<if $day2NoonBoysWalkingBack is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P292.png][day2NoonBoysWalkingBack]]>><</link>>
<span class="img-text">Cedric and the boys after seeing Inledya (Slice of Life, Humour)</span>
</div>
<</if>>
<<if $day2NoonBarnLoreRomance is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P293.png][day2NoonBarnLoreRomance]]>><</link>>
<span class="img-text">Was there someone in the barn? (Romance)⭐</span>
</div>
<</if>>
<<elseif $time is "Evening">>
<<if $day2EmoryWhatHappened is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P319.png][day2EmoryWhatHappened]]>><</link>>
<span class="img-text">Why at night? (Trans, DARK) (NTR, DARK)</span>
</div>
<</if>>
<<if $day2EveningHelpHealer is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P376.png][day2EveningHelpHealer]]>><</link>>
<span class="img-text">For the sake of health. (Romance, Humour)</span>
</div>
<</if>>
<<if $ntrContent and $day2EveningHelperNTR is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P339.png][day2EveningHelperNTR]]>><</link>>
<span class="img-text">It's just a treatment. (Netorase) </span>
</div>
<</if>>
<<if $ntrContent is true and $day2WhatFatherSawNTR is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P330.png][day2WhatFatherSawNTR]]>><</link>>
<span class="img-text">What was dad thinking about? (NTR) </span>
</div>
<</if>>
<<if $day2TheTwins is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P374.png][day2TheTwins]]>><</link>>
<span class="img-text">After Kaysa's class. (Dominance, Female Dominance, Sharing) </span>
</div>
<</if>>
<<elseif $time is "Night">>
<<if $day2WhatWasTalkedAbout is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P348.png][day2WhatWasTalkedAbout]]>><</link>>
<span class="img-text">What did they talk about? (Netorase, Cheating) </span>
</div>
<</if>>
<<if $day2VericPracticed is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P375.png][day2VericPracticed]]>><</link>>
<span class="img-text">Veric practiced? (Romance, Incest) </span>
</div>
<</if>>
<<if $PatreonPlug is false>>
<div class="img-link-wrapper">
<<link [img[wwwy/Update01P/Update01P361.jpg][PatreonPlug]]>><</link>>
<span class="img-text">Pssssst! (Slice of Life) </span>
</div>
<</if>>
<</if>>
<<elseif $dayNumber is 3>>
<</if>>
<</nobr>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBathroomBackground.png')">>\
<<set $homeBathroomEvent2 = true>>\
<<if $inledyaStreak is 1 and $inledyaVisitingBathroomFirsttime is true and $visenyaStreak is 0>>\
<<set $day2MorningParents = false>>\
<<set $day2MorningRori = false>>\
<<set $inledyaStreak = 2>>\
<<set $inledyaVisitingBathroomFirsttime = false>>\
<<set $visenyaVisitingBathroomFirsttime = false>>\
<<talks "Inledya">>Is the shower available? I peek inside and see no one. I check if there's water in the tank. There is! I run inside and take my dress off. "Yes! Yes! Yes! I made it."<</talks>>
<<talks "Inledya" "wethappy">>I turn the handle and the water starts flowing. <img src="wwwy/Vids/Vids12.webp" width=400/> "Oh goddess, it feels heavenly." What a blessing. Two days in a row! "Mhhhh..." After a while the water stops.<</talks>>
<<talks "Visenya" "cuteangry">>As I get out from the bathroom I'm greeted by Visenya's presence. "What? You took all the hot water?" Wait? She didn't get to shower before me? She's usually up first.<</talks>>
<<talks "Inledya" "shy">>"Hey! I didn't know ok?"<</talks>>
<<talks "Visenya" "cuteangry1">>"Didn't know what? That I like to shower as well? Goddess you're an annoying little brat." <img src="wwwy/Update01P/Update01P77.png" width=600px/> Her words cut me. I know she's telling me that because she's upset, but it still hurts.<</talks>>
<span id="choice1"> \
<<link "//I said I'm sorry ok? ❤️//">>
<<replace "#choice1">>
<<set $inledyaCorruption -=5>>\
<<talks "Inledya" "nervous">>"I said I'm sorry ok? I am." She immediately interrupts me.<</talks>>
<<talks "Visenya" "annoyed">>"Does being sorry bring back the hot water?" <img src="wwwy/Update01P/Update01P78.png" width=600px/> She says sharply, getting angrier by each passing moment.<</talks>>
<<talks "Inledya" "sad">>"Why are you so mean?" I didn't know. I decide to leave before I start crying in front of her. She's not worth my tears. I hurry away.<</talks>>
<<talks "Visenya" "shy">>"(Sigh...) Inledya wait!" I go back to my room to recover myself.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//What more do you want me to say!💜...//">>
<<replace "#choice1">>
<<set $inledyaCorruption +=5>>\
<<talks "Inledya" "serious">>"What more do you want me to say!" I lash out. I'm already sorry. What more is there?<</talks>>
<<talks "Visenya" "serious">>"Oh, so now I'm the bad guy?" She takes a step forward, her brow furrowed. <img src="wwwy/Update01P/Update01P79.png" width=600px/> "Really Inledya?"<</talks>>
<<talks "Inledya" "shy">>"I didn't know. I'm sorry..." She immediately interrupts me.<</talks>>
<<talks "Visenya" "annoyed">>"Does being sorry bring back the hot water?" She says sharply.<</talks>>
<<talks "Inledya" "sad">>"Why are you so mean?" I didn't know. I decide to leave before I start crying in front of her. She's not worth my tears. I hurry away.<</talks>>
<<talks "Visenya" "shy">>"(Sigh...) Inledya wait!" I go back to my room to recover myself.<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $inledyaStreak is 2 and $inledyaVisitingBathroomFirsttime is false and $visenyaStreak is 0>>\
<<talks "Inledya">>It was an accident. The water felt amazing... but I wouldn't have taken all of it if I knew she hadn't taken a shower yet.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $inledyaStreak is 0 and $inledyaVisitingBathroomFirsttime is false and $visenyaStreak is 2>>\
<<talks "Inledya">>I just wanted to have a nice warm shower. I should try to get up earlier. If she gets there tomorrow as well I'm going to do something about that.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $inledyaStreak is 1 and $inledyaVisitingBathroomFirsttime is false and $visenyaStreak is 1>>\
<<talks "Inledya">>I look at the wet floor. No point in getting there now. Maybe tomorrow.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $inledyaStreak is 0 and $inledyaVisitingBathroomFirsttime is true and $visenyaStreak is 1>>\
<<set $inledyaStreak = 1>>\
<<set $day2MorningParents = false>>\
<<set $day2MorningRori = false>>\
<<set $inledyaVisitingBathroomFirsttime = false>>\
<<set $visenyaVisitingBathroomFirsttime = false>>\
<<talks "Inledya">>Bathrooms empty. I'll take a quick one. I walk in and start to get undressed. "Huh?" <img src="wwwy/Update01P/Update01P80.png" width=600px/> Visenya walks in right as I'm about to get in the shower.<</talks>>
<<talks "Visenya" "interested">>"Inledya... what...?" She looks surprised.<</talks>>
<<talks "Inledya" "reflecting">>"You already went yesterday." She doesn't respond. Just crosses her arms. <img src="wwwy/Update01P/Update01P79.png" width=600px/>"What? I want to take a shower as well."<</talks>>
<<talks "Visenya" "annoyed">>"You're so selfish sometimes." She says with a sigh.<</talks>>
<<talks "Inledya" "gettingserious">>"Selfish?" She just leaves holding her head high. Not letting me respond to her outrageously dumb claim.<</talks>>
<<talks "Inledya" "wethappy">>I just get in. And. <img src="wwwy/Vids/Vids12.webp" width=400/> "Mhhhh." Enjoy the water for as long as it lasts.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBathroomBackground.png')">>\
<<set $homeBathroomEvent2 = true>>\
<<if $visenyaStreak is 1 and $visenyaVisitingBathroomFirsttime is true and $inledyaStreak is 0>>\
<<set $visenyaStreak = 2>>\
<<set $day2MorningParents = false>>\
<<set $day2MorningRori = false>>\
<<set $visenyaVisitingBathroomFirsttime = false>>\
<<set $inledyaVisitingBathroomFirsttime = false>>\
<<talks "Visenya" "wwwy/Locations/visenyaBedroomHome.png">>"(Yaaaawn)" That was a quality sleep. I stretch my limbs, awakening my senses. Time to get to the shower again. I jump out of bed.<</talks>>
<<talks "Visenya" "wwwy/Locations/HomeHallway.png">>I tiptoe past Inledya's door. "Shhh... Shhh..."<</talks>>
<<talks "Visenya" "wet" "wwwy/Locations/homeBathroomBackground.png">>I make it into the bathroom. "Here I go again." I turn the handle and the water starts to flow. <img src="wwwy/Vids/Vids13.webp" width=400/> "Ahhh..." The warm water hits me again. "Mhhhhh..."<</talks>>
<<talks "Inledya" "nervous">>"Hey! Emm. Visenya!" Huh? What's she doing in here? "Hurry up please."<</talks>>
<span id="choice1"> \
<<link "//Sure. I'll try ❤️...//">>
<<replace "#choice1">>
<<set $visenyaCorruption -=5>>\
<<talks "Visenya" "wet1">>"Sure. I'll try." <img src="wwwy/Update01P/Update01P81.png" width=600px/> I give her a quick cheerful smile before turning back towards the water, it's nice and warm. A little bit longer... Just a little... bit... longer... The water stops. "Whoops." I dry myself off and head out.<</talks>>
<<talks "Inledya" "gettingserious" "wwwy/Locations/HomeHallway.png">>"...." She's leaning against a wall. Looking at me with her arms crossed. She's not angry, just... disappointed.<</talks>>
<<talks "Visenya" "showingtongue">>"What?" I try to get past her without making eye contact.<</talks>>
<<talks "Inledya" "serious">>"..." No reply. Ok, she's mad.<</talks>>
<span id="choice2"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>> \
<<link "//I'll do my best💜...//">>
<<replace "#choice1">>
<<set $visenyaCorruption +=5>>\
<<talks "Visenya">>"I'll do my best. How does that sound?" <img src="wwwy/Update01P/Update01P82.png" width=600px/> I smirk at her. She rolls her eyes. Turns around and leaves the room. I turn back towards the water, it's nice and warm. A little bit longer... Just a little... bit... longer..." The water stops. "Whoops." I dry myself off and head out.<</talks>>
<<talks "Inledya" "gettingserious" "wwwy/Locations/HomeHallway.png">>"...." She's leaning against a wall. Looking at me with her arms crossed. She's not angry, just... disappointed.<</talks>>
<<talks "Visenya" "showingtongue">>"I did my best." I say half mockingly as I try to get past her.<</talks>>
<<talks "Inledya" "serious">>"..." No reply. Ok, she's mad.<</talks>>
<span id="choice3"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>></span>
<<elseif $visenyaStreak is 2 and $visenyaVisitingBathroomFirsttime is false and $inledyaStreak is 0>>\
<<talks "Visenya">>"Hehe" Two days in a row. I'll try to get in first tomorrow too. Not my fault she likes to sleep in every morning.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visenyaStreak is 0 and $visenyaVisitingBathroomFirsttime is false and $inledyaStreak is 2>>\
<<talks "Visenya">>She got there again?! I still can't believe it. I swear I'll charge at her if I find her there again tomorrow.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visenyaStreak is 1 and $visenyaVisitingBathroomFirsttime is false and $inledyaStreak is 1>>\
<<talks "Visenya">>I can't right now. The water tank is probably empty.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visenyaStreak is 0 and $visenyaVisitingBathroomFirsttime is true and $inledyaStreak is 1>>\
<<set $visenyaStreak = 1>>\
<<set $day2MorningParents = false>>\
<<set $day2MorningRori = false>>\
<<set $visenyaVisitingBathroomFirsttime = false>>\
<<set $inledyaVisitingBathroomFirsttime = false>>\
<<talks "Visenya">>"Nice!" It's empty. Today's my turn. Not about to waste this. I walk in and start to get undressed. "Huh?" <img src="wwwy/Update01P/Update01P83.png" width=600px/>Inledya walks in right as I'm about to get in the shower.<</talks>>
<<talks "Inledya" "blushing">>"Visenya... what...?" She looks surprised.<</talks>>
<<talks "Visenya" "curious1">>"What are you doing here? You already got to shower yesterday?" I say, crossing my arms.<</talks>>
<<talks "Inledya" "nervous">>"Could we maybe split?" She says shyly.<</talks>>
<<talks "Visenya" "annoyed">>"What? Like you split yesterday?" I can't believe her sometimes. "No!"<</talks>>
<<talks "Inledya" "serious">>She turns away. "Fine!"<</talks>>
<<talks "Visenya" "wet">>"And parents call me the heartless one." I turn back to the shower. <img src="wwwy/Vids/Vids13.webp" width=400/> "Ahh... This feels good." A little bit longer... Just a little... bit... longer... The water stops. "Whoops." I dry myself off and head out.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set $day2MorningParents = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBasementBackground.png')">>\
<<talks "Uuri" "aroused">>"Mhhhh... Fuck." <img src="wwwy/Update01P/Update01P84.png" width=600px/> He's fucking me so passionately this morning. Not holding back at all. "Mkhhhh."<</talks>>
<<talks "Reyna" "nakedplayfull">>"Hehe. You're going hard at it." <img src="wwwy/Update01P/Update01P85.png" width=600px/> He's actually going harder on my pussy than last night. When I let him fuck my ass.<</talks>>
<<talks "Reyna" "nakedcalm1">>This is something different. This is him just taking me. Trying to prove something? Maybe to himself.<</talks>>
<<talks "Reyna" "nakedcalm">>We hear kids upstairs start arguing. <img src="wwwy/Update01P/Update01P86.png" width=600px/> We both stop and try to listen. We can't make out any words. Just loud bickering. "Hehe. They're at it again."<</talks>>
<<talks "Uuri" "curious">>"Should you go up there?" He pants as he asks me.<</talks>>
<<talks "Reyna" "nakedplayfull">>"No, just let them figure it out. They're adults." <img src="wwwy/Vids/Vids14.webp" width=600px/> Give me back my dick. I start moving my hips towards him. Teasing him to go again. My hand reaching down to massage my clit as I keep my eyes locked on him. <</talks>>
<<talks "Uuri" "smug">>"I wouldn't have let you go up there anyway." He says with smirk and thrusts back into me.<</talks>>
<<talks "Reyna" "nakedmoan1">>"Mhhh..." <img src="wwwy/Update01P/Update01P87.png" width=600px/> "Ahhh..." His thrusts are starting to send shivers of pleasure through my entire body as he slams into me relentlessly. "Yesss..." He gives me that wicked smile and drives deeper, each thrust hitting the spot that makes my toes curl. My hunch was right. This is something different.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $day2MorningRori = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeVillageOutdoors.png')">>\
<<talks "Rori">>First day of Lunasong. I'm so excited. Maybe this year I'll finally get to have sex! "Ughhhh..." Last year was a complete failure. "Huh?" What's this? I I hear arguing coming from the bathroom window upstairs. Sounds like... Inledya? Ohhh... Inledya... <img src="wwwy/Update01P/Update01P89.png" width=400/> Those juicy melons of yours. As I picture her my cock gets hard in my pants. Begging me to just whip it out. I look around and see there's no one in sight.<</talks>>
<<talks "Rori" "blushing">>"(ziiiip)" I take my cock out and start pumping it, picturing Inledya's breasts bouncing as she argues with somebody in her bathroom. I imagine those ripe melons jiggling up and down. <img src="wwwy/Vids/Vids15.webp" width=400/>"Yes.... play with them... squeeze them...Ohh Inledya..."<</talks>>
<<talks "Rori" "cumming">>"Ughhh!" I shoot my load. As I open my eyes-<</talks>>
<<talks "Ferally" "laughing">>"Hahahaha" OML this is so embarrassing. I've been caught. "Hi." I quickly zip up and run away. <img src="wwwy/Update01P/Update01P90.png" width=600px/> "Hey! Come on! It's Lunasong afterall! Hahahaha."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $inledyaHerbs is false>>\
<<set $inledyaHerbs = true>>\
<<set $day2ForestDominanceGirlForest = false>>\
<<set $day2GirlsAtTheRiver = false>>\
<<set $day2OldCouple = false>>\
<<talks "Reyna">>"Inledya, honey?" I hear my mom call out.<</talks>>
<<talks "Inledya">>"Yes mom?" I run over to her.<</talks>>
<<talks "Reyna" "smug">>"Can you do me a favor?" <img src="wwwy/Update01P/Update01P92.png" width=600px/> She hands me a list. "I need you to get these for me." I look at the list. "I'm running low on some herbs for a delicious cream I want to make. You'll find them at the edge of the forest line."<</talks>>
<<talks "Inledya" "happy">>"Okay mom." I head out.<</talks>>
<<talks "Inledya" "wwwy/Locations/OutsideHome.png">>As I get outside, <img src="wwwy/Vids/Vids16.webp" width=600px/> I hear girls giggling by the river. There's murmuring from the market and music from the inn. Lunasong has officially started.<</talks>>
<<talks "Rori">>The morning sun feels warm on my skin. "M-m-morning. Happy Lunasong." I see Rori, who has been working under my father for a few years now. He's probably going to ask- "Your father up yet?" Yep there it is.<</talks>>
<<talks "Inledya">>"Yes. He'll be out soon." <img src="wwwy/Update01P/Update01P93.png" width=600px/> When he hears me address him, he blushes. I smile back. "Happy Lunasong." And I continue on my way.<</talks>>
<<talks "Inledya">>Even a nice old couple is out to enjoy the weather. <img src="wwwy/Update01P/Update01P94.png" width=600px/> Warming my heart as I keep going towards the forest.<</talks>>
<<talks "Inledya" "wwwy/Locations/homeForest.png">>"Ok. I got you. And I got you." I go over the list. "I still need you." Hmm, should be just a few meters ahead. I find the herb I was looking for. <</talks>>
<<talks "Inledya" "panic">> As I'm about to grab it, I hear a crack. <img src="wwwy/Update01P/Update01P95.png" width=600px/> What was that? My eyes look towards the forest. I can't see anything. Was it an animal? My heart starts racing. I snatch the herb from the ground and make my way back.<</talks>>
<<talks "Reyna" "curious" "wwwy/Locations/homeKitchen.png">>I rush back into the kitchen. "Hey-Hey! You ok?" she asks as she sees me panting.<</talks>>
<<talks "Inledya" "panic">>"Y-yes. There was something in the forest." I manage to say. "An animal. I heard it. A crack."<</talks>>
<<talks "Reyna" "smug">>"W-wh.. An animal? There aren't any animals in..." She pauses, like she knows exactly what made that noise. "Yes. It might have been a..." She pauses for a dramatic effect. "rune bear." She chuckles then quickly asks as if trying to change the subject. "You got the herbs?"<</talks>>
<<talks "Inledya" "nervous">>"Mhm." I hand over the herbs.<</talks>>
<<talks "Reyna" "flirting">>"Veric's going to love it." Veric? She looks over at my confused face. <img src="wwwy/Update01P/Update01P96.png" width=600px/> "We're not going to go over empty handed. This cream will be our little gift to say thank you. And you can hand it over." A small smile plays on my lips. "Good girl." she adds and starts making the cream.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $inledyaHerbs is true>>
<<talks "Inledya" "nervous">>I hear mom humming. She's still making the cream.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<if $visenyaVisetedKitchen is false>>\
<<set $visenyaVisetedKitchen = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeEntrance.png')">>\
<<set $day2ReynaFirstTime = false>>\
<<set $day2UuriReynaFirstTime = false>>\
<<set $day2CoupleOutsideTheWindow = false>>\
<<talks "Reyna">>I'm about to head out to find some trouble, when I hear Mom's voice. "Visenya!" Ughhh, what now? <img src="wwwy/Update01P/Update01P100.png" width=600px/> I just grabbed the door handle. I swear sometimes she waits until the last second to call me. I turn around. "Come help me with making lunch."<</talks>>
<<talks "Visenya" "annoyed" "wwwy/Locations/homeKitchen.png">>"What?" Not this again. "Why? I don't want to. Ask Inledya."<</talks>>
<<talks "Reyna" "smug">>"Inledya is already doing something." Right... "Now come help me with-" I cross my arms in defiance. "Alright. I'll just make less then."<</talks>>
<<talks "Visenya" "comforting">>What? "No-no. I'll help." She gives me a smirk, showing her victory with that smile.<</talks>>
<<talks "Reyna" "flirting">>"Heheh. You'll do the carrots ok?" She puts a knife next to the prepared carrots.<</talks>>
<<talks "Visenya" "curious2">>As time passes, I decide to ask Mom. <img src="wwwy/Vids/Vids17.webp" width=600px/> "Mom? What was your first Lunasong like?" I'm hoping for a juicy story.<</talks>>
<<talks "Unknown Woman">>"Ahhhh! Yes! Give to me!" What the?<</talks>>
<<talks "Reyna" "angry1">>Mom puts her head through the window, addressing the people. "And what's this? Right under my kitchen window?" I hear a boy responding but can't make out on what he's saying. "Ughhh. 5 minutes. And keep it down with the moaning, young lady. You are way over the top with that." She closes the window. "Sorry dear. What was that?" She turns back to me.<</talks>>
<<talks "Visenya" "curious1">>"Oh? Emm. I was asking about your first Lunasong?"<</talks>>
<<talks "Reyna" "smug">>"It was... amazing. By the end of my first Lunasong, I became bondmates with your dad." She says that almost like an achievement. Which it is. Usually people don't commit to being bondmates after their first Lunasong festival. It must have been a truly special bond that they formed that made both of them decide to become bondmates.<</talks>>
<<talks "Visenya">>"Mom?"<</talks>>
<<talks "Reyna" "curious">>"Hmm?"<</talks>>
<<talks "Visenya" "blushing1">>"Was dad your first?" A shy smile appears on her face as she looks away.<</talks>>
<<talks "Reyna" "flirting">>"No." She says quickly. What? I didn't think she would actually answer.<</talks>>
<<talks "Visenya" "surprised">>"What? Who?" <img src="wwwy/Update01P/Update01P101.png" width=600px/> I try to compose myself. "Who was the first then?"<</talks>>
<<talks "Reyna" "laughing">>"Hahaha. I already told you too much." She goes back to chopping vegetables. "Don't tell dad I told you this." I make an expression of my-lips-being-sealed. "Sure." She's unconvinced by that.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $visenyaVisetedKitchen is true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<talks "Visenya" "blushing1">>I can't believe mom told me that. So Dad wasn't Mom's first ride after all. <</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>> <<nobr>>
<<set $day2ForestDominanceGirlForest = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForest.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>♀</span> POV (submission, risky)">>
<<replace "#POV">>
<<include "Day2ForestGirl">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♂</span> POV (dominance, risky)">>
<<replace "#POV">>
<<include "Day2ForestBoy">>
<</replace>>
<</link>>
</span>
<</nobr>>
<<set $day2GirlsAtTheRiver = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeRiverBank.png')">>\
<<talks "Sylvari">>The sun shines through the leaves. The river makes a soft sound. I'm excited for the festival. <img src="wwwy/Vids/Vids16.webp" width=600px/> I play with my feet in the cool water and watch the ripples.<</talks>>
<<talks "Sylvari" "calm">>I hear someone walking behind me. I look over and it's Elara. "Where were you?" I see cum on her lips. "Hehe. You had fun without me?" <img src="wwwy/Update01P/Update01P126.png" width=600px/> Her hand has cum on it too. She goes to the river to wash her hands. "So who was it?"<</talks>>
<<talks "Elara" "confident">>"I don't remember his name." Of course you don't. "Syl. I think humans are bigger than elves." Why does she say that? "This is the third human I blew... and he was big-big, you know." She says as she's rinsing her mouth with water. Three already? Hehe.<</talks>>
<<talks "Sylvari" "curious">>"Elara?" She looks at me. "You're really going for it, aren't you?"<</talks>>
<<talks "Elara" "playfull">>"Well, it's Lunasong afterall," she laughs.<img src="wwwy/Update01P/Update01P127.png" width=600px/> "And I don't want my name to be on the post."<</talks>>
<<talks "Sylvari" "calm1">>"The Post of Liberation?" She nods. "You'll be the last person on that post. Hahaha." I see Inledya run into her house. She was probably collecting herbs or something."But that one however..." Elara looks over.<</talks>>
<<talks "Elara" "smug">>"Yeah... Her name will definitely be on the post."<</talks>>
<<talks "Sylvari" "curious">>I see she still has cum on her lips. "You still have..." I point to my own lip.<</talks>>
<<talks "Elara" "smug1">>"Oh, right." She wipes the cum with her thumb. <img src="wwwy/Update01P/Update01P128.png" width=600px/> "Want some?" She holds her thumb out with a smile.<</talks>>
<<talks "Sylvari" "laughing">>"Eww, get that away from me." I swat her hand away, and we both laugh.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<nobr>>
<<set $day2OldCouple = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeRiverBank.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>♀</span> POV (Old/Young, Sharing)">>
<<replace "#POV">>
<<include "Day2OldYoungGirlPOV">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♂</span> POV (Old/Young, Sharing)">>
<<replace "#POV">>
<<include "Day2OldYoungMalePOV">>
<</replace>>
<</link>>
</span>
<</nobr>><<set $day2ReynaFirstTime = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeNightLivingroomReyna.png')">>\
<<talks "Young Reyna" "blushing">> My first Lunasong and on the night of my first day... <img src="wwwy/Update01P/Update01P104.png" width=600px/> I'm holding this huge cock in my hand. I'm so lucky that I asked Mattyna of all people to come home with me tonight. "Wow. It's really big Matty." He smirks at me while towering over me.<</talks>>
<<talks "Young Reyna" "blushing1">>"Mhhhh." <img src="wwwy/Vids/Vids18.webp" width=600px/> It's so big. I'm trying my best. "Slurp. Slurp. Slurp." But I can barely even take the tip of his cock into my mouth. "Slurp. Slurp. Slurp." He gives a smile while watching me give my best. "Mhhh. Slurp. Slurp. Slurp."<</talks>>
<<talks "Young Mattyna" "aroused1">>Knock! Knock! Knock! <img src="wwwy/Update01P/Update01P105.png" width=600px/> Someone is knocking on the front door. He looks over to see who it is. As I'm about to ask. "Don't worry. It can wait. Go on, take it deeper."<</talks>>
<<talks "Young Reyna" "blushing2">>I take his cock deeper. Carefully. "Mhhh... Slurp." <img src="wwwy/Vids/Vids19.webp" width=600px/> Trying to avoid my teeth while his cock fills my mouth. "Mgh. Mgh. Mgh!" Goddess his big. His cock is truly exceptional.<</talks>>
<<talks "Young Mattyna" "aroused">>Knock! Knock! Knock! There it is again. It must be urgent. As I'm taking his cock out of my mouth, he- <img src="wwwy/Update01P/Update01P106.png" width=600px/> "There we go. Ukhhhh." Pushes it all the way down my throat.<</talks>>
<<talks "Young Reyna" "blushing1">>"Mkhhh.... MGH! MGH! MGH!" He's fucking my mouth now. While occasionally looking over at the unknown person on the other side of that door. OML, I'm really making noises here now, aren't I? "MGHH! GLUCK! GLUCK!" <img src="wwwy/Update01P/Update01P107.png" width=600px/> What if they can hear it on the other side. "GLUCK! GLUCK! GLUCK!"<</talks>>
<<talks "Young Mattyna" "cumming">>"I'm gonna...." He's about to blow. My first time giving a blowjob. And my first time getting to taste cum. "GLUCKHH! GLUCKHH!" <img src="wwwy/Update01P/Update01P108.png" width=600px/> Will it be as good as the other girls described it to me? Will it- "UKhhhhhhHHH!"<</talks>>
<<talks "Young Reyna" "cumming">>"MPPFFFFHH!!" <img src="wwwy/Update01P/Update01P109.png" width=600px/> I feel it. The hot stream of cum flowing down my throat. Hitting me straight in my stomach. Everything in me is..."Mhhhhhhh. (Gulp..) (Gulp...)" warm...<</talks>>
<<talks "Young Mattyna" "calm">>"Fuck... I'm going to go clean myself up. Where's your bathroom?" I point in the direction of the bathroom. "You should probably go see who it was." Right! I totally forgot about that.<</talks>>
<<talks "Young Reyna" "curious" "wwwy/Locations/homeNightOutdoorsReyna.png">>I open the door and- There's no one to be seen. I look down, <img src="wwwy/Update01P/Update01P110.png" width=600px/> and I see a bouquet of flowers. Green roses? They are my favorite. I crouch down to pick them up. As I do, I see a silhouette of a man. "Wait!" I run towards him. He stops. Turns around and it's... "Uuri?"<</talks>>
<<talks "Young Uuri" "blushing">>"Oh. Hey. Reyna." <img src="wwwy/Update01P/Update01P111.png" width=600px/> He tries to find words. "I uh. Came to uh." He doesn't finish his sentence and stumbels himself into silence.<</talks>>
<<talks "Young Reyna" "cute1">>"Are these for me?" I show him the green roses. He nods. "How did you.. know?" He shrugs it off like he's trying to say he's got his ways. "Why? Why give me these?"<</talks>>
<<talks "Young Uuri" "blushing2">>He seems even more stumbled about my question. "Oh? I uhh. I thought you knew?" Knew what? "That I uhh.. I uhh.." We both hear the front door opening.<</talks>>
<<talks "Young Mattyna" "confident">>"Oh hey Uuri." <img src="wwwy/Update01P/Update01P112.png" width=600px/> He walks past us. "I'll see you later, Reyna!"<</talks>>
<<talks "Young Reyna" "cute2">>"See you!" I wave him goodbye and turn back to Uuri. I can't remember what we were talking about anymore.<</talks>>
<<talks "Young Hervatany">>"Reyna! You should really get to bed. It'll be morning in a few hours." My mom yells at me from the front door.<</talks>>
<<talks "Young Reyna" "flirting">>"Coming mom!" I look over at Uuri. "Thank you so much for these!" I lean in and kiss his cheek. <img src="wwwy/Update01P/Update01P113.png" width=600px/> He blushes hard. "Maybe we'll see each other tomorrow." I quickly run back to my house.<</talks>>
<<talks "Young Reyna" "blushing2" "wwwy/Locations/homeNightLivingroomReyna.png">>"Mom! You're up?!" She just nods at me. "I did it mom! My first blowjob!"<</talks>>
<<talks "Young Hervatany" "flirting">>"Hehehe. I know! The whole house was filled with your choking noises." <img src="wwwy/Update01P/Update01P114.png" width=600px/> We both laugh. "I'm so proud of you honey." She gives me a warm hug. "Oh? Whats this?"<</talks>>
<<talks "Young Reyna" "curious">>"Shit!" I still have some cum on the corners of my mouth. Wait. Didn't I just kiss Uuri's cheek with this on my lips?<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $day2CoupleOutsideTheWindow = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBackyard.png')">>\
<<talks "Talindra" "nakedcumming">>"Ahhhh! Yes! Give to me!" <img src="wwwy/Update01P/Update01P135.png" width=600px/> Am I doing it loud enough? Lyren grunts. Ok I am. That's good.<</talks>>
<<talks "Reyna" "angry2">>"And what's this? Right under my kitchen window?" <img src="wwwy/Update01P/Update01P138.png" width=600px/> I told that dumbass that it was a stupid idea.<</talks>>
<<talks "Lyren" "scared">>"AHHH!! I'm sorry miss. Please let us finish. It'll only take 5 minutes I promise." The woman stares at us. "It's Lunasong afterall!" No he didn't just use that phrase on her-<</talks>>
<<talks "Reyna" "angry">>"Ughhh. 5 minutes. And keep it down with the moaning, young lady. You are way over the top with that." I am? How does she know I was faking?<</talks>>
<<talks "Lyren">>I shouldn't moan so loud, I guess. <img src="wwwy/Vids/Vids24.webp" width=600px/> "Nhhh." Maybe I should keep moaning but quieter? "Isn't this cock so much better than Xelixes's?" Or just fewer moans? " You fucked him earlier right?" Or both? Or maybe just- "Wait why aren't you moaning?" Oh! Right! He's still doing me.<</talks>>
<<talks "Talindra" "nakedmoaning">>Emmm... "Ehhhhh" <img src="wwwy/Update01P/Update01P136.png" width=600px/> I moan a bit quieter. Now. One. Two. Three. "Ohhhh" Was this good amount to time to wait? One. Two. Three. Four. "Mhhhh."<</talks>>
<<talks "Lyren" "cumming">>"Oh. I'm cumming!!!" <img src="wwwy/Update01P/Update01P137.png" width=600px/> It worked!! That woman was right. I have so much to learn from her! "You enjoyed it?"<</talks>>
<<talks "Talindra" "nakedbored1">>"Emm. Yes. Yes." I need to talk to that wise woman.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $day2UuriReynaFirstTime = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeNightOutdoorsReyna.png')">>\
<<talks "Young Uuri">>I finally got the roses. What a hassel it was to get them. There's the house. I saw Reyna leave the party half an hour ago. I hope she's still up. Wait. Let me. Fix my hair. Ok. Here it goes.<</talks>>
<<talks "Young Uuri" "curious">>Knock! Knock! Knock! <img src="wwwy/Update01P/Update01P123.png" width=600px/> The flowers I'm holding are sweating in my palms. I wait. Nothing.<</talks>>
<<talks "Young Uuri" "sad">>Should I try again? Knock! Knock! Knock! Maybe she's sleeping? Wait? I think I hear something. I can't... I can't make out what it is though. It sounds like... coughing? It might be her mother. She did catch a cold somehow in this heat.<</talks>>
<<talks "Young Uuri" "shy">>Is she going to come to open the door or... The coughing noises are getting louder. Wow. She must really feel under the weather. <img src="wwwy/Update01P/Update01P124.png" width=600px/> "(gulp)" I should probably leave. I don't want to intrude when her mother is this sick... Ok she really started coughing heavily now. I kneel down and place the flowers next to the door. "This works." As I get up, I walk away with the sounds of her sick mother echoing from the house.<</talks>>
<<talks "Young Reyna" "curious">>"Wait!" I hear from behind me. Reyna runs up to me. Her face all flushed.<</talks>>
<<talks "Young Uuri" "blushing">>"Oh. Hey. Reyna." Damn it! Why is it so hard to find words. I practiced this. "I uh. Came to uh." Darn it! What is wrong with me.<</talks>>
<<talks "Young Reyna" "cute1">>She speaks up. "Are these for me?" <img src="wwwy/Update01P/Update01P111.png" width=600px/> Her smile is so pretty. I nod. "How did you.. know?" Your mom told me two moons ago. But I shouldn't tell her that. I instead just shrug. "Why? Why give me these?"<</talks>>
<<talks "Young Uuri" "blushing">>Wait? You don't know? "Oh? I uhh. I thought you knew?" She looks at me dumbfounded. "That I uhh.. I uhh..." The front door behind her opens.<</talks>>
<<talks "Young Mattyna" "confident">>Out walks.. Mattyna? "Oh hey Uuri" <img src="wwwy/Update01P/Update01P112.png" width=600px/> He passes us without a care in the world. "I'll see you later, Reyna!" Wait? What was he doing in there? Are they friends now?<</talks>>
<<talks "Young Reyna" "cute2">>"See you!" She waves him goodbye. Then looks back at me. I'm lost for words. Mattyna? Why was he there? Wait - maybe because he's learning to be a healer? Her mother did sound really sick... Yes! That must be it. As I'm about to tell her about my true feelings-<</talks>>
<<talks "Young Hervatany">>"Reyna! You should really get to bed. It'll be morning in a few hours." Her mom yells from the front door.<</talks>>
<<talks "Young Reyna" "flirting">>"Coming mom!" She turns back to me. "Thank you so much for these!" <img src="wwwy/Update01P/Update01P113.png" width=600px/> And she kisses me on my cheek. I get a bit dizzy from it. So soft. And wet. Really wet? "Maybe we'll see each other tomorrow." She runs back to her house.<</talks>>
<<talks "Young Uuri" "blushing1">>I start walking back to home. She kissed me. I can't believe it. I can still feel her lips. Take that Mattyna! Hehe. My cheek feels... so sticky... As my instinct kicks in to wipe it I stop myself. <img src="wwwy/Update01P/Update01P125.png" width=600px/> "Oh Reyna..." I won't wipe this off for anything.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/Notebookbg.jpg')">>
<div class="mr-frame">
<div class="mr-frame-inner">
<div class="mr-page-ornament">
<div class="mr-orn-line"></div>
<div class="mr-orn-dia"></div>
<div class="mr-orn-line"></div>
</div>
<div class="fragments-page">
<div class="fragments-header">
<h1>Collection 💎</h1>
<p>Review all discovered fragments from your journey.</p>
</div>
<div class="fragments-filter-container"></div>
<div class="fragments-counter"></div>
<div class="fragments-revisit-grid"><<nobr>>
<<if $day2MorningParents is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P88.png][Day2MorningParents]]>><</link>>
<span class="fragment-text">Reyna in Basement. (Romance, Parents)</span>
</div>
<</if>>
<<if $day2MorningRori is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P91.png][Day2MorningRori]]>><</link>>
<span class="fragment-text">Hearing voices. (Slice of Life, Voyeur, Humour)</span>
</div>
<</if>>
<<if $day2ForestDominanceGirlForest is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P97.png][Day2MorningDomForest]]>><</link>>
<span class="fragment-text">The crack in the woods. (Dominance, Risky) (Submission, Risky) </span>
</div>
<</if>>
<<if $day2GirlsAtTheRiver is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P98.png][Day2GirlsAtTheRiver]]>><</link>>
<span class="fragment-text">Girls at the river. (Slice of Life, After sex)</span>
</div>
<</if>>
<<if $day2OldCouple is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P99.png][Day2MorningOldYoung]]>><</link>>
<span class="fragment-text">Lovely old couple. (Old/Young, Sharing)</span>
</div>
<</if>>
<<if $day2ReynaFirstTime is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P115.png][Day2MorningReynaFirstTime]]>><</link>>
<span class="fragment-text">Reynas first time. (Netorase)</span>
</div>
<</if>>
<<if $day2UuriReynaFirstTime is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P116.png][Day2MorningUuriReynaFirstTime]]>><</link>>
<span class="fragment-text">Reynas first time. (NTR)</span>
</div>
<</if>>
<<if $day2CoupleOutsideTheWindow is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P103.png][Day2MorningOutsideWindow]]>><</link>>
<span class="fragment-text">Under the kitchen window. (Slice of Life, Pretending, Humour)</span>
</div>
<</if>>
<<if $day2ShopkeeperInterracial is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P168.png][day2ShopkeeperInterracial]]>><</link>>
<span class="fragment-text">What happened in the shop? (Interracial, Domination) (Submission, Interracial)</span>
</div>
<</if>>
<<if $day2VisenyaFirstTime is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P170.png][day2VisenyaFirstTime]]>><</link>>
<span class="fragment-text">Visenya year ago. (Romance)</span>
</div>
<</if>>
<<if $day2VericsMom is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P235.png][day2VericsMom]]>><</link>>
<span class="fragment-text">Verics mom Alcina. (Dominance, cheating) (Submission, cheating)</span>
</div>
<</if>>
<<if $day2RoriSeesInledya is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P237.png][day2RoriSeesInledya]]>><</link>>
<span class="fragment-text">Good morrow! (Slice of Life)</span>
</div>
<</if>>
<<if $wierdoBoyDay2 is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P259.png][wierdoBoyDay2]]>><</link>>
<span class="fragment-text">On Visenya's way back. (Slice of Life, Humiliation, Humour)</span>
</div>
<</if>>
<<if $meetingNeravineDay2 is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P252.png][meetingNeravineDay2]]>><</link>>
<span class="fragment-text">Sister??? (Trans, FutaDom) (Submission, Interracial)</span>
</div>
<</if>>
<<if $day2NoonOldYoungLooking is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P291.png][day2NoonOldYoungLooking]]>><</link>>
<span class="fragment-text">Second floor window. (Old/Young)</span>
</div>
<</if>>
<<if $day2NoonBoysWalkingBack is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P292.png][day2NoonBoysWalkingBack]]>><</link>>
<span class="fragment-text">Cedric and the boys after seeing Inledya (Slice of Life, Humour)</span>
</div>
<</if>>
<<if $day2NoonBarnLoreRomance is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P293.png][day2NoonBarnLoreRomance]]>><</link>>
<span class="fragment-text">Was there someone in the barn? (Romance)</span>
</div>
<</if>>
<<if $day2EmoryWhatHappened is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P319.png][day2EmoryWhatHappened]]>><</link>>
<span class="fragment-text">Why at night? (Trans, DARK) (NTR, DARK)</span>
</div>
<</if>>
<<if $day2EveningHelpHealer is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P376.png][day2EveningHelpHealer]]>><</link>>
<span class="fragment-text">For the sake of health. (Romance, Humour)</span>
</div>
<</if>>
<<if $day2EveningHelperNTR is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P339.png][day2EveningHelpHealer]]>><</link>>
<span class="fragment-text">It's just a treatment. (Netorase)</span>
</div>
<</if>>
<<if $day2WhatFatherSawNTR is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P330.png][day2WhatFatherSawNTR]]>><</link>>
<span class="fragment-text">What was dad thinking about? (NTR)</span>
</div>
<</if>>
<<if $day2TheTwins is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P374.png][day2TheTwins]]>><</link>>
<span class="fragment-text">After class. (Dominance, Female Dominance, Sharing)</span>
</div>
<</if>>
<<if $day2WhatWasTalkedAbout is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P348.png][day2WhatWasTalkedAbout]]>><</link>>
<span class="fragment-text">What did they talk about? (Netorase, Cheating)</span>
</div>
<</if>>
<<if $day2VericPracticed is true>>
<div class="fragment-revisit-item">
<<link [img[wwwy/Update01P/Update01P375.png][day2VericPracticed]]>><</link>>
<span class="fragment-text">Veric practiced? (Romance, Incest)</span>
</div>
<</if>>
<</nobr>></div>
<div style="margin-top: 30px; text-align: center;">
<<link "← Return" $previousPassage>><</link>>
</div>
</div>
<div class="mr-page-footer">
<div class="mr-orn-line"></div>
</div>
</div>
</div>
<style>
/* ================================================
PAGE FRAME
================================================ */
.mr-frame {
max-width: 2500px;
margin: 0 auto;
padding: 4px;
}
.mr-frame-inner {
position: relative;
background: rgba(10, 8, 6, 0.85);
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 3px;
padding: 15px;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
outline: 1px solid rgba(201, 168, 76, 0.05);
outline-offset: -6px;
}
.mr-frame .mr-page-ornament {
display: flex;
align-items: center;
justify-content: center;
gap: 0.8rem;
margin-bottom: 0.5rem;
position: relative;
z-index: 1;
}
.mr-frame .mr-orn-line {
width: 60px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}
.mr-frame .mr-orn-dia {
width: 6px;
height: 6px;
background: rgba(201, 168, 76, 0.3);
transform: rotate(45deg);
flex-shrink: 0;
}
.mr-frame .mr-page-footer {
margin-top: 10px;
display: flex;
justify-content: center;
}
.mr-frame .mr-page-footer .mr-orn-line {
width: 120px;
}
/* ================================================
FRAGMENTS COLLECTION PAGE - ORIGINAL CSS
================================================ */
#passages {
max-width: none;
width: 90%;
margin-top: 0 !important;
padding-top: 0 !important;
}
.fragments-filter-container {
background: rgba(0, 0, 0, 0.6);
border-radius: 12px;
padding: 15px 20px;
margin: 0 0 15px 0;
border: 1px solid rgba(201, 168, 76, 0.15);
}
.filter-section {
margin-bottom: 12px;
}
.filter-section:last-child {
margin-bottom: 0;
}
.filter-label {
color: #aaa;
font-size: 0.9em;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 1px;
}
.filter-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}
.filter-btn {
padding: 8px 16px;
border: 2px solid #555;
background: transparent;
color: #aaa;
border-radius: 20px;
cursor: pointer;
font-size: 0.9em;
font-weight: 600;
transition: all 0.3s ease;
}
.filter-btn:hover {
background: rgba(150, 150, 150, 0.25);
}
.filter-btn.filter-all {
border-color: #1FA1F4;
color: #1FA1F4;
}
.filter-btn.filter-all.active {
background: #1FA1F4;
color: #fff;
}
.filter-btn.filter-all:hover:not(.active) {
background: rgba(150, 150, 150, 0.25);
}
.filter-btn.filter-main {
border-color: var(--btn-color);
color: var(--btn-color);
}
.filter-btn.filter-main:hover:not(.active) {
background: rgba(150, 150, 150, 0.25);
}
.filter-btn.filter-main.active {
background: var(--btn-color);
color: #fff;
}
.filter-btn.filter-main.active[data-tag="Old/Young"] {
background: #C4A000;
border-color: #C4A000;
color: #000;
}
.filter-btn.filter-side {
font-size: 0.85em;
padding: 6px 14px;
border-radius: 15px;
border-color: rgba(201, 168, 76, 0.25);
color: #8a7d5a;
}
.filter-btn.filter-side:hover:not(.active) {
background: rgba(201, 168, 76, 0.1);
}
.filter-btn.filter-side.active {
background: rgba(201, 168, 76, 0.3);
border-color: rgba(201, 168, 76, 0.5);
color: #e8d48b;
}
.fragments-counter {
display: flex;
justify-content: space-between;
align-items: center;
color: #8a7d5a;
font-size: 0.9em;
margin: 0 0 15px 0;
padding: 8px 15px;
background: rgba(201, 168, 76, 0.06);
border-radius: 8px;
}
.counter-text {
color: #8a7d5a;
}
.sort-btn {
padding: 6px 14px;
border: 2px solid rgba(201, 168, 76, 0.3);
background: transparent;
color: #8a7d5a;
border-radius: 20px;
cursor: pointer;
font-size: 0.85em;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 6px;
}
.sort-btn:hover {
background: rgba(201, 168, 76, 0.1);
border-color: rgba(201, 168, 76, 0.5);
color: #c9a84c;
}
.sort-btn .arrow {
font-size: 1em;
transition: transform 0.3s ease;
}
.sort-btn.asc .arrow {
transform: rotate(180deg);
}
.fragments-revisit-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
align-items: flex-start;
align-content: flex-start;
}
.fragment-revisit-item {
position: relative;
border: 3px solid #1FA1F4;
border-radius: 8px;
overflow: hidden;
width: 220px;
height: 120px;
flex: 0 0 auto;
cursor: pointer;
}
.fragment-revisit-item a,
.fragment-revisit-item a:link,
.fragment-revisit-item a:visited,
.fragment-revisit-item a:hover,
.fragment-revisit-item a:active,
.fragment-revisit-item .link-internal,
.fragment-revisit-item .link-image,
.fragment-revisit-item .macro-link {
display: block;
width: 100%;
height: 100%;
position: relative;
border: none !important;
outline: none !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
background: transparent !important;
}
.fragment-revisit-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border: none !important;
outline: none !important;
transition: transform 0.3s ease;
}
.fragment-revisit-item:hover img {
transform: scale(1.1);
}
.fragment-text {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 8px 10px;
font-size: 0.8em;
text-align: center;
background: rgba(0, 0, 0, 0.75);
color: #fff;
pointer-events: none;
z-index: 10;
}
.fragments-page {
max-width: 2500px;
margin: 0 auto;
padding: 20px 30px 30px 30px;
background: transparent;
border-radius: 0;
border: none;
}
.fragments-header {
text-align: center;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.fragments-header h1 {
color: #1FA1F4;
font-size: 2em;
margin: 0 0 5px 0;
}
.fragments-header p {
color: #8a7d5a;
font-size: 1em;
margin: 0;
}
.fragments-page > div:last-child a.link-internal {
display: inline-block;
padding: 12px 30px;
background: rgba(201, 168, 76, 0.06);
border: 2px solid rgba(201, 168, 76, 0.2);
color: #8a7d5a;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
}
.fragments-page > div:last-child a.link-internal:hover {
background: rgba(201, 168, 76, 0.12);
border-color: rgba(201, 168, 76, 0.4);
color: #c9a84c;
}
@media (max-width: 768px) {
#passages {
max-width: none !important;
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
.fragments-page {
max-width: 100%;
border-radius: 0;
padding: 15px;
border-left: none;
border-right: none;
}
.fragment-revisit-item {
width: 165px;
height: 90px;
}
.fragment-text {
font-size: 0.65em;
padding: 5px 6px;
}
}
@media (max-width: 480px) {
.fragment-revisit-item {
width: calc(37.5% - 8px);
height: 68px;
}
.fragments-counter {
flex-direction: column;
gap: 10px;
}
.fragment-text {
font-size: 0.6em;
padding: 4px 5px;
}
}
.sidebar-icon-btn.sidebar-icon-active {
background: rgba(31, 161, 244, 0.3);
border-color: #1FA1F4;
box-shadow: 0 0 10px rgba(31, 161, 244, 0.4);
}
</style>
<</nobr>><<set $day2RoriSeesInledya = false>>\
<<set $day2VericsMom = false>>\
<<set $day2VisenyaFirstTime = false>>\
<<set $day2ShopkeeperInterracial = false>>\
<<set $inledyaViewed = true>>\
<<set $visenyaViewed = false>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/inledyasBedroomHome.png')">>\
<<talks "Inledya" "curious">>"What the....?" <img src="wwwy/vids/Vids25.webp" width=600px/> Something wrong with the-<</talks>>
<<talks "Visenya" "happy">>My bedroom door swings open. <img src="wwwy/Update01P/Update01P139.png" width=600px/> "There you are." Where else should I be? "Come!"<</talks>>
<<talks "Inledya" "panic">>"Wait! I think something's wrong with my notebook." I flip through the pages.<</talks>>
<<talks "Visenya" "interested">>"The one mom gave you on The Day?" I don't answer and continue flipping the pages. "(sigh).. What's with the notebook then?" She asks me as she leans onto my door frame.<</talks>>
<<talks "Inledya" "shy">>"It showed me like... things..."<</talks>>
<<talks "Visenya" "serious">>She says slowly "It showed you things...."<</talks>>
<<talks "Inledya" "nervous">>"Yeah. Like..." I continue flipping the empty pages back and forth.<</talks>>
<<talks "Visenya">>"Ok... what did it show you?"<img src="wwwy/Update01P/Update01P140.png" width=600px/><</talks>>
<<talks "Inledya" "blushing1">><<if $day2MorningParents is true>>I whisper out. "It showed me mom and dad having sex."<</if>> Her brow narrows. <<if $day2MorningRori is true>>"It showed me the... the farm boy... Rori. He was playing with his penis on the street and got caught. On the street!"<</if>><</talks>>
<<if $day2MorningParents is true or $day2MorningRori is true>>
<<talks "Visenya">>"Uhuh...." She looks at me with a bored expression.<</talks>>
<</if>>
<<talks "Inledya">>"I'm being serious." I look at her with a pleading look. <<if $day2ForestDominanceGirlForest is true>> "And. And. And. Nyxie having sex in the woods with some knight." <</if>><<if $day2GirlsAtTheRiver is true>>Oh? "Elara had cum on her face and was chatting with Sylvari. Just... chatting... casually... like nothing had happened." <</if>>I sigh deeply. <<if $day2OldCouple is true>>"Oh and... There was this old couple, and a girl came to them and just was like... wanting the old man to cum into her mouth. In her mouth? Mouth! Would you believe it?"<</if>><</talks>>
<<if $day2ReynaFirstTime is true or $day2UuriReynaFirstTime is true>>
<<talks "Inledya">>Visenya wants to say something, but I'm not done. "<<if $day2ReynaFirstTime is true>>And then! I saw moms past. Her first time sucking on a.. penis.<</if>><<if $day2UuriReynaFirstTime is true>> Dad's past! Him visiting mom and hearing his thoughts... which was really... quite something...<</if>>"<</talks>>
<</if>>
<<talks "Inledya" "blushing2">>She looks not convinced at all. <<if $day2CoupleOutsideTheWindow is true>>"Really! And then it showed some girl having sex right next to our house! It was toda..." <</if>><</talks>>
<<talks "Visenya" "blushing1">>She interrupts me. "Are you done?"<</talks>>
<<talks "Inledya" "nervous">>"I..." <img src="wwwy/Update01P/Update01P141.png" width=600px/> I feel like she didn't hear a word I just said.<</talks>>
<<talks "Visenya">>"You know how ridiculous it all sounds, right?" I... But... I look at the empty pages of the notebook. "Look. You probably were just daydreaming. Maybe anxious to meet Veric? You have been a real adult for what? Like a week now? I mean, just imagine it. Not feeling any emotions at all and then. BAM! You get overrun with all kinds of feelings you've never felt before. Some even get months long fevers because of all the stimulation. They see hallucinations." But... Were they hallucinations? "It was hard for me as well." She's not believing me... "I mean on my first week. You don't even want to know." Maybe she's right. It's all just in my head. Has to be. Right?<</talks>>
<<talks "Visenya" "smug">>"Anyway. Are you coming?" Huh?<</talks>>
<<talks "Inledya" "shy1">>"Go where?" She runs up to me and grabs my arm.<</talks>>
<<talks "Visenya" "happy">>"To see Veric!" What? Veric? I don't... "Hey! I told you I'd help you didn't I?" I can't go to see Veric!<</talks>>
<<talks "Inledya" "worried">>"Wait! I can't!" She starts pulling me. <img src="wwwy/Update01P/Update01P142.png" width=600px/> "WAIT! I'm not ready!" She pulls harder. "VISENYA I CAN'T!" I feel my heart pounding as she pulls me out of the house.<</talks>>
<<talks "Visenya" "happy2" "wwwy/Locations/homeVillageOutdoors.png">>We're outside and there he is. Standing in front of the village shop. Oh... Veric... "On you go!" What? She pushes me towards Veric. I'm not able to slow myself down and I just collide right into him.<</talks>>
<<talks "Inledya" "surprised">>"Oomf" <img src="wwwy/Update01P/Update01P143.png" width=600px/> Huh? What happened? OML. I'm suffocating him with my chest. I quickly get off of him. "Veric. I'm. I'm so sorry. I'm-"<</talks>>
<<talks "Veric" "surprised">>"In-Inledya?" He... He said my name! He knows my name! AHHHHHHH!!! "Y-you really got me here." He scratches the back of his head. Oh no. It must have really hurt.<</talks>>
<<talks "Inledya" "blushing4">>"Sorry..."<</talks>>
<<talks "Veric" "cute">>He stands up and offers his hand. <img src="wwwy/Update01P/Update01P144.png" width=600px/> "It's alright." He pulls me up. "I've heard that umm... (clears throat) you're coming to have dinner. With me- WITH US I mean."<</talks>>
<<talks "Inledya" "blushing2">>"Oh? Y-yes. Yes I am." My face is so hot. So. So. So hot.<</talks>>
<<talks "Veric" "blushing">>"(gulp)" Just as he's about to say something, the front of the store opens and a customer walks out.<</talks>>
<<talks "Kaysa">>"Oh? Hello kids. Have you signed up?" Emm... She realizes we have no idea what she's talking about. "To the..." She takes out two pamphlets and gives each of us one. I start to read out what it says, but she instead- "Know how to satisfy your partner? Best tricks and tips from yours truly Kaysa Lumbergna" -reads it out herself.<</talks>>
<<talks "Veric" "happy">>"Oh? Eh... I.. I can't. I uhh... My shift is at evenings."<</talks>>
<<talks "Kaysa" "curious">>"You're working during Lunasong?" She is really surprised. "For the extra gold right?" Veric nods. "You should live a little." She looks over at me. "And you, you little cutie."<</talks>>
<<talks "Inledya" "blushing1">>"Oh? I uhhh.." I CANT ANSWER THAT! Veric is right here! Staring at me. I'm going to faint. "I don't think I.. I'm also.. busy."<</talks>>
<<talks "Kaysa" "happy1">>"Uhuh..." <img src="wwwy/Update01P/Update01P145.png" width=600px/> She knows! She knows that I'm lying. "Well. If for some miracle you're free, then this-" She taps on the pamphlet that I'm holding. And then points at a big building. "Takes place in that building over there. Today's lesson is a real quick one. 15 minutes." She pauses and lets the information hit me. "Now off I go."<</talks>>
<<talks "Veric" "blushing">>She leaves and we just stare at each other after this awkward conversation. "I uhhh.. better." I quickly nod. "I'll see you. At. Evening." He walks into the shop.<</talks>>
<<talks "Visenya" "laughing">>"Well. Well. Well. That went better than expected." I turn around. "And look you're still standing and conscious. Hahahaha."<</talks>>
<<talks "Inledya" "angry">>"Shut up! You pushed me!" The store door opens.<</talks>>
<<talks "Veric">>Out walks Veric. "Forgot the gold at home." He continues walking right past us.<</talks>>
<<talks "Inledya" "angry1">>I turn back to Visenya. <img src="wwwy/Update01P/Update01P146.png" width=600px/> "Y-You!"<</talks>>
<<talks "Visenya">>She interrupts me. "I helped." Helped? "Thank you, Visenya. For pushing me. Heh. Quite literally." She smirks. "Come. Let's get back home."<</talks>>
<<talks "Inledya" "backtohappy1" "wwwy/Locations/inledyasBedroomHome.png">>I make it back to my room. I close the door behind me and look at my bed, the notebook still on it. I walk over and open it, expecting to see something- "And it's nothing..." So Visenya was right? It's just hallucinations. Thank goddess.<</talks>>
<<talks "Tutorial">>
Notebook is now unlocked (you can find it on the Navbar). It only shows the Hidden Fragments you chose to view.
<</talks>>
<<talks "Tutorial">>
Whether these scenes are memories, things happening parallel to the main story, hallucinations, or something the notebook invents on its own is up to you to interpret. Only you can decide what they really are.
<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Afternoon">>
<<set $unlockedNotebook = true>>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set $day2RoriSeesInledya = false>>\
<<set $day2VericsMom = false>>\
<<set $day2VisenyaFirstTime = false>>\
<<set $day2ShopkeeperInterracial = false>>\
<<set $inledyaViewed = false>>\
<<set $visenyaViewed = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/visenyaBedroomHome.png')">>\
<<talks "Visenya" "confused">>"What the fuck?"<img src="wwwy/vids/Vids26.webp" width=600px/> I can't believe it.<</talks>>
<<talks "Inledya" "shy2">>Knock. Knock. Knock. <img src="wwwy/Update01P/Update01P148.png" width=600px/> "H-hey! I was bored. You up to doing anything?" What is this magic? "Emm.. Visenya?" I flip the empty pages back and forth. "Is that my. Is that my notebook?"<</talks>>
<<talks "Visenya" "confused1">>"This is the notebook mom gifted you right?" She nods. "Something's wrong with it."<</talks>>
<<talks "Inledya" "curious">>"W-what? What's wrong with it?" She comes closer.<</talks>>
<<talks "Visenya" "curious">>"It's showing things..."<</talks>>
<<talks "Inledya" "curious1">>"W-what things?" Should I tell her?<</talks>>
<<talks "Visenya" "curious1">><<if $day2MorningParents is true>>"I saw mom and dad fucking in the basement." Her eyes widen.<</if>><<if $day2MorningRori is true>> "I saw Rori. The one who works for dad jacking off outside on the street. And he got caught and ran away."<</if>> I flip the empty pages. <<if $day2ForestDominanceGirlForest is true>>"I saw Nyxie getting fucked in the woods by some knight. Like she really got handled there."<</if>><</talks>>
<<talks "Inledya" "neutral1">>She looks to my bedside and sees a weed pipe on my bedside table. <img src="wwwy/Update01P/Update01P149.png" width=600px/> She grabs it. "I thought you stopped smoking this. Did you smoke some today? (sniffs) It's morning Vis"<</talks>>
<<talks "Visenya" "interested">>"I just smoked a little! It's not the leaves. I really did see things." I shake the notebook in my hands. <<if $day2GirlsAtTheRiver is true>> "Like Elara was at the river talking to Sylvari after throating some guy." <</if>>I take a deep breath. <<if $day2OldCouple is true>>"There was this old couple and this girl came up to them and just wanted the old man to cum in her mouth." I look at her.<</if>> "It was like it was happening right in front of me." A worried look appears on Inledya's face.<</talks>>
<<talks "Inledya" "neutral">>"S-sure..." She says awkwardly.<</talks>>
<<if $day2ReynaFirstTime is true or $day2UuriReynaFirstTime is true>>
<<talks "Visenya" "blushing">>"<<if $day2ReynaFirstTime is true>>I saw Mom's past. Her sucking some guy's cock for the first time.<</if>><<if $day2UuriReynaFirstTime is true>> Dad! It showed dad visiting Mom. Talking to her after she blew someone else. And he was so oblivious, like his thoughts appeared here on the notebook.<</if>>"<</talks>>
<<talks "Inledya" "surprised">>Her eyes are wide open. "Vis! I think you should lie down with the leaves..."<</talks>>
<</if>>
<<talks "Visenya" "cuteangry1">>"I'm not high! <<if $day2CoupleOutsideTheWindow is true>> Listen! There was a girl getting railed just next to our house earlier today-<</if>>"<</talks>>
<<talks "Inledya" "panic1">>"VISENYA!" I stop and look at her. "Stop it! You're scaring me." She looks really frightened by my outburst. Maybe I am losing it? But... But... It was so real. I look at the empty pages again.<</talks>>
<<talks "Visenya" "comforting">>I close the notebook and drop it onto my bed. "I'm sorry." She gives me a comforting smile.<</talks>>
<<talks "Visenya" "curious2">>"You're right. We should do something." Her smile becomes wider. I walk up to my window and look out. "Veric is outside.." Escapes my lips as I see him.<</talks>>
<<talks "Inledya" "curious">>"W-what? V-V-Veric?" I turn towards her and grab her by her arm. "What are you doing?"<</talks>>
<<talks "Visenya" "happy">>"Let's go!" <img src="wwwy/Update01P/Update01P150.png" width=600px/> She shakes her head frantically. "Hey! I told you I'd help you."<</talks>>
<<talks "Inledya""worried">>"No! No! Visenya! I'm not ready!" I disregard her pleas and pull her towards the door. "VISENYA PLEASE!" You asked for it. No backing down now.<</talks>>
<<talks "Visenya" "happy2" "wwwy/Locations/homeVillageOutdoors.png">>We make it outside and there he is. "On you go!" I push her towards him. She stumbles right into him. Hahaha!<</talks>>
<<talks "Inledya" "blushing1">>"Oomf" <img src="wwwy/Update01P/Update01P143.png" width=600px/> She gets up. Her face bright red. She looks like a tomato. "V-Veric. I'm. I'm so sorry. I'm-" She stops and just stares at him.<</talks>>
<<talks "Veric" "surprised">>"In-Inledya?" He seems so flustered. "Y-you really got me here." He scratches the back of his head.<</talks>>
<<talks "Inledya" "cute">>"Sorry..."<</talks>>
<<talks "Veric" "blushing">>"It's alright." <img src="wwwy/Update01P/Update01P144.png" width=600px/> He offers her a hand. "I've heard that umm... (clears throat) you're coming to have dinner. With me- WITH US I mean." He quickly corrects himself. You dirty dog.<</talks>>
<<talks "Inledya" "blushing3">>"Oh? Y-yes. Yes I am." Her face is getting even more red.<</talks>>
<<talks "Kaysa">>He's about to say something but gets interrupted. The store door opens and out comes Kaysa. "Oh? Hello kids. Have you signed up?" Is she running her lessons again? She hands Inledya a pamphlet. Then taps on it. "Know how to satisfy your partner? Best tricks and tips from yours truly Kaysa Lumbergna." Yep. She's still running them.<</talks>>
<<talks "Veric" "cute">>"Oh? Eh... I.. I can't. I uhh... My shift is at evenings." He's actually working during the festival?<</talks>>
<<talks "Kaysa" "curious">>"You're working during Lunasong? For the extra gold right?" He nods. "You should live a little." She looks at Inledya. "And you, you little cutie." Honestly she should take part in them. I learned a lot from her.<</talks>>
<<talks "Inledya" "cute1">>"Oh? I uhhh.." She is completely frozen. "I don't think I.. I'm also.. busy." Sure... busy...<</talks>>
<<talks "Kaysa" "happy1">>"Uhuh..." <img src="wwwy/Update01P/Update01P145.png" width=600px/> She knows. She knows that she is lying. She can read anyone like a book. "Well. If for some miracle you're free, then this-" She taps on the pamphlet. And then points at a big building. "Takes place in that building over there. Today's lesson is a real quick one. 15 minutes." She pauses and lets the information hit her. "Now off I go."<</talks>>
<<talks "Veric" "happy">>Inledya and Veric stare at each other after that conversation. "I uhhh.. better." Inledya quickly nods. "I'll see you. At. Evening." He walks into the shop.<</talks>>
<<talks "Visenya" "laughing">>"Well. Well. Well. That went better than expected." Inledya turns around. "And look you're still standing and conscious. Hahahaha."<</talks>>
<<talks "Inledya" "angry">>"Shut up! You pushed me!" Hehe. She's so cute when she's angry.<</talks>>
<<talks "Veric">>Out walks Veric. "Forgot the gold at home." He continues walking right past us.<</talks>>
<<talks "Inledya" "angry1">>Inledya turns back to me. <img src="wwwy/Update01P/Update01P146.png" width=600px/> "Y-You!"<</talks>>
<<talks "Visenya">>She tries to say something but I interrupt her. "I helped. Thank you, Visenya. For pushing me. Heh. Quite literally." I smirk at her. "Come. Let's get back home."<</talks>>
<<talks "Visenya" "curious2" "wwwy/Locations/visenyaBedroomHome.png">>We make it back home. I go into my room and see the notebook still on my bed. I open it, expecting to see something- "And it's nothing..." I double-check the pages. "I really need to lay off the leaves, I guess." Hahaha. Crazy that I even thought that was real.<</talks>>
<<talks "Tutorial">>
Notebook is now unlocked (you can find it on the Navbar). It only shows the Hidden Fragments you chose to view.
<</talks>>
<<talks "Tutorial">>
Whether these scenes are memories, things happening parallel to the main story, hallucinations, or something the notebook invents on its own is up to you to interpret. Only you can decide what they really are.
<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<set $time = "Afternoon">>
<<set $unlockedNotebook = true>>
<<set $time = "Afternoon">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $afterNoonWashingInledya is false and $afterNoonWashingVisenya is false>>\
<<set $day2NoonOldYoungLooking = false>>\
<<set $day2NoonBoysWalkingBack = false>>\
<<set $afterNoonWashingInledya = true>>\
<<talks "Reyna" "curious">>"Inledya?" Mom calls out for me. <img src="wwwy/Update01P/Update01P260.png" width=600px/> "Can you come and help me out with the laundery?"<</talks>>
<<talks "Inledya" "curious">>"Laundery? But aren't we going to Verics house for dinner?"<</talks>>
<<talks "Reyna" "flirting">>"Hehehe. Yes, but that's later. It's still afternoon." She says as she passes me a basket full of clothes. "Come now! The sooner we are done the sooner you can start preparing for Veric."<</talks>>
<<talks "Inledya" "wwwy/Locations/homeBackyard.png">>My cheeks flush. "Ok mom. I'm coming." We head out the back door and into the backyard. As usual she takes the bucket and helps me to fill the water box.<</talks>>
<<talks "Reyna">>"Take these." <img src="wwwy/Update01P/Update01P261.png" width=600px/> She hands me a bar of soap. "You'll wash these." She points to the pile of clothes.<</talks>>
<<talks "Reyna" "laughing">>As I scrub the clothes in the cold water, I feel the sun gently warming my back. I try to focus on the task at hand, but my mind keeps wandering to tonight. "You ok there? You're awfully quiet." Her remark pulls me back from my thoughts.<</talks>>
<<talks "Inledya" "cute3">>"Yeah." My heart starts to beat faster. "I'm just thinking about tonight."<</talks>>
<<talks "Reyna" "smug">>"Nervous?" She asks like she already knows the answer.<</talks>>
<<talks "Inledya" "blushing3">>"YES!" I lash out uncontrollably. <img src="wwwy/Update01P/Update01P262.png" width=600px/> "I mean... yes." My cheeks are on fire.<</talks>>
<<talks "Reyna">>"You shouldn't be. He already fancies you." You don't know that. She quickly adds. "He does. Don't tell me you haven't noticed the way he looks at you."<</talks>>
<<talks "Inledya" "down">>"Mom! You're not helping." I say as I scrub more aggressively.<</talks>>
<<talks "Reyna" "laughing">>"Hehehe." As I continue to scrub, I feel a familiar pressure on my back.<</talks>>
<<talks "Inledya" "neutral">>It's Visenya isn't it? SPLASH!<</talks>>
<<talks "Visenya" "happy">>"Lesson one. Don't run away." <img src="wwwy/Vids/Vids10.webp" width=400px/> What? What does she mean? She runs off and leaves me with her wierd cryptic message.<</talks>>
<<talks "Reyna" "angry">>"VISENYA!" Mom immediately goes after her this time, not helping me out of the water box.<</talks>>
<<talks "Inledya" "nervous">>As I finally manage to get out on my own I take a look to my right and.... the boys are there, behind the fence once again. <img src="wwwy/Update01P/Update01P35.png" width=600px/> They are straight up looking at me. -Lesson one.Don't run away.- starts to make sense in my head now.<</talks>>
<<talks "Cedric" "confident">>"Beautiful day isn't it." He says so nonchalantly. Run. Run. Run. Keeps screaming in my head. But for some reason I don't. I feel my legs locked in place. Choosing to follow Visenyas advice -Don't run away-.<</talks>>
<<talks "Inledya" "blushing1">>"It sure is!" <img src="wwwy/Update01P/Update01P263.png" width=400px/> I reply to him trying to keep my self as composed as possible. I turn around and calmly walk towards the house. The entire way I can feel their burning gazes on my body.<</talks>>
<<talks "Reyna" "curious" "wwwy/Locations/homeEntrance.png">>Once I step inside, I see both Visenya and mom just standing there. Mom especially is looking like she's seen a ghost. Wait! Did they see? Were they watching the whole time? They saw me. They saw me act that way. I thought it was just between me and them. <img src="wwwy/Update01P/Update01P14.png" width=600px/> I can't. I run up the stairs. "Inledya, dear wait..."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $afterNoonWashingInledya is true or $afterNoonWashingVisenya is true>>\
<<talks "Inledya" "neutral">>I don't want to think about it.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $afterNoonInledyaBarn is false>>\
<<set $day2NoonBarnLoreRomance = false>>\
<<set $afterNoonInledyaBarn = true>>\
<<talks "Reyna">>"Inledya!" Mom shouts from the bottom of the stairs.<</talks>>
<<talks "Inledya">>"What is it?" I yell back as I make my way down the stairs.<</talks>>
<<talks "Reyna">>"I'm thinking of bringing over some grain to Orne as a gift." She pauses as I make my way down the last few steps. "Can you bring over a sack from the barn for me?"<</talks>>
<<talks "Inledya" "nervous">>"The barn?" <img src="wwwy/Update01P/Update01P265.png" width=600px/> Oh no. Not again.<</talks>>
<<talks "Reyna" "worried">>She sees me getting nervous and quickly adds, "Hey! Hey! There's nothing there, I promise."<</talks>>
<<talks "Inledya" "blushing1" "wwwy/Locations/homeBarn.png">>"Ok." I make my way out of the house and into the barn. My chest is pounding. I open the door. "Phew... There's nobody here." Everything looks normal at the first glance.<</talks>>
<<talks "Inledya" "blushing3">>My chest starts beating harder and harder each step I take. <img src="wwwy/Update01P/Update01P266.png" width=600px/> I reach the sack and pick it up. On my way back I move my feet faster, trying to get out of here as quickly as possible.<</talks>>
<<talks "Inledya" "wwwy/Locations/homeKitchen.png">>I make it back to the house. "Here mom." I place it down in front of her. "(pants) (pants)"<</talks>>
<<talks "Reyna" "flirting">>"Thank you, dear." She looks at me. "That wasn't so bad now, was it?" <img src="wwwy/Update01P/Update01P267.png" width=600px/> She's right. It wasn't. The barn was empty. The floor was clean. Nothing happened. So why is my heart still racing?<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $afterNoonInledyaBarn is true>>\
<<talks "Inledya" "wwwy/Locations/homeKitchen.png">>I already went there. I did it and there wasn't anything fishy going on there.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $afterNoonWashingInledya is false and $afterNoonWashingVisenya is false>>\
<<set $day2NoonOldYoungLooking = false>>\
<<set $day2NoonBoysWalkingBack = false>>\
<<set $afterNoonWashingVisenya = true>>\
<<talks "Reyna" "serious2">>As I sit behind the kitchen table. " You. Dishes."<</talks>>
<<talks "Visenya" "annoyed">>"What? Why do I have to do the dishes again?" She just gives me a you-know-why look that shuts everything down that I was going to say. "Fine..." I walk over to the kitchen sink and start scrubbing.<</talks>>
<<talks "Visenya" "cuteangry1">>Scrub! Scrub! Scrub! <img src="wwwy/Update01P/Update01P33.png" width=600px/> Fuck this! I glance up and I see Cedric with his boys out on the road. "Hehehe." Time for round two. I open the window. "Hey Cedric." He turns his head towards me. And all the boys run up to the window.<</talks>>
<<talks "Visenya" "smug2">>"You boys liked the view yesterday!" All of them nod in unison. Hahaha. "Want to see it again?" Once again all of them nod in unison. Hahaha it's comical how boys are sometimes. "Why don't you head over to the backyard? I'll see what I can do."<</talks>>
<<talks "Visenya" "smug1" "wwwy/Locations/homeBackyard.png">>This is perfect for her first lesson. A test. I think to myself as I creep towards her. I wait until I'm right behind her. SPLASH!<</talks>>
<<talks "Visenya" "happy">>"Lesson one. Don't run away." <img src="wwwy/Vids/Vids10.webp" width=600px/> Simple. Direct. No room for misunderstanding. And run off.<</talks>>
<<talks "Reyna" "angry">>"VISENYA!" Mom immediately gets up and runs after me.<</talks>>
<<talks "Reyna" "angry1">>I get back to the house and stay between the doorway. "I thought I told you to stop-"<</talks>>
<<talks "Visenya" "serious">>"Look!" I interupt her and point at Inledya.<</talks>>
<<talks "Reyna" "serious">>She turns her head towards Inledya. <img src="wwwy/Update01P/Update01P264.png" width=400px/> "What do you mean look? Wait. She's not running away?"<</talks>>
<<talks "Cedric">>"Beautiful day isn't it."<</talks>>
<<talks "Inledya" "blushing1">>"It sure is!"<</talks>>
<<talks "Reyna">>"(gasp) She talked back." My moms mouth is open from the shock. Inledya calmly walks towards the house. "And she's still not running."<</talks>>
<<talks "Visenya" "smug1">>"See!" I say proudly.<</talks>>
<<talks "Reyna" "curious" "wwwy/Locations/homeEntrance.png">>Once Inledya makes it inside she sees both of us just standing there. She freezes. Then runs up the stairs. <img src="wwwy/Update01P/Update01P14.png" width=600px/> "Inledya, Dear wait-" A pause. "(Sigh...)"<</talks>>
<<talks "Visenya" "serious">>"Do I still have to do the dishes?" I look over and I'm met with the same stare from before. "Ughhh... Whatever." I make my way back to the kitchen to those damned dishes.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $afterNoonWashingInledya is true or $afterNoonWashingVisenya is true>>\
<<talks "Visenya" "smug1">>Dishes are done. Dishes are done. Dishes are done. Disher are fucking done!<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/HomeHallway.png')">>\
<<if $afterNoonVisenyaMarket is false>>\
<<set $afterNoonVisenyaMarket = true>>\
<<set $wierdoBoyDay2 = false>>\
<<set $meetingNeravineDay2 = false>>\
<<talks "Visenya">>"I'll head out Mom." I open the front door and head out.<</talks>>
<<talks "Reyna">>"Alright. Be safe. Be back before we head out to Orne's." She say as the door closes behind me.<</talks>>
<<talks "Visenya" "happy" "wwwy/Locations/homePorch.png">>I take a deep breath. "Ahhhh..." Fresh air. I already hear laughter and chattering coming from the village. I skip along the road, taking in all the decorations that have been put up. The official start to the festival starts with tonight's event, but it's nice to see people getting into the spirit early.<</talks>>
<<talks "Visenya" "curious" "wwwy/Locations/villageCentreHome.png">>As I get closer to the village square... <img src="wwwy/Update01P/Update01P238.png" width=600px/> I see all kinds of stands have been set up, selling food, drinks, trinkets. And right in the middle is the Post of Liberation. And what do you know... no names on it. Not yet, at least. I really need to make sure Inledya's name doesn't appear on it.<</talks>>
<<talks "Visenya">>As I scan more of the square, I notice that quite a few stands have also been put up by humans. They're selling things I've never seen before. Colorful fabrics, unique ceramics. I make my way towards a stall that sells jewelry.<</talks>>
<<talks "Visenya" "curious1">>"These are beautiful, mister!" I say out, realizing I didn't greet the human first. The human has his back towards me and when he turns around-<</talks>>
<<talks "Mariselle" "looking">>"I'm no mister." <img src="wwwy/Update01P/Update01P239.png" width=600px/> She turns around confused.<</talks>>
<<talks "Visenya" "confused1">>"Oh! I-I'm so sorry!" My cheeks flush. "So far I've only seen men from the caravan. I thought-"<</talks>>
<<talks "Mariselle" "playfull">>"Hahaha. So that's why." She smiles warmly at me. "My name is Mariselle." She looks at me up and down, noticing me staring at her. "Let me guess. Never seen a black person before?" She says with a heartwarming laugh. I shake my head.<</talks>>
<<talks "Mariselle" "flirting">>"Having this skin in your lovely villages is quite the... business advantage." She winks, her teeth a flash white against her dark skin. "Elves come up, all surprised and curious, and while they're admiring my complexion, their coins often find their way into my hands. A great way to break the ice, you see." She chuckles, seeing my face being all curious. "Want to know something else? There are even dark-skinned elves."<</talks>>
<<talks "Visenya" "interested">>My ears perk up.<img src="wwwy/Update01P/Update01P240.png" width=600px/> "R-Really?"<</talks>>
<<talks "Mariselle" "curious">>"Yes. But they're far to the west, at the other side of the great Elven Kingdom."<</talks>>
<<talks "Visenya" "smug">>"Wow. Have you been there?"<</talks>>
<<talks "Mariselle" "looking">>"No. It wouldn't be profitable. I would then just blend in and lose my unique appeal." She pauses, thinking of something. "But one day. Maybe we'll even go together." She says with a confident smirk. "By gods you look cute." She chuckles again.<</talks>>
<<talks "Mariselle" "playfull1">>"So. Did my charm work? You going to buy something?" She gestures at her trinkets.<</talks>>
<<talks "Visenya" "shy">>"Oh? Sorry.. I don't have any..."<</talks>>
<<talks "Mariselle" "flirting1">>"Hehehe. Ease up. It's all right. Admiring them by such pretty eyes as yours is payment enough." <img src="wwwy/Update01P/Update01P241.png" width=600px/> I think she's hitting on me. Her words make me blush.<</talks>>
<<talks "Visenya" "shy1">>I look behind and see a line of customers forming. "I better get going." I turn to leave.<</talks>>
<<talks "Mariselle" "looking">>"Oh I didn't catch your name." I turn around.<</talks>>
<<talks "Visenya" "happy3">>"Visenya."<</talks>>
<<talks "Mariselle" "flirting">>"I'll see you later Visenya!" She says as she waves at me with her charming smile.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<else>>\
<<talks "Visenya">>"I already checked out the market."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForest.png')">>\
<<talks "Nyxie" "nakedcute">>"Ughhhh!" <img src="wwwy/Vids/Vids20.webp" width=600px/> She told her parents we were just going for a walk in the forest. "Ah! Ah! AH!" They had no idea I was about to fuck her against this tree. "Gideon! Not so hard!"<</talks>>
<<talks "Gideon" "aroused">>"Just take this fucking cock." <img src="wwwy/Update01P/Update01P117.png" width=600px/> I say as I push in harder. Her pussy feels so tight and wet.<</talks>>
<<talks "Nyxie" "nakedbounceworried">>"Oh goddess! We can't let anyone see us! If my family finds out they will... oh Luna. I'm fucking a human." <img src="wwwy/Update01P/Update01P118.png" width=600px/> Her parents did give me strange looks when I showed up at their farm. If only they could see their daughter now. Little did they know I'd be balls deep in their precious daughter moments later. "Nhhhh!!! Fuck!"<</talks>>
<<talks "Inledya">>What's that noise? "Ok got you. And I got you."<</talks>>
<<talks "Nyxie" "nakedbounceworried1">>"What? Shit! It's Inledya. She'll tell them. Gideon... stop!" <img src="wwwy/Update01P/Update01P119.png" width=600px/> She whispers, but I keep going. Stop? She must be crazy. Her legs are still wrapped around me. She doesn't want me to stop. "EHHH!" I push deeper. As I push deeper, I step on a twig and it snaps.<</talks>>
<<talks "Gideon" "looking">>That big-breasted girl looks over. <img src="wwwy/Update01P/Update01P95.png" width=600px/> But she doesn't see us. She stares for a few seconds, then runs away.<</talks>>
<<talks "Nyxie" "nakedbounceworried">>"She saw! She saw!" The girl panics. I cover her mouth and fuck her harder.<</talks>>
<<talks "Gideon" "aroused1">>"No she fucking won't. Just fucking take it." <img src="wwwy/Update01P/Update01P120.png" width=600px/>I look into her scared eyes as I pound her. There's fear in her eyes. But underneath it, something else. She's loving every second of this. Her pussy gets tighter by the second. Every little whimper just makes me want to fuck her harder.<</talks>>
<<talks "Nyxie" "nakedcumming1">>"F-F-FUCKKHHH!!" That's it. Forget about her. Just take it. Fucking. I'm....<</talks>>
<<talks "Nyxie" "nakedcumming">>"UGHHHH!!" I cum inside her. I make sure every last drop goes deep inside her. <img src="wwwy/Update01P/Update01P121.png" width=600px/> Cum drips from her as I pull out. She falls to the ground, breathing hard.<</talks>>
<<talks "Gideon" "confident">>I have training in a camp in an hour. "Let's go again. Get up." I grab her arm and turn her over. <img src="wwwy/Update01P/Update01P122.png" width=600px/> "Spread those cheeks."<</talks>>
<<talks "Nyxie" "nakedcute">>"NhhhhHH!!" <img src="wwwy/Vids/Vids21.webp" width=600px/> Dirty little girl.<</talks>>
<span id="choice1"> \
<<link "From Girl POV (Submission, Risky)">>
<<goto "Day2ForestGirl">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForest.png')">>\
<<talks "Nyxie" "nakedcute">>I told my parents we were just going for a walk. <img src="wwwy/Vids/Vids20.webp" width=600px/> The festival hasn't even officially started yet. What am I doing? "Ughhhh!" His cock keeps slamming into me. My back feels rough against the tree bark.<</talks>>
<<talks "Nyxie" "nakedbounceworried">>"Ah! Ah! AH!" I should stop this. I should push him off. <img src="wwwy/Update01P/Update01P117.png" width=600px/> But my legs are wrapped around him, locked. Why did I just... let him do that to me?<</talks>>
<<talks "Nyxie" "nakedbounce1">>"Gideon! Not so hard!" <img src="wwwy/Update01P/Update01P118.png" width=600px/> I whisper, a fragile plea. He doesn't listen.<</talks>>
<<talks "Gideon" "aroused">>"Just take this fucking cock."<</talks>>
<<talks "Nyxie" "nakedbounce2">>"Nhhhh!" The way he talks to me. <img src="wwwy/Update01P/Update01P119.png" width=600px/> Like I'm nothing. Like I'm just a hole for him to fill. "Mhhhh!" Why am I getting wetter?<</talks>>
<<talks "Nyxie" "nakedbounce">>"Oh goddess! We can't let anyone see us! If my family finds out they will..." My father's face when Gideon showed up at the farm. The way he looked at me when Gideon asked me to show him the woods. My father probably thought, my little girl would never do something like this. "Ahhhh!"<</talks>>
<<talks "Nyxie" "nakedbounce1">>His thrusts become deeper. The bark is scraping my back harder, painfully so, but I don't care. <img src="wwwy/Update01P/Update01P152.png" width=600px/> I deserve this. Every scrape, every bruise. I deserve to feel this!<</talks>>
<<talks "Nyxie" "nakedcumming1">>"Oh Luna. I'm fucking a human." My mother would never speak to me again. And yet- "Nhhhh!!! Fuck!"<</talks>>
<<talks "Inledya">>"Ok got you. And I got you." Gideon steps on a twig.<</talks>>
<<talks "Nyxie" "nakedbounceworried1">>Inledya looks over. <img src="wwwy/Update01P/Update01P95.png" width=600px/> Right at us! Does she see us? My heart stops. I can't breathe. She turns around and runs away. "What? Shit! That was Inledya. She'll tell them. Gideon... stop!" He doesn't stop.<</talks>>
<<talks "Nyxie" "nakedbounceworried1">>"She saw! She saw!" My voice breaks. This is it. It's over. My life is over.<</talks>>
<<talks "Nyxie" "nakedcumming1">>His hand covers my mouth and he starts thrusting faster, harder.<img src="wwwy/Update01P/Update01P120.png" width=600px/> <</talks>>
<<talks "Gideon" "aroused1">>"No she fucking won't. Just fucking take it."<</talks>>
<<talks "Nyxie" "nakedbounce2">>His eyes meet mine. Cold. Hungry. <img src="wwwy/Update01P/Update01P153.png" width=600px/> I should be terrified, but his cock feels even harder now, like the danger is making him harder as well. Nhhhh!! It's making my body respond in kind, squeezing around him, pulling him deeper as if I want this just as much as he does. What's wrong with me?<</talks>>
<<talks "Nyxie" "nakedcumming1">>"F-F-FUCKKHHH!!" I can't- I'm- No, not now-<</talks>>
<<talks "Nyxie" "nakedcumming">>"MHHHHHH!!!" <img src="wwwy/Update01P/Update01P121.png" width=600px/> I'm cumming. I'm actually cumming. On a human's cock! Against this tree. Right after being caught. The thought is so absurd, so wrong, that the shame of it just fuels the orgasm's intensity.<</talks>>
<<talks "Nyxie" "nakedcute">>He finished inside me. I feel it. Its warmth. My pussy is still pulsing from the orgasm. I slide down the tree. My legs won't hold me, I can barely breathe.<</talks>>
<<talks "Nyxie" "nakedcute1">>It's over.... I can go home now.... Pretend this never happened....<</talks>>
<<talks "Gideon">>"Let's go again. Get up."<</talks>>
<<talks "Nyxie" "nakedflirting">>What? I should fight him. I should run back home. But my body remembers the pleasure it just felt, the heat, the way he filled me. My mind knows this is wrong, but my pussy wants another taste of his cock.<</talks>>
<<talks "Gideon" "confident">>He grabs my arm and turns me over.
<img src="wwwy/Update01P/Update01P122.png" width=600px/> "Spread those cheeks."<</talks>>
<<talks "Nyxie" "nakedgrind">>I should say no. I should run. I should-
<img src="wwwy/Vids/Vids21.webp" width=600px/>"NhhhhHH!!" My hips move on their own...<</talks>>
<span id="choice1"> \
<<link "From Boy's POV (Dominance, Risky)">>
<<goto "Day2ForestBoy">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeRiverBank.png')">>\
<<talks "Dorian">>It's a beautiful morning. <img src="wwwy/Update01P/Update01P94.png" width=600px/> The birds sing. The sun feels nice on my old skin. And the view...<</talks>>
<<talks "Dorian" "happy1">>Look at all those young elves. <img src="wwwy/Update01P/Update01P129.png" width=600px/> So full of life. I put my arm around my dear wife Orva. "Remember our first Lunasong Festival? We were so young and didn't know at all what we were doing."<</talks>>
<<talks "Orva" "cute">>"I knew exactly what I was doing." She puts her hand on my thigh. "You just had to grow some balls." That's my Orva. Always so direct.<</talks>>
<<talks "Dorian" "happy">>Her hand moves up my leg. "You're right. Thanks to you." I whisper to her. She smiles. Enjoying my remark.<</talks>>
<<talks "Orva" "cute1">>"Just look at those girls playing in the water." <img src="wwwy/Update01P/Update01P130.png" width=600px/> She says as she takes out my old cock. "What? It's Lunasong after all."<</talks>>
<<talks "Dorian" "happy1">>One of the girls walks up to us. <img src="wwwy/Update01P/Update01P131.png" width=600px/> My wife keeps stroking me as the young one walks up the hill.<</talks>>
<<talks "Lessandra" "nakedshy">>She stops in front of us. Watching us for a bit. Then speaks up. "Excuse me," she says softly, water still dropping from her naked body. <img src="wwwy/Update01P/Update01P132.png" width=600px/> "Would you... would you like to cum into my mouth?" What a morning.<</talks>>
<<talks "Orva" "pleased">>"Go ahead, young one." My wife says with a enthusiastically. <img src="wwwy/Update01P/Update01P133.png" width=600px/> She guides the girl's head down, a playful glint in her eyes. She winks at me. -Happy Lunasong- she mouths. This is why I took her to be my bondmate.<</talks>>
<<talks "Dorian" "aroused1">>"Let me take over." I say to my wife and place my hand on the beautys head. Guiding it.<img src="wwwy/Vids/Vids23.webp" width=600px/> "Mkhhh.." Such a tight. Young. Throat. She taking it really well. <</talks>>
<<talks "Dorian" "cumming">>"Oh! Oh! Oh!" I can't believe it. She took allmost all of it. <img src="wwwy/Vids/Vids22.webp" width=600px/> And she's going for more. Holy... I'm going to cum into this pretty girl's mouth! "Ahhhhhhh!"<</talks>>
<<talks "Orva" "cute">>"Show me little one," my wife says. The girl opens her mouth. <img src="wwwy/Update01P/Update01P134.png" width=600px/> "Beautiful. Happy Lunasong."<</talks>>
<<talks "Lessandra" "nakedcuminmouth">>"Happy Lunasong," she says with my cum still in her mouth. What a beautiful start to the festival.<</talks>>
<span id="choice1"> \
<<link "From Girl's POV (Old/Young, Sharing)">>
<<goto "Day2OldYoungGirlPOV">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeRiverBank.png')">>\
<<talks "Lessandra" "nakedplayfull">>The water feels amazing. I splash around with the other girls, enjoying the sun on my skin. <img src="wwwy/Update01P/Update01P129.png" width=600px/> It's Lunasong. Finally.<</talks>>
<<talks "Lessandra" "nakedcurious">>I notice an old couple sitting on the hill bench. Watching us. Sweet. They look so happy together. Wait. Her hand is... is she? <img src="wwwy/Update01P/Update01P130.png" width=600px/> Oh. She's stroking him. Right out in the open?<</talks>>
<<talks "Lessandra" "nakedshy">>My stomach twirls. I've heard about things like these happen during Lunasong. But seeing it...<</talks>>
<<talks "Lessandra" "nakedcute">>I glance at the other girls. <img src="wwwy/Update01P/Update01P154.png" width=600px/> Still playing. Oblivious. I look back at the couple. The woman catches my eye. She doesn't stop. She smiles at me. That smile. It's like an invitation.<</talks>>
<<talks "Lessandra" "nakedconfident">>My grandmother's words echo. -The young give to the old, the old give to the young-<</talks>>
<<talks "Lessandra" "nakedcurious1">>"I'll be right back." I tell the girls. They barely notice me saying anything to them. <img src="wwwy/Update01P/Update01P131.png" width=600px/> I step out of the water and walk towards the hill. Water still dripping from my body. My heart beats steady. Calm. What I'm about to do feels right.<</talks>>
<<talks "Lessandra" "nakedcurious1">>Once I make up the hill I stand before them. The woman looks up at me. Still stroking the mans cock.<</talks>>
<<talks "Lessandra" "nakedshy">>"Excuse me." <img src="wwwy/Update01P/Update01P132.png" width=600px/> I bow my head slightly, showing respect to my elders. "Would you... would you like to cum into my mouth?" An offering. The way it was done in the old days as my grandmother told me.<</talks>>
<<talks "Orva" "pleased">>Her eyes soften. She understands. "Go ahead, young one." <img src="wwwy/Update01P/Update01P133.png" width=600px/> She guides my head down. I take him into my mouth. Slow. Steady. This is my gift to them. To their love. To Lunasong.<</talks>>
<<talks "Dorian" "aroused1">>"Let me take over." He places his hand on my head, resting it as I work my lips back and forth. <img src="wwwy/Vids/Vids23.webp" width=600px/> "Oh! Oh! Oh!" The old man seems to enjoy my mouth. I'm glad.<</talks>>
<<talks "Lessandra" "nakedconfident">>I take him deeper. His breath quickens. <img src="wwwy/Vids/Vids22.webp" width=600px/> His hand still rests on my head like a blessing. I glance up keeping my eyecontact with him. This is right. This is how it should be.<</talks>>
<<talks "Lessandra" "nakedplayfull">>He grunt's and spills his well seasoned cum into my mouth. It's so warm I try my best to hold it in.<</talks>>
<<talks "Orva" "cute">>"Show me little one." <img src="wwwy/Update01P/Update01P134.png" width=600px/> I open my mouth. She stares at it almost like she's judging by the amount of cum in my mouth of how well I did. "Beautiful. Happy Lunasong."<</talks>>
<<talks "Lessandra" "nakedcuminmouth">>"Happy Lunasong." I swallow. The old woman touches my cheek. A silent thank you. I bow my head again and walk back to the water.<</talks>>
<<talks "Tessa" "nakedcurious">>"What was that about?" <img src="wwwy/Update01P/Update01P155.png" width=600px/> Tessa asks as I reach back to them.<</talks>>
<<talks "Lessandra" "nakedsurprised">>"Honoring the old ways." I smile and sink back into the cool water. Grandmother would be proud.<</talks>>
<span id="choice1"> \
<<link "From Man's POV (Old/Young, Sharing)">>
<<goto "Day2OldYoungMalePOV">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<nobr>>
<<set $day2ShopkeeperInterracial = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/villageStore.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>♀</span> POV (Interracial, submission)">>
<<replace "#POV">>
<<include "Day2AfterNoonWomanPOV">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♂</span> POV (Interracial, dominance)">>
<<replace "#POV">>
<<include "Day2AfterNoonMalePOV">>
<</replace>>
<</link>>
</span>
<</nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/villageStore.png')">>\
<<talks "Zosia" "aroused">>"Mhhhhh...." <img src="wwwy/Update01P/Update01P156.png" width=600px/> He's really rough with his tounge. "Ohhhh! I've never... felt... Ohhhh!" Anything like this before! The door opens.<</talks>>
<<talks "Zosia" "surprised">>The shop bell jingles. <img src="wwwy/Update01P/Update01P157.png" width=600px/> "AhhH! Kaysa!!!" Shit! The boy slides under the counter.<</talks>>
<<talks "Kaysa" "curious">>"Hmm? You alright there?"<</talks>>
<<talks "Zosia" "blushing1">>"Hehe.. Yes." I fix my dress. "I just. You're the first customer today so... scared me a little."<</talks>>
<<talks "Kaysa" "talking">>"Yeah. I can imagine. Most people bought all the supplies ahead of time, didn't they?" <img src="wwwy/Update01P/Update01P158.png" width=600px/> She pauses. I don't know what to do, so I just nod. "I need some body creams and oils."<</talks>>
<<talks "Zosia" "blushing">>"Sure. They are right behind you on that shelf." I point at where they are. "Are you? Are you doing your lessons again this year?"<</talks>>
<<talks "Kaysa" "confident">>"Of course dear. I've already spoken to your daughter. She said she'll think about it." Think about it?<</talks>>
<<talks "Zosia" "happy">>"Don't worry. I'll make sure she'll attend." Kaysa steps closer to pay for her goods.<</talks>>
<<talks "Kaysa" "happy1">>"Must be really skilled with his tounge that one." <img src="wwwy/Update01P/Update01P159.png" width=600px/> She points under the counter.<</talks>>
<<talks "Zosia" "worried">>"I- I-" I try to find words.<</talks>>
<<talks "Kaysa" "happy">>"Don't worry dear. It's Lunasong after all." She winks at me and leaves the store. I let out a huge sigh.<</talks>>
<<talks "Fenris" "confident">>"Phew. That was close." He gets back up from under the counter. And then sits on it. "Here. Your turn." <img src="wwwy/Update01P/Update01P160.png" width=600px/> He takes his hard pulsing cock out. "Well?"<</talks>>
<<talks "Zosia" "blushing1">>"(gulp)" It's so big and dark. And veiny. I've never seen one like this. The color of the night. I... my lips dry up, as if my own body knows it's found something to nourish itself with. Next thing I know I have my lips wraped around it. "Mgh. Mgh. Mgh!" <img src="wwwy/Vids/Vids27.webp" width=600px/> "Mhhh. Mgh. Mgh. Mgh." It's so big.<</talks>>
<<talks "Fenris" "happy">>"Oh yeah baby. Just like that. Mhhhh. Work that mouth." <img src="wwwy/Update01P/Update01P161.png" width=600px/> Oh. I am working. Mhhh. How does it keep growing? It's gotten so big!! "Okay. Okay. Time to spread those legs." What? That? In me? He hops off from the counter and gets behind me.<</talks>>
<<talks "Zosia" "aroused1">>"Mhhhh!" It hits me so deep. "Ohhh! Ohhh!" He's fucking me so hard the bottles on the the table are rattling againt one another! <img src="wwwy/Update01P/Update01P162.png" width=600px/> "Nhhhhh!" My pussy has never been this stretched before!<</talks>>
<<talks "Zosia" "aroused3">>He slaps my ass. "AhhH!!" <img src="wwwy/Update01P/Update01P163.png" width=600px/> He slaped me? He can't do- "AhhhhhHH" He's thrust are hitting me deeper making me forget about the slap.<</talks>>
<<talks "Fenris">>"Didn't know you were a mother." He slaps my ass again. FUCK! It feels so good. "What a slut you are." <img src="wwwy/Update01P/Update01P164.png" width=600px/> He grabs my hips and drives himself deep into me with every thrust. What? I'm not a slut. How dare he-<</talks>>
<<talks "Veric" "surprised">>The front door opens and in walks Veric. "Uhhh!" <img src="wwwy/Update01P/Update01P165.png" width=600px/> He quickly turns around and leaves. Fenris slaps my ass once again, not letting up.<</talks>>
<<talks "Zosia" "cumming">>"F-f-f-ffuckkk!!" I don't care anymore. I just want him to fill me up with that big dark hung cock of his. <img src="wwwy/Update01P/Update01P167.png" width=600px/> "FUCKKKKK!!!"<</talks>>
<span id="choice1"> \
<<link "From Man's POV (Interracial, Dominance)">>
<<goto "Day2AfterNoonMalePOV">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/villageStore.png')">>\
<<talks "Fenris">>I press my tongue against her clit and wiggle it. "Mhhhh..." Her moans are music to my ears. <img src="wwwy/Update01P/Update01P156.png" width=600px/> "Ohhhh! I've never... felt... Ohhhh!" I know. Mhhhh. I know. The shop bell jingles.<</talks>>
<<talks "Zosia" "aroused">>Fuck! <img src="wwwy/Update01P/Update01P157.png" width=600px/> "AhhH! Kaysa!!!" I slide under the counter.<</talks>>
<<talks "Kaysa" "curious">>"Hmm? You alright there?" I see her fixing her dress.<</talks>>
<<talks "Zosia" "surprised">>"Hehe.. Yes." Hahaha. Trying to act all cool. "I just. You're the first customer today so... scared me a little."<</talks>>
<<talks "Kaysa" "talking">>"Yeah. I can imagine. Most people bought all the supplies ahead of time, didn't they?" She pauses. <img src="wwwy/Update01P/Update01P158.png" width=600px/> "I need some body creams and oils."<</talks>>
<<talks "Zosia" "blushing1">>"Sure. They are right behind you on that shelf." She makes a small step to the side. "Are you? Are you doing your lessons again this year?"<</talks>>
<<talks "Kaysa" "confident">>"Of course dear. I've already spoken to your daughter. She said she'll think about it." Daughter? My cock hardens.<</talks>>
<<talks "Zosia" "blushing">>"Don't worry. I'll make sure she'll attend." I'll make sure she'll attend something else too. My own little lessons.<</talks>>
<<talks "Kaysa" "happy1">>"Must be really skilled with his tongue, that one." <img src="wwwy/Update01P/Update01P159.png" width=600px/> I see her legs tremble a little.<</talks>>
<<talks "Zosia" "worried">>"I- I-" Words fail her. I'm trying to imagine the expression on her face. Wait? Will I get in trouble? Commander told us to wait for the official start of Lunasong, which starts at night. But I just couldn't wait until nightfall.<</talks>>
<<talks "Kaysa" "happy">>"Don't worry dear. It's Lunasong after all." I hear the door bell jingle. She's gone.<</talks>>
<<talks "Fenris" "confident">>"Phew. That was close." I get back up from under the counter. And then sit on it. "Here. Your turn." <img src="wwwy/Update01P/Update01P160.png" width=600px/> I take my hard pulsing cock out. "Well?"<</talks>>
<<talks "Zosia" "blushing1">>"(gulp)" She's looking at it with wide eyes. Bet she's never seen one this big. Hahaha. I love that look. Every time I get it, I know exactly what's about to happen. <img src="wwwy/Vids/Vids27.webp" width=600px/> "Mgh. Mgh. Mgh!" Her warm, wet mouth around my cock. "Mhhh. Mgh. Mgh. Mgh." She's a messy one too. Drooling all over my cock.<</talks>>
<<talks "Fenris" "happy">>"Oh yeah baby. Just like that. Mhhhh. Work that mouth." <img src="wwwy/Update01P/Update01P161.png" width=600px/> She's really getting into it now. Looks like my cock is fully grown, time to fuck this pale little thing. "Okay. Okay. Time to spread those legs." I hop off from the counter and get behind her.<</talks>>
<<talks "Zosia" "aroused1">>"Mhhhh!" I sink deep inside her. "Ohhh! Ohhh!" I can feel every inch of her tight pussy gripping me. "Nhhhhh!"<img src="wwwy/Update01P/Update01P162.png" width=600px/><</talks>>
<<talks "Zosia" "aroused3">>I give her ass a sharp slap. "AhhH!!" Hahaha. <img src="wwwy/Update01P/Update01P169.png" width=600px/> I watch that pale ass jiggle. "AhhhhhHH!" I keep thrusting deeper. She loving it.<</talks>>
<<talks "Fenris">>So she has a daughter? "Didn't know you were a mother." You already know I'm going to have her too. She keeps moaning. Another slap. "What a slut you are." <img src="wwwy/Update01P/Update01P164.png" width=600px/> I grab her hips and drive myself deeper into her. I can't help but to wonder... mkhhh... if her daughter would scream as loud as her.<</talks>>
<<talks "Veric" "surprised">>The front door opens and in walks some some kid. "Uhhh!" Zosia tries to get up but I push her back down with my hand. <img src="wwwy/Update01P/Update01P165.png" width=600px/> The kid runs off. Hahaha!<</talks>>
<<talks "Zosia" "cumming">>"F-f-f-ffuckkk!!" She's screaming now. She's completely mine. I glance over to the doorway leading to the back room and notice a girl watching. <img src="wwwy/Update01P/Update01P166.png" width=400px/> Is that her daughter? She looks scared, but she isn't looking away. Fuck.<</talks>>
<<talks "Fenris" "cumming">>This is about to make me cum. "FUCKKKKK!!!" <img src="wwwy/Update01P/Update01P167.png" width=600px/> I empty myself into her mother's warm pussy, as I do I look the daughter right in the eyes and give her a little wink.<</talks>>
<span id="choice1"> \
<<link "From Woman's POV (Interracial, Submission)">>
<<goto "Day2AfterNoonWomanPOV">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<nobr>>
<<set $day2VisenyaFirstTime = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homePorch.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>♀</span> POV (Romance)">>
<<replace "#POV">>
<<include "Day2AfternoonVisenyaFirstTimeGirl">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♂</span> POV (Romance)">>
<<replace "#POV">>
<<include "Day2AfternoonVisenyaFirstTimeBoy">>
<</replace>>
<</link>>
</span>
<</nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homePorch.png')">>\
<<talks "Cedric" "confident">>I see her waiting by the door. <img src="wwwy/Update01P/Update01P171.png" width=600px/> Standing on her tiptoes trying to spot me. Adorable. "Hey beautiful." I walk up the stairs towards her.<</talks>>
<<talks "Visenya Year Ago" "happy">>"Come!" <img src="wwwy/Update01P/Update01P172.png" width=600px/> She grabs my arm and yanks me inside. Eager little thing.<</talks>>
<<talks "Reyna" "curious" "wwwy/Locations/homeKitchen.png">>"And what's this?" <img src="wwwy/Update01P/Update01P173.png" width=600px/> Her mother eyes us suspiciously. Mostly me...<</talks>>
<<talks "Cedric" "worried1">>"Oh? Hello miss Reyna! We're just..." Shit. Think of something. Visenya keeps pulling at me. "Emm... It's Lunasong after all." I hope the phrase is enough to put her mind at ease. Visenya gives a strong pull, making me disappear from her mother's vision.<</talks>>
<<talks "Reyna" "serious">>"(sighs deeply)... You better be up for some chores later, you hear?"<</talks>>
<<talks "Cedric" "wwwy/Locations/visenyaBedroomHome.png">>Once inside her room she pushes me onto her bed. Before I can say anything, her tunic is off. <img src="wwwy/Update01P/Update01P174.png" width=600px/> Just like that. No hesitation. Her body... damn. Even prettier than I imagined. "Hehe. You really are impatient, aren't you?" I smile and reach for her. Connecting our lips.<</talks>>
<<talks "Cedric" "smile">>"Mhhhh..." Her hands move up. I feel her fingers reach my cock through my pants. She's not wasting any time.<</talks>>
<<talks "Visenya Year Ago" "nakedsurprised">>She pulls it out. "Wow." <img src="wwwy/Update01P/Update01P175.png" width=600px/> The way she's looking at it. Like she's- Wait!<</talks>>
<<talks "Cedric">>"You've really never seen one up close before?" She shakes her head. I laugh. This is going to be fun. "You do know what to do right?" She nods quickly. We'll see about that.<</talks>>
<<talks "Cedric" "feelinggood">>Her lips wrap around the tip. "Mhhh..." Okay. She's a natural. Slow but... "Mhhh..." Really good actually. She takes more of me in. Fuck. <img src="wwwy/Vids/Vids31.webp" width=600px/> I'm not going to last if she keeps this up. Then suddenly she stops.<</talks>>
<<talks "Visenya Year Ago" "nakedhappy">> "(pop)"..."I want you inside me."<</talks>>
<<talks "Cedric" "smile">>I grin at her. She lays back on the bed. Legs spread. Waiting. <img src="wwwy/Update01P/Update01P219.png" width=600px/> Looking up at me with those eyes. I position myself and guide my cock into her. Tight. So fucking tight.<</talks>>
<<talks "Cedric" "sex">>"Mhhhh... So... Tight..." I start moving. The bed creaks beneath us. <img src="wwwy/Update01P/Update01P220.png" width=600px/> "Mhhh... Yeah... You like that?... You amazed how it feels?" I can tell by her face she's enjoying it. "Mhhh... I can tell..."<</talks>>
<<talks "Cedric" "cumming">>I pick up the pace. She starts moaning louder. Fuck. I'm close. Too close! "I'm cumming!" <img src="wwwy/Update01P/Update01P217.png" width=600px/> I pull out just in time and shoot onto her belly. "Ughhhhh!" I collapse next to her. "(pants).. (pants).. How was it?"<</talks>>
<<talks "Visenya Year Ago" "nakedcalm">>"It was good."<</talks>>
<<talks "Cedric" "calm">>We lay there staring at the ceiling. I reach for my pipe. She watches me curiously.<</talks>>
<<talks "Visenya Year Ago" "nakedcurious">> "What's that?"<</talks>>
<<talks "Cedric" "confident">>"Oh. Weed leaves." I light it up and take a drag. "You want some?" I pass it to her.<</talks>>
<<talks "Visenya Year Ago" "nakedcurious">> "Cough! Cough!" She nearly chokes.<</talks>>
<<talks "Cedric" "happy">> I laugh. Cute. She takes another drag. "Hehe. Slow it down there Vis." <img src="wwwy/Update01P/Update01P218.png" width=600px/> I take the pipe back. I look down. Wow... That was fast. "Want to go again?" She looks at my cock, then at me. <</talks>>
<<talks "Visenya Year Ago" "nakedhappy">>I see the answer in her eyes.<</talks>>
<span id="choice1"> \
<<link "From Girl's POV (Romance)">>
<<goto "Day2AfternoonVisenyaFirstTimeGirl">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/homePorch.png')">>\
<<talks "Visenya Year Ago" "interested">>"Where are you Cedric?" <img src="wwwy/Update01P/Update01P171.png" width=600px/> I stand in front of the front door on my toes. You promised to come.<</talks>>
<<talks "Cedric" "confident">>There he is! Walking towards me. "Hey beautiful." He walks up the stairs.<</talks>>
<<talks "Visenya Year Ago" "happy">>"Come!" <img src="wwwy/Update01P/Update01P172.png" width=600px/> I grab his arm and lead him into the house. My heart pounding in excitement.<</talks>>
<<talks "Reyna" "curious" "wwwy/Locations/homeKitchen.png">>"And what's this?" <img src="wwwy/Update01P/Update01P173.png" width=600px/> I pay her no mind and keep dragging Cedric by his arm.<</talks>>
<<talks "Cedric" "worried1">>"Oh? Hello miss Reyna! We're just..." He thinks of something to say as I keep trying to make him move. "Emm ...It's Lunasong afterall." And I get him to move again.<</talks>>
<<talks "Reyna" "serious">>"(sighs deeply)... You better be up for some chores later you hear?" I head peek from the doorway and give her a quick nod. She shakes her head and looks away.<</talks>>
<<talks "Visenya Year Ago" "smug1" "wwwy/Locations/visenyaBedroomHome.png">>"Come! Come!" I drag him up the stairs and into my bedroom. As soon as we're in I push him onto my bed. And immediately take off my tunic. <img src="wwwy/Update01P/Update01P174.png" width=600px/> I'm ready. I've waited so long for this.<</talks>>
<<talks "Cedric" "smile">>"Hehe. You really are impatient, aren't you?" He smiles at me. He reaches for me and guides me to his lips.<</talks>>
<<talks "Visenya Year Ago" "nakedcalm">>"Mhhhh..." I accept the kiss. His hand runs over my bare back. My hands are on his legs, gently moving upwards to his crotch. I can feel his hard cock through his pants pulsing.<</talks>>
<<talks "Visenya Year Ago" "nakedsurprised">>I take his cock out of his pants. "Wow." <img src="wwwy/Update01P/Update01P175.png" width=600px/> A real cock right in front of my eyes.<</talks>>
<<talks "Cedric" "calm">>"You've really never seen one up close before?" I shake my head. He laughs. "You do know what to do right?" I quickly nod at him. Of course I do. I'm not some innocent little girl anymore.<</talks>>
<<talks "Visenya Year Ago" "nakedblowjob">>I place my lips around the tip of his cock and gently suck on it. "Mhhh... (slow slurp) (slow slurp)" <img src="wwwy/Vids/Vids31.webp" width=600px/> He sighs as I take it deeper. "Mhhh. Mhhh. (slurp) (slurp)" And with every centimeter I take, I hear his moans become louder. Wait! I don't want him to cum yet. I want him inside me. "(pop)" He looks at me surprised. Probably wondering why I stopped? "I want you inside me."<</talks>>
<<talks "Visenya" "nakedcute">>He grins. I get off my knees and onto the bed. I lay on my back, my legs spread, waiting for him to take me. He gets on top of me, guiding his cock into my pussy. "Ohhhhh..." <img src="wwwy/Update01P/Update01P214.png" width=600px/> He's inside me. So this is what it feels like. It's... weird but... I like it. "Mhhhh..."<</talks>>
<<talks "Cedric" "sex">>"Mhhhh... So... tight..." He starts moving his hips. The bed starts creaking. "Mhhh... Yeah... You like that?..."<img src="wwwy/Update01P/Update01P215.png" width=600px/> "You amazed how it feels?" Am I? "Mhhh... I can tell..."<</talks>>
<<talks "Visenya Year Ago" "nakedsex">>I wouldn't say it's amazing, wait. He picks up his pace. "Ohhhh?" It does start to feel better. <img src="wwwy/Update01P/Update01P216.png" width=600px/> "Ohhhh... Mhhh..." Each thrust making it... Better and better.<</talks>>
<<talks "Cedric" "cumming">>"I'm cumming!" What? No! It just started to feel good. <img src="wwwy/Update01P/Update01P217.png" width=600px/> "Ughhhhh!" He pulls out and shoots his load onto my belly. The warm liquid hits my skin. He then collapses onto my side. "Wow... (pants).. (pants).. How was it?"<</talks>>
<<talks "Visenya Year Ago" "nakedcute">>"It was good." We both look at the ceiling for a while without saying anything. Cedric sits up and takes a pipe out from his pants pocket. "What's that?"<</talks>>
<<talks "Cedric" "confident">>"Oh. Weed leaves." Weed leaves? "You want some?" He lights it up and takes a drag. The process of watching him do it is mesmerizing. Then he passes it to me.<</talks>>
<<talks "Visenya Year Ago" "nakedcalm">>I'm not even sure if I should. Fuck it. I take a drag from the pipe. "(Cough!) (Cough!)" He laughs at me as I try to get the smoke out of my lungs. <img src="wwwy/Update01P/Update01P218.png" width=600px/> "Hahaha" I feel a warm feeling wash over me as the smoke leaves my lungs. It actually feels quite nice. I take another drag from the pipe.<</talks>>
<<talks "Cedric" "happy">>"Hehe. Slow it down there Vis." He takes the pipe from my hands. "Want to go again?" I look down at his crotch and see his cock rock hard. Again? Of course!<</talks>>
<span id="choice1"> \
<<link "From Boy's POV (Romance)">> \
<<goto "Day2AfternoonVisenyaFirstTimeBoy">>
<</link>> \
</span> \
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<nobr>>
<<set $day2VericsMom = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/vericDinnerRoom.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>♀</span> POV (Netori, submission)">>
<<replace "#POV">>
<<include "Day2AfternoonVericsMomGirl">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♂</span> POV (Netorase, dominance)">>
<<replace "#POV">>
<<include "Day2AfternoonVericsMomBoy">>
<</replace>>
<</link>>
</span>
<</nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/vericDinnerRoom.png')">>\
<<talks "Alcina" "aroused">>He's so handsy. His hands are all over my breasts, I whisper into my ear "Stop it.." <img src="wwwy/Update01P/Update01P221.png" width=600px/> I say to him but I don't mean it. I feel myself getting wet. I realize now that his story from yesterday was a lie. He told us his camp was full, and he needed a place to sleep. So my husband welcomed him in and told us he could stay with us for the whole duration of the Lunasong. "Mhhhh..."<</talks>>
<<talks "Veric" "cute">>"Mom?" Oh? He removes his hands as my son walks into the living room. "I was thinking maybe I could help you with making dinner? Inledya would appreciate that, don't you think?" <img src="wwwy/Update01P/Update01P222.png" width=600px/> Oh.. That's really sweet of him. And I would agree in any other situation, but I am so horny right now.<</talks>>
<<talks "Alcina" "panic">>"That's a good idea but..." I need to get him out of the house somehow. "Dear. You can absolutely help! I have run out of some... some..." Think Alcina, think. "Some pepper." I laugh nervously.<</talks>>
<<talks "Veric">>"I can get it for you mom!" I smile at him. He runs out of the house. I'll think about how wrong it is later. Right now mommy needs some cock inside her.<</talks>>
<<talks "Soran" "confident">>"Well played." He smirks at me.<</talks>>
<<talks "Alcina" "flirting1">>"Oh. Shush it! You better be a good lay." He smirks again. Turns me around and sits me on the dinner table, he lifts my skirt, and thrusts... <img src="wwwy/Vids/Vids32.webp" width=600px/> "Ahhhh!" Forth!<</talks>>
<<talks "Alcina" "aroused1">>It feels so good. "Mhhhh..." My dress slides off my shoulders and my breasts are now out in the open. <img src="wwwy/Update01P/Update01P223.png" width=600px/> He takes one of my nipples into his mouth and starts sucking on it. "Mhhhhh..." As he continues giving it to me.<</talks>>
<<talks "Soran">>"Your husband hasn't been taking care of you has he?" <img src="wwwy/Update01P/Update01P224.png" width=600px/> He asks as he continues to suck my nipple. I nod in response. Not like this. Not LIKE AHhhhh!<</talks>>
<<talks "Alcina" "nakedsex">>His pace quickens. <img src="wwwy/Update01P/Update01P225.png" width=600px/> "Ohhh goddess! Yes! Yes! Yes!" I haven't felt this good since... since FOREVER!<</talks>>
<<talks "Soran" "smile">>He wraps his arm around my neck. "Mkhhhh!" <img src="wwwy/Update01P/Update01P226.png" width=600px/> Squeezing my throat.<</talks>>
<<talks "Alcina" "nakedcumming">>The pleasure intensifies. "Ahhhhh! Yes! Choke me!" <img src="wwwy/Update01P/Update01P227.png" width=600px/> What? Did I just say that out loud?<</talks>>
<<talks "Alcina" "nakedcumming1">>"Nhh-nhh-nhh-nkhhh!" I'm going to cum. His throbbing cock just keeps hitting that one spot inside me. That one spot. <img src="wwwy/Update01P/Update01P228.png" width=600px/> "Ughhhhh!" My legs shiver as my orgasm comes over me. He continues to just fuck me through my orgasm.<</talks>>
<<talks "Soran" "cumming">>"Ukhhhhh!!!" <img src="wwwy/Update01P/Update01P229.png" width=600px/> He groans and cums inside me. The warmth... "Ukhhhh... Ukhhhhh..." He pulls out and his cum drips from my pussy onto the dinner table and from there onto the floor.<</talks>>
<<talks "Veric">>The door opens. "Mom! There weren't any pepper in the shop." I jump up from the dinner table. Quickly fixing my dress.<</talks>>
<<talks "Alcina" "flustered">>"O-oh! Sweetie!" I try to look as normal as I can. Still panting between my words. "It's alright. There was actually some in the back."<</talks>>
<<talks "Soran" "playfull">>"Yeah!" He's raising his hand holding a pepper shaker. Where did he? Oh? He thought ahead incase something like this would happen. Shit! My top is loose.<</talks>>
<<talks "Veric" "surprised">>"Why are you sweating?" <img src="wwwy/Update01P/Update01P232.png" width=600px/> He asks bluntly.<</talks>>
<<talks "Alcina" "flustered1">>"We were just playing a game of... find the pepper! (nervous laughter).. And he won." He looks at me confused. "When you left, (I clear my throat) I remembered that I might have had that pepper shaker somewhere in here. So we.. played a little game."<</talks>>
<<talks "Veric">>"Oh? What did he won?" The knight next to me looks at me. Come on. Help me!<</talks>>
<<talks "Soran" "confident1">>"Oh, I won a prize alright." My heart hammers against my ribs. "A very, very warm prize." He pauses and let's the words linger in the air. What are you? <img src="wwwy/Update01P/Update01P233.png" width=600px/> He leans in for a hug. "A warm hug."<</talks>>
<<talks "Veric" "curious">>"Dad wouldn't be happy if he knew you were giving out hugs to strangers." He adds. "So should I help you with the cooking?" I look down and notice the cum puddle on the floor.<</talks>>
<<talks "Alcina" "flirting">>"Later Dear! I'll call for you if I need you." Veric nods and leaves. I turn to Soran. He has a smug look on his face. "You..." <img src="wwwy/Update01P/Update01P234.png" width=600px/> I playfully push him. "Are terrible."<</talks>>
<span id="choice1"> \
<<link "From Man's POV (Netori, dominance,)">>\
<<goto "Day2AfternoonVericsMomBoy">>
<</link>>
</span>\
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/vericDinnerRoom.png')">>\
<<talks "Alcina" "aroused">>When I arrived here yesterday and saw her, I knew she wanted me on the moment she laid her eyes on me. "Stop it.." <img src="wwwy/Update01P/Update01P221.png" width=600px/> She says but her body is telling a different story as I keep caressing her soft breasts. Her husband is a fool for leaving her here all alone, with me. I squeeze her breasts a little tighter to which she lets out another sweet moan "Mhhhh..."<</talks>>
<<talks "Veric" "cute">>"Mom?" Great... Just as I was about to make my move. I quickly remove my hands as her son walks into the living room. "I was thinking maybe I could help you with making dinner? Inledya would appreciate that, don't you think?" <img src="wwwy/Update01P/Update01P222.png" width=600px/> He's a good kid, helped me settle into their barn. But by holy light, he has terrible timing.<</talks>>
<<talks "Alcina" "panic">>"That's a good idea but..." She pauses. But? "Dear. You can absolutely help! I have run out of some... some..." She's looking around, trying to come up with an excuse. "Some pepper." She laughs nervously. I look to my right and see a pepper shaker on the counter. I quickly snatch it to hide it from the boys view.<</talks>>
<<talks "Veric">>He looks over at the counter to see if the pepper is really out. After he confirms it he turns back towards her mother. "I can get it for you mom!" He smiles at her, completely oblivious. He runs out of the house. Now it's just me and her. Perfect.<</talks>>
<<talks "Soran" "confident">>"Well played." I smirk at her.<</talks>>
<<talks "Alcina" "aroused1">>"Oh. Shush it! You better be a good lay." That's a challenge I gladly accept. I turn her around, sit her on the dinner table, lift her skirt, and thrust... <img src="wwwy/Vids/Vids32.webp" width=600px/> "Ahhhh!" Right inside her.<</talks>>
<<talks "Alcina" "nakedsex">>Holy! "Mhhhh..." She's so wet. Her dress slides off her shoulders and her breasts are now out in the open. <img src="wwwy/Update01P/Update01P230.png" width=600px/> Damn, look at those things. They're nice size and jiggle so nicely. I take one of her nipples into my mouth and start sucking on it. "Mhhhhh..." She tastes so sweet.<</talks>>
<<talks "Soran">>"Your husband hasn't been taking care of you has he?" I ask while continuing to suck on her nipple. <img src="wwwy/Update01P/Update01P224.png" width=600px/> She nods in response. So she admits that? That's good. Means I can keep clapping her cheeks through out my stay.<</talks>>
<<talks "Alcina" "nakedcumming">>"AHhhhh!" She's so loud. <img src="wwwy/Update01P/Update01P225.png" width=600px/> I can feel her getting close.<</talks>>
<<talks "Soran" "calm">>I wrap my arm around her neck. "Mkhhhh!" squeezing her throat. <img src="wwwy/Update01P/Update01P227.png" width=600px/> Not too hard, though. I want her to enjoy this. I feel sorry for her. That all this time she's needed this but she never knew.<</talks>>
<<talks "Alcina" "nakedcumming1">>"Ahhhhh! Yes! Choke me!" <img src="wwwy/Update01P/Update01P231.png" width=600px/> Hah. Proves my point.<</talks>>
<<talks "Alcina" "nakedcumming2">>"Nhh-nhh-nhh-nkhhh!" Her pussy is starting to squeez my cock so hard. She's close. "Ughhhhh!" <img src="wwwy/Update01P/Update01P228.png" width=600px/> Her legs tremble as her orgasm comes over her. I don't let up. I keep the pace just as it is to make her orgasm last as long as possible. Just as she starts to come down from her high, I fill her with my seed.<</talks>>
<<talks "Soran" "cumming">>"Ukhhhhh!!!" <img src="wwwy/Update01P/Update01P229.png" width=600px/> I groan as I release it all inside of her. The warmth of her pussy... "Ukhhhhh... Ukhhhhh..." I pull out and watch my cum drip from her onto the dinner table and from there onto the floor.<</talks>>
<<talks "Veric">>The door opens. "Mom! There weren't any pepper in the shop." She jumps up from the dinner table. Shit. I quickly pull my pants up.<</talks>>
<<talks "Alcina" "flustered">>"O-oh! Sweetie!" She's still trying to catch her breath. "It's alright. There was actually some in the back."<</talks>>
<<talks "Soran" "smile">>"Yeah!" I raise my hand holding a pepper shaker. She turns around for some reason.<</talks>>
<<talks "Veric" "surprised">>"Why are you sweating?" <img src="wwwy/Update01P/Update01P232.png" width=600px/> He asks bluntly.<</talks>>
<<talks "Alcina" "flustered1">>"We were just playing a game of... find the pepper! (nervous laughter).. And he won." The kid looks at her confused. "When you left, (she clears her throat) I remembered that I might have had that pepper shaker somewhere in here. So we.. played a little game."<</talks>>
<<talks "Veric">>"Oh? What did he won?" Is this kid always this nosey? I look at her, waiting to see how she'll get out of this one. Instead she gives me a pleading look. She want's me to come up with something.<</talks>>
<<talks "Soran" "confident1">>"Oh, I won a prize alright. A very, very warm prize." I pause, savoring the look of panic on Alcina's face as she wonders what I'll reveal. Hah. Don't worry. I'm not an asshole. I wouldn't ruin this, she's too much fun. <img src="wwwy/Update01P/Update01P233.png" width=600px/> I lean in and wrap my arms around her. "A warm hug."<</talks>>
<<talks "Veric" "curious">>"Dad wouldn't be happy if he knew you were giving out hugs to strangers." He adds. "So should I help you with the cooking?" Oh you don't want to walk over here kid I think to myself as I see the cum puddle on the floor.<</talks>>
<<talks "Alcina" "flirting">>"Later Dear! I'll call for you if I need you." He nods and leaves. She turns to me with a playful push. <img src="wwwy/Update01P/Update01P234.png" width=600px/> "You..." she smiles. "Are terrible." Hahaha. You're telling me?<</talks>>
<span id="choice1"> \
<<link "From Woman's POV (Netorase, submission)">>
<<goto "Day2AfternoonVericsMomGirl">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set $day2RoriSeesInledya = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/OutsideHome.png')">>\
<<talks "Rori">>"Huh?" I see Inledya getting dragged outside from her house by Visenya.<img src="wwwy/Update01P/Update01P236.png" width=700px/> "Good Morrow!" Neither of them answer me. I think they didn't even notice me. Visenya keeps dragging her sister. Where are they going? I follow along.<</talks>>
<<talks "Rori">>Once we're near the store I see Visenya pushing Inledya towards... Veric. My heart stops. I'm genuinely worried for her, she is about to fall. And she does. <img src="wwwy/Update01P/Update01P143.png" width=600px/> Right on top of him??? Her breasts are pressed against his face? What? How did he get so lucky?<</talks>>
<<talks "Rori">>It should have been me! <img src="wwwy/Update01P/Update01P144.png" width=600px/> He's even helping her up, being all-gentlemanly-. Pfft. I would have caught her before she even had a chance to fall. I would have cradled her in my arms.<</talks>>
<<talks "Rori">>And now she's blushing? Does she like him? Why? What's so special about him? "Mhhh..." My hands turn to fists. Is it because he's a farmer and not a farmers hand? I'm more handsome than him. Stronger than him. "Grrr..." Why Inledya? What do I have to do to make you notice me? Maybe I should have become a healer like my father.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set $wentToClass = false>>\
<<set $day2EmoryWhatHappened = false>>\
<<set $day2EveningHelpHealer = false>>\
<<set $day2EveningHelperNTR = false>>\
<<set $beenToKaysaLecture = false>>\
<<set $Day2talkingToDad = false>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeRiverBank.png')">>\
<<talks "Visenya" "interested">>The afternoon sun warms my skin as I walk toward the hill where I met Will. I hope he's there. I really want to talk to him about what happened between us. As I reach the hilltop and look over it towards the water, I don't see anyone. "Hmpfh.." Shame...<</talks>>
<<talks "Visenya" "curious">>Wait? There is someone there. Sitting by the river. <img src="wwwy/Update01P/Update01P176.png" width=600px/> A girl, knees pulled up to her chest. As I get closer I notice her hair, it's interestingly split. One side being white, another black. Huh... "Hello." I say softly. The girl flinches at my greeting.<</talks>>
<<talks "Emery">>"Oh! H-hi." She says, looking over her shoulder.<</talks>>
<<talks "Visenya" "curious1">>"Do you know Will?" I ask directly. <img src="wwwy/Update01P/Update01P177.png" width=600px/> "He's a priest. Tall, with dark, medium-length hair, always drinking from a wineskin."<</talks>>
<<talks "Emery" "cute1">>"Yeah I do! I... I haven't seen him today, though. S-Sorry." She looks back towards the river as soon as she meets my eyes.<</talks>>
<<talks "Visenya" "curious2">>"Alright then. No worries." I say turning around. But as soon as I turn my back towards her, I hear a gasp behind me, I turn back around to see what the gasp was about, and right in front of me I see her....<</talks>>
<<talks "Emery" "worried">>"Mkhmmmm" <img src="wwwy/Update01P/Update01P178.png" width=600px/> Transforming into a... into a boy?? His face changed just a little, but her small chest that she had is completely gone now.<</talks>>
<<talks "Visenya" "surprised">>My jaw drops. "Whoa... Are you a mage?" I ask as I move closer to him. I've never seen a mage before.<</talks>>
<<talks "Emery" "boyshy">>He blushes hard. "Oh? No-no. Far from it." Hmm.. His voice is kinda the same, just barely deeper. I sit next to him.<</talks>>
<<talks "Visenya" "curious">>"How did you do that then?" <img src="wwwy/Update01P/Update01P179.png" width=600px/> I ask as I lean towards him boldly.<</talks>>
<<talks "Emery" "boyblushing1">>He looks away shyly. "I-It's a potion. Called Elisyr" He's still not looking at me, blushing deeply.<</talks>>
<<talks "Visenya" "interested">>"A Potion?" He nods quickly. "Why would you take a potion to be a girl? Do you want to be a girl?" My interest towards him grows.<</talks>>
<<talks "Emery" "boyshy">>"N-no!" He finally looks at me. "I mean... I don't know.. I..." He pauses, then says. "I don't become a girl when I take it. I just... look like... one." <img src="wwwy/Update01P/Update01P180.png" width=600px/> He gives me a look of I-don't-want-to-say-it-out-loud.<</talks>>
<<talks "Visenya">>"Ohhh? Like a futanari?"<</talks>>
<<talks "Emery" "boycalm3">>He shakes his head. "No. Futanaris are a race of their own. Humans can't become futanaris. This potion just.... gives breasts and... changes certain... feelings one might feel... while doing certain things..." His voice gets quieter with each word until he stops speaking completely, probably starting to understand himself how cryptic he's starting to sound.<</talks>>
<<talks "Visenya" "smug">>Hmmm.... "So why do you take it?"<</talks>>
<<talks "Emery" "boycalm">>"Oh.. It's.. part of the job."<</talks>>
<<talks "Visenya">>"Job? What job?"<</talks>>
<<talks "Emery" "boycalm1">>"I'm a squire." <img src="wwwy/Update01P/Update01P181.png" width=600px/> I give him a confused look. He reads from my face that I have no clue what a squire is, so he adds. "Squires help knights. And keep the camp orderly."<</talks>>
<<talks "Emery" "boycalm2">>"So when a squire takes the potion, alongside their body the mind changes as well. Boring camp chores suddenly become super interesting. Like sweeping the tent, polishing armor, cooking meals, fetching water, and hunting for food all give this... this satisfying feeling. The Elisyr basically rewires the brain to get a dopamine rush when doing tasks, making squires super efficient at keeping the camp running." Hmmm... So they turn all girly because girls can do these things better than men?<</talks>>
<<talks "Emery" "boycalm3">>"That way squires serve two purposes. They help knights out on the battlefield, and in camp they are extremely efficient at doing tasks that keep the camp orderly." Then his expression darkens. "Or at least... that's how it's supposed to be used." He glances away quickly, which signals me to not ask on what he meant by that.<</talks>>
<<talks "Visenya">>"Interesting." Let me ask you this then. "How long does the potion last?"<</talks>>
<<talks "Emery" "boyshy1">>"12 hours." 12 hours? But it's noon? So he took it at night? Why would he take it at night? Do humans do chores or cook at night?<</talks>>
<<talks "Visenya" "happy3">>I'm about to ask why, but seeing him all shy and jumpy, I instead drop the questioning altogether. "You remind me of my sister. So shy." <img src="wwwy/Update01P/Update01P182.png" width=600px/> I chuckle. He blushes proving my point. "I'm Visenya." I offer him my hand.<</talks>>
<<talks "Emery" "boyblushing1">>"Emery."<</talks>>
<<talks "Visenya" "happy">>"Nice to meet you Emery." I stay chatting with him for another fifteen minutes before heading back home.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time to "Evening">>
<<goto "MainRoom">>
<</link>>
</span><<set $day2WhatWasTalkedAbout = false>>\
<<set $day2VericPracticed = false>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/inledyasBedroomHome.png')">>\
<<set $visitedNightEvent = false>>\
<<talks "Inledya" "curious">>Knock! Knock! Knock! "Come in!" The door opens and mom walks in holding a... dress? "Is that for me?" She nods.<</talks>>
<<talks "Reyna">>"I hope it fits." She places the dress onto my bed. "We leave in fifteen." I give her a nod and she leaves the room. <img src="wwwy/Update01P/Update01P183.png" width=400px/> Oh my goddess. It's beautiful. The color even matches his eyes. I run my fingers along the fabric. Tonight is the night. I can do this.<</talks>>
<<talks "Reyna" "flirting">>Some time later. "Inledya! It's been twenty minutes already! I'm coming up-"<</talks>>
<<talks "Inledya" "cute1">>I step out of my room just as she's about to take her first step on the stairs. <img src="wwwy/Vids/Vids28.webp" width=600px/> "How do I look?" Everyone goes quiet. Even Visenya.<</talks>>
<<talks "Visenya" "smug1">>"(whistles) Look at you. If Veric doesn't bounce on you the moment he sees-" Mom covers her mouth. "(muffled) Come on. I wasn't going to say anything bad." She sighs. "Alright. Let's get going."<</talks>>
<<talks "Inledya" "cute3" "wwwy/Locations/OutsideHomeEvening.png">>We leave and walk towards Orne's house. <img src="wwwy/Update01P/Update01P184.png" width=600px/> The whole way there my heart won't slow down. I'm so nervous I can barely breathe.<</talks>>
<<talks "Alcina" "flirting">>We knock on the door and a moment later it opens. "Well hello there! You made it!" <img src="wwwy/Update01P/Update01P185.png" width=400px/> Veric's mom looks at us. When she sees me, her eyes go up and down. "My, my, Inledya. You look beautiful. Come on in!"<</talks>>
<<talks "Inledya" "blushing4" "wwwy/Locations/vericDinnerRoom.png">>We make it into their dining room where Orne and Veric are sitting. As Veric sees me, he freezes in place. <img src="wwwy/Update01P/Update01P186.png" width=600px/> Just stares at me. Does he like how I look? He hasn't said anything. His dad nudges him with his elbow and he snaps out of it.<</talks>>
<<talks "Veric" "blushing">>"You... You look beautiful." He then addresses all of us. "Come. S-sit!"<</talks>>
<<talks "Inledya" "blushing3">>As I'm about to take my first step towards the table, mom stops me and hands me the cream. Right. I almost forgot. I take the cream and walk up to Veric. <img src="wwwy/Update01P/Update01P187.png" width=600px/> "Here. A little something for hosting us." I hand it to him. Our hands touch as I pass it over. His hands are so rough. Worker hands.<</talks>>
<<talks "Alcina" "flirting1">>"Ohhh... That's so sweet." She looks at Veric. "(clears throat) Veric? Dear?"<</talks>>
<<talks "Veric" "cute">>He realizes he's frozen again. "T-thank you. I'm sure it tastes delicious and matches excellently with the dinner we've prepared for you." I give him a soft smile.<</talks>>
<<talks "Alcina" "talking">>"Alright. Sit down everyone." I turn around to sit on the other side. "No-No. Dear. You can sit next to Veric." Oh? Veric pulls out a chair for me. His mother looks down and sees something on the floor. <img src="wwwy/Update01P/Update01P188.png" width=600px/> "Oh? Hehe. Let me just..." She wipes something off. "I thought I cleaned up everything." She mutters to herself.<</talks>>
<<talks "Inledya" "blushing2">>We have a nice dinner. Me and Veric sit next to each other barely saying anything to one another. Mostly we just listen to our parents talk.<</talks>>
<<talks "Alcina" "flirting">>Once me and Veric have both finished eating. "Oh. You don't have to stay here and listen to us blabber. Veric. Why don't you show Inledya your room?" Gulp. My heart quickens. I look over at mom who gives me a nod.<</talks>>
<<talks "Veric" "happy" "wwwy/Locations/vericBedroom.png">>"So... this is my room." <img src="wwwy/Update01P/Update01P189.png" width=600px/> I follow Veric in. My pulse climbing with every step. "Here's my table." He points to it. "And here's my bed. Where the magic happens." He pauses. "I mean. Not like. That." He sits down on his bed and looks up at me. Waiting for me to sit next to him.<</talks>>
<<talks "Inledya" "panic1">>I sit down. And the first thing he does is place his hands on my thighs. <img src="wwwy/Update01P/Update01P190.png" width=600px/> WHAT? He just went for it? Like that? No! I don't- I quickly stand back up.<</talks>>
<<talks "Veric" "surprised">>"Oh. I'm sorry. Did I do something-"<</talks>>
<<talks "Inledya" "reflecting">>I'm already gone. I thought he was going to be more gentle. But his hands though... No! That was way too aggressive. Was he aggressive? Is it just me? It has to be me. It is me, isn't it?<</talks>>
<<talks "Reyna" "laughing" "wwwy/Locations/vericDinnerRoom.png">>As I make it into the dining room. "Hehehe. That was fast." She looks at my face and notices something is wrong. "What's wrong, honey?"<</talks>>
<<talks "Inledya" "sad">>"I want to go home." <img src="wwwy/Update01P/Update01P191.png" width=400px/> Tears start running down my face. I feel so pathetic. Why couldn't I just be normal? Mom rushes to me and takes my hand.<</talks>>
<<talks "Reyna" "smug">>"Thank you for the lovely dinner. I hope we can do this again some other time." She exchanges nods with Alcina. As we walk out the front door I hear behind me.<</talks>>
<<talks "Alcina" "angry">>"What did you do?!"<</talks>>
<<talks "Veric">>"Nothing! I did everything like we practiced. And she just-" The door closes.<</talks>>
<<talks "Inledya" "shy2" "wwwy/Locations/OutsideHomeNight.png">>As we walk towards home I feel so ashamed. I can hear what my parents must be thinking. That I'm a complete failure. I can't take this. <img src="wwwy/Update01P/Update01P192.png" width=600px/> I tear away from my mother's grip and run.<</talks>>
<<talks "Reyna" "curious">>"Inledya! Don't-..."<</talks>>
<<talks "Inledya" "sad1" "wwwy/Locations/homeForestNight.png">>I keep running into the forest. Aimlessly. Branches hitting my face. Scratching it. I run and run until I can't anymore. I stop... Sit down. And just... cry.<</talks>>
<<talks "Visenya" "curious2">>A few moments later. "There you are." <img src="wwwy/Update01P/Update01P193.png" width=600px/> She followed me? "Come on. Let's get back."<</talks>>
<<talks "Inledya" "sad">>"No!" I'm not going anywhere. "Just make your jokes at me and bugger off! You've won. This was all your plan, wasn't it? Give me false hope so you could come make fun of me when I'm at my lowest." My heart really hurts.<</talks>>
<<talks "Visenya" "comforting1">>She comes up to me and hugs me. Pushing away the dark thoughts. "I would never do that. I was being serious." <img src="wwwy/Update01P/Update01P194.png" width=600px/> She holds me tighter. "You can't change overnight, Inledya." She pulls back and looks at me. "Do you really want to change?"<</talks>>
<<talks "Inledya" "sad1">>Of course I do. That's all I've ever wanted. "Yes..."<</talks>>
<<talks "Visenya">>"Then we're going to take part in the Rites." Rites? Lunasong Rites? No! That's-<</talks>>
<<talks "Visenya" "smug1">>"Yes we are. You want to change? Then that's the way to do it!" I can't believe she's suggesting this. To take part in the Rites? The actual Rites?<</talks>>
<<talks "Visenya">>"Come! Let's go! Tonight's Rite takes place in the forest." She pulls at my arm.<</talks>>
<<talks "Inledya" "neutral">>"But the Rites are all... just... sex themed org-"<</talks>>
<<talks "Visenya">>She cuts me off. "Yes! Created by our goddess Luna herself. For all elves." She grabs my shoulders. "You want to be a true elf? You want to fit in? Then what better way than to take part in Lunasong fully?" The way she puts it... she's right. But it's still just... But... Maybe I can truly find myself through that.<</talks>>
<<talks "Inledya" "serious">>"Fine! I'll do it!" <img src="wwwy/Update01P/Update01P195.png" width=600px/> Determination comes over me. I like this feeling. It's better than the shame and guilt I just felt. I'd rather feel this.<</talks>>
<<talks "Visenya">>"Good! Then let's go! We don't want to be late for the first Rite!" She takes my hand and we head towards the Bonfire where Lunasong's first Rite will take place.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Night">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForestNight.png')">>\
<<set $visitedNightEvent = true>>\
<<set $PatreonPlug = false>>\
<<set $day2visenyaAnal = false>>\
<<set $day2emoryBj = false>>\
<<set $day2randomOrgy = false>>\
<<set $day2CommanderPlan = false>>\
<<talks "Visenya">>We make it towards the entrance. "Are we in time?" The woman at the entrance looks at us and nods. "Yes! Come Inledya!" As we're about to pass, the woman stops us.<</talks>>
<<talks "Maevra" "calm">>"Hold it!" She takes a bowl from the table. <img src="wwwy/Update01P/Update01P196.png" width=600px/> "Here."<</talks>>
<<talks "Inledya" "curious">>"What's that?" She answers with a smirk. It's hard to see exactly what's in it so I reach in and pick one up. "Are these... mushrooms?" The woman doesn't speak. Just gives me a nod.<</talks>>
<<talks "Visenya" "smug1">>"It's going to be fine." She takes one and immediately swallows. "Go on." Gulp. Alright. I swallow it.<</talks>>
<<talks "Maevra">>"And you need to wear these." She hands us white tunics. Once we have put them on... "Entrance has been granted for both of you. Walk the path to the Bonfire." She swings her arm showing us the path.<</talks>>
<<talks "Inledya" "cute" "wwwy/Locations/bonfirebackground.png">>Once we reach the bonfire, we see all kinds of people here. <img src="wwwy/Update01P/Update01P197.png" width=700px/> Some standing, some sitting around the fire, waiting. We find a spot and sit down.<</talks>>
<<talks "Othira" "calm">>Othira comes in. The village chief's bondmate. "First Rite will start! If this is your first time then pay attention. Here are the rules!" Everything quiets down. "Girls will dance around the fire. Boys will sit in a circle around the fire. If a girl falls, the boys have to rush in to help her get up. The first boy reaching her will win the girl as his partner. Then the boy will draw symbols onto the girl's body, marking them a pair for the night. The symbols must represent the forest and the land we stand on. The winner is determined by me and the village chief based on who has the most beautiful paint on them. After the judgment has been passed you may enjoy your partner."<</talks>>
<<if $wentToClass = true>>
<<talks "Inledya" "blushing3">>Paint? Kaysa didn't mention anything about painting.<</talks>>
<<else>>
<<talks "Inledya" "blushing3">>"(gulp)..." She said may. Not have to.<</talks>>
<</if>>
<<talks "Othira" "flirting1">>"Let the music play!!" The music starts. We stand up and start dancing. Wait. I feel something.<</talks>>
<<talks "Inledya" "cute2">>The earth. It's... pulsing? No... it's... breathing? The bonfire grows bigger. The heat... it's more intense, even though I'm further away. It's like a warm breath on my skin. My feet start moving on their own. The music plays in my head so loudly.<</talks>>
<<talks "Visenya" "laughing1">>"WOHOOO! Hahaha!" <img src="wwwy/Update01P/Update01P199.png" width=400px/> It's so nice to see her have fun. I see a few girls start falling, tripping, and boys rushing towards them. At least I'm not the last. I look back at Visenya. She dances so freely. Her every movement natural, joyful. Her eyes closed, she is fully in the moment.<</talks>>
<<talks "Inledya" "curious1">>I try to copy her. I try her advanced leg movement and trip. <img src="wwwy/Update01P/Update01P209.png" width=600px/> Oh no! I already hear a bunch of boys running towards me.<</talks>>
<<talks "Rori">>"Got you!" Wh-what? Rori? He looks at me, blushing. "Back off!" He says to the other knights and elf boys who tried to get to me.<</talks>>
<<talks "Gideon">>He holds his gaze with Rori. Then... "Fine..." He leaves.<</talks>>
<<talks "Rori" "blushing">>Rori picks me up gently from the ground. "You ok?" <img src="wwwy/Update01P/Update01P210.png" width=600px/> His tone is soft. I nod. Wow. I feel everything blending into one. "Come." I take a few steps. I can't. My knees feel weak. I need to go down.<</talks>>
<<talks "Rori" "calm">>He kneels next to me. "What are you doing here?" I don't answer. My brain tries to follow the conversation. "You can go home." Home? Wait. Why does he want me to go home? Did he step in just so no one else could have me? Why would he do that? Does he care for me? Was that why? "Emm.. Inledya? Can you hear me?" I nod slowly. "You can go home, ok." But I can't. I have to change. "What are you-"<</talks>>
<<talks "Inledya" "nakedshy">>I remove my top. <img src="wwwy/Vids/Vids30.webp" width=400px/> His face blushes hard, his eyes fixated on my breasts. We hear someone coming and placing a palette with a brush next to us. "Oh. Look." I nod towards the palette.<</talks>>
<<talks "Rori" "shy">>"You sure about this?" He asks. Wait. He asked me? He actually cares about my consent? I nod. I'm more sure now than I was a moment ago. "Alright then." He takes the palette and the brush. "(gulp)..." He's nervous. I chuckle. "What?"<</talks>>
<<talks "Inledya" "nakedcute1">>"Hehe. Nothing." He dips the brush into some paint and raises his hand. <img src="wwwy/Update01P/Update01P211.png" width=600px/> I feel the cold paint make contact with my skin. "Mhhhh."<</talks>>
<<talks "Rori" "cute">>"You ok?" I nod at him. "(gulp)... Ok." He continues painting me.<</talks>>
<<talks "Inledya" "nakedcurious">>"Why did you step in?" I ask him. He pauses for a moment.<</talks>>
<<talks "Rori" "cute1">>"I... I... don't know." He continues painting me. "Why are you here?"<</talks>>
<<talks "Inledya" "nakedblushing">>"I don't know." I give him the same answer he gave me. Hinting that if he wants to get an answer from me then he himself needs to answer first.<</talks>>
<<talks "Rori" "shy">>"I like you. And I was worried about you." It seems like he got it. He keeps moving his hand.<</talks>>
<<talks "Inledya" "nakedblushing1">>"I want to change. And I think this is the way."<</talks>>
<<talks "Rori" "curious">>"Change how?"<</talks>>
<<talks "Inledya" "nakedcute2">>"I want to be less shy."<</talks>>
<<talks "Rori" "blushing1">>"There's nothing wrong with being shy." He says, drawing another line. "I've always liked that... about you." <img src="wwwy/Update01P/Update01P212.png" width=600px/> Oh. He does? My heart starts beating faster. His hand becomes a bit shakier.<</talks>>
<<talks "Inledya" "nakedblushing2">>"I need this. For me." I look him in his eyes. "Mhhh..." He panics for a moment. "Hehe. Got you." He smirks.<</talks>>
<<talks "Rori" "cute">>"I'm done." He puts the brush away.<</talks>>
<<talks "Inledya" "nakedhappy">>"Do I look good?"<</talks>>
<<talks "Rori" "amazed">>"You look... stunning." His cheeks flush red.<</talks>>
<<talks "Inledya" "nakedcute">>One of the girls comes to lead me towards the stage. We stay there waiting for the Village Chief and her bondmate's judgment. They both start walking on stage, swiping girls left and right. Sorting us on who gets to stay and who doesn't.<</talks>>
<span id="choice2">\
<<link "I notice... strange girls? (trans)">>
<<replace "#choice2">>\
<<talks "Inledya" "nakedblushing1">>Hmmm... Some of these human girls have small... penises? <img src="wwwy/Update01P/Update01P207.png" width=400px/> How strange. <</talks>>
<<talks "Inledya" "nakedcurious">>After some time... I realise I have made it all the way to the top 10, alongside Visenya! Wait. I notice that all the girls have... cum on them as paint. All nine of them. How does that make sense? I shouldn't judge. The village chief knows best.<</talks>>
<<talks "Inledya" "nakedcute2">>The village chief alongside her wife ponder in front of me, whether to keep me on stage or send me away. <img src="wwwy/Update01P/Update01P208.png" width=600px/> They choose to... send me away. Darn it.<</talks>>
<<talks "Inledya" "nakedcurious">>I walk back to Rori. "You should have cum on my tits like those girls." Did I just say that outloud?<</talks>>
<<talks "Rori" "shy">>"Really?" He scratches the back of his head.<</talks>>
<<talks "Inledya" "nakedblushing1">>"No. I was- Joking." Was I?<</talks>>
<<talks "Othira" "flirting">>"We have the winner!" She raises Visenya's hand. "Visenya!" <img src="wwwy/Update01P/Update01P205.png" width=600px/> Everyone cheers for her. She looks so proud of herself. I can't believe she also let herself get painted like that. "Now you may enjoy yourselves. Music!" The music starts playing. All the pairs start losing themselves and begin fucking around us.<</talks>>
<<talks "Rori" "curious1">>"We should." He looks at me nervously.<</talks>>
<<talks "Inledya" "nakedhappy1">>"Yep. Let's get out of here." He leads me all the way home to my front door. Before I head in I turn towards him. "Rori!" He turns around. <img src="wwwy/Update01P/Update01P213.png" width=600px/> "Thanks!" I head in. My head starts to really spin now. I need to lay down.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Night">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>\
<</link>> \
<<link "I don't notice them.">>
<<replace "#choice2">>\
<<talks "Inledya" "nakedcurious">>After some time... I realise I have made it all the way to the top 10, alongside Visenya! Wait. I notice that all the girls have... cum on them as paint. All nine of them. How does that make sense? I shouldn't judge. The village chief knows best.<</talks>>
<<talks "Inledya" "nakedcute2">>The village chief alongside her wife ponder in front of me, whether to keep me on stage or send me away. <img src="wwwy/Update01P/Update01P208.png" width=600px/> They choose to... send me away. Darn it.<</talks>>
<<talks "Inledya" "nakedcurious">>I walk back to Rori. "You should have cum on my tits like those girls." Did I just say that outloud?<</talks>>
<<talks "Rori" "shy">>"Really?" He scratches the back of his head.<</talks>>
<<talks "Inledya" "nakedblushing1">>"No. I was- Joking." Was I?<</talks>>
<<talks "Othira" "flirting">>"We have the winner!" She raises Visenya's hand. "Visenya!" <img src="wwwy/Update01P/Update01P205.png" width=600px/> Everyone cheers for her. She looks so proud of herself. I can't believe she also let herself get painted like that. "Now you may enjoy yourselves. Music!" The music starts playing. All the pairs start losing themselves and begin fucking around us.<</talks>>
<<talks "Rori" "curious1">>"We should." He looks at me nervously.<</talks>>
<<talks "Inledya" "nakedhappy1">>"Yep. Let's get out of here." He leads me all the way home to my front door. On our way we don't speak to one another. We just enjoyed the quietness of the night. Before I head in I turn towards him. "Rori!" <img src="wwwy/Update01P/Update01P213.png" width=600px/> He turns around. "Thanks!" I head in. My head starts to really spin now. I need to lay down.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Night">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>>
</span><<nobr>>
<<set $meetingNeravineDay2 = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/NeravineRoomVillage.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>⚧</span> POV (Trans, FutaDom)">>
<<replace "#POV">>
<<include "meetingNeravineDay2Trans">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♀</span> POV (Submission)">>
<<replace "#POV">>
<<include "meetingNeravineDay2Girl">>
<</replace>>
<</link>>
</span>
<</nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/OutsideHome.png')">>\
<<set $wierdoBoyDay2 = true>>\
<<talks "Visenya" "annoyed">>As I walk back, I see a boy I recognize. Fucking Turby.<img src="wwwy/Update01P/Update01P255.png" width=600px/> "Ughhh." Last year he was so annoying and weird.<</talks>>
<<talks "Turby">>He pushes his shoulders back and taps on his chest. "Hey! Visenya!" <img src="wwwy/Update01P/Update01P256.png" width=600px/> He points at me. Yep he's still weird. "I demand-" Just keep walking.<</talks>>
<<talks "Visenya" "cuteangry1">>I walk past him. "Not interested."<</talks>>
<<talks "Turby" "calm">>He runs up to me and stands in front of me, blocking my path. "Hey! I wasn't done talking. I demand a blowjob!" <img src="wwwy/Update01P/Update01P257.png" width=600px/> He says with a smirk on his face.<</talks>>
<<talks "Visenya" "serious">>"Demand? Who do you think you are?" I push him aside, but he doesn't move.<</talks>>
<<talks "Turby">>"It's Lunasong! You have to!" He drops his pants. <img src="wwwy/Vids/Vids33.webp" width=600px/> His barely noticeable dick is now out in full display. "Now get on your knees and suck it!"<</talks>>
<<talks "Visenya" "curious">>This is what happens when people don't understand the meaning of Lunasong. They think it's a free pass to be an asshole. "You're right. It is Lunasong." I walk up to him. He smiles, thinking he's won.<</talks>>
<<talks "Visenya" "cuteangry">>BAM! <img src="wwwy/Update01P/Update01P258.png" width=600px/> I kick him in the nuts. "Happy Lunasong!" He falls to the ground, holding his crotch. "If you bother me again, I'll tell Cedric!" I quickly run back home. <</talks>>
<<talks "Turby" "hurt">>"Ow! Ow! Ow! You'll regret this. (whimpers...)"<</talks>>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForestNight.png')">>\
<<set $visitedNightEvent = true>>\
<<set $PatreonPlug = false>>\
<<set $day2visenyaAnal = false>>\
<<set $day2emoryBj = false>>\
<<set $day2randomOrgy = false>>\
<<set $day2CommanderPlan = false>>\
<<talks "Visenya">>We make it towards the entrance. "Are we in time?" The familiar woman from last year stands at the entrance. She looks at us and nods. "Yes! Come Inledya!" As we're about to pass, she stops us.<</talks>>
<<talks "Maevra" "calm">>"Hold it!" She takes a bowl from the table. <img src="wwwy/Update01P/Update01P196.png" width=600px/> "Here."<</talks>>
<<talks "Inledya" "curious">>"What's that?" Inledya reaches into the bowl. "Are these... mushrooms?" Oh? Right. I forgot about that. I take one and quickly swallow. Inledya looks at me confused.<</talks>>
<<talks "Visenya" "smug1">>"It's going to be fine. Go on." She hesitates for a moment. But then she swallows it.<</talks>>
<<talks "Maevra">>"And you need to wear these." She hands us white tunics. Once we have put them on... "Entrance has been granted for both of you. Walk the path to the Bonfire." She swings her arm showing us the path.<</talks>>
<<talks "Visenya" "interested" "wwwy/Locations/bonfirebackground.png">>Once we reach the bonfire, we see all kinds of people here. <img src="wwwy/Update01P/Update01P197.png" width=700px/> Some standing, some sitting around the fire, waiting. I scan around. Maybe I'll see Will. Hmmm. He's nowhere to be seen.<</talks>>
<<talks "Othira" "calm">>Othira comes in. The village chief's bondmate. "First Rite will start! If this is your first time then pay attention. Here are the rules!" Everything quiets down. "Girls will dance around the fire. Boys will sit in a circle around the fire. If a girl falls, the boys have to rush in to help her get up. The first boy reaching her will win the girl as his partner. Then the boy will draw symbols onto the girl's body, marking them a pair for the night. The symbols must represent the forest and the land we stand on. The winner is determined by me and the village chief based on who has the most beautiful paint on them. After the judgment has been passed you may enjoy your partner."<</talks>>
<<talks "Visenya">>So the rules are the same as last year. Got it.<</talks>>
<<talks "Othira" "flirting1">>"Let the music play!!" The music starts. I get up and start dancing. This mushroom is hitting me. Mhhh... How I've missed this. The fire, the music, the pulsing earth. I get so lost in the music that I almost forget the whole reason why I'm here.<</talks>>
<<talks "Visenya" "laughing1">>"WOHOOO! Hahaha!" <img src="wwwy/Update01P/Update01P199.png" width=400px/> I close my eyes and let myself drift away. I'm not dancing. The forest is dancing through me. My body knows the steps before my mind does. This year I'll try a bit harder. Maybe I'll even win.<</talks>>
<<talks "Visenya" "laughing">>I dance and I dance. Until finally I feel someone stopping me. "Huh?"<</talks>>
<<talks "Cedric" "happy">>"Hehe." Cedric? "You're the last one standing." <img src="wwwy/Update01P/Update01P198.png" width=600px/> I am? I look around. "You have the choice to choose your partner. So..."<</talks>>
<<talks "Visenya" "happy3">>"Hmm..." Since the priest isn't here. "I guess I'll choose you then." He smirks, like he already knew I was going to pick him. "Actually..." His face changes. "No. I'll choose you. Hahaha." The look on his face.<</talks>>
<<talks "Cedric" "confident">>"Very funny." He takes my arm and leads me away from the circle. "Thank you." He says to a girl bringing us a palette with a brush.<</talks>>
<<talks "Visenya" "happy2">>"Time for you to get creative. I want to win this year." <img src="wwwy/Vids/Vids29.webp" width=600px/> I say to him, untying my top and letting it fall to the ground.<</talks>>
<<talks "Cedric" "smile">>"I'll do my best."<</talks>>
<<talks "Visenya" "nakedcute">>He starts painting me with the cool paint. "Mhhhh." That's good. The cold paint against my warm skin. I hear a commotion to my left.<</talks>>
<<talks "Ferally" "laughing">>"Hahaha. What are you doing?" I look over.<</talks>>
<<talks "Gideon">>"We'll win it like this. There's nothing prettier than a girl covered in cum." <img src="wwwy/Update01P/Update01P200.png" width=600px/> He's jacking off aiming at her face.<</talks>>
<<talks "Visenya" "nakedsurprised">>"Oh? That's genius actually."<</talks>>
<<talks "Cedric">>"What is?" He asks, still focused on painting me.<</talks>>
<<talks "Visenya" "nakedcurious">>"Look over there." He looks over. "Add that in."<</talks>>
<<talks "Cedric" "confident">>"What? You serious?" Of course I'm serious. "Alright then." He puts the brush away and stands in front of me and starts stroking himself.<</talks>>
<<talks "Visenya" "nakedangry">>He keeps stroking. <img src="wwwy/Update01P/Update01P201.png" width=600px/> Furiously in front of me. It's so funny to me. Every time, it's like a mission for them. A quest taken in ultimate seriousness. Hahaha. His face. "You need some help there? I could suck it for you."<</talks>>
<<talks "Cedric">>"Alright go on." <img src="wwwy/Update01P/Update01P202.png" width=600px/> I take his cock into my mouth.<</talks>>
<<talks "Visenya" "nakedcalm">>"Mhh. (slurp)... (slurp)..." <img src="wwwy/Update01P/Update01P203.png" width=600px/> His cock is already twitching. Hahaha. "(slurp).. (slurp).." He's trying to keep his balance.<</talks>>
<<talks "Visenya" "nakedhappy">>"I know you're close. (slurp).. Go on.. (slurp) Cover my tits. (slurp) (slurp)..."<</talks>>
<<talks "Cedric" "feelinggood">>I push him over the edge and he- "Mkhhh." <img src="wwwy/Update01P/Update01P204.png" width=600px/> Covers my breasts with his cum. Heh. The hotness of the cum contrasts with the cold paint.<</talks>>
<<talks "Visenya" "nakedcumflirting">>"Do I look pretty?" <img src="wwwy/Update01P/Update01P206.png" width=600px/> He's lost for words. "I better get up there." I make my way towards the stage. I see a few other girls also got cum on them alongside the paint. Humans sure are creative.<</talks>>
<span id="choice2">\
<<link "I notice Emory (trans)">>
<<replace "#choice2">>\
<<talks "Visenya" "nakedcumconfident">>"Huh?" I see Emory in her.. girl form? <img src="wwwy/Update01P/Update01P207.png" width=400px/> Also covered in cum. Wow. I wave at her to which she gives me soft smile. <</talks>>
<<talks "Visenya" "nakedcumconfident">>The village chief comes to the stage with her bondmate. They start swiping girls left and right, sorting them. After a while, the last ten of us are here. All of us have cum on us. Wait. Inledya? She made it to top 10? And Emory as well.<</talks>>
<<talks "Visenya" "nakedcumconfident1">>Wow. Who did her paint? <img src="wwwy/Update01P/Update01P208.png" width=600px/> It looks beautiful. I think she would definitely win if none of us had cum on us. The village chief sends her away. Yeah. Figures.<</talks>>
<<talks "Othira" "flirting">>After a few moments. Wow, I made it all the way to top 3. Then the village chief wife grabs my hand and yells out "We have the winner! Visenya!" <img src="wwwy/Update01P/Update01P205.png" width=600px/> I won! Of course I won! "Now you may enjoy yourselves. Music!" The music starts playing. All the pairs start losing themselves and begin fucking around us.<</talks>>
<<talks "Visenya" "nakedcute">>I rush to Cedric and kiss him. "I won!" I give him another passionate kiss. "Can you go again?" I ask as I grab his cock. It's starting to get hard again. Let's speed up the process. I lean in and whisper into his ear. "I'll let you fuck my asshole." His cock shoots up like a flagpole. "Hahaha." I knew he would like that. "Come. I'll lead the way."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Night">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>\
<</link>>\
<<link "I don't notice Emory">>
<<replace "#choice2">>\
<<talks "Visenya" "nakedcumconfident">>The village chief comes to the stage with her bondmate. They start swiping girls left and right, sorting them. After a while, the last ten of us are here. All of us have cum on us. Wait. Inledya? She made it to top 10?<</talks>>
<<talks "Visenya" "nakedcumconfident1">>Wow. Who did her paint? It looks beautiful. <img src="wwwy/Update01P/Update01P208.png" width=600px/> I think she would definitely win if none of us had cum on us. The village chief sends her away. Yeah. Figures.<</talks>>
<<talks "Othira" "flirting">>After a few moments. Wow, I made it all the way to top 3. Then the village chief grabs my hand and her wife yells out "We have the winner! Visenya!" <img src="wwwy/Update01P/Update01P205.png" width=600px/> I won! Of course I won! "Now you may enjoy yourselves. Music!" The music starts playing. All the pairs start losing themselves and begin fucking around us.<</talks>>
<<talks "Visenya" "nakedcute">>I rush to Cedric and kiss him. "I won!" I give him another passionate kiss. "Can you go again?" I ask as I grab his cock. It's starting to get hard again. Let's speed up the process. I lean in and whisper into his ear. "I'll let you fuck my asshole." His cock shoots up like a flagpole. "Hahaha." I knew he would like that. "Come. I'll lead the way."<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<set $time = "Night">>
<<goto "MainRoom">>
<</link>>
</span>
<</replace>>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeHealerRoom.png')">>\
<<set $day2EveningHelperNTR = true>>\
<<talks "Trissyna" "nakedsex1">>"Ehhh!" The moans are coming out on their own. <img src="wwwy/Update01P/Update01P377.png" width=600px/> "Ahhh!" I can't help it. His rod feels so fucking good-<</talks>>
<<talks "Trissyna" "nakedsexsurprised">>The door slams open. "Healer! I need help!" <img src="wwwy/Update01P/Update01P331.png" width=600px/> Cedric? Torvin?! His getting carried in by Cedric's. His head hanging down. He can't even lift his head. No. No no no. The boy who I am going out with is right there! But this is different. The healer is doing his job. Mkhhhh...<</talks>>
<<talks "Mattyna" "surprised">>"What is it now? Another fever incident?"<</talks>>
<<talks "Cedric" "worried3">>Cedric's eyes find me. His face drops. I mouth -please- at him.<</talks>>
<<talks "Mattyna" "yelling">>"Oi! Eyes up here boy! Put him on the table!" <img src="wwwy/Update01P/Update01P332.png" width=600px/> Cedric lays Torvin down. He looks so pale. Is he sick? Does he need me to- Ahhhhh! Fuck! The healer speeds up. Breaking my mind and making me grip the sheets harder.<</talks>>
<<talks "Torvin">>"Cedric. Who's he fucking?" <img src="wwwy/Update01P/Update01P378.png" width=700px/> He heard me? Nhhh! Cedric looks over at me. Don't answer. Don't break this firendship between us. Please don't-<</talks>>
<<talks "Cedric" "worried1">>"I don't know. Some village girl. Don't worry about it." His eyes are filled with worry as mine are filled with pleasure. Fuck! Fuck you healer! You feel so good!<</talks>>
<<talks "Torvin" "cute">>"She sounds amazing." <img src="wwwy/Update01P/Update01P379.png" width=700px/> What? No he didn't just say that. Am I getting hornier? What is wrong with me? That's my boyfriend for- Nhhhhh!!! Can't think!<</talks>>
<<talks "Trissyna" "nakedsex">>Mattyna picks up the pace after each thrust. <img src="wwwy/Update01P/Update01P333.png" width=400px/> "Nhhhhh!!!!"<</talks>>
<<talks "Mattyna">>"It's ok baby girl. I know. I know you need more. I'll quickly cum in you and be right back, ok dear?"<</talks>>
<<talks "Torvin" "blushing">>"Fuck. He's really going at her. Wish I could see." <img src="wwwy/Update01P/Update01P380.png" width=700px/><</talks>>
<<talks "Trissyna" "nakedsexworried">>I look over towards Torvin. He's hard? Yes he is! I can see the bulge in his pants. He's hard listening to me moan to this... this.. nhhhh... fucking rod!<</talks>>
<<talks "Mattyna" "smileing">>"I know baby. I know! I'm trying here. I'm trying. I'm going to make you cum baby. Don't worry."<</talks>>
<<talks "Trissyna" "nakedcumming">>I'm close. I bite into the matrass. "Nhhhhhh!!" <img src="wwwy/Update01P/Update01P381.png" width=700px/> I orgasm while looking at Torvin's face. This combined with the feaver pushes me over the edge!<</talks>>
<<talks "Trissyna" "nakedcumming1">>Mattyna finishes inside me. <img src="wwwy/Update01P/Update01P337.png" width=400px/> He pulls out and walks towards the boys. No. Don't leave me. Don't leave me like this. I feel the feaver returning!<</talks>>
<<talks "Mattyna" "confident">>"Alright boys, what's wrong?"<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $PatreonPlug = true>>\
<<if $inledyaViewed is true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/inledyasBedroomHome.png')">>\
<<talks "—">>"Psst!"<</talks>>
<<talks "Inledya" "curious">>"Huh?"<</talks>>
<<talks "—">>"Pssst! Over here!"<</talks>>
<<talks "Inledya" "curious1">>"W-What?"<</talks>>
<<talks "—">>"Thank you for playing the Demo. I hope you liked it :)"<</talks>>
<<talks "Inledya" "panic">>"Demaou? What the?"<</talks>>
<<talks "—">>"Did you? I mean you made it all the way to the end so I guess you did! I'm a solo dev working on this game so any help would be greatly appreciated. You can go to my Patreon page by clicking on the Patreon icon on the left. Thanks!"<</talks>>
<<talks "Inledya">>"Patreaun? This doesn't make any sense."<</talks>>
<<talks "Inledya" "worried">>"VISENYA!"<</talks>>
<<talks "Visenya">>"What now?"<</talks>>
<<talks "Inledya" "panic1">>"The notebook started talking to me! It's asking for something!"<</talks>>
<<talks "Visenya">>"(Sigh...) Not this again..."<</talks>>
<</if>>\
<<if $visenyaViewed is true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/visenyaBedroomHome.png')">>\
<<talks "—">>"Psst!"<</talks>>
<<talks "Visenya" "curious1">>"What the fuck?"<</talks>>
<<talks "—">>"Pssst! Over here!"<</talks>>
<<talks "Visenya" "curious2">>"What?"<</talks>>
<<talks "—">>"Thank you for playing the Demo. I hope you liked it :)"<</talks>>
<<talks "Visenya" "serious">>"Liked what now?"<</talks>>
<<talks "—">>"Did you? I mean you made it all the way to the end so I guess you did! I'm a solo dev working on this game so any help would be greatly appreciated. You can go to my Patreon page by clicking on the Patreon icon on the left. Thanks!"<</talks>>
<<talks "Visenya" "confused">>"What is happening?"<</talks>>
<<talks "Visenya" "panic2">>"INLEDYA! The notebook is acting up."<</talks>>
<<talks "Inledya">>"I can smell the weed leaves Visenya."<</talks>>
<<talks "Visenya" "cuteangry1">>"It's not the leaves! I'm serious!"<</talks>>
<<talks "Inledya" "facepalm">>"Of course not..."<</talks>>
<</if>>\
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/NeravineRoomVillage.png')">>\
<<talks "Irianelle" "nakedsex2">>"AHHHH! (clap!) (clap!) (clap!)"<img src="wwwy/Update01P/Update01P242.png" width=600px/> <</talks>>
<<talks "Neravine" "nakedsex2">>"Mhhhhh." <img src="wwwy/Update01P/Update01P243.png" width=600px/> I'm hitting her so deep. My balls slapping against her ass. "You feel that? How deep I am?"<</talks>>
<<talks "Irianelle" "nakedsex">>"(clap!) (clap!) (clap!) AHHHH! (clap!) (clap!) (clap!)" <img src="wwwy/Update01P/Update01P244.png" width=600px/> She seems to be unable to answer me.<</talks>>
<<talks "Neravine" "nakedsex">>"Who owns this pussy?" <img src="wwwy/Update01P/Update01P245.png" width=600px/> She can't speak. Her eyes rolled back into her skull.<</talks>>
<<talks "Neravine" "nakedsex1">>"Unable to answer me?" <img src="wwwy/Update01P/Update01P247.png" width=600px/> I chuckle, gripping her legs tighter and resuming my punishing pace. "That's alright. Your body is screaming the answer for me."<</talks>>
<<talks "Irianelle" "nakedcumming">>"AHHHHH! AHHHHH!" <img src="wwwy/Update01P/Update01P246.png" width=600px/> Her pussy grips my cock tighter with each thrust. I can feel she's close to another orgasm. "AHHHHHHHH!"<</talks>>
<<talks "Neravine" "nakedcumming">>"Ukhhhhh" <img src="wwwy/Update01P/Update01P248.png" width=600px/> I shoot my fourth load deep inside her. She passes out from the intensity of her orgasm.<</talks>>
<<talks "Neravine" "nakedcalm">>I pull out of her, my cum flowing out from her pussy. I get up from the bed and walk towards the window. <img src="wwwy/Update01P/Update01P249.png" width=400px/> My huge cock swinging and hitting against my thighs with every step I take.<</talks>>
<<talks "Neravine" "nakedcalm1">>I look down at the market square. There she is. <img src="wwwy/Update01P/Update01P241.png" width=600px/> My dear sister Mariselle, selling our jewelry and trinkets. "Sigh..." I should really be down there helping her. But...<</talks>>
<<talks "Neravine" "nakedcalm">>I turn around and see that pale elf girl has regained enough energy to lift her head up from the bed. <img src="wwwy/Update01P/Update01P251.png" width=600px/> "Round five?" I ask her, my voice steady, demanding, playful. As I walk towards the bed, I feel my cock starting to get hard again. Hehe.<</talks>>
<<talks "Irianelle" "nakeddisbelief">>She looks at my growing cock and her head drops back down onto the bed. "You can't be serious." She says panting.<</talks>>
<<talks "Neravine" "nakedconfident">>"Oh, I'm always serious when it comes to stretching pretty elven pussies." I grab my hard pulsing cock, giving it a gentle stroke. "Now, ass up. I want to try something."<</talks>>
<span id="choice1"> \
<<link "From Girl's POV (Trans, Submission,)">>\
<<goto "meetingNeravineDay2Girl">>
<</link>>
</span>\
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/NeravineRoomVillage.png')">>\
<<talks "Irianelle" "nakedsex2">>"AHHHH! (clap!) (clap!) (clap!)" <img src="wwwy/Update01P/Update01P242.png" width=600px/> So this is what a futanari cock feels like! The. Girls. Weren't. Lying. I. Can't. Think!<</talks>>
<<talks "Neravine" "nakedsex2">>"Mhhhhh." <img src="wwwy/Update01P/Update01P243.png" width=600px/> She's hitting me so deep. Her balls slapping against my ass. "You feel that? How deep I am?"
<</talks>>
<<talks "Irianelle" "nakedsex">>"(clap!) (clap!) (clap!) AHHHH! (clap!) (clap!) (clap!)" <img src="wwwy/Update01P/Update01P244.png" width=600px/> What kind of question is that! YES!! I feel it! I feel it literally everywhere! I want to answer but nothing comes out. Just... "Ahhhh!" Sounds.<</talks>>
<<talks "Neravine" "nakedsex">>"Who owns this pussy?" <img src="wwwy/Update01P/Update01P254.png" width=600px/> Nobody owns my... Oh! She changed the angle. It's hitting me! FUCK! I CAN'T THINK! My eyes just roll upwards.<</talks>>
<<talks "Neravine" "nakedsex1">>"Unable to answer me?" <img src="wwwy/Update01P/Update01P246.png" width=600px/> She keeps the pace. Not letting up one bit. My pussy tightens around her cock. "That's alright. Your body is screaming the answer for me." Her grip is so strong, she's spreading my pussy harder as she just keeps going.<</talks>>
<<talks "Irianelle" "nakedcumming">>I'm going to cum! "AHHHHH! AHHHHH!" <img src="wwwy/Update01P/Update01P247.png" width=600px/> Again!! I've lost count how many times I've cum on her cock today. I don't even know what's happening anymore.<</talks>>
<<talks "Neravine" "nakedcumming">>"Ukhhhhh" <img src="wwwy/Update01P/Update01P253.png" width=600px/> She shoots another load deep inside me. I feel it joining all the other loads that have been fucked deep into me. Mkhhh... I think I'm going to pass out.<</talks>>
<<talks "Neravine" "nakedcalm">>As she pulls out my pussy explodes shooting out her massive load. That's so much cum... Are all futanari like this? Filled up like.. like some bulls? Or is it because she's... dark skinned? I've heard stuff from Zosia...<<if $day2ShopkeeperInterracial is true>>the shopkeeper...<</if>> I need to find a dark man and see if they're as hung as her.<</talks>>
<<talks "Neravine" "nakedcalm1">>She gets up from the bed and walks towards the window. Her cock swinging against her thighs with every step. Still half hard. After four rounds! <img src="wwwy/Update01P/Update01P249.png" width=400px/> Each swing against her thighs echoes in my head as-Clap. Clap. Clap- My body twitches after each clap makes contact. Finally it stops, silencing the room, putting peace into my head.<</talks>>
<<talks "Neravine" "nakedcalm">>I raise my head and look at her, standing by the window. She holds her gaze with someone and falls into thought. Moment later she looks at me, grin appearing onto her face. "Round five?" My head drops.<</talks>>
<<talks "Irianelle" "nakeddisbelief">>"You can't be serious." It's growing again. How? HOW?!? Does this futanari have any limit?<</talks>>
<<talks "Neravine" "nakedconfident">>"Oh, I'm always serious when it comes to stretching pretty elven pussies." She grips her shaft, giving it a slow stroke. "Now, ass up. I want to try something." She said -elven pussies-. Plural. So I'm not the first. Try something? As in the last four rounds were just... a warm up or something? My body has already turned itself over before I can finish the thought, turning itself completely off for her. <img src="wwwy/Update01P/Update01P250.png" width=600px/> Fuck... here she goes again...<</talks>>
<span id="choice1"> \
<<link "From Futa's POV (Trans, Dominance,)">>
<<goto "meetingNeravineDay2Trans">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<nobr>>
<<set $day2NoonOldYoungLooking = true>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/neigborAcross.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>♀</span> POV (Old/Young)">>
<<replace "#POV">>
<<include "Day2NoonAcrossOldGirlPOV">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>♂</span> POV (Old/Young)">>
<<replace "#POV">>
<<include "Day2NoonAcrossOldMalePOV">>
<</replace>>
<</link>>
</span>
<</nobr>><<set document.body.style.backgroundImage = "url('wwwy/Locations/neigborAcross.png')">>\
<<talks "Vaelor" "feelinggood">>"Ukhhhh..." <img src="wwwy/Update01P/Update01P268.png" width=600px/> Her head is bobbing up and down. So... fast... Slurp. Slurp. Gluck. I've waited so long for her to grow up. And now that she's of age, I can finally... "Mkhhhh... I'm gonna cum!" She takes her mouth off my cock.<</talks>>
<<talks "Nyssira" "blowjob1">>"No you're not." She says cattily. "Not yet." She can be so annoying sometimes. <img src="wwwy/Update01P/Update01P270.png" width=600px/> I guide her head back onto my cock.<</talks>>
<<talks "Vaelor">>"Oh, right. My mistake. I forgot you're the one in charge here. Should have known from the way you were gagging on it a second ago." <img src="wwwy/Update01P/Update01P271.png" width=700px/> I say sarcastically as I keep guiding her head. Ughh... Brats nowdays. I look out the window and..."What's this?"<</talks>>
<<talks "Vaelor" "surprised">>I see the girl with huge breasts that lives across the street. <img src="wwwy/Update01P/Update01P263.png" width=400px/> Inledya? I've seen her around. She's standing there completely soaked. "By Luna those milkers."<</talks>>
<<talks "Nyssira" "angry">>"(pop)" <img src="wwwy/Update01P/Update01P274.png" width=700px/> She takes my cock out of her mouth and stands up and looks out the window to see what I'm looking at. "I can't believe you! I'm over here trying to give you the best blowjob of your life and you're checking out her?" She storms out the room. "You better leave the house before my parents get back." The door closes.<</talks>>
<<talks "Vaelor" "defeated">>"Wha... No! Wait" Too late she's gone. "Shit!" I look back out the window. She is gone too. And here I am left with a rock hard cock. "Fuck..." I'll get her back.<</talks>>
<span id="choice1"> \
<<link "From Girl's POV">>
<<goto "Day2NoonAcrossOldGirlPOV">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/neigborAcross.png')">>\
<<talks "Nyssira" "blowjob">>"Slurp. Slurp. Gluck." <img src="wwwy/Update01P/Update01P269.png" width=600px/> It's so big. My jaw is starting to hurt but I don't want to stop. I've been thinking about this for so long.<</talks>>
<<talks "Vaelor" "feelinggood">>"Ukhhhh..." <img src="wwwy/Update01P/Update01P270.png" width=600px/> He's making sounds. That means I'm doing good right? I go faster.<</talks>>
<<talks "Nyssira" "blowjob1">>I can feel him twitching in my mouth. <img src="wwwy/Update01P/Update01P272.png" width=700px/> I think he's about to... wait! No! If he finishes now then that's it. He won't... he won't be able to fuck me after. I take my mouth off. "No you're not." I try to sound confident. "Not yet." Before I could add anything else his hand finds itself on my head, guiding it back to work.<</talks>>
<<talks "Vaelor" "confident">>"Oh, right. My mistake. I forgot you're the one in charge here. Should have known from the way you were gagging on it a second ago." <img src="wwwy/Update01P/Update01P273.png" width=700px/> No he dosen't get it. I want him to fuck my pussy. Not- "What's this?"<</talks>>
<<talks "Nyssira" "curious">> He stopped guiding my head. Why is he looking at the window? I'm right here. "(pop)" <img src="wwwy/Update01P/Update01P274.png" width=700px/> I can't believe this! I stand up and look out the window to see what he's looking at. That girl. Inledya. The one from across the street with the huge breasts. Just standing there. Soaked. <</talks>>
<<talks "Nyssira" "angry">> "I can't believe you! I'm over here trying to give you the best blowjob of your life and you're checking out her?" My first blowjob ever and he's looking at someone else! "You better leave the house before my parents get back."<</talks>>
<<talks "Vaelor" "defeated">>"Wha... No! Wait-" I slam the door. <img src="wwwy/Update01P/Update01P275.png" width=400px/> I'm never doing that again.<</talks>>
<<talks "Nyssira" "angry1">>Never.<</talks>>
<<talks "Nyssira" "serious">>...<</talks>>
<<talks "Nyssira" "curious">>But his cock though... <img src="wwwy/Update01P/Update01P276.png" width=600px/> Fine. Unless he apologises and lets me do more than suck it. "Hmpfhh..."<</talks>>
<span id="choice1"> \
<<link "From Man's POV">>
<<goto "Day2NoonAcrossOldMalePOV">>
<</link>>
</span>
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $day2NoonBoysWalkingBack = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/OutsideHomeEvening.png')">>\
<<talks "Kain" "laughing">>"Hahaha!" He slaps me on the shoulder. "We got such a good view this time!" <</talks>>
<<talks "Cedric" "smile">>"Indeed. Much better than yesterday." <img src="wwwy/Update01P/Update01P277.png" width=600px/> Visenya really came through for us again.<</talks>>
<<talks "Joryc">>"By Luna, they were huge." He says making a squeezing motion with his hands. "Hahaha."<</talks>>
<<talks "Torvin" "shy1">>"Guys... I can't see!" Huh?<</talks>>
<<talks "Cedric" "calm">>I turn around towards trailing Torvin. <img src="wwwy/Update01P/Update01P278.png" width=600px/> "What do you mean you can't see?"<</talks>>
<<talks "Torvin" "shy">>"You're going to laugh." He sounds really worried.<</talks>>
<<talks "Cedric">>"What's wrong?" He doesn't answer. "Torvin?"<</talks>>
<<talks "Torvin" "worried">>"Everything's blurry. I only see her breasts jiggling in front of me."<img src="wwwy/Vids/Vids15.webp" width=400px/> Every one of us falls silent.<</talks>>
<<talks "Cedric" "calm">>The boys around me burst into laughter, but I quickly raise my hand to silence them. <img src="wwwy/Update01P/Update01P290.png" width=600px/> I can see he's genuinely scared. "You have a fever episode." I walk up to him. "When did you lose your sight?"<</talks>>
<<talks "Torvin" "shy">>"When we left the backyard." Shit! That's more than 25 minutes ago. This could be really bad.<</talks>>
<<talks "Cedric">>"Why didn't you say sooner? Give me your arm. I'm going to carry you to a healer. Give me your arm. Come on. You can't run, your blood pressure is probably through the roof."<</talks>>
<<talks "Torvin" "worried">>I take him on my back. "I'm sorry!"<</talks>>
<<talks "Cedric" "smile">>"Don't be. This isn't your fault." <img src="wwwy/Update01P/Update01P279.png" width=600px/>I take him on my back. He just turned adult, and he's been a sickly child ever since I met him. "It's not your fault at all." If at all it's my fault for bringing him with us. "Alright. I'll catch up with you guys later."<</talks>>
<<talks "Kain">>Kain pats him on the head. "Hey. If you're not going to make it, then you're going out with a bang, huh? Seeing juicy melons as your last view." He's right! That sure is a way to go.<</talks>>
<<talks "Torvin">>"Hehe.. Shut up!" He chukles. Alright, time to go.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $day2NoonBarnLoreRomance = true>>\
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeBarn.png')">>\
<<talks "Rhoswen" "nakedmoaning">>"Ehhh!" <img src="wwwy/Update01P/Update01P280.png" width=700px/> The moans are coming out on their own. I can't help it. He just knows how to-<</talks>>
<<talks "Rhoswen" "nakedsurprised">>We hear the barn door opening. <img src="wwwy/Update01P/Update01P281.png" width=600px/> Gareth falls onto me covering my mouth with his hand.<</talks>>
<<talks "Rhoswen" "nakedworry">>We both freeze, we hear the footsteps approaching. My heart hammers against my ribs. This is it. We're caught.<</talks>>
<<talks "Rhoswen" "nakedshy">>A small pause fills the air. My chest is tucking hard. A moment later we hear running and door closing.<</talks>>
<<talks "Gareth">>He lets go of my mouth. "I thought you said no one ever comes here."<</talks>>
<<talks "Rhoswen" "nakedhappy">>"Hahaha." <img src="wwwy/Update01P/Update01P282.png" width=400px/> We both laugh. "The owners only come here in the mornings. Early afternoons at the latest."<</talks>>
<<talks "Gareth" "calm1">>"Lunasong sure is one strange festival." He lies on his back. What does he mean by that?<</talks>>
<<talks "Rhoswen" "nakedcurious">>"How so?" <img src="wwwy/Update01P/Update01P283.png" width=400px/> He continues playing with my breasts as he ponders for a moment.<</talks>>
<<talks "Gareth" "calm2">>"Everyone knows everyone is fucking somewhere. It's all allowed. Expected even." He pauses. "So why did that feel so thrilling? We weren't really breaking any rules."<</talks>>
<<talks "Rhoswen" "nakedcalm">>"Because it still felt like we were." I smile at him. "That's the whole point of Lunasong."<</talks>>
<<talks "Gareth" "calm">>He looks at me, confused.<</talks>>
<<talks "Rhoswen" "nakedcalm1">>"The festival doesn't erase taboos. It gives you the freedom to act on them. But everyone still treats them as taboos." <img src="wwwy/Update01P/Update01P284.png" width=550px/> I trace a line down his chest. "That's where true desire lives. In that space between knowing you can... and feeling like you shouldn't."<</talks>>
<<talks "Gareth">>"So it needs both. The freedom and the taboo."<</talks>>
<<talks "Rhoswen" "nakedcute1">>"Exactly. Without the freedom, you can't act. Without the taboo, there's no thrill." I raise my head to look him straight into his eyes. "Think about it. A girl who likes to be dominated for example. If during Lunasong submission was just normal, expected, treated as ordinary... would it excite her?"<</talks>>
<<talks "Gareth" "curious">>He shakes his head slowly. "No. She needs to feel like she's giving up control."<</talks>>
<<talks "Rhoswen" "nakedcute2">>"Mhm. Or an elf girl who sneaks off with a human boy. If nobody raises an eyebrow... then what was the point of sneaking? Where's her sense of rebellion?"<</talks>>
<<talks "Gareth" "calm2">>"It's nonexistent." <img src="wwwy/Update01P/Update01P285.png" width=700px/> He's catching on now. "So that's why the age gaps still feel exciting." He squeezes my thigh. "The permission is there but the taboo stays."<</talks>>
<<talks "Gareth" "calm1">>"So that's why you have a two week period. Because the rest of the year they are only seen as taboo, something to shy away from?"<</talks>>
<<talks "Rhoswen" "nakedcute">>"Yes!"<</talks>>
<<talks "Gareth" "calm">>"Or girls exposing their bodies in public. They can do it freely, but it still feels shameful, because Lunasong will end. And that shame..."<</talks>>
<<talks "Rhoswen" "nakedcute1">>"Creates the desire." <img src="wwwy/Update01P/Update01P286.png" width=540px/> I grin at him. "Now you understand."<</talks>>
<<talks "Rhoswen" "nakedshy">>I look toward the barn door and yell out. "AHHHHH WE'RE HERE!"<</talks>>
<<talks "Gareth">>"Shhh! What are you doing? Are you crazy?"<</talks>>
<<talks "Rhoswen" "nakedhavingsex1">>Instead of saying anything I push him back down and straddle him. His cock is already hard again. "See how hard you are? You know I'm just playing. You know it's Lunasong." I keep grinding back and forth... "But someone might have heard... mhhh... someone could still walk in. Someone could still judge." <img src="wwwy/Vids/Vids34.webp" width=400px/> "The taboo is still real. Nhhh... We just get to play with it. Because it's Lunasong. It's only acceptable now. Only... Mhhhh" his cock feels so thick in me.<</talks>>
<<talks "Rhoswen" "nakedhavingsex2">>"You feeling it? The passion building up?" <img src="wwwy/Update01P/Update01P287.png" width=400px/> Ohhh... His cock starts throbbing in me as I move my hips back and forth. "Yeah? You do?" He nods. "Ahhhh." I moan, not too loud. Not too quiet. Just enough to keep this risky fantasy going. Uhh... And he just got harder. "Nhhh... Fuck me..."<</talks>>
<<talks "Rhoswen" "nakedhavingsex3">>"Nhhhh..." He grabs my hips and starts thrusting upwards into me as I keep grinding. <img src="wwwy/Update01P/Update01P288.png" width=600px/> "Yes... Just like that... Mhhhh..." He's close! He's!<</talks>>
<<talks "Rhoswen" "nakedmoaning">>"AHHH!" <img src="wwwy/Update01P/Update01P289.png" width=700px/> Cumming inside me. "Yes! Give me all of it! Mhhhh!" Once he's done he collapses back onto the hay. I fall on top of him, breathing heavily. Hehe. That was fun.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set $day2EmoryWhatHappened = true>>\
<<nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForestNight.png')">>
<span id="POV">
<<link "<span class='pov-symbol'>⚧</span> POV (Submission)">>
<<replace "#POV">>
<<include "day2EmeryWhatHappenedEmery">>
<</replace>>
<</link>>
<<link "<span class='pov-symbol'>⚧</span> POV (NTR)">>
<<replace "#POV">>
<<include "day2EmeryWhatHappenedTommy">>
<</replace>>
<</link>>
</span>
<</nobr>>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForestNight.png')">>\
<<talks "Tommy" "thinking">>I get into the tent, Emery is sleeping. His breaths are calm, his hair rests loosely on his face. I almost don't want to wake him. <img src="wwwy/Update01P/Update01P320.png" width=600px/> He looks... I reach over and brush the hair from his eyes. What am I doing? Alright. Stop. I shake his shoulder.<</talks>>
<<talks "Emery" "boyworried">>"What?" He opens his eyes slowly.<</talks>>
<<talks "Tommy">>"Sir Jarek wants to see us." He looks confused. I don't know what it's about either. "Come on."<</talks>>
<<talks "Tommy" "serious">>We walk towards the campfire. Sir Jarek and Sir Borin stand around it. Finn is also here? Kneeling for some reason. Emery places her hand over her heart and bows. "You asked for me, sir!" <img src="wwwy/Update01P/Update01P295.png" width=600px/> Heh, always so proper.<</talks>>
<<talks "Sir Jarek">>"Kneel next to Finn." He tells Emo- "You too." Oh? O-ok.<</talks>>
<<talks "Tommy" "calm">>I kneel. Emery whispers something to Finn. <img src="wwwy/Update01P/Update01P296.png" width=600px/> We hear footsteps. Sir Malen walks up carrying a crate. He places the crate down and opens it. Are those... Elixir vials? What for?<</talks>>
<<talks "Sir Jarek" "looking">>"Did you get it?" <img src="wwwy/Update01P/Update01P297.png" width=600px/> He steps closer to see for himself.<</talks>>
<<talks "Sir Malen">>"I did. Wasn't easy. He wanted double to look the other way." Look the other way? What does that mean?<</talks>>
<<talks "Sir Jarek" "calm1">>"You'll have the coin once we reach the village. Cheer up. This is going to be fun." He takes a vial out and turns towards us. He raises his hand. Three straws? "Alright boys. Pick."<</talks>>
<<talks "Tommy" "angry">>"Why are we picking straws?" <img src="wwwy/Update01P/Update01P298.png" width=600px/> My voice shakes a little. Something in me tells me something is off.<</talks>>
<<talks "Sir Jarek" "smug2">>"The loser." He pauses. "Gets fucked." What?? Finn grabs a straw immediately. Shit! Two left! Should I just go for it? No.<</talks>>
<<talks "Tommy" "comforting">>I look over at Emery. "I'll let you choose Emery." Please don't pick the short one. He raises his hand and takes the one I would have picked. We show our straws and... Emery has the smallest. Oh no, I should have picked first.<</talks>>
<<talks "Sir Jarek" "smug1">>"Here." He offers the vial to Emery. A small pause. He kneels next to him. "You want to be a knight someday right?" <img src="wwwy/Update01P/Update01P300.png" width=600px/> "Did you know... a knight can make a knight. We've all done it when we were squires..." He gives a look to them. "Right?" Sir Malen and Sir Borin nod.<</talks>>
<<talks "Sir Jarek" "calm2">>"So. Here you go." Emery hesitates for a moment after reaching for it. A glimpse later, he changes. Sir Jarek immediately goes in and pulls h-her shirt off. <img src="wwwy/Update01P/Update01P344.png" width=600px/> Her breasts out in the cold air. I've thought about what she'd look like under there after the elixir so many times.<</talks>>
<<talks "Sir Jarek" "calm">>"We have a task for you, Emery." I see Emery's body straighten.<</talks>>
<<talks "Sir Jarek" "smug2">>"Make. Us. Cum."<</talks>>
<<talks "Tommy" "surprised">>She jumps to her left. Face flat. <img src="wwwy/Update01P/Update01P303.png" width=600px/> At the same time pulling down her own pants, revealing her ass to them. That's not her. The elixir is making her do that. That's not Emery. Right?<</talks>>
<<talks "Tommy" "blushing">>Sir Jarek mounts her. I see his huge throbbing cock going straight into-<</talks>>
<<talks "Emery" "nakedsexscared">>"Ehhhhhh!" <img src="wwwy/Update01P/Update01P305.png" width=600px/> His thick hard cock enters her ass in one full thrust. I want to move. To do something. I want to grab her and pull her away from this. But my body doesn't move. As Sir Jakek fucks Emery's ass he leans in and whispers something into his ear. "Ahhhhhh!" What did he say to him?<</talks>>
<<talks "Emery" "nakedsexcumming1">>"NHHHHH!!" After each thrust, she screams louder. "NH-NH-NH!" Her voice doesn't even sound like her anymore. "MOREEEE!" <img src="wwwy/Update01P/Update01P307.png" width=700px/> Mhhhhh. Why am I... still here?<</talks>>
<<talks "Sir Jarek" "looking">>"Guys. It's working even better than I thought it would." <img src="wwwy/Update01P/Update01P315.png" width=700px/> He starts thrusting faster.<</talks>>
<<talks "Emery" "nakedsexcumming2">>"F-F-F-FUCKKK!" She's losing herself. Every sound she makes, I feel a turn in my stomach. And lower than that, a twitch? <img src="wwwy/Update01P/Update01P316.png" width=600px/> No. Not now.<</talks>>
<<talks "Sir Jarek" "cumming">>"I'm cummminggg!" I watch his body tense and see Emery's face. <img src="wwwy/Update01P/Update01P317.png" width=600px/> And feel another twitch. Nhhh.. No. He pulls out.<</talks>>
<<talks "Emery" "nakedsexscared">>"AHhh!! AHHHH!!! AHH! Ah!" <img src="wwwy/Update01P/Update01P309.png" width=600px/> Sir Borin takes his place immediately. "NH! NH! NH! NH!" His pace is faster. "EH! EH! EH! EH!"<</talks>>
<<talks "Emery" "nakedsexcumming3">>"I WANT YOUR CUM!-" He covers her mouth. <img src="wwwy/Update01P/Update01P310.png" width=700px/> And cums deep into her. Oh no. My cock is fully hard. I should have left. I should have picked first. I must not cum to this. "I WANT YOUR C-"I musn't...<</talks>>
<<talks "Emery" "nakedsexcumming4">>Her hands spread her cheeks. What a sight... <img src="wwwy/Update01P/Update01P313.png" width=600px/> She needs more. Even I just look at Sir Mallen. Almos as if my look to him conveys aren't-you-going-to?<</talks>>
<<talks "Sir Malen" "serious">>"You know what we call little dicked girls like you? Sissies. That's what you are from now on." <img src="wwwy/Update01P/Update01P318.png" width=720px/> He says that to him. But then looks up at me, staring at me like what he said also applies to me. Fuck. No I didn't just found that arousing. Emery's screams. Everything.<</talks>>
<<talks "Sir Malen" "cumming">>"UGHHHHH!" He came? But he was looking at me? Gulp. I see his huge cock still buried deep between her asscheeks. Filling her.<</talks>>
<<talks "Emery" "nakedsexaftersex">>"More... please more..." They're done. All three. But she's still begging. <img src="wwwy/Update01P/Update01P314.png" width=600px/> "More... more..." I look down at my cock. Still hard... Twitching in my pants. At least I didn't cum.... at least... I didn't cum...<</talks>>
<span id="choice1"> \
<<link "From Emery's POV (Sumbission)">>\
<<goto "day2EmeryWhatHappenedEmery">>
<</link>>
</span>\
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeForestNight.png')">>\
<<talks "Emery" "boyworried">>The night air is cold against my skin as I sleep in my little tent. A day's way out of the elf village. <img src="wwwy/Update01P/Update01P294.png" width=600px/> I feel a hand on my shoulder, shaking me... "What?" I open my eyes and look up, it's Tommy, a fellow squire.<</talks>>
<<talks "Tommy">>"Sir Jarek wants to see us." What? Sir Jarek? I quickly grab my clothes and follow Tommy out of the tent.<</talks>>
<<talks "Emery" "boycalm">>We walk towards one of the campfires. I see two knights standing around it. Sir Jarek and Sir Borin. Warming their hands. As I get closer, I also see Finn, also a squire, kneeling next to the fireplace. "You asked for me, sir!" <img src="wwwy/Update01P/Update01P295.png" width=600px/> I place my hand over my heart and bow my head.<</talks>>
<<talks "Sir Jarek">>He points next to Finn. "Kneel next to Finn." Then points at Tommy. "You too."<</talks>>
<<talks "Emery" "boycalm1">>I kneel next to Finn and whisper. "What's going on?" He shrugs. <img src="wwwy/Update01P/Update01P296.png" width=600px/> We hear another set of footsteps approaching. It's Sir Malen! He walks up holding a crate.<</talks>>
<<talks "Sir Jarek" "looking">>"Did you get it?"<</talks>>
<<talks "Sir Malen">>"I did." He puts the crate down and opens the lid. It's a crate full of Elixir vials. <img src="wwwy/Update01P/Update01P297.png" width=600px/> "Wasn't easy. He wanted double to look the other way." Look the other way? What does he mean by that?<</talks>>
<<talks "Sir Jarek" "calm">>"You'll have the coin once we reach the village." Sir Malen nods. "Cheer up. This is going to be fun." He pats him on his shoulder. He takes one of the vials out of the crate and turns his attention towards us.<</talks>>
<<talks "Sir Jarek">>He raises his hand. In his hand he has three straws. "Alright boys. Pick."<</talks>>
<<talks "Tommy" "serious">>"Why are we picking straws?" <img src="wwwy/Update01P/Update01P298.png" width=600px/> There's a slight shake in his voice.<</talks>>
<<talks "Sir Jarek" "smug">>"The loser." He pauses. "Gets fucked." All three of us gasp. Fucked? He's joking. He has to be joking. Finn quickly takes one of the straws! This can't be happening.<</talks>>
<<talks "Tommy" "comforting">>"I'll let you choose Emery." That's sweet of him. I'm still thinking that all of this is just a jest. I reach in and grab a straw.<</talks>>
<<talks "Sir Jarek" "smug1">>"And lastly..." Tommy picks the last one. We show our straws to the knights. Oh no... I have the smallest straw.<</talks>>
<<talks "Emery" "boycalm3">>"Ha-ha. A funny jest, Sirs!" I try to sound cheerful, to make it seem like I'm playing along. But nobody is laughing. <img src="wwwy/Update01P/Update01P299.png" width=600px/> Instead all three of them are lowering their pants.<</talks>>
<<talks "Sir Jarek" "curious">>"Here." W-w-what? He shakes his hand holding the vial towards me. N-no. He kneels down, placing his arm onto my shoulder. <img src="wwwy/Update01P/Update01P300.png" width=600px/> "You want to be a knight someday right?" I'm still shocked, my mouth half open.<</talks>>
<<talks "Sir Jarek" "calm">>"Right Emery?" His tone is calm and reassuring. "Did you know... a knight can make a knight." W-what is he saying? That's not what I- "We've all done it when we were squires." He turns his head towards Sir Malen and Sir Borin. "Right?" They nod, but seeing how taken back they are, I don't believe them.<</talks>>
<<talks "Sir Jarek" "calm1">>"So. Here you go." He puts the Elixir in my palm and squeezes my fingers around it. He raises my hand up to my lips. "Drink." My heart is beating so fast right now. I gulp the vial down, feeling it go down my throat. Almost immediately I feel a strange warmth spreading through my body. "Mhhhh!" <img src="wwwy/Update01P/Update01P301.png" width=600px/> I feel my body changing.<</talks>>
<<talks "Sir Jarek" "calm2">>"Beautiful. Now let's get this off of you." He pulls my shirt over my head.<</talks>>
<<talks "Emery" "nakedcalm">>"Mhhhh." <img src="wwwy/Update01P/Update01P302.png" width=600px/> My breasts are out, cold evening wind chilling my nipples. No no no, I need to fight this. My mind tries to hold onto something else - anything else. But the elixir is warm inside me, making my thoughts fuzzy. Fuzzy except for one thing. I'm waiting. Waiting for the magic words. Don't. Say. Them.<</talks>>
<<talks "Sir Jarek" "smug2">>"We have a task for you, Emery." The words hit me like lightning. My body straightens. My mind becomes clearer than it's ever been. It wants to know. What's the task? What do I need to do?<</talks>>
<<talks "Sir Jarek">>"Make."<</talks>>
<<talks "Sir Jarek" "calm1">>"Us."<</talks>>
<<talks "Sir Jarek" "calm">>"Cum."<</talks>>
<<talks "Emery" "nakedworried">>My body moves before I can stop it. I fall to the side. Laying down on my stomach. My hands reach back and spread my cheeks on their own. <img src="wwwy/Update01P/Update01P303.png" width=600px/> No! I'm spreading my own ass for them? I feel someone climbing over me. I saw their cocks. They were huge. I've never done this. This is going to hurt. This is going to-<</talks>>
<<talks "Emery" "nakedsexscared">>"Ehhhhhh!" <img src="wwwy/Update01P/Update01P304.png" width=600px/> He's about to- "Nhhh!" A thick hard cock enters my ass in one full thrust. "Ahhhhhh!" Why doesn't it hurt? It should hurt, right? It should-<</talks>>
<<talks "Sir Jarek" "smug2">>"Wondering why it feels so good?" <img src="wwwy/Update01P/Update01P305.png" width=600px/> His deep voice vibrates against my ear. "Because you're working on your task." Working on my task? That's right. Each thrust is progress toward completing the task. And progress means-<</talks>>
<<talks "Emery" "nakedsexcumming2">>"NHHHHH!!" <img src="wwwy/Vids/Vids35.webp" width=700px/> A wave of pleasure floods my brain. "NH-NH-NH!" Each thrust sends another wave. My mind rewards me for working. Good boy! You're doing your task! Another wave! Another! Another! "MOREEEE!" I cry out.<</talks>>
<<talks "Sir Jarek" "looking">>"Guys. It's working even better than I thought it would." He starts thrusting faster. <img src="wwwy/Update01P/Update01P306.png" width=500px/> The waves speed up with him.<</talks>>
<<talks "Emery" "nakedsexnormal">>"F-F-F-FUCKKK!" <img src="wwwy/Update01P/Update01P307.png" width=700px/> Faster thrusts means faster progress. Faster progress means more rewards. The waves are stacking on top of each other. I can barely think. I can barely-<</talks>>
<<talks "Sir Jarek" "cumming">>"I'm cummminggg!" <img src="wwwy/Update01P/Update01P308.png" width=700px/> His seed fills my ass. And then it hits me. A wave unlike anything I've ever felt. Task complete. Objective achieved. My brain floods with pure bliss.<</talks>>
<<talks "Emery" "nakedsexnormal1">>"AHhh!! AHHHH!!! AHH! Ah!" He pulls out. No! No wait! I feel another cock taking his place. "NH! NH! NH! NH!" <img src="wwwy/Update01P/Update01P309.png" width=600px/> The waves start again. Each thrust is progress. Each thrust is reward. "EH! EH! EH! EH!" But it's different now. Usually I get a wave like this when I finish a task. After I've done sweeping a tent. Or fully polished an armor. But this task? Each thrust has its own wave. And they're stacking. Building up. Multiplying!!!<</talks>>
<<talks "Emery" "nakedsexcumming3">>"I WANT YOUR CUM! I WANT YOUR C—" <img src="wwwy/Update01P/Update01P310.png" width=700px/> He covers my mouth. I'm getting too loud. The camp might hear. But I can't help it!<</talks>>
<<talks "Emery" "nakedsexcumming4">>Another load fills my ass. Another quest done. The wave hits even harder than the first. Somehow... my hands move on their own. <img src="wwwy/Update01P/Update01P313.png" width=600px/> Spreading my cheeks wider. I need more. Please. I need to complete my task, it's so close. Last one...<</talks>>
<<talks "Sir Malen" "serious">>"You know what we call little dicked girls like you? Sissies." He says it just a second before thrusting in. "That's what you are from now on." <img src="wwwy/Update01P/Update01P312.png" width=600px/> I don't care. Call me whatever you want. Please start moving. Yes! Just don't stop. He's pumping me so hard. YES! What, he's already throbbing? "Fuck this whole feels too good." NO! Not yet! I want more! I want-<</talks>>
<<talks "Sir Malen" "cumming">>"UGHHHHH!" <img src="wwwy/Update01P/Update01P311.png" width=700px/> His cum fills me. The wave hits. Good... they're all done... The task is complete... All three of them. But...<</talks>>
<<talks "Emery" "nakedsexaftersex">>"More... please more..." What is happening to me? Why am I begging? I completed the task. It's done. Why do I- <img src="wwwy/Update01P/Update01P314.png" width=600px/> "More... more..." My body doesn't care that it's over. It wants that wave again. It needs it. And I realize with horror.<</talks>>
<<talks "Emery" "nakedsexaftersex1">>...<</talks>>
<<talks "Emery" "nakedsexaftersex2">>So do I.... "morheh.... morhh... moreh.."<</talks>>
<span id="choice1"> \
<<link "From Tommy's POV (Trans, NTR)">>\
<<goto "day2EmeryWhatHappenedTommy">>
<</link>>
</span>\
<span id="choice2"> \
<<link "Leave">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/startHomeBedroom.png')">>\
<<if $beenToKaysaLecture is false>>\
<<set $day2TheTwins = false>>\
<<set $beenToKaysaLecture = true>>\
<<talks "Inledya" "blushing1" "wwwy/Locations/OutsideHomeEvening.png">>I look at the building. The pamphlet in my hand. Am I really doing this? Here goes nothing.<</talks>>
<<talks "Inledya" "curious" "wwwy/Locations/kaysaClassroom.png">> I walk in and see about a dozen girls sitting in a half circle. I find a spot near the back. Ok. I'm here. <img src="wwwy/Update01P/Update01P321.png" width=600px/><</talks>>
<<talks "Kaysa" "flirting1">> "Welcome welcome welcome!" Kaysa walks in from a side door and scans the room. "First-timers, raise your hands." Quite a few hands go up. As I'm raising my hand she notices me and in a controlled soft tone says, "Seems like miracles do happen."<</talks>>
<<talks "Kaysa" "confident">>She turns back to adresses the class. "Tonight is the bonfire. Some of you already know what that means. Some of you don't." She pauses. "Let's get right to it. Clothes off!" Off!?<</talks>>
<<talks "Kaysa" "happy1">>"So." She reaches for the top string of her blouse. Pops it open. Slow. Another string. <img src="wwwy/Update01P/Update01P322.png" width=700px/> Lower... She's not rushing. Another... Her dress gives way and her breasts fall free. Gulp... She looks so-<</talks>>
<<talks "Kaysa" "nakedflirty">>"See? Nothing scary." <img src="wwwy/Update01P/Update01P323.png" width=400px/> She runs her hand down her stomach. "Your body is yours. Own it before you share it." Own it before you share it? "We'll go one by one."<</talks>>
<<talks "Kaysa" "nakedflirty1">>She walks up and stands in front of a student. "Your turn. Just the top. Go." <img src="wwwy/Update01P/Update01P324.png" width=600px/> The girl instead takes her tunic off fully. The girls around me giggle. "Show off... Next up." <</talks>>
<<talks "Nyssira" "nakedexcited">> She points to a student, is that Nyssira, who lives across the street from me? She also just stands up and immidietly takes everything off like the girl beforehand. <img src="wwwy/Update01P/Update01P325.png" width=400px/> Once again girls giggle around me. Some start to take off their clothes on their own without it being their turn.<</talks>>
<<talks "Kaysa" "nakedflirty2">> She raises her hand and points at me. "You're up Inledya!" Oh no. My turn. It should be easy. Just take my clothes off. But. I can't...<</talks>>
<<talks "Inledya" "down">>"I can't! I'm sorry!" <img src="wwwy/Update01P/Update01P326.png" width=600px/> I turn around and leave... No giggles after my peformance...<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $beenToKaysaLecture is true>>\
<<talks "Inledya" "curious">>I don't even want to think about that. I just couldn't do it.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeHealerRoom.png')">>\
<<set $day2EveningHelpHealer = true>>\
<<talks "Cedric" "panic">> BAM! Door opens. What now??? I look over and see- <img src="wwwy/Update01P/Update01P331.png" width=600px/> "Healer! Healer! I need help!"<</talks>>
<<talks "Mattyna" "surprised">> "What is it now? Another fever incident?" <img src="wwwy/Update01P/Update01P332.png" width=600px/> I continue plowing into the girl. I can't slow down, this girl needs help. <</talks>>
<<talks "Mattyna" "calm">>"Put your friend onto the table. I'll be right with you." <img src="wwwy/Update01P/Update01P333.png" width=400px/> <</talks>>
<<talks "Cedric" "worried2">> Cedric doesn't move. His eyes are glued to- <</talks>>
<<talks "Mattyna" "yelling">> "Oi! Eyes up here boy!" <img src="wwwy/Update01P/Update01P334.png" width=700px/> "Put him on the table!" I turn back to the helpless girl. "It's ok baby girl. I know. I know you need more. I'll quickly cum in you and be right back, ok dear?" I give a small kiss onto her forehead and speed up.<</talks>>
<<talks "Trissyna" "nakedsex">> She nods, giving me the cutest fuck-me-eyes-ever to proceed. "Nhhhhhh!!!!" <img src="wwwy/Update01P/Update01P335.png" width=600px/> "Nhhh!-Nhhh! Fuck!" She's getting close.<</talks>>
<<talks "Mattyna">>"I know baby. I know! I'm trying here. I'm trying. I'm going to make you cum baby. Don't worry." Her pussy walls tighten around my cock. Fuck! I'm going to cum too. I'm almost there.<img src="wwwy/Update01P/Update01P336.png" width=400px/> <</talks>>
<<talks "Trissyna" "nakedcumming">> "Nhhhhhhhh!!" <img src="wwwy/Update01P/Update01P337.png" width=400px/> I shoot my seed into her warm pussy. She's coming down. Huh... That's good. "I'll be right back baby girl."<</talks>>
<<talks "Mattyna" "confident">>"Alright, boys, what's wrong?" <img src="wwwy/Update01P/Update01P338.png" width=600px/> This better be quick. The girl needs some more attention.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/OutsideHome.png')">>\
<<set $day2TheTwins = true>>\
<<talks "Nyrelyth">>I can't believe I let her get to me again. <img src="wwwy/Update01P/Update01P362.png" width=700px/><</talks>>
<<talks "Mirelith">>"I took my tunic off first, twin!"<</talks>>
<<talks "Nyrelyth" "cuteangry">>"No you didn't!"<</talks>>
<<talks "Mirelith" "smug1">>"Yes I did!"<</talks>>
<<talks "Nyrelyth" "cuteangry1">>"No you didn't!"<</talks>>
<<talks "Mirelith" "jumpy">>"Yes I did!"<</talks>>
<<talks "Nyrelyth" "cuteangry2">>"No you didn't!"<</talks>>
<<talks "Mirelith" "smug">>"Fine! I'll prove it!" <img src="wwwy/Update01P/Update01P363.png" width=700px/><</talks>>
<<talks "Nyrelyth" "cuteangry">>"Fine! Do it! Do it right here on the street!"<</talks>>
<<talks "Mirelith" "smug2">>"I..." <img src="wwwy/Update01P/Update01P364.png" width=400px/> She falls into silence.<</talks>>
<<talks "Nyrelyth" "calm">>"That's what I thought! You're not bolder than me!" I place my finger on her forehead. "Get that through that dumb skull of yours."<</talks>>
<<talks "Mirelith">>"Oh yeah? I'm much more bolder than you."<</talks>>
<<talks "Nyrelyth" "calm1">>"I just proved you're not!"<</talks>>
<<talks "Mirelith">>"I'll show you." She scans the area and sees a young squire walking by. At least I think he is. Looks to frail to be a knight in my opinion. <img src="wwwy/Update01P/Update01P365.png" width=600px/>"Hey you! What's your name?"<</talks>>
<<talks "Finn">>"M-me? F-f-finn." The boy stops in front of us.<</talks>>
<<talks "Mirelith" "jumpy">>"Don't care. Come with me!"<</talks>>
<<talks "Nyrelyth">>"What are you doing?" She takes a step closer to the boy, grabs him by his arm and pulls him into an alleyway.<</talks>>
<<talks "Mirelith">>"See this?" She pulls the poor boy's pants down. <img src="wwwy/Update01P/Update01P366.png" width=600px/> "Mghh! Mghh! Mghh!" And starts deepthroating. "You seeing this? (Mghh..) (Mghhh..) Right in the alleyway."<</talks>>
<<talks "Finn" "blushing">>"Nhhh! So this is what it feels like. Ah!"<img src="wwwy/Update01P/Update01P367.png" width=600px/> <</talks>>
<<talks "Nyrelyth" "cuteangry1">>I can't let her win. "You can't even deepthroat properly." I cross my arms.<</talks>>
<<talks "Finn" "cute">>"S-she... can... uhhh!!" <img src="wwwy/Update01P/Update01P368.png" width=400px/><</talks>>
<<talks "Nyrelyth" "cuteangry">>"Shut up."<</talks>>
<<talks "Mirelith">>"Yeah? You think so? Show me how it's done then." Pfffttt. She really thinks I won't do it. "I know you won't!"<</talks>>
<<talks "Nyrelyth" "blowjob">>I get on my knees next to my sister. "Move." I push her off of him and take over. <img src="wwwy/Update01P/Update01P369.png" width=600px/> "MGHH! MGHH! MGHHH!"<</talks>>
<<talks "Finn" "curious">>"Holy Holy Light! AHHHH!" That's what I like to hear. I peek over from the corner of my eye to see my twin's reaction. <img src="wwwy/Update01P/Update01P370.png" width=600px/> Hehe. That's right.<</talks>>
<<talks "Mirelith" "cuteangry">>"Stop pretending! My throat is better!" She pushes me off. Fighting back to take over the cock. <img src="wwwy/Update01P/Update01P371.png" width=600px/> "Mgh! MGH! MGHH!!!"<</talks>>
<<talks "Finn" "cumming">>"Ohhhh! I'm cumming!!!" <img src="wwwy/Update01P/Update01P372.png" width=600px/> He cums into her mouth. And she's swallowing it all too.<</talks>>
<<talks "Mirelith">>"See.. Not only am I bolder than you. But I also give better head than you."<</talks>>
<<talks "Nyrelyth">>"You know very well I did much better than you."<</talks>>
<<talks "Mirelith" "cuteangry">>"Oh yeah? You want to go again?"<</talks>>
<<talks "Finn" "surprised">>"(pants) (pants) Wait... what? (pants) (pants)"<</talks>>
<<talks "Nyrelyth" "cuteangry1">>"Yeah let's fucking go!"<</talks>>
<<talks "Nyrelyth" "zoomin">>Many... many... cumshots later.<</talks>>
<<talks "Mirelith">>"Well? Who was better Finn?" <img src="wwwy/Update01P/Update01P373.png" width=700px/> <</talks>>
<<talks "Finn" "sleeping">>"(snores)"<</talks>>
<<talks "Mirelith" "smug1">>"Great... I was better!"<</talks>>
<<talks "Nyrelyth" "cuteangry2">>"No you weren't!"<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/homeKitchen.png')">>\
<<if $Day2talkingToDad is false>>\
<<set $Day2talkingToDad = true>>\
<<set $day2WhatFatherSawNTR = false>>\
<<talks "Visenya" "curious1">>I'm starving. Oh? "Hey dad!" <img src="wwwy/Update01P/Update01P328.png" width=600px/> Dad is sitting in the kitchen alone, eating. He hasn't answered me. "Dad?" Huh? He's just staring blankly at his food. "DAD!"<</talks>>
<<talks "Uuri" "curious">>"Oh? Dear, what is it?" he says with a confused look on his face like he wasn't just completely spacing out.<</talks>>
<<talks "Visenya">>"You ok? You've been like that for a while now," I ask as I sit next to him.<</talks>>
<<talks "Uuri" "happy">>"Oh! Oh! Yes! Yes! Just work, honey," he says with a smile. "Just... work..." He falls back to silence, his gaze back on his food.<</talks>>
<<talks "Visenya" "serious">>"Emm.. Dad?" <img src="wwwy/Update01P/Update01P329.png" width=700px/> He doesn't reply. "Dad? (Sigh)... whatever." I should get myself ready for tonight's dinner at Ornes.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<elseif $Day2talkingToDad is true>>\
<<talks "Visenya" "curious">>Dad is still sitting behind the table. Thinking... hmm...<img src="wwwy/Update01P/Update01P328.png" width=600px/> <</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<</if>><<set document.body.style.backgroundImage = "url('wwwy/Locations/homeFarm.png')">>\
<<set $day2WhatFatherSawNTR = true>>\
<<talks "Uuri" "happy">>"Morning Maarne!" <img src="wwwy/Update01P/Update01P340.png" width=600px/> I wave at my fellow farmer. "Ready to get your hands dirty?"<</talks>>
<<talks "Maarne" "happy1">>"Always, Uuri. Always... You know we should actually take some trees down. Expand the land... I already talked to the others, they agreed." He says that as he's stretching his arm across the field. "What do you think? We could take that side over there." He offers an axe to me.<</talks>>
<<talks "Uuri" "smug">>"Sure, lead the way."<</talks>>
<<talks "Uuri" "curious">>... (Time passes) ...<</talks>>
<<talks "Uuri">>"Hey Maarne." He looks over. "What do you think about all this... humans and all that?" <img src="wwwy/Update01P/Update01P341.png" width=400px/> I swing my axe into a tree, the thud echoes in the quiet morning.<</talks>>
<<talks "Maarne" "happy">>"Humans? The knights? Oh, it's great!" From all the time I've know him, he sounds genuine. "The only problem is their camp. Too small. Not enough space."<</talks>>
<<talks "Uuri" "curious">>"Too small? What do you mean by that?" I pause, leaning on my axe.<</talks>>
<<talks "Maarne" "calm">>"Well, a lot of them are being hosted by families in the village." Hosted? He swings his own axe. "Take Asyn, for example. He's got one living with them. Helps his wife out with cooking, from what I hear."<</talks>>
<<talks "Uuri" "smug">>"Cooking?" I look at him, confused.<</talks>>
<<talks "Unknown Woman">> "Ah! Ah! Ah!" <img src="wwwy/Vids/Vids36.webp" width=600px/> "Yes! Nhhhhh!!!" <</talks>>
<<talks "Maarne" "calm1">>"Yeah, cooking."<</talks>>
<<talks "Maarne" "calm2">>"Gramy too, has one. Helps with painting."<</talks>>
<<talks "Uuri" "curious">>"Painting?"<</talks>>
<<talks "Maarne" "calm">>"Yeah. A dark one. Very tall." He raises his hand to emphasize how tall he is. "Helps with ceilings and such."<</talks>>
<<talks "Unknown Woman">> "Oh... you... mkhhh..." <img src="wwwy/Update01P/Update01P342.png" width=700px/> "You're hitting me in.. Oh my... Faster! Faster!" <</talks>>
<<talks "Maarne">>"Linner as well."<</talks>>
<<talks "Uuri" "calm2">>"Linner too?"<</talks>>
<<talks "Maarne">>"Yeah. I don't know why though. Think his wife insisted. Not sure."<</talks>>
<<talks "Unknown Woman">> "At this rate you're going to put a baby in me." <img src="wwwy/Update01P/Update01P343.png" width=700px/> "(Chuckles) Alright. Alright. One more. But that's going to be the last, got it?" <</talks>>
<<talks "Uuri" "curious">>"Huh."<</talks>>
<<talks "Maarne" "calm1">>"Oh! And how could I forget, Orne."<</talks>>
<<talks "Uuri">>I almost drop my axe. "Orne? You don't say." I try to sound casual. "I'm actually... going to their place for dinner today."<</talks>>
<<talks "Maarne" "calm2">>"Well you can ask him about it yourself then." He pauses for a moment. "You know... I've been thinking of getting one myself. The roof needs repairing." He adds, "You should consider it too, Uuri." Hmmm... I'll think about it.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>
<<set document.body.style.backgroundImage = "url('wwwy/Locations/vericDinnerRoom.png')">>\
<<set $day2WhatWasTalkedAbout = true>>\
<<talks "Alcina" "flirting">>"(chuckles).. You don't say Reyna." <img src="wwwy/Update01P/Update01P345.png" width=700px/> Ohh... how nice it feels to have guests over.<</talks>>
<<talks "Uuri" "curious">>"So Orne. Did I hear correctly that you are housing a human?" How does he know that? I try to stay calm. Breathe, just breathe.<</talks>>
<<talks "Orne" "calm">>"Yes we have. Works wonders that boy. Yesterday for example he took care of the wheel on the cart. You know the one that I asked your help with. Yeah... he fixed that." He looks at me. "What else did he do? Did he do something today?"<</talks>>
<<talks "Alcina" "nakedsex">>"Ah! Ah! Ah!" <img src="wwwy/Update01P/Update01P228.png" width=700px/>"Just like that! Just like that!"<</talks>>
<<talks "Orne" "curious">>"Honey? You with us?" He looks at our guests and laughs, to make everyone comfortable. "Did he help with something today?"<</talks>>
<<talks "Alcina" "nakedcumming2">>"Fuuuckkk!!"<img src="wwwy/Update01P/Update01P346.png" width=700px/>"This cock is so much better!"<</talks>>
<<talks "Alcina" "worried1">>"T-today?" Nothing else seems to be... "I uhh.. today.. we uh.." in my mind than-<</talks>>
<<talks "Alcina" "nakedcumming">>"Cummmingg!"<img src="wwwy/Update01P/Update01P347.png" width=700px/><</talks>>
<<talks "Orne" "worried">>"Is everything ok?" He says with a worried tone.<</talks>>
<<talks "Reyna" "smug">>"Does the knight sleep in your barn?" She jumps in with her question. Deflecting my husband's gaze from me.<</talks>>
<<talks "Orne">>"Oh. Yes, he does. I asked him to join us but, he refused. Told me his hunger is filled for today. Heh. Good lad."<</talks>>
<<talks "Alcina" "worried">>I look at Reyna. Why did she help me out? She knows. I can tell from the look she's giving me now that she knows. We hear footsteps coming.<</talks>>
<<talks "Reyna">>"Hehehe. That was fast." <img src="wwwy/Update01P/Update01P191.png" width=400px/> "What's wrong, honey?"<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span><<set document.body.style.backgroundImage = "url('wwwy/Locations/vericBedroom.png')">>\
<<set $day2VericPracticed = true>>\
<<talks "Veric" "cute">>Inledya is coming over. Heh. Funny. My arms are already sweating like crazy.<</talks>>
<<talks "Alcina" "flirting1">>"Hey. You alright, darling?" <img src="wwwy/Update01P/Update01P351.png" width=400px/> Mom peeks through the doorway.<</talks>>
<<talks "Veric">>"Yeah. Yeah. Just... I don't know. Does she really like me?"<</talks>>
<<talks "Alcina" "talking">>"What do you mean?"<</talks>>
<<talks "Veric" "curious">>"I heard you talking to her mom. It's a setup, right?"<</talks>>
<<talks "Alcina" "flirting">>"(chuckles) Of course it is. You two have had eyes for each other for quite a while now." I don't know what to say, so I just look to the side.<</talks>>
<<talks "Alcina" >>"Hey." She walks into the room and sits next to me. <img src="wwwy/Update01P/Update01P352.png" width=700px/> "She likes you as well, ok." Of course you would say that...<</talks>>
<<talks "Alcina" "shy">>"Look. I see you're all worried and nervous." Her hand moves to my leg. "Tell me, what is it? Is it just about the dinner?"<</talks>>
<<talks "Veric" "blushing">>"(Sigh)... No. A bit maybe." It's the sex...<</talks>>
<<talks "Alcina" "shy1">>"Ohh... I get it. You're nervous about plowing her, is that it?" How does she always know? I nod...<</talks>>
<<talks "Alcina" "flirting1">>"Hehe... You have nothing to worry about. I taught you about the kissing, didn't I?" <img src="wwwy/Update01P/Update01P353.png" width=700px/> She squeezes my thigh gently. "You haven't forgotten, have you?"<</talks>>
<<talks "Veric" "surprised">>"No, of course I haven't-"<</talks>>
<<talks "Alcina" "aroused">>"Show me then." W-wha- <img src="wwwy/Update01P/Update01P354.png" width=700px/> "Mhhhh..." She kisses me. Once we break the kiss, she slaps me on my chest.<</talks>>
<<talks "Alcina">>"Come on. Where's the tongue trick I showed you? Again." <img src="wwwy/Update01P/Update01P355.png" width=700px/> This time I lean in first. I feel her tongue swirling against mine. "Mhhhh..." Once we break it- "That's my boy. You do that, and from there it's easy going." She stands up and makes her leave.<</talks>>
<<talks "Alcina" "calm">>Just as she is about to leave, something hits her like lightning. "Oh. But Inledya might need something more to get her really into it... hmmm... You could finger her first."<</talks>>
<<talks "Veric" "blushing">>"F-finger her?" She nods. "Emmm... o-ok." I raise my hand, holding one finger up. "Like this right?" I crunch my finger back and forth.<</talks>>
<<talks "Alcina" "worried">>"Oh boy." She comes back in and sits next to me. "Kaysa! You can go and-"<</talks>>
<<talks "Veric">>"I'm going to be working evening shifts Mom. I told you. They pay triple for working at evenings."<</talks>>
<<talks "Alcina" "worried1">>"Oh no, this is bad." She falls into a deep thought. "Fine! I'll show you myself, ok?" <img src="wwwy/Update01P/Update01P356.png" width=700px/> She takes my hand and shoves it between her legs.<</talks>>
<<talks "Veric" "blushing">>"M-mom." <img src="wwwy/Update01P/Update01P357.png" width=400px/><</talks>>
<<talks "Alcina">>"Shush. We need to fix that one finger... whatever you call that. Now focus! You feel that?" I feel it. Moms oozing pussy. With her hands she adjusts my fingers, showing me where to touch. Giving me a solid 10 minute lecture as my hand stays on her pussy...<</talks>>
<<talks "Alcina" "aroused">>"Now move them..." I start moving my fingers. <img src="wwwy/Update01P/Update01P358.png" width=600px/> "Mhhh... Yes! You got it!"<</talks>>
<<talks "Alcina" "aroused1">>I did? I have no clue what I'm doing but... <img src="wwwy/Update01P/Update01P359.png" width=700px/> "Mhhhh.. Just like that..."<</talks>>
<<talks "Alcina" "panic1">>Should I stop? Should I- "Stop!"<</talks>>
<<talks "Alcina" "panic">>"I'm sorry I didn't mean to yell at you. It's just. Teaching is one thing and... doing it is another." She stands up. "Even though it's Lunasong, it's still a bit..." I nod, letting her know I get it.<</talks>>
<<talks "Alcina" "flirting1">>"Alright. I'm just going to go check up on our guest. He's at the barn right?" The knight? I nod at her. She leans in and kisses me on the forehead. <img src="wwwy/Update01P/Update01P360.png" width=700px/> "You'll be fine darling." And she takes off.<</talks>>
<span id="choice1"> \
<<link "Continue">>
<<run document.body.style.backgroundImage = "">>
<<goto "MainRoom">>
<</link>>
</span>