<<set $location to "Road">>
<<set $locationImages to "Road">>
<div id="intro-screen">
<img src="images/misc/logo.webp" width="200px">
<h1><u>The Road Trip</u></h1>
<h2>A trip for two, LA to Florida, 3.000 miles from home. Every choice you make will shape the journey, your relationship, and your future together.</h2>
<p>Support me on: <a href="https://www.patreon.com/AnonDux1/">Patreon</a> or <a href="https://anondux.fanbox.cc/">FANBOX!!!</a></p>
<br>
<p>Disclaimer: This game is for mature audiences, if you are not 18 years old or older then please close the tab or [[GET OUT OF HERE!!!|GETOUT!!!]]</p>
<label> Your name is <<textbox "$name" Riley>></label>
<<button "Continue">>
<<goto "Packing1-1">>
<</button>>
</div><<set $affection = 50>> <!-- Start at 50, neutral -->
<<set $lust = 50>>
<<set $respect = 50>> <!-- Lust level -->
<<set $mc = "John">> <!-- Default name if not renamed -->
<<set $locationImages to {
"Home": "images/post/home.webp",
"Beach": "images/post/beach.webp",
"Road": "images/post/road.webp",
"Caliroad": "images/post/caliroad.webp",
"Big Bear Lake": "images/post/bbl.webp",
"Highway": "images/post/bbl.webp",
// Add more locations as needed
}>>
<<set $deptitem = []>>
<<set $firstdest to []>>
<div id="sidebar">
<div class="sidebar-stats">
<div class="sidebar-header">Jane's Stats</div>
<div class="sidebar-value">Affection: <<print $affection>></div>
<div class="sidebar-value">Lust: <<print $lust>></div>
<div class="sidebar-value">Respect: <<print $respect>></div>
</div>
</div>
<div class="support-links-container">
<div class="support-links">
<a href="https://anondux.fanbox.cc/">
<img src="images/FANBOX.webp" width="80" alt="FANBOX">
</a>
<a href="https://www.boosty.to/AnonDux">
<img src="images/boosty.webp" width="80" alt="Boosty">
</a>
<a href="https://www.paypal.me/anondux" class="downward">
<img src="images/pp.webp" width="80" alt="PayPal">
</a>
</div>
</div>
#sidebar {
padding: 7px; /* Increased padding for better spacing */
background-color: rgba(0, 0, 0, 0.7); /* Black tinted background */
border-left: 4px solid #3498db; /* A bolder, colored left border */
font-family: "Highway Gothic", sans-serif;
position: relative;
z-index: 2;
width: 200px; /* Adjusted width for more content space */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
border-radius: 8px; /* Rounded corners for a modern feel */
}
/* Style for sidebar stats */
.sidebar-stats {
margin-bottom: 20px;
}
/* Header style */
.sidebar-header {
font-weight: bold;
font-size: 1.5em; /* Larger font size for headers */
margin-bottom: 15px;
color: #3498db; /* Header color matching the border */
text-transform: uppercase; /* Uppercase for a bold look */
}
/* Value style */
.sidebar-value {
font-size: 1.2em; /* Slightly larger for better readability */
margin-bottom: 10px;
color: #ecf0f1; /* Light gray for better contrast against black */
}
/* Optional hover effect for values */
.sidebar-value:hover {
color: #3498db; /* Change color on hover for interactivity */
cursor: pointer; /* Pointer cursor to indicate interactivity */
}
/* Container for support links */
.support-links-container {
background-color: rgba(0, 0, 0, 0.7); /* Dark background for the container */
border-radius: 12px; /* Rounded corners */
padding: 15px; /* Padding around the links */
margin-top: 20px; /* Space above the container */
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}
/* Styling for the support links */
.support-links {
display: flex; /* Use flexbox for alignment */
justify-content: space-around; /* Distribute space evenly */
align-items: flex-start; /* Align items at the start */
}
/* Styling for the images */
.support-links img {
width: 80px; /* Ensure all images have the same width */
border-radius: 8px; /* Rounded corners for a modern look */
transition: transform 0.2s, box-shadow 0.2s; /* Animation for hover effect */
}
/* Hover effect for the images */
.support-links a:hover img {
transform: scale(1.1); /* Slightly enlarge the image */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}
/* Adjust the position of one icon */
.support-links a.downward {
position: relative;
margin-top: 90px; /* Move this icon down */
margin-left: -90px;
}
<div id="sidebar">
<div class="passport-container">
<img src="images/passport.webp" alt="Passport" id="passportImage" />
<div id="statsDisplay">
<h2>Jane's Stats</h2>
<img id="gfImage" src="images/melody.webp" alt="Girlfriend" height=200px />
<div class="stats">
Affection: $affection
Curiosity: $curiosity
Lust: $lust
Respect: $respect
</div>
<div id="personality" style="font-family: 'Highway Gothic';">Personality: $personality</div>
</div>
</div>
</div><div id="story-banner" class="story-banner">
<<if $location is "Home">>
<img id="locationImage" src="images/post/home.webp" alt="Current Location">
<<elseif $location is "Beach">>
<img id="locationImage" src="images/post/beach.webp" alt="Current Location">
<<elseif $location is "Road">>
<img id="locationImage" src="images/post/road.webp" alt="Current Location">
<<elseif $location is "California">>
<img id="locationImage" src="images/post/caliroad.webp" alt="Current Location">
<<elseif $location is "Gas Station">>
<img id="locationImage" src="images/post/gstation.webp" alt="Current Location">
<<elseif $location is "Big Bear Lake">>
<img id="locationImage" src="images/post/bbl.webp" alt="Current Location">
<<elseif $location is "CA - AZ Highway">>
<img id="locationImage" src="images/inc/highway1/highway1.webp" alt="Current Location">
<<elseif $location is "Outskirts of Phoenix">>
<img id="locationImage" src="images/post/outphoenix.webp" alt="Current Location">
<<else>>
<img id="locationImage" src="images/post/default.webp" alt="Current Location">
<</if>>
<div class="location-title">Location: $location</div>
</div><div id="intro-screen">
<img src="images/misc/getout.webp" width=600px>
<h1>UNINSTALL OR SHE'LL KICK YOUR ASS!!!</h1>
</div>
<<script>>
// Check if jQuery is loaded
if (typeof jQuery !== 'undefined') {
console.log("jQuery is loaded!");
// Display message in the passage
$("body").append("<p>jQuery is loaded!</p>");
} else {
console.log("jQuery is NOT loaded.");
// Display message in the passage
$("body").append("<p>jQuery is NOT loaded.</p>");
}
<</script>>
<<set $location to "Home">>
<<set $locationImages to "Home">>
<div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<img "images/post/street.webp" "300px" "300px">><</img>>
<blockquote>Just another quiet Monday morning. The birds are chirping, their song filling the stillness of the day. The birds are chirping, their song pierced through the rustle of leaves.</blockquote>
<blockquote>From the industrial area, you can see smoke rising into the sky. Nothing seems to stop their relentless pace, be it the lockdown, the weekend, hell maybe not even the apocalypse itself would slow them down.
</blockquote>
<blockquote>The clock reads 7 AM. It's very early in the day.</blockquote>
<blockquote>And you're ready to go...</blockquote>
<blockquote>When she's here, [[that is...|Packing1-2]]</blockquote>
</div></div>/* Hides the story title */
#story-title {
display: none; /* Hides the element */
}
#sidebar {
padding: 7px; /* Increased padding for better spacing */
background-color: rgba(0, 0, 0, 0.7); /* Black tinted background */
border-left: 4px solid #3498db; /* A bolder, colored left border */
font-family: "Highway Gothic", sans-serif;
position: relative;
z-index: 2;
width: 200px; /* Adjusted width for more content space */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
border-radius: 8px; /* Rounded corners for a modern feel */
}
/* Style for sidebar stats */
.sidebar-stats {
margin-bottom: 20px;
}
/* Header style */
.sidebar-header {
font-weight: bold;
font-size: 1.5em; /* Larger font size for headers */
margin-bottom: 15px;
color: #3498db; /* Header color matching the border */
text-transform: uppercase; /* Uppercase for a bold look */
}
/* Value style */
.sidebar-value {
font-size: 1.2em; /* Slightly larger for better readability */
margin-bottom: 10px;
color: #ecf0f1; /* Light gray for better contrast against black */
}
/* Optional hover effect for values */
.sidebar-value:hover {
color: #3498db; /* Change color on hover for interactivity */
cursor: pointer; /* Pointer cursor to indicate interactivity */
}
/* Container for support links */
.support-links-container {
background-color: rgba(0, 0, 0, 0.7); /* Dark background for the container */
border-radius: 12px; /* Rounded corners */
padding: 15px; /* Padding around the links */
margin-top: 20px; /* Space above the container */
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}
/* Styling for the support links */
.support-links {
display: flex; /* Use flexbox for alignment */
justify-content: space-around; /* Distribute space evenly */
align-items: flex-start; /* Align items at the start */
}
/* Styling for the images */
.support-links img {
width: 80px; /* Ensure all images have the same width */
border-radius: 8px; /* Rounded corners for a modern look */
transition: transform 0.2s, box-shadow 0.2s; /* Animation for hover effect */
}
/* Hover effect for the images */
.support-links a:hover img {
transform: scale(1.1); /* Slightly enlarge the image */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}
/* Adjust the position of one icon */
.support-links a.downward {
position: relative;
margin-top: 90px; /* Move this icon down */
margin-left: -90px;
}
.speech {
color: #f0f0f0; /* Lighter white for a softer look */
border: none; /* Removed border for cleaner look */
border-radius: 20px; /* Larger rounding for a softer appearance */
padding: 10px 12px; /* A little more padding for breathing room */
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Softer shadow with less intensity */
background-color: #333; /* Dark background for contrast */
font-family: 'Highway Gothic', sans-serif; /* Clean and modern font */
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Stronger text shadow for readability */
font-weight: 500; /* Slightly bolder for emphasis */
transition: all 0.3s ease-in-out;
background-color: rgba(51, 51, 51, 0.85); /* Slight transparency */
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); /* More depth */
}
.avatar {
display: block;
padding: 2px; /* Slightly more padding */
height: 80px; /* A bit smaller */
width: 80px; /* Maintain aspect ratio */
float: left;
margin: 0px 12px 0px 0px; /* Space out more from the text */
border: none; /* Optional if you want a cleaner look */
margin-right: 15px; /* Adjust margin for better spacing */
border-radius: 50%; /* Rounded avatar for a sleek look */
background-size: cover; /* Ensure avatar image fills the space */
}
.exposition {
color: white;
border: 3px ridge white;
padding: 10px 10px 10px 10px;
box-shadow: 5px 5px 3px Black;
border-right-width: 30px;
border-radius: 5px;
}
.choice {
color: white;
background-color: #751913
border: 1px solid white;
padding: 8px 8px 8px 8px;
box-shadow: 5px 5px 3px Black;
}
img {
}
.pic > img {
padding: 1px;
border: 2px solid white;
border-radius: 5px;
}
.passage img {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto;
}
.gf {
background: linear-gradient(135deg, #c94f83, #893559); /* Softer pinks */
background: rgba(201, 79, 131, 0.85); /* Slight transparency */
border: none; /* Light border to differentiate */
box-shadow: 0 0 10px rgba(201, 79, 131, 0.5); /* Soft glowing effect */
}
.gf .avatar {
background-image: URL("Images/gf/gfavatar.webp");
border: 2px solid rgba(255, 255, 255, 0.5); /* Soft border for avatar */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Light shadow for a 3D effect */
}
.mc {
background-color: #000000;
}
.mc .avatar {
background-image: URL("Images/headmc.webp");
}
@font-face {
font-family: 'Highway Gothic';
src: url('fonts/HWYGOTH.ttf') format('truetype');
}
body {
background-image: url("images/rtbg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
/* Full-screen translucent overlay */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5); /* Translucent black */
z-index: -1; /* Keeps the overlay behind all elements */
}
body::after {
content: '';
position: fixed; /* Use fixed positioning to cover the entire viewport */
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: -1; /* Keep it behind all content */
}
#intro-screen {
text-align: center;
color: white;
font-family: 'Highway Gothic';
background-color: rgba(0, 0, 0, 0.7); /* Optional translucent background */
padding: 20px;
}
h1 {
font-size: 3.5em; /* Large but manageable size */
text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7); /* Simple shadow for effect */
transition: transform 0.5s ease-in-out, text-shadow 0.5s ease-in-out; /* Smooth transition */
margin-bottom: 10px; /* Reduce bottom margin of h1 */
}
h1:hover {
transform: scale(1.05); /* Slight zoom on hover */
text-shadow: 2px 2px 12px rgba(255, 255, 255, 1); /* Light glow on hover */
}
h2 {
margin-top: 5px; /* Reduce top margin of h2 */
}
button {
padding: 10px 20px;
padding-left: 200px;
padding-right: 200px;
background-color: black;
color: white;
font-family: 'Highway Gothic';
font-size: 1.2em;
border: none;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Adds a nice shadow effect */
}
button:hover {
background-color: #333; /* Darker background when hovering */
}
button:active {
transform: scale(0.98); /* Slight scale effect on click */
}
#main-screen {
color: white;
font-family: 'Highway Gothic', sans-serif;
padding: 20px;
max-width: 90vw; /* Constrain to 90% of the viewport width */
height: 100vh; /* Full viewport height */
width: calc(100% - 20px); /* Adjust 200px to the width of your sidebar */
box-sizing: border-box; /* Include padding in the width calculation */
position: absolute; /* Can be fixed depending on how you want it to behave with scrolling */
top: 0;
left: 280px; /* Match this to your sidebar width */
right: 0;
bottom: 0;
width: calc(100% - 280px); /* Subtract the sidebar width */
}
#main-screen::before {
content: '';
position: absolute; /* Position it relative to the div */
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* Keep it behind the content of the div */
}
.overlay {
position: absolute; /* Position it relative to the div */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8); /* Translucent black */
z-index: -1; /* Ensure it's above the background but below the content */
}
.location-startingstreet {
background-image: url('images/street.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh; /* Make sure it covers the full viewport height */
background-color: rgba(0, 0, 0, 0.5); /* Translucent black */
z-index: -1;
}
/* Image container styling */
.pic {
display: flex;
justify-content: center; /* Center the image horizontally */
margin: 20px auto; /* Auto margins to center the container */
padding: 10px;
background-color: #2b2b2b; /* Dark gray background for the image container */
border-radius: 10px; /* Rounded corners for the container */
max-width: 500px; /* Set a max width for consistency */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
border: none;
}
/* Image itself */
.pic img {
width: 100%;
height: auto;
border-radius: 5px; /* Slightly rounded corners */
}
<div id="sidebar">
<div class="passport-container">
<img src="images/misc/passport.webp" alt="Passport" id="passportImage" />
<div id="statsDisplay">
<h2>Jane Russell</h2> <!-- Changed to her full name -->
<p>Date of Birth: January 21, 1998</p> <!-- Added date of birth -->
<img id="gfImage" src="images/misc/jane.webp" alt="Girlfriend" height=200px />
<div class="stats">
Affection: $affection
Lust: $lust
Respect: $respect
</div>
</div>
</div>
</div>
<div class="support-links-container">
<div class="support-links">
<a href="https://anondux.fanbox.cc/">
<img src="images/misc/FANBOX.webp" width="80" alt="FANBOX">
</a>
<a href="https://www.patreon.com/AnonDux1">
<img src="images/misc/patreon.webp" width="80" alt="Patreon">
</a>
<a href="https://www.paypal.me/anondux" class="downward">
<img src="images/misc/pp.webp" width="80" alt="PayPal">
</a>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
</div>
</div>passback
#statsDisplay {
display: none; /* Hidden by default */
background: url('images/paper.webp') no-repeat center center; /* Add your texture image */
background-size: cover; /* Cover the entire area */
border: 1px solid #8b5e3c; /* A brownish border to resemble a passport's paper */
border-radius: 8px; /* Slightly rounded corners for a passport page feel */
padding: 20px; /* Padding for spacing */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
position: fixed; /* Make the stats overlay relative to the entire screen */
top: 20%; /* Position it wherever you want relative to the screen */
left: 50%; /* Center horizontally on the screen */
transform: translateX(-50%); /* Horizontal centering adjustment */
z-index: 1000; /* Ensure it's on top of other content */
width: 350px; /* Passport width */
height: auto; /* Adjust based on content */
font-family: 'Times New Roman', serif; /* Classic font */
font-size: 16px; /* Slightly smaller font for a passport */
color: #3b3b3b; /* Dark grey color for the text */
text-align: center; /* Center-align for passport text style */
line-height: 1.3; /* Slightly closer vertical spacing */
background-size: cover; /* Ensure the texture covers the whole background */
}
#gfImage {
display: block; /* Ensures the image behaves like a block element */
height: 180px; /* Adjust the height as needed */
width: 140px; /* Adjust width to resemble a passport photo */
border-radius: 5px; /* Optional: slight rounding for the photo */
border: 2px solid #8b5e3c; /* A border around the photo to mimic a passport stamp */
margin-left: auto; /* Center image horizontally */
margin-right: auto; /* Center image horizontally */
margin-bottom: 10px; /* Space between the image and the stats */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow for added depth */
}
<div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You glance at your watch, the seconds dragging like hours.</blockquote>
<<speech "mc" "$name">>Take your time, baby...<</speech>>
<blockquote>With a sigh, you lean forward, mashing your forehead against the steering wheel. The world outside the car feels impossibly still, only a sound from a sprinkler coming from your next door neighbor accompanies your impatience.</blockquote>
<<speech "mc" "$name">>Take your time...<</speech>>
<blockquote>"Wait a moment," She said. it was nine moments ago and she's still nowhere in sight. You let out a long yawn, your drowsiness seeping through every word.</blockquote>
<<speech "mc" "$name">><i>Yawn...</i><</speech>>
<blockquote>For a second you closed your eyes. Then, out of nowhere, a sudden thwack echoes from the walkway. You snapped your eyes open and whips your head toward the source of the sound to see a...</blockquote>
<blockquote class="choice-blockquote">
<<link [[Book|Book]]>>
<<set $affection += 10>>
<<set $deptitem to "Book">><</link>>
<<link [[Running shoe|Shoe]]>>
<<set $affection += 5>>
<<set $lust += 5>>
<<set $deptitem to "Shoe">><</link>>
<<link [[Box...?|Box]]>>
<<set $lust += 10>>
<<set $deptitem to "Box">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote class="location">+10 Affection</blockquote>
<blockquote>You swivel your head toward the walkway and see Jane approaching the trunk, her newly obtained luggage is slightly swaying.</blockquote>
<<speech "mc" "$name">>Finally.<</speech>>
<blockquote>But that was not what attracted your attention, it was the sound.</blockquote>
<<img "images/inc/book.webp" "300px" "300px">><</img>>
<<speech "mc" "$name">>Oh...<</speech>>
<blockquote>Lying on the ground was one of the 'romance' novels she had began to read during the lockdown. Most of them you’ve come to associate with creepy giggles, horny sigh, and raunchy looks. Much to your dismay, sometimes, not most of the times.</blockquote>
<<speech "mc" "$name">>Jane, you dropped something.<</speech>>
<<speech "gfblur" "Jane">>Did I?<</speech>>
<<speech "mc" "$name">>A book, the page is dirty as hell.<</speech>>
<<speech "gfblur" "Jane">>Crap!<</speech>>
<blockquote>She scrambled to gather it up, juggling the luggage in her arms with comical determination.</blockquote>
<<speech "mc" "$name">>Just put your things in, [[I'll grab it for you.|Book1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote class="location">+10 Lust</blockquote>
<blockquote>You swivel your head towards the walkway and see Jane moving towards the trunk.</blockquote>
<<speech "mc" "$name">>Finally.<</speech>>
<blockquote>But it’s not her that catches your attention, it was the sound.</blockquote>
<<img "images/inc/ling.webp" "300px" "300px">><</img>>
<<speech "mc" "$name">>What's that...?<</speech>>
<blockquote>A box lies on the walkway. Looks like Jane dropped it.</blockquote>
<<speech "mc" "$name">>Jane, you dropped something.<</speech>>
<<speech "gfblur" "Jane">>Really?<</speech>>
<blockquote>Her voice is muffled, she's carrying something large. You decided to be a good boyfriend and [[pick up whatever she dropped.|Box1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote class="location">+5 Affection</blockquote>
<blockquote class="location">+5 Lust</blockquote>
<blockquote>You swivel your head toward the walkway and spot Jane heading toward the trunk.</blockquote>
<<speech "mc" "$name">>Finally.<</speech>>
<blockquote>But something else catches your attention, it was the sound.</blockquote>
<<img "images/inc/shoe.webp" "300px" "300px">><</img>>
<<speech "mc" "$name">>Wait a minute, that's mine.<</speech>>
<blockquote>That is, indeed, your running shoes, Jane is packing it in her luggage with the other one falling on the pavement.</blockquote>
<<speech "gfblur" "Jane">>What's yours?<</speech>>
<<speech "mc" "$name">>[[That!|Shoe1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You step out of the car and walk toward the book lying on the pavement. As you bend to pick it up, a gust of wind flips the cover, revealing the title.</blockquote>
<<speech "mc" "$name">>"Of Price and Brand" ...what in the world are you even reading?<</speech>>
<<speech "gfblur" "Jane">>It's romance, nerd, you should give it a read.<</speech>>
<<speech "mc" "$name">>Nah... I think I could live without that one.<</speech>>
<blockquote>Jane developed a vice for reading crappy 'romance' novels during the lockdown, much to your amusement, and occasional horror. Now, one of her life goals is to force you to join the cult. A goal that's sadly she’ll never going to achieve.</blockquote>
<<speech "gfblur" "Jane">>Your loss. It could help you improve your 'romancing' skill.<</speech>>
<<speech "mc" "$name">>Why? I got you already.<</speech>>
<blockquote>From behind the trunk, you hear a loud snort of laughter. [[Then, you walk toward the sound.|Book1-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>She slips back into the car just before you reach her position.</blockquote>
<<speech "gfblur" "Jane">>Come on! Miami's waiting!<</speech>>
<<speech "mc" "$name">>Sigh...<</speech>>
<blockquote>The trunk is packed to the brim, from clothes, books, snacks, the newly added bag and another massive bag buried at the bottom. Not only that but Jane must've added even more books during her last trip inside.</blockquote>
<<speech "mc" "$name">>Are you opening a library in Miami?<</speech>>
<<speech "gfblur" "Jane">>Why not? It's not like I got a job.<</speech>>
<<speech "mc" "$name">>Pft~!<</speech>>
<<speech "gfblur" "Jane">>Hey!<</speech>>
<blockquote>It had been a touchy subject before, but not anymore, it seems. With a small grin, you stuff her book back into the overflowing trunk.</blockquote>
<<speech "gfblur" "Jane">>Did you double-check YOUR stuff?<</speech>>
<<speech "mc" "$name">>Well...<</speech>>
<blockquote class="choice-blockquote">
<<link [[No, but who cares? We're running late.|Drive1-1]]>>
<<set $deptcheck to "No">><</link>>
<<link [[One more time never hurts.|Check1-1]]>>
<<set $respect -= 3>>
<<set $deptcheck to "Yes">>
<</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You open the front seat door and sit behind the wheel. Then, you turn your head toward her.</blockquote>
<<img "images/gf/gf1.webp" "400px">><</img>>
<<speech "gf" "Jane">>There you are~<</speech>>
<blockquote>Jane greets you with excitement. Despite everything that happened during this rough year, you’re glad to see that the adventurous glint is still there in her eyes.</blockquote>
<<speech "gf" "Jane">>Is there something on my face?<</speech>>
<<speech "mc" "$name">>Hmm... no... it's just good looking.<</speech>>
<blockquote>She gives you a curious look.</blockquote>
<<speech "gf" "Jane">>$name... is that your idea of flirting?<</speech>>
<blockquote>Flustered, you turn your head on the wheel.</blockquote>
<<if $deptitem is "Book">>
<<speech "gf" "Jane">>You should read "Of Price and Brand".<</speech>>
<<speech "mc" "$name">>...Fuck off.<</speech>>
<<elseif $deptitem is "Box">>
<<speech "gf" "Jane">>I could eat you up right now.<</speech>>
<<speech "mc" "$name">>S-Stop it.<</speech>>
<</if>>
<blockquote>She then pokes your cheek.</blockquote>
<<speech "mc" "$name">>H-Hey...<</speech>>
<<speech "gf" "Jane">>Heh~ [[you're cute.|Drive1-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote class="location">-3 Respect</blockquote>
<<speech "mc" "$name">>Another check wouldn't hurt.<</speech>>
<<speech "gfblur" "Jane">>Really? After all your sighing and moaning about me being slow you're the one who hasn't done anything?<</speech>>
<<speech "mc" "$name">>W-Well...<</speech>>
<blockquote>She's right.</blockquote>
<<speech "mc" "$name">>W-Well, t-this is the triple-check.<</speech>>
<blockquote>With a sheepish shrug, you begin rummaging through your luggage, checking for anything important you might have forgotten. The search is quick, but the result is alarming.</blockquote>
<<speech "mc" "$name">>...I forgot my phone.<</speech>>
<<speech "gfblur" "Jane">>...How?<</speech>>
<blockquote>Heart sinking, you rush back into the house. And there it is, your phone, still charging on the bedside table. And, of course, that also means you forgot the charger. You grab both, breathing a sigh of relief. For once, you’re actually grateful for her frank tone. Or else the trip could have been doomed from the start.</blockquote>
<<speech "mc" "$name">>Sigh...<</speech>>
<blockquote>Returning to the car, you find Jane putting mashing her head on the steering wheel, while giving the fakest yawn you've ever seen in your life towards your direction.</blockquote>
<<speech "gfblur" "Jane">>Yawn~ there you are~ you're probably the first human in the history to forgot their phone before a trip. Come on, [[get in,|Drive1-1]] you knucklehead.<</speech>>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You step out of the car and head toward the shoe, but a sudden gust of wind sends it tumbling farther down the walkway.</blockquote>
<<speech "mc" "$name">>Dammit...<</speech>>
<blockquote>The gust itself was rather large and it almost knocks you off balance, though it only made you stumble, but you had to take a moment to steady yourself.</blockquote>
<<speech "mc" "$name">>Fucking lockdown...<</speech>>
<blockquote>A small snorts of laughter can be heard from the car.</blockquote>
<<speech "gfblur" "Jane">>You've been flaky since the year nineteen-ninety-eight, baby. Don't blame the lockdown.<</speech>>
<blockquote>With the wind finally settling, you snatch the shoe off the ground and head back [[towards the trunk.|Shoe1-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>Jane slips into the car just as you approach the trunk.</blockquote>
<<speech "gfblur" "Jane">>Come on! Miami's waiting!<</speech>>
<<speech "mc" "$name">>Sigh...<</speech>>
<blockquote>The trunk is packed to the brim, from clothes, books, snacks, the newly added bag and another massive bag buried at the bottom. A closer look reveals she’s added even more of your stuff.</blockquote>
<<speech "mc" "$name">>W-Why...?<</speech>>
<<speech "gfblur" "Jane">>Why what?<</speech>>
<<speech "mc" "$name">>Tracksuit? Running shoes?<</speech>>
<<speech "gfblur" "Jane">>Come on, we’re not spending the whole trip cooped up in the car, right?<</speech>>
<<speech "mc" "$name">>...We're not going on any morning jog either.<</speech>>
<<speech "gfblur" "Jane">>That's not the point, besides, you'll need it against the wind.<</speech>>
<<speech "mc" "$name">>Ugh...<</speech>>
<<speech "gfblur" "Jane">>Heh~ anyway, did you double-checked your stuff?<</speech>>
<<speech "mc" "$name">>Well...<</speech>>
<blockquote class="choice-blockquote">
<<link [[No, but who cares? We're running late.|Drive1-1]]>>
<<set $deptcheck to "No">><</link>>
<<link [[One more time never hurts.|Check1-1]]>>
<<set $respect -= 3>>
<<set $deptcheck to "Yes">>
<</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You get out of the car and walk towards the box. Suddenly, a gust of wind blows, sending the contents of the box flying through the air.</blockquote>
<<speech "mc" "$name">>Oh...<</speech>>
<blockquote>It's... a sexy lingerie.</blockquote>
<<speech "mc" "$name">>...Why are we packing this?<</speech>>
<<speech "gfblur" "Jane">>Ohhh~ that one~ why not? Don’t you want to see me in it?<</speech>>
<<speech "mc" "$name">>W-Well, I mean...<</speech>>
<<speech "gfblur" "Jane">>Right, you'll rather see me without it. Without anything really.<</speech>>
<blockquote>You can hear the smirk in her voice. But before she can tease you further, a shushing sound comes from the neighbor’s lawn.</blockquote>
<<speech "gfblur" "Jane">>S-Sorry!<</speech>>
<blockquote>She quickly rushed into the car leaving you with a smirk as you [[pick up the lingerie.|Box1-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>She’s already inside the car when you walk over to the trunk. Probably mortified after being shushed by the neighbor.</blockquote>
<<speech "gfblur" "Jane">>C-Come on! M-Miami's waiting!<</speech>>
<<speech "mc" "$name">>Heh...<</speech>>
<blockquote>The trunk is packed to the brim, from clothes, books, snacks, the newly added bag and another massive bag buried at the bottom. Not only that but Jane must've added some frivolous and sexy clothes in there.</blockquote>
<<speech "mc" "$name">>We're not going to a honeymoon, are we?<</speech>>
<<speech "gfblur" "Jane">>A-Anytime could be a honeymoon if we want, baby.<</speech>>
<blockquote>You shake your head, sometimes it’s hard to have such a lusty girlfriend. Honestly, sometimes it’s just hard all the time.</blockquote>
<<speech "mc" "$name">>Heh...<</speech>>
<<speech "gfblur" "Jane">>What?<</speech>>
<<speech "mc" "$name">>N-Nothing, nothing.<</speech>>
<<speech "gfblur" "Jane">>Anyway, did you double-checked your stuff?<</speech>>
<<speech "mc" "$name">>Well...<</speech>>
<blockquote class="choice-blockquote">
<<link [[No, but who cares? We're running late.|Drive1-1]]>>
<<set $deptcheck to "No">><</link>>
<<link [[One more time never hurts.|Check1-1]]>>
<<set $respect -= 3>>
<<set $deptcheck to "Yes">>
<</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You clap your hands on the steering wheel, trying to cool the redness creeping up your face.</blockquote>
<<speech "mc" "$name">>O-Okay! Let's go!<</speech>>
<<speech "gf" "Jane">>Where are we going?<</speech>>
<<speech "mc" "$name">>...What?<</speech>>
<<speech "gf" "Jane">>What's our destination?<</speech>>
<<speech "mc" "$name">>...You know where we're going. You said it when I'm outside.<</speech>>
<<if $deptcheck is "Yes">>
<<speech "gf" "Jane">>You literally forgot your phone, $name. The least you can do is to make me sure that you remember the route.<</speech>>
<<speech "mc" "$name">>[[Sigh...|Drive1-3]]<</speech>>
<<else>>
<<speech "gf" "Jane">>I'm talking about the route! We talked about it last night, right? Might as well give it a little refresher.<</speech>>
<<speech "mc" "$name">>[[Okay.|Drive1-3]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>Jane hands you her phone, with the map app already open, so you can point out the route the two of you planned yesterday.</blockquote>
<<img "images/post/gas.webp" "400px" "400px">><</img>>
<<speech "mc" "$name">>First destination is the gas station, to refill and maybe grab something else for the road.<</speech>>
<blockquote>You glance at the map, but your thoughts drift to the mountain of snacks already crammed into the trunk.</blockquote>
<<speech "mc" "$name">>Keep the snack at a minimum though.<</speech>>
<<speech "gf" "Jane">>Sure~ but I don't think you could consider that place a destination.<</speech>>
<blockquote class="choice-blockquote">
<<link [[She's right, maybe you could skip it.|Drive1-4]]>>
<<set $respect -= 3>>
<<set $GSWrong = true>>
<</link>>
<<link [[No, it's a super necessary destination.|Drive1-4]]>>
<</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>She gives you a quick look.</blockquote>
<<if $GSWrong is true>>
<blockquote class="location">-3 Respect</blockquote>
<<speech "gf" "Jane">>What...? I'm just kidding.<</speech>>
<<speech "mc" "$name">>O-Oh...<</speech>>
<blockquote>She shakes her head slightly, her gaze returning to the map.</blockquote>
<<speech "mc" "$name">>A-Anyway, we'll be going to this place after that.<</speech>>
<<else>>
<<speech "mc" "$name">>After a quick refuel and buying some snacks we'll be going to this place.<</speech>>
<</if>>
<<speech "gf" "Jane">>What place?<</speech>>
<<img "images/post/bbl.webp" "400px">><</img>>
<<speech "mc" "$name">>Big Bear Lake.<</speech>>
<blockquote>Jane’s eyes light up at the mention of the lake.</blockquote>
<<speech "gf" "Jane">>Mmm~ mmm~ let's swim!<</speech>>
<blockquote class="choice-blockquote">
<<link [[S-Swimming...?|Drive1-5]]>>
<<set $affection -= 3>>
<<set $BBLWrong = true>>
<</link>>
<<link [[Shit! We can swim!?|Drive1-5]]>>
<<set $affection += 3>>
<<set $BBLRight = true>><</link>>
</blockquote>
</div>
</div><blockquote class="choice-blockquote">
<<link [[Maybe I could find farther gas station /-3 Respect|Drive1-4]]>>
<<set $respect -= 3>>
<<set $firstdest.push("GSWrong")>>
<<link [[No, it's a super necessary destination.|Drive1-4]]>>
<</link>>
</blockquote>
<div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<if $BBLWrong is true>>
<blockquote class="location">-3 Affection</blockquote>
<<speech "gf" "Jane">>Still scared of water?<</speech>>
<<speech "mc" "$name">>N-No...<</speech>>
<<speech "gf" "Jane">>Riiiigggghhhhtttt~<</speech>>
<blockquote>Her teasing tone digs just a little too deep, and you can't help but feel embarrassed.</blockquote>
<<speech "mc" "$name">>I-I'm more scared of the big bear.<</speech>>
<<speech "gf" "Jane">>Haha~!<</speech>>
<<elseif $BBLRight is true>>
<blockquote class="location">+3 Affection</blockquote>
<<speech "mc" "$name">>I didn't know we could swim.<</speech>>
<<speech "gf" "Jane">>Cool your horses, baby~ It's probably illegal at the moment.<</speech>>
<<speech "mc" "$name">>Aw crap.<</speech>>
<<speech "gf" "Jane">>I know, it's bullcrap I know.<</speech>>
<<speech "mc" "$name">>Is it because of the bears?<</speech>>
<<speech "gf" "Jane">>Hah!<</speech>>
<</if>>
<blockquote>You lift your finger from the Big Bear Lake marker on her phone screen and move it to another area.</blockquote>
<<speech "mc" "$name">>And finally, we end the first leg in Tucson.<</speech>>
<<speech "gf" "Jane">>Hmm~ mmm~ I guess you remember the route after all.<</speech>>
<blockquote>Her voice carries a playful satisfaction, and you smirk, feeling a little proud of yourself.</blockquote>
<<speech "gf" "Jane">>But is that really all?<</speech>>
<<speech "mc" "$name">>What?<</speech>>
<blockquote>Without another word, she swipes her phone screen and points to a rather nondescript rest area in the [[middle of nowhere.|Drive1-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<speech "mc" "$name">>...Yes?<</speech>>
<blockquote>There's really nothing in that area, just a simple restroom in the middle of the highway. You turn to her wondering what she's meantt.</blockquote>
<<img "images/gf/gf2.webp" "400px">><</img>>
<<speech "mc" "$name">>Mmhh~!<</speech>>
<<speech "gf" "Jane">>Heheh~ don't act like you never seen my boobs before.<</speech>>
<<if $deptitem is "Box">>
<<speech "mc" "$name">>D-Do you want to get screamed at by Mr. Smith again?<</speech>>
<<speech "gf" "Jane">>O-Oh...<</speech>>
<<else>>
<blockquote>You slowly turns your head and look at her perfectly shaped boobs.</blockquote>
<<speech "gf" "Jane">>Hehe~ Put that place as another stop, then.<</speech>>
<</if>>
<blockquote>She tucks her tits back in.</blockquote>
<<speech "gf" "Jane">>One of the joy of traveling is finding a wild place for having fun. You'll never guess just how many times I caught naughty perverts sneaking to join the mile-high club.<</speech>>
<blockquote class="choice-blockquote">
<<link [[I guess we could fit that place in...|Drive1-7]]>>
<<set $affection +=2>>
<<set $lust +=5>>
<<set $extrafirststop = true>>
<</link>>
<<link [[L-Let's just do it in the hotel room later.|Drive1-7]]>>
<<set $affection -=3>>
<<set $lust +=5>>
<<set $extrafirststop = false>>
<</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<if $extrafirststop is true>>
<blockquote class="location">+5 Affection</blockquote>
<blockquote class="location">+5 Lust</blockquote>
<<speech "gf" "Jane">>Mmm~ you're getting the vibe of a road trip now, baby.<</speech>>
<<speech "mc" "$name">>Yeah...<</speech>>
<<speech "gf" "Jane">>I'm sure we'll find more spots like this, from Cali all the way to Florida~<</speech>>
<blockquote>After being locked inside your house for an entire year, you can't deny the thrill of doing something a little more daring.</blockquote>
<<elseif $extrafirststop is false>>
<blockquote class="location">+5 Lust</blockquote>
<blockquote class="location">-3 Affection</blockquote>
<<speech "gf" "Jane">>Hmph~ what a bummer. I thought being locked up for a year would make you a little more daring.<</speech>>
<blockquote>She pouted,</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<<speech "gf" "Jane">>...Just kidding, babe! Come on! We lived together for nearly year now, you know I'm just teasing.<</speech>>
<<speech "mc" "$name">>Sigh... I know, I know.<</speech>>
<</if>>
<blockquote>The two of you go quiet for a moment before you glance at her [[one last time.|Drive1-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<img "images/gf/gf1.webp" "400px">><</img>>
<<speech "mc" "$name">>So?<</speech>>
<<speech "gf" "Jane">>So?<</speech>>
<<speech "mc" "$name">>Are we ready?<</speech>>
<blockquote>She smirks, her eyes lingering on your face.</blockquote>
<<speech "gf" "Jane">>Not yet, look outside.<</speech>>
<<speech "mc" "$name">>Huh?<</speech>>
<blockquote>You turn around, curiosity piqued by her words, but you see nothing unusual.</blockquote>
<<speech "gf" "Jane">>[[Heh~|Drive1-9]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<vid "Images/gf/gfs1.webm">>
<blockquote>You turn back just in time for her to pull you into a light but unexpected kiss.</blockquote>
<<speech "gf" "Jane">>Now we're ready.<</speech>>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You can feel blush spreading on your cheeks.</blockquote>
<<speech "mc" "$name">>L-Let's go...<</speech>>
<<speech "gf" "Jane">>Where's your spirit?<</speech>>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You take a deep breath, steadying yourself.</blockquote>
<<speech "mc" "$name">>[[LET'S FUCKING GOOOOOOO~!!!|Opening1-1]]<</speech>>
</div>
</div><<set $location to "Road">>
<<set $locationImages to "Road">>
<div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<img src="images/misc/logo.webp" width="200px">
<h1><u>The Road Trip</u></h1>
<blockquote>Welcome to the first release of my new project, The Road Trip. As the title might suggest, the game will be about a road trip, to be exact from LA to Miami, in which the couple will face adversities, hurdles, and temptation that would impact their relationship.</blockquote>
<blockquote>Like all my previous projects, this game is mainly an NTR project, BUT unlike my other games that was mostly kinetic, this game is open ended as your choices really does matter, you can end the game without her or you cheating on each other.</blockquote>
<blockquote>This will be a big project that will take time to develop, so unlike Locked Down, which I somehow finished in an update / two weeks schedule, this might actually take a monthly release, I hope I will be faster than that but we'll see. So if you like the game and want to actively support the development then please subscribe to my <a href="https://www.patreon.com/AnonDux1/">Patreon</a> or <a href="https://anondux.fanbox.cc/">FANBOX.</a> Thank you.</blockquote>
<blockquote>Anyway, enough talking, let's go back [[on the road.|Opening1-2]]</blockquote>
</div>
</div><<set $location to "California">>
<<set $locationImages to "Caliroad">>
<div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>The road stretches out under the soft morning sun, still quiet and empty.</blockquote>
<<img "images/gf/gf3.webp" "600px">><</img>>
<<speech "gf" "Jane">>Are we there yet?<</speech>>
<<speech "mc" "$name">>Hmm... Only about 3,000 miles to go.<</speech>>
<<speech "gf" "Jane">>Oh, so close~<</speech>>
<blockquote>You smirk as you steer out of your suburban neighborhood, waving to a few neighbors. The trip has only just begun.</blockquote>
<<speech "mc" "$name">>It's nice to see people out of their house.<</speech>>
<<speech "gf" "Jane">>I know...<</speech>>
<blockquote>Eight months. That's how long you'd been locked inside your house. Even now, the restrictions aren't fully lifted, but thankfully interstate travel is allowed because that's the whole reason your mother invited you to come.</blockquote>
<<speech "gf" "Jane">>It's a wonder we didn’t lose our minds.<</speech>>
<blockquote>Unlike Jane, who kept active with her daily jogs, you'd barely left the house. For you, the only connection to the outside world, besides virtual work, was the occasional trip to the supermarket, just ten minutes away.</blockquote>
<<speech "mc" "$name">>Agreed...<</speech>>
<blockquote>It was tough at first, but having each other made it easier to handle.</blockquote>
<<speech "gf" "Jane">>Lookin' good!<</speech>>
<blockquote>Jane shouted out the car window at a group of kids riding skateboards. One of them, flustered by her attention, blushed, a sight that made you chuckle.</blockquote>
<<speech "mc" "$name">>Heh! Now put your head back in, we're about to enter the [[main road.|Opening1-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<speech "mc" "$name">>What's wrong?<</speech>>
<<speech "gf" "Jane">>...I forgot my kindle.<</speech>>
<blockquote>You glance at her, blinking. That’s certainly a thing to forget.</blockquote>
<<speech "mc" "$name">>You got a whole ass library at the back, Jane.<</speech>>
<<speech "gf" "Jane">>Please, please, please... turn back, babe, *please*...<</speech>>
<blockquote>She flashes the best puppy-dog eyes you’ve ever seen. And, of course, it works.</blockquote>
<<speech "gf" "Jane">>Please... I’ll love you for the rest of my life...<</speech>>
<<speech "mc" "$name">>You’re not already doing that?<</speech>>
<<speech "gf" "Jane">>I do, but I’ll love you *a little bit more*...<</speech>>
<<speech "mc" "$name">>Okay, okay, you win.<</speech>>
<<speech "gf" "Jane">>[[You're the best!|ForgetKindle2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<speech "gf" "Jane">>How long do you think we're gonna be on the road for?<</speech>>
<<speech "mc" "$name">>You tell me, you're the one who traveled all over the world.<</speech>>
<<speech "gf" "Jane">>Three thousand miles, huh... I'll give it five hours.<</speech>>
<<speech "mc" "$name">>Five hours exactly?<</speech>>
<<speech "gf" "Jane">>Well, give or take.<</speech>>
<blockquote>She digs her hand into the bag of chips, popping some into her mouth before handing you one.</blockquote>
<blockquote>Suddenly, her phone rings. She lazily grabs it and answers.</blockquote>
<<speech "gf" "Jane">>...It's your mom. *beep* Hello~!<</speech>>
<blockquote>She adopts her best flight attendant voice. You wonder why she called her instead of you.</blockquote>
<<speech "gf" "Jane">>We're on the road right now. He's driving, maybe that's why. You know how he is, he always put his phone on silent.<</speech>>
<<if $deptcheck is "No">>
<blockquote>Not silent, but vibrate. Though you haven’t felt any vibration in your pocket since the start of the drive. You quickly check your pockets.</blockquote>
<<speech "mc" "$name">>...............................<</speech>>
<blockquote>Nothing.</blockquote>
<<speech "mc" "$name">>No way.<</speech>>
<blockquote>The red light up ahead gives you a chance to check. You quickly search your pockets again the moment you [[stop the car.|ForgetPhone1-1]]</blockquote>
<<elseif $deptcheck is "Yes">>
<blockquote>Not silent, but vibrate. You recall putting it on driving mode earlier, maybe that’s why you haven’t felt any notifications.</blockquote>
<<speech "gf" "Jane">>Listen, ma'am -uhh mom, he nearly forgot his phone! Can you believe it!?<</speech>>
<<speech "mc" "$name">>Why... why why why would you tell her...?<</speech>>
<blockquote>She sticks her tongue out.</blockquote>
<<speech "gf" "Jane">>I know, right? [[Hahahaaaa~|NoForget1-2]]<</speech>>
<</if>>
</div>
</div><<set $location to "Home">>
<<set $locationImages to "Home">>
<<set $affection += 3>>
<div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote class="location">+3 Affection</blockquote>
<blockquote>You find yourself back on the familiar street. That was a quick trip. Jane gives you a quick kiss before hopping out of the car to grab her Kindle.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>With a sigh, you settle in to wait, rummaging through your pocket for your phone.</blockquote>
<<if $deptcheck is "No">>
<<speech "mc" "$name">>Mmm...?<</speech>>
<blockquote>Your pocket comes up empty. You check the other one with the same result.</blockquote>
<<speech "mc" "$name">>No way.<</speech>>
<blockquote>Panic sets in as you rush to the trunk, searching for your phone, but find nothing.</blockquote>
<<speech "mc" "$name">>Shit!<</speech>>
<blockquote>You sprint [[back inside the house.|ForgetKindle3a-1]]</blockquote>
<<elseif $deptcheck is "Yes">>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>You pull out your phone and notice a few unread messages. It’s from your parents.</blockquote>
<<speech "familyblur" "Mom">>"Hey, $name. Are you on the road yet?"<</speech>>
<<speech "mc" "$name">>"We're getting started, had to turn back cause Jane forgot her Kindle."<</speech>>
<blockquote>The reply comes almost instantly.</blockquote>
<<speech "familyblur" "Mom">>"What's a kindle?"<</speech>>
<<speech "mc" "$name">>"Something that's not that important."<</speech>>
<<speech "familyblur" "Mom">>"Well, it clearly meant a lot to her, anyway, make sure to check your own luggage, dear!"<</speech>>
<<speech "mc" "$name">>"I have. Oh, here she comes."<</speech>>
<<speech "familyblur" "Mom">>"Okay~ drive safely, $name. We’re looking forward to seeing you two! And don’t annoy Jane too much, okay?"<</speech>>
<<speech "mc" "$name">>Why is it always me...?<</speech>>
<blockquote>You mutter to yourself as Jane circles the car and hops back into the front seat.</blockquote>
<<speech "gf" "Jane">>Hehe~<</speech>>
<<speech "mc" "$name">>There you are. Let's go.<</speech>>
<blockquote>She nods, and you turn the engine back on to [[continue your journey.|DriveCont1-0a]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-bedroom">
<div class="overlay"></div>
<<set $respect -= 5>>
<blockquote>You rush upstairs, only to find Jane already there.</blockquote>
<<speech "gf" "Jane">>Hey, look what I found.<</speech>>
<blockquote>She holds the Kindle in her right hand and your phone in her left. Her expression carries a mix of amusement and disappointment.</blockquote>
<blockquote class="location">-5 Respect</blockquote>
<<speech "gf" "Jane">>So much for not double-checking, huh?<</speech>>
<<speech "mc" "$name">>Y-Yeah...<</speech>>
<blockquote>You check your phone for a few moment, to see some message coming from your mom.</blockquote>
<<speech "gf" "Jane">>Oh! Your mom, tell her that you forget your phone.<</speech>>
<<speech "mc" "$name">>I'll tell her that you forgot your kindle.<</speech>>
<blockquote>That counterattack doesn't work because your mom doesn't know what the hell a kindle even is. Jane put her hand on her hips in victory stance.</blockquote>
<<speech "gf" "Jane">>Let's go then.<</speech>>
<blockquote>As you move to follow her, your eyes land on the bed. A stray thought pops into your head.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Ask her|ForgetKindle3a-2]]>>
<<set $respect -= 5>>
<<set $firstpushy to "True">><</link>>
<<link [[No, we're late as it is|DriveCont1-1]]>>
<<set $firstpushy to "False">><</link>>
</blockquote>
</div>
</div><<set $location to "California">>
<<set $locationImages to "Caliroad">>
<div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>The trip continues at a steady pace, with Jane munching on a bag of potato chips. As the crunching filled the car, a thought struck you.</blockquote>
<<img "images/inc/caliroad2.webp" "600px">><</img>>
<<speech "mc" "$name">>Know any good places to grab a bite?<</speech>>
<<speech "gf" "Jane">>On the road? Not really. There’s probably a restaurant by the lake, and if not, we’ll find something along the way. We’re not exactly starving right now anyway.<</speech>>
<blockquote>True, you ate earlier this morning.</blockquote>
<<speech "mc" "$name">>Wait... why were we rushing again?<</speech>>
<<speech "gf" "Jane">>Because we don’t want to hit Tucson at night.<</speech>>
<<speech "mc" "$name">>Right.<</speech>>
<<speech "gf" "Jane">>You know, I never actually been to Tucson before.<</speech>>
<<speech "mc" "$name">>You've been to Paris but never to Tucson?<</speech>>
<<speech "gf" "Jane">>Everyone’s been to Paris, $name.<</speech>>
<<speech "mc" "$name">>Well, not me.<</speech>>
<<speech "gf" "Jane">>You should! It’s a great place! Oh, by the way, did you know Tucson’s name comes from the O’odham word *Cuk Ṣon*? It means “at the base of the black hill” or “spring at the foot of a black mountain.” It refers to the area near Sentinel Peak, which was a landmark for the indigenous people.<</speech>>
<<speech "mc" "$name">>......................................<</speech>>
<<speech "gf" "Jane">>Was my fun fact that impressive?<</speech>>
<<speech "mc" "$name">>...No, it just reminded me of something else.<</speech>>
<<speech "gf" "Jane">>Of what?<</speech>>
<<speech "mc" "$name">>[[...Never mind.|DriveCont1-1.1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bedroom">
<div class="overlay"></div>
<<speech "mc" "$name">>Say...<</speech>>
<<speech "gf" "Jane">>Yeah?<</speech>>
<blockquote>You point at your bed.</blockquote>
<<speech "gf" "Jane">>Seriously?<</speech>>
<blockquote class="location">-5 Respect</blockquote>
<blockquote class="location">She will remember this.</blockquote>
<<if $affection >= 65>>
<blockquote>She looks at you with a little incredulity but then relents.</blockquote>
<<speech "gf" "Jane">>You're lucky I love you.<</speech>>
<blockquote>She points to the bed and to your pants.</blockquote>
<<speech "gf" "Jane">>Take it off.<</speech>>
<<speech "mc" "$name">>I could get you off if you want.<</speech>>
<<speech "gf" "Jane">>We don't have two fucking hours, $name.<</speech>>
<<speech "mc" "$name">>O-Okay...<</speech>>
<blockquote>That was an indirect shot towards you but you [[missed it completely.|ForgetKindle3a-3]]</blockquote>
<<else>>
<blockquote>She looks at you with actual anger.</blockquote>
<<speech "gf" "Jane">>Are you fucking kidding me now?<</speech>>
<blockquote>That means no.</blockquote>
<<speech "gf" "Jane">>Get your horny ass back in the car.<</speech>>
<<speech "mc" "$name">>I-I'm sorry...<</speech>>
<blockquote>You silently follows her back into the car and then turns on the engine.</blockquote>
<<speech "gf" "Jane">>Drive.<</speech>>
<blockquote>She commanded with a stern voice. She's genuinely pissed.</blockquote>
<<speech "mc" "$name">>
<<link [[I-I'm sorry...|DriveCont1-1]]>>
<<set $affection -= 5>>
<</link>>
<</speech>>
<blockquote>You uttered silently as you restarted your journey.</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-bedroom">
<div class="overlay"></div>
<<set $firsthj = true>>
<blockquote>You sit down on the bed, watching her taking off her clothes.</blockquote>
<<speech "gf" "Jane">>Cum quickly.<</speech>>
<<speech "mc" "$name">>Y-Yes.<</speech>>
<<vid "Images/gf/gfs2.webm">>
<<if $extrafirststop is true>>
<<speech "gf" "Jane">>So much for that stop on the highway.<</speech>>
<<speech "mc" "$name">>M-Mhh...<</speech>>
<</if>>
<<speech "gf" "Jane">>Ohh~ so hard already.<</speech>>
<<speech "mc" "$name">>Haa...<</speech>>
<<speech "gf" "Jane">>Make it [[quick now.|ForgetKindle3a-4]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bedroom">
<div class="overlay"></div>
<<vid "Images/gf/gfs3.webm">>
<<speech "mc" "$name">>Ahhh... nghhh...<</speech>>
<<speech "gf" "Jane">>Look at you tensing up like that.<</speech>>
<<speech "mc" "$name">>Nghh...<</speech>>
<<speech "gf" "Jane">>Cumming already?<</speech>>
<<speech "mc" "$name">>Y-Yes...<</speech>>
<blockquote>[[She smirks.|ForgetKindle3a-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bedroom">
<div class="overlay"></div>
<<set $lust += 5>>
<<vid "Images/gf/gfs4.webm">>
<<speech "gf" "Jane">>Heh~<</speech>>
<<speech "mc" "$name">>H-Haa...<</speech>>
<<speech "gf" "Jane">>I said to do it fast. But not this fast.<</speech>>
<blockquote class="location">+5 Lust</blockquote>
<<speech "mc" "$name">>Haa... haa... I-I don't want to make us late...<</speech>>
<<speech "gf" "Jane">>Hahaha~ sure, come on, back to the car.<</speech>>
<blockquote>She left almost immediately after putting her clothes back on, you do the same but before replying to your mom's text.</blockquote>
<<speech "familyblur" "Mom">>"Hey, $name. Are you on the road yet?"<</speech>>
<<speech "mc" "$name">>"Yes, yes, we're on our way, please don't text me."<</speech>>
<blockquote>You lied, well there's no way she could've known anyway. The reply then came in mere moments.</blockquote>
<<speech "familyblur" "Mom">>"Oohhh. Drive safely okay? And please say hi to Jane for me."<</speech>>
<<speech "mc" "$name">>"Yes, mom."<</speech>>
<<speech "familyblur" "Mom">>"Okay then. We're waiting for you guys here. See you."<</speech>>
<blockquote>You turn off your phone screen and immediately follows Jane as soon as you finished putting your pants [[back on.|ForgetKindle3a-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<set $affection -= 20>>
<<set $respect -= 20>>
<<set $firstanger to true>>
<blockquote>You search yourself from top to bottom and find nothing. Jane stares at you for a moment, her expression unreadable.</blockquote>
<<speech "gf" "Jane">>Sup?<</speech>>
<<speech "mc" "$name">>I-I forgot my phone.<</speech>>
<<speech "gf" "Jane">>Oh, you motherfucker.<</speech>>
<blockquote class="location">-20 Affection</blockquote>
<blockquote class="location">-20 Respect</blockquote>
<blockquote class="location">Jane will remember this.</blockquote>
<blockquote>She says it, even though your mom is still on the line. Realizing her mistake, Jane quickly apologizes profusely and explains the situation. You’re sweating bullets, and it only gets worse when she hands you her phone.</blockquote>
<<speech "familyblur" "Mom">>Have you lost your darn mind?<</speech>>
<<speech "mc" "$name">>N-No, only my ph-<</speech>>
<<speech "familyblur" "Mom">>Don't get smart with me, young man.<</speech>>
<<speech "mc" "$name">>S-Sorry...<</speech>>
<blockquote>From the corner of your eye, you see Jane looking genuinely angry, but there’s also a little curve on her mouth. She’s enjoying this.</blockquote>
<<speech "familyblur" "Mom">>$name, you will turn back, grab your phone, and then call me. Oh, and apologize to Jane.<</speech>>
<<speech "mc" "$name">>Y-Yes mom...<</speech>>
<blockquote>And here you thought that becoming an adult and living independently would have spared you from her wrath. Clearly, you underestimated her.</blockquote>
<<speech "familyblur" "Mom">>What are you waiting for? Turn back! I won’t hang up until I hear a skidding sound!<</speech>>
<blockquote>You sigh and shake your head, catching Jane subtly giggling beside you. As the light turns green, you decide to do a full-on [[U-turn,|ForgetPhone1-2]] complete with the *skiiiiiiiid* of your tires.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>The two women keep gossiping like they're old friends. Despite never meeting face-to-face, they’ve grown close over the pandemic.</blockquote>
<<speech "gf" "Jane">>That one place you keep telling me about? Of course, we’ll go there!<</speech>>
<blockquote>At first, your mother had her reservations about Jane. After all, Jane’s a Cali girl through and through, while your family lives in the rural parts of Miami. The two don’t exactly match.</blockquote>
<<speech "gf" "Jane">>I’d say a week or two, mom... Oh, come on~ We’ve been locked up in the house for a year! We’ve gotta at least enjoy the trip, right?<</speech>>
<blockquote>Ironically, they found common ground in their shared love for a cheesy, utterly crappy telenovela, much to your dismay.</blockquote>
<<speech "gf" "Jane">>Right, $name?<</speech>>
<<speech "mc" "$name">>...What?<</speech>>
<<speech "gf" "Jane">>We won't make her wait, right?<</speech>>
<<speech "mc" "$name">>Of course not. We’ve been driving 90 since the start, mom. We’ll be ther-<</speech>>
<blockquote>You suddenly hear clattering from the other side of the line, followed by what sounds like a prayer... and [[then a scream.|NoForget1-3]]</blockquote>
</div>
</div><<set $location to "Home">>
<<set $locationImages to "Home">>
<div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>Here you are again. You parked your car imperfectly on the side of the road and offered an apologetic look to Jane.</blockquote>
<<speech "mc" "$name">>S-Sorry...<</speech>>
<<speech "gf" "Jane">>So much for not double-checking, huh?<</speech>>
<blockquote>If looks could kill...</blockquote>
<<speech "gf" "Jane">>[[Go!|ForgetPhone1-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bedroom">
<div class="overlay"></div>
<blockquote>You rushed into your room and immediately spotted your phone on the nightstand, still plugged in and charging. You’d forgotten your charger too. it seems like, but brushed that off and called your mother.</blockquote>
<<speech "familyblur" "Mom">>That was fast, $name! Did you speed?<</speech>>
<<speech "mc" "$name">>Do you want me to be fast or slow? And no, I didn’t. We’re still close to home.<</speech>>
<<speech "familyblur" "Mom">>$name, $name... after all these years, you haven’t changed at all.<</speech>>
<<speech "mc" "$name">>I get it, okay? Can I go now? Jane’s waiting in the car.<</speech>>
<<speech "familyblur" "Mom">>Can you see her from the window?<</speech>>
<blockquote>You glance out the window. You can see the car, but not Jane.</blockquote>
<<speech "mc" "$name">>She's inside, what about it?<</speech>>
<<speech "familyblur" "Mom">>Bless her heart. If I were her, I’d be slashing your tires right now.<</speech>>
<blockquote>You shake your head in amused exasperation.</blockquote>
<<speech "familyblur" "Mom">>Go down, apologize, and treat her to something nice.<</speech>>
<<speech "mc" "$name">>Yes, mom. I will. See you, okay?<</speech>>
<blockquote>She ended the call, leaving you to walk back [[to the car.|ForgetPhone1-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<<speech "mc" "$name">>H-Hey.<</speech>>
<blockquote>You hop back into the car to see Jane still exasperated, staring at you.</blockquote>
<<speech "gf" "Jane">>What did she say?<</speech>>
<<speech "mc" "$name">>She said she’ll be slashing my tires when we arrive.<</speech>>
<blockquote>That light remark seems to ease the tension a little.</blockquote>
<<speech "gf" "Jane">>My kind of lady.<</speech>>
<<speech "mc" "$name">>You should be her daughter.<</speech>>
<<speech "gf" "Jane">>Hm? I AM going to be one.<</speech>>
<blockquote>It’s that ridiculous confidence of hers you love. Most people would blush, but she says it like she means it.</blockquote>
<<speech "mc" "$name">>Anyway, ready?<</speech>>
<<speech "gf" "Jane">>Ready for the last hour or so.<</speech>>
<<speech "mc" "$name">>R-Right... o-onward~!<</speech>>
<blockquote>You start the engine and [[continue your journey.|DriveCont1-0a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-startingstreet">
<div class="overlay"></div>
<blockquote>You hobbled down the stairs and approach your car, your dick is still sensitive after what just happened.</blockquote>
<blockquote>You opened the car door and sit on the driver's seat. Jane is looking at her phone as you came in.</blockquote>
<<speech "mc" "$name">>Hey, uhh, thanks for earlier.<</speech>>
<<speech "gf" "Jane">>Mmm...<</speech>>
<blockquote>You started the engine and begin to drive.</blockquote>
<<speech "gf" "Jane">>Your mom just texted me.<</speech>>
<<speech "mc" "$name">>...Yes?<</speech>>
<<speech "gf" "Jane">>She asked where we are. You know, I like your mom, she's fun.<</speech>>
<<speech "mc" "$name">>...And what did you say exactly?<</speech>>
<<speech "gf" "Jane">>I said that we're still home. But she said that she's really really eager to meet you, I don't know why she only said you though..<</speech>>
<blockquote class="location">Your mom will remember this.</blockquote>
<<speech "mc" "$name">>...Fuck.<</speech>>
<blockquote>Now all parts of you wanted to take the [[longest route possible.|DriveCont1-0]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<speech "familyblur" "Mom">>WHAT THE HECK DO YOU THINK YOU'RE DOING, YOUNG MAN!?<</speech>>
<<speech "mc" "$name">>I'm speeding, mom.<</speech>>
<blockquote>You can practically hear her hyperventilating from across the country.</blockquote>
<<speech "mc" "$name">>Mom, I'm obviously joking.<</speech>>
<<speech "familyblur" "Mom">>Yeah? Then I'm obviously cutting you out of my will.<</speech>>
<blockquote>You snicker in amusement. Jane does too, though she hides it better.</blockquote>
<<speech "familyblur" "Mom">>DO NOT SPEED!!! Got that? Jane! If he ever goes over 40, call me immediately.<</speech>>
<<speech "mc" "$name">>Do you want us to make it there by Christmas?<</speech>>
<<speech "familyblur" "Mom">>At least you’ll make it here alive.<</speech>>
<<speech "mc" "$name">>Okay, okay, I get it. I won’t speed, I won’t drink before driving, I won’t do drugs before driving. I wo-<</speech>>
<<speech "familyblur" "Mom">>Don't do drugs at all.<</speech>>
<<speech "mc" "$name">>Sure, sure. One more thing. I won't talk on the phone while driving.<</speech>>
<blockquote>She let out a loud tsk.</blockquote>
<<speech "familyblur" "Mom">>Whoever taught you to talk back to your own mother... it’s those darn Californians, I’m telling you. Jane, I’ll call you later tonight, okay?<</speech>>
<blockquote>She [[ended the call.|NoForget1-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<img "images/gf/gf3.webp" "600px">><</img>>
<<speech "gf" "Jane">>Did she forget that I’m a Californian too?<</speech>>
<<speech "mc" "$name">>You’re one of the good ones.<</speech>>
<blockquote>She chuckled.</blockquote>
<<speech "gf" "Jane">>I really want to meet her now.<</speech>>
<<speech "mc" "$name">>Same here. It’s been years for me too. Last time was at graduation, and even then, they had to rush back because of some emergency.<</speech>>
<<speech "gf" "Jane">>Yeah... I didn’t even get to see her during graduation.<</speech>>
<<speech "mc" "$name">>You guys would probably get along.<</speech>>
<<speech "gf" "Jane">>We got along now.<</speech>>
<<speech "mc" "$name">>It’s not hard to get along with you, to be honest.<</speech>>
<<speech "gf" "Jane">>Hah~ Charmer.<</speech>>
<blockquote>You continue to drive in a relatively [[quiet mood.|DriveCont1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>Silence reigns inside of the car.</blockquote>
<<speech "gf" "Jane">>...........................................<</speech>>
<<img "images/gf/gf6.webp" "600px">><</img>>
<blockquote>She shifts uncomfortably in her seat, doing her best to avoid your gaze.</blockquote>
<<speech "mc" "$name">>"Leave the room to me~"<</speech>>
<<speech "gf" "Jane">>U-Ugh...<</speech>>
<<speech "mc" "$name">>So?<</speech>>
<<speech "gf" "Jane">>I-I'm sorry...<</speech>>
<blockquote>The two of you passed out at the same time.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Tell her to reserve one now.|DriveCont1-3]]>>
<<set $respect += 5>>
<<set $firstreserve to "Yes">><</link>>
<<link [[No matter, it'll work out somehow.|DriveCont1-3]]>>
<<set $affection += 5>>
<<set $firstreserve to "No">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<if $firstreserve is "Yes">>
<blockquote class="location">+5 Respect</blockquote>
<<speech "mc" "$name">>Reserve a room now. It doesn’t matter if it’s just a motel in the middle of nowhere.<</speech>>
<<speech "gf" "Jane">>R-Right... I'm sorry, it slipped my mind.<</speech>>
<<speech "mc" "$name">>No worries, as long as we have a place to sleep.<</speech>>
<<speech "gf" "Jane">>...We can sleep in the car.<</speech>>
<<speech "mc" "$name">>We can, I just don't want to.<</speech>>
<blockquote>Jane pulls out her phone and starts looking for a [[place to reserve.|DriveCont1-4]]</blockquote>
<<elseif $firstreserve is "No">>
<blockquote class="location">+5 Affection</blockquote>
<<speech "mc" "$name">>Don’t worry about it. We’ll figure something out.<</speech>>
<<speech "gf" "Jane">>W-What? No! You’re being sweet, but this is a total screw-up.<</speech>>
<<speech "mc" "$name">>We all make mistakes.<</speech>>
<<speech "gf" "Jane">>Stop that! I swear, $name, if I can’t find a place, I’ll let you fuck me whenever you want, wherever and however.<</speech>>
<<speech "mc" "$name">>...Sounds good.<</speech>>
<blockquote>She grumbles and begins searching her phone for a [[room to reserve.|DriveCont1-4]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<speech "gf" "Jane">>No... Tucson... Tucson...<</speech>>
<blockquote>A few minutes pass before she suddenly turns to you.</blockquote>
<<speech "gf" "Jane">>$name, I think I found the perfect place. It’s a motel on the outskirts of Arizona, two hours away from Tucson, but I think it’s ideal.<</speech>>
<<speech "mc" "$name">>Why’s that?<</speech>>
<<speech "gf" "Jane">>Given our pace and when we’ll be at the lake, we’ll probably reach Tucson around 5 PM, which is too late for lunch but too early for dinner.<</speech>>
<blockquote>True.</blockquote>
<<speech "gf" "Jane">>If we stop here, we’ll get there around 3 PM. I don’t know about you, but I could survive on potato chips for a few more hours. That means we can make this stop lunch, dinner, and a place to sleep.<</speech>>
<blockquote>So far, so good.</blockquote>
<<speech "gf" "Jane">>And remember that tiny rest area I mentioned? It’s just a few miles before the motel, so we can skip it and take care of it at the motel instead.<</speech>>
<blockquote>You hear the hint of a smirk in her voice.</blockquote>
<<speech "gf" "Jane">>So...?<</speech>>
<blockquote>Seeing no downside to the plan, you immediately [[agree to it.|DriveCont1-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<img "Images/gf/gf3.webp" "600px">><</img>>
<<speech "gf" "Jane">>I knew you'd like it.<</speech>>
<blockquote>Jane grins at your immediate agreement. The conversation picks up again as you approach the gas station.</blockquote>
<<img "Images/post/gas.webp" "300px">><</img>>
<<speech "gf" "Jane">>Park first. I’ve got something to buy.<</speech>>
<<speech "mc" "$name">>You're not the only one.<</speech>>
<<speech "gf" "Jane">>Just don’t let it be all snacks.<</speech>>
<<speech "mc" "$name">>Right back at you.<</speech>>
<blockquote>You ease into a parking spot and turn off the engine.</blockquote>
<<speech "gf" "Jane">>Ahhhh~<</speech>>
<blockquote>Jane steps out of the car, stretching her arms with a cheerful smile.</blockquote>
<<speech "gf" "Jane">>First destination. reached!<</speech>>
<blockquote>Distances to go: [[2997 miles.|GSParkCenter1a]]</blockquote>
</div>
</div><<set $location to "Gas Station">>
<<set $locationImage to "Gas Station">>
<div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote class="location">Location: Parking lot</blockquote>
<<img "Images/inc/gstation1/gs1.webp" "300px">><</img>>
<blockquote>The first stop of [[your journey,|Reminisce1-1]] is the gas station. Jane wasn’t wrong when she joked that this place doesn’t really count as a destination. After all, it’s just the spot where you’ve filled your tank countless times before.</blockquote>
<blockquote>You’re standing in the parking lot, watching a few cars pass by on the road. Even fewer linger here, fitting for a time when lockdown restrictions have just been lifted and most people are still working from home.</blockquote>
<blockquote>The main reason for stopping is to grab a few essentials from the convenience store, which sits [[just ahead.|GSStoreExt1a]] You turn back, stretching a hand out toward Jane, only to find her [[peeking into the trunk.|LugCheck1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>Your eyes linger on the streets of the city. California. You remember how nervous you were when you first arrived in this sprawling metropolis.</blockquote>
<<speech "mc" "$name">>..............................<</speech>>
<blockquote>Back then, you were just a high school graduate, a kid who dared to apply to the biggest campus in California, choosing one of the hardest majors imaginable, well, not because you're ambitious or anything. It was a plan rigged to fail from the start, and you rigged it yourself. You only did it to get your parents off your back. In truth, you expected rejection, assuming you'd end up at a smaller, closer college where you could stay with your friends.</blockquote>
<<speech "mc" "$name">>Sigh...<</speech>>
<blockquote>But, of course, the plan fell apart when you *did* get accepted. You still remember the shock of receiving the acceptance letter, the strange mix of emotions as your family celebrated with a party while you sat stone-faced. Then came the nervousness during the flight to California. You even recall dropping your fork mid-flight as you tried to eat, your hands trembling with anxiety. Thankfully, a flight attendant came to your rescue...</blockquote>
<<speech "gf" "Jane">>Sup?<</speech>>
<blockquote>Not her, obviously. Jane was probably off somewhere having fun with her friends, while you were grappling with fear and uncertainty on that plane.</blockquote>
<<speech "mc" "$name">>Nothing...<</speech>>
<blockquote>But in the end, it all worked out. You graduated from a great college, made lifelong friends, landed a fantastic job, and, most importantly, met her.</blockquote>
<<speech "gf" "Jane">>[[Creep-o~|GSParkCenter1a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote class="location">Location: Store Exterior</blockquote>
<<img "Images/inc/gstation1/gs3.webp" "300px">><</img>>
<blockquote>You head toward the store, with your car parked behind you at [[the parking lot.|GSParkCenter1a]] The door to the [[convenience store|GSStoreIn1a]] in front. From here, you can already spot the clerk, someone you're familiar with.</blockquote>
<<if $first_child is true>>
<blockquote>Jane is right behind you, urging you to hurry up.</blockquote>
<<speech "gf" "Jane">>Come on! Do you want the sun to bake your brain out in the lake?<</speech>>
<blockquote>She's got a point. Time's slipping away, and you should get in there and grab what you need.</blockquote>
<<else>>
<blockquote>You turn around, expecting Jane to be following close behind.</blockquote>
<<speech "gf" "Jane">>......................................<</speech>>
<blockquote>But she’s distracted, her gaze fixed on a middle-aged couple by the gas pump, chatting to each other.</blockquote>
<<speech "mc" "$name">>Jane... don't be no-<</speech>>
<blockquote>Then you see the rear door of the car slowly open, and without thinking, [[Jane approaches the car.|Childout1-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<set $first_seeluggage to true>>
<blockquote>Jane stands over the trunk, holding a flashlight, as you approach her from behind.</blockquote>
<<speech "mc" "$name">>Did you forget something?<</speech>>
<<speech "gf" "Jane">>It’s the opposite. I just don’t want to double up on stuff.<</speech>>
<<speech "mc" "$name">>I see.<</speech>>
<blockquote>Good thinking. You step beside her and scan the trunk’s contents. The large bag from earlier is open now, revealing blankets, a pillow, reusable bottles, boxes of masks, medicines, and some toiletries.</blockquote>
<<speech "gf" "Jane">>I think I need to buy some shampoo.<</speech>>
<<speech "mc" "$name">>Why? The hotel will probably have some.<</speech>>
<<speech "gf" "Jane">>People stole shit from planes all the time, $name. It's worse with hotel.<</speech>>
<blockquote>Your eyes drift back to the trunk. Two large water bottles rest near the books, clothes, and snacks she packed this morning.</blockquote>
<<speech "mc" "$name">>We’re missing sweets.<</speech>>
<<speech "gf" "Jane">>[[Bingo.|GSParkCenter1a]]<</speech>>
</div>
</div><<set $location to "California">>
<<set $locationImages to "Caliroad">>
<div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>You resumed your trip, that was quite a long detour, you hope that it will not affect your schedule that much. The warm sun has now slightly turning hotter, even the sunshine is at the eye level.</blockquote>
<blockquote>Jane takes out her Kindle and stares at it for a few moments, you thought she was going to read it before she tows it back to her luggage.</blockquote>
<<speech "mc" "$name">>You're not going to read it?<</speech>>
<<speech "gf" "Jane">>I can't read Kindle in a car, it makes me sick.<</speech>>
<blockquote>You hold the steering wheel a tiny bit tighter.</blockquote>
<<speech "mc" "$name">>What have I done to deserve you, [[my love?|DriveCont1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-gsc">
<div class="overlay"></div>
<<img "Images/npc/clerk1.webp" "400px">><</img>>
<<speech "clerk1" "Clerk">>Welcome- oh, it's you! It's been a nearly a year!<</speech>>
<blockquote>The young man at the register greets you warmly. He's right, it’s been a while since you last saw each other.</blockquote>
<blockquote>You used to visit this place often, and over time, the two of you developed an odd sort of friendship. He hops off the counter and gives you a quick bro-hug, ignoring any personal space.</blockquote>
<<speech "clerk1" "Clerk">>Glad to see you're doing well, dude.<</speech>>
<<speech "mc" "$name">>Likewise.<</speech>>
<<set $gconvitem = []>>
<blockquote>His gaze then shifts to the woman standing behind you.</blockquote>
<<speech "clerk1" "Clerk">>Ah! Welcome! Sorry, I didn't see you there.<</speech>>
<<speech "mc" "$name">>She's with me.<</speech>>
<<speech "gf" "Jane">>I am?<</speech>>
<blockquote>She smiles and then casually wanders off to another part of the store.</blockquote>
<<set $bconvitem = []>>
<<speech "gf" "Jane">>Don’t buy any soap or shampoo, okay?<</speech>>
<blockquote>She heads straight for the toiletries aisle, leaving you alone with the clerk.</blockquote>
<<speech "clerk1" "Clerk">>Your girlfriend?<</speech>>
<<speech "mc" "$name">>Yeah.<</speech>>
<<set $convitem to []>>
<<speech "clerk1" "Clerk">>Nice.<</speech>>
<blockquote>He chuckles and nudges you toward the aisle. You turn to protest, but then he freezes, his face pulling into an exaggerated gesture, like he’s lifting something from his mouth to his nose.</blockquote>
<<if $firsthj is true>>
<blockquote>You gulp, mortified. You sniff your clothes, then give an apologetic nod.</blockquote>
<<speech "mc" "$name">>S-Sorry, I had no time to take a bath...<</speech>>
<<speech "clerk1" "Clerk">>...your mask.<</speech>>
<<speech "mc" "$name">>...oh.<</speech>>
<<speech "clerk1" "Clerk">>...happy [[shopping.|Aisle1-1]]<</speech>>
<<else>>
<blockquote>You quickly pull your mask up to cover your nose.</blockquote>
<<speech "clerk1" "Clerk">>[[Happy shopping~|Aisle1-1]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<set $first_child to true>>
<blockquote>The door opens slowly, and from inside, a young girl, no older than five, sneaks out of the car, completely unnoticed by the couple.</blockquote>
<<speech "mc" "$name">>O-Oh-<</speech>>
<blockquote>But before you can even react, or hell, before the girl can take her first step, Jane is already in front of her.</blockquote>
<blockquote>You can't hear their conversation from where you're standing, but you can see Jane’s bright teeth shining as she talks with the little girl, who also catches the attention of the couple.</blockquote>
<<speech "mc" "$name">>.................................<</speech>>
<blockquote>Still smiling, Jane greets them warmly and explains the situation. A few minutes later, the couple sighs in relief, ruffling the girl’s hair.</blockquote>
<blockquote>The girl then climbs back into the car, now accompanied by her mother. Before going inside, she waves at Jane and you, which makes you smile a little. With that little event settled, Jane walks back to you.</blockquote>
<<speech "mc" "$name">>That was cool.<</speech>>
<<speech "gf" "Jane">>That's it? Praise me more~<</speech>>
<blockquote>She teases you with a playful grin.</blockquote>
<<speech "gf" "Jane">>Just kidding, come on, [[let's go.|GSStoreExt1a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-gsc">
<div class="overlay"></div>
<blockquote class="location">Click on those you want to buy or skip them by not clicking.</blockquote>
<<img "Images/inc/gstation1/gs5.webp" "300px">><</img>>
<blockquote>Jane is nowhere to be seen, so it's just you and the aisle.</blockquote>
<<speech "mc" "$name">>First things first.<</speech>>
<blockquote>Your eyes immediately fall on a <<linkreplace "charger and power banks.">><<run $convitem.push("Charger")>><<run $gconvitem.push("Charger")>>charger and power banks. 🛒<</linkreplace>></blockquote>
<blockquote>You then continue on to the next aisle where the food lies. There are multiple things that interest you as soon as you walk towards it.</blockquote>
<<speech "mc" "$name">><<linkreplace "Energy bars...">><<run $convitem.push("Energy")>><<run $gconvitem.push("Energy")>>Energy bars... 🛒<</linkreplace>> Candy, there you are... what else...<</speech>>
<blockquote>You grab the candies without thinking twice before turning back to the fridge.</blockquote>
<<speech "mc" "$name">><<linkreplace "Water.">><<run $convitem.push("Water")>><<run $bconvitem.push("Water")>>Water. 🛒<</linkreplace>><</speech>>
<blockquote>Feeling you're finished in this aisle, you proceed to the [[next section.|Aisle1-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gsc">
<div class="overlay"></div>
<blockquote>Your journey continues as you approach another aisle—the health section.</blockquote>
<<speech "mc" "$name">>There.<</speech>>
<blockquote><<linkreplace "Mask,">><<run $convitem.push("Mask")>><<run $bconvitem.push("Mask")>>Mask, 🛒<</linkreplace>><<linkreplace "OTC-medications,">><<run $convitem.push("Meds")>><<run $bconvitem.push("Meds")>>OTC-medication, 🛒<</linkreplace>> and some other personal care items are here, you fully expect to see Jane here but it seems like she's already gone. There are also <<linkreplace "sunscreen">><<run $convitem.push("Sunscreen")>><<run $gconvitem.push("Sunscreen")>>sunscreen🛒<</linkreplace>> on display along with other accessories.</blockquote>
<<speech "mc" "$name">>That's all...<</speech>>
<blockquote>Behind you is the automotive and travel essentials. Things like <<linkreplace "maps">><<run $convitem.push("Maps")>><<run $gconvitem.push("Maps")>>maps🛒<</linkreplace>>, <<linkreplace "flashlight">><<run $convitem.push("Flashlight")>><<run $bconvitem.push("Flashlight")>>flashlight🛒<</linkreplace>>, and other <<linkreplace "car maintenance items">><<run $convitem.push("Caritems")>><<run $gconvitem.push("Caritems")>>car maintenance items.🛒<</linkreplace>></blockquote>
<<speech "mc" "$name">>Yeah, I think that's all.<</speech>>
<blockquote>You grab your shopping bag and head [[to the counter.|Aisle1-3]].</blockquote>
</div>
</div> <div id="main-screen">
<div class="location-gsc">
<div class="overlay"></div>
<<speech "clerk1" "Clerk">>To Florida?<</speech>>
<<speech "gf" "Jane">>$name's parents asked us to visit since the lockdown is being phased out and all.<</speech>>
<blockquote>You spot Jane, chatting with the clerk.</blockquote>
<<speech "clerk1" "Clerk">>$name, huh... so that's his name.<</speech>>
<<speech "gf" "Jane">>...Aren't you guys friends?<</speech>>
<<speech "clerk1" "Clerk">>We are! He's been my loyal customer before he even bought a car.<</speech>>
<<speech "gf" "Jane">>Wait... how does that work?<</speech>>
<blockquote>You approach them, shopping bag in hand.</blockquote>
<<speech "gf" "Jane">>$name, this guy doesn't know your name.<</speech>>
<<speech "clerk1" "Clerk">>What's my name, $name?<</speech>>
<blockquote>You quickly glance at his nametag.</blockquote>
<<speech "mc" "$name">>Steve.<</speech>>
<<speech "clerk1" "Clerk">>No.<</speech>>
<<speech "mc" "$name">>Fuck. Does knowing each other's name really matter though?<</speech>>
<blockquote>If confusion had a face, it would be Jane's. She turns around and walks away.</blockquote>
<<speech "gf" "Jane">>I-I'm waiting in the car.<</speech>>
<<speech "mc" "$name">>Is it really that confusing?<</speech>>
<blockquote>'Steve' shrugs and tells you to put your shopping back [[on the counter.|Aisle1-4]].</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gsc">
<div class="overlay"></div>
<<img "Images/npc/clerk1.webp" "400px">><</img>>
<<speech "clerk1" "'Steve'">>In a car with your girlfriend for an entire week, huh? Sounds like good times.<</speech>>
<<speech "mc" "$name">>Doesn't mean much. We've been living together for about a year now. And, you know, It's actually surprising that you haven't met her.<</speech>>
<<speech "clerk1" "'Steve'">>A year? When did she move in?<</speech>>
<<speech "mc" "$name">>Before March.<</speech>>
<<speech "clerk1" "'Steve'">>Literally right before the lockdown. No wonder I’ve never met her. Anyway, is that everything?<</speech>>
<blockquote>He pointed to the shopping bag.</blockquote>
<<speech "mc" "$name">>Wouldn't be here if it's not.<</speech>>
<blockquote>He took the bag and began to [[check it.|Aisle1-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gsc">
<div class="overlay"></div>
<<if $convitem.length == 0>>
<blockquote class="location">You bought a grand total of zero item.</blockquote>
<<speech "clerk1" "'Steve'">>...There's literally fucking nothing in that bag. Just this candy.<</speech>>
<<speech "mc" "$name">>...Really? T-Then I'll take a peppermint and another candy.<</speech>>
<<speech "clerk1" "'Steve'">>You sure you're okay, dude?<</speech>>
<<speech "mc" "$name">>I-I am, just tell me how much.<</speech>>
<<speech "clerk1" "'Steve'">>One single american dollar.<</speech>>
<<speech "mc" "$name">>H-Here you go.<</speech>>
<<elseif $convitem.length >= 1 && $convitem.length <= 4>>
<blockquote class="location">You didn't bought that much.</blockquote>
<<speech "clerk1" "'Steve'">>Traveling light, huh?<</speech>>
<<speech "mc" "$name">>Just don't want to buy too much, we're already pretty stocked up.<</speech>>
<<speech "clerk1" "'Steve'">>I see, that's cool. I’d still prefer if you bought more, though.<</speech>>
<<speech "mc" "$name">>Mmm... give me that peppermint and that candy.<</speech>>
<<speech "clerk1" "'Steve'">>That'll be one extra dollar, thank you.<</speech>>
<<elseif $convitem.length >= 5 && $convitem.length <= 8>>
<blockquote class="location">You bought a lot of items..</blockquote>
<<speech "clerk1" "'Steve'">>That's a pretty good haul.<</speech>>
<<speech "mc" "$name">>It's a long trip, we'll need it.<</speech>>
<<speech "clerk1" "'Steve'">>You sure will. And it’s much better to buy those supplies here.<</speech>>
<<speech "mc" "$name">>Better for you?<</speech>>
<<speech "clerk1" "'Steve'">>Yup.<</speech>>
<blockquote>He smiled as he checked out your items. You handed him the money, a bit more than necessary.</blockquote>
<<speech "mc" "$name">>Keep the change.<</speech>>
<<speech "clerk1" "'Steve'">>It's cashless, brother.<</speech>>
<<speech "mc" "$name">>Uhh... force of habit.<</speech>>
<blockquote>You purse your lips then pay for the amount, properly this time.</blockquote>
<<speech "clerk1" "'Steve'">>Thanks for your patronage~<</speech>>
<<elseif $convitem.length == 9>>
<blockquote class="location">You bought the entire store.</blockquote>
<<speech "clerk1" "'Steve'">>Holy shit, I thought you were driving to Florida, not to fucking Berlin.<</speech>>
<<speech "mc" "$name">>Better safe than sorry.<</speech>>
<<speech "clerk1" "'Steve'">>I guess...?<</speech>>
<blockquote>He scanned each item, one by one. In the meantime, you prepared the money to pay.</blockquote>
<<speech "clerk1" "'Steve'">>Done, it'll be-<</speech>>
<<speech "mc" "$name">>Here, keep the change.<</speech>>
<blockquote>You handed him the money without much thought. He gave you a blank stare in return.</blockquote>
<<speech "clerk1" "'Steve'">>...It's not enough, fucker. Besides, it's cashless.<</speech>>
<<speech "mc" "$name">>W-What?<</speech>>
<blockquote>You checked the screen on the register and realized he was right. With a blush creeping onto your face, you paid him the correct amount and also in the proper way.</blockquote>
<<speech "clerk1" "'Steve'">>Thank you for your patronage.<</speech>>
<</if>>
<blockquote>With the payment settled, you packed the items and gave 'Steve' another handshake.</blockquote>
<<speech "clerk1" "'Steve'">>Drive safe, dude.<</speech>>
<<speech "mc" "$name">>Of course.<</speech>>
<blockquote>With that, you [[continue outside.|GSStoreExt1b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote class="location">Location: Store Exterior</blockquote>
<<img "Images/inc/gstation1/gs3.webp" "300px">><</img>>
<blockquote>You walk outside the building just as a [[couple|Couple1-1]] walks in. The man gives you a small nod, while the woman tugs at his sleeve from behind.</blockquote>
<blockquote>The scene outside is growing busier. A line of cars forms, each waiting to fill their tanks, though the line is shorter than pre-pandemic days. There are even sounds of a heated argument about the Niners, but you pay no mind. You're a Dolphins liver, through thick or thin. Though given your age, it's all thin.</blockquote>
<blockquote>As you stand there, you hear the deep rumble of a large truck engine idling beside you. A couple of seconds later, it roars to life, a flash of light as it pulls out of the lot. The driver, an old man with a cowboy hat, gives a curt nod as he passes by, the long road already calling him. The tires leave small streaks on the ground, a reminder of the road ahead.</blockquote>
<blockquote>Jane is already in the car, so you better [[get there.|GSParkCenter1b]].</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote class="location">Location: Parking lot</blockquote>
<<img "Images/inc/gstation1/gs1.webp" "300px">><</img>>
<blockquote>[[Jane|CargoCheck1-1]] ⭐ is not waiting in the car but is instead checking the trunk one last time. You glance around the parking lot and spot more cars, newly parked. [[One of them|NYPlate1-1]] must belong to the couple [[you met at the entrance.|GSStoreExt1b]]</blockquote>
<blockquote>Further back in the parking lot, a man is inspecting the hood of his car. Judging by his shirtless appearance and sweat dribbling on his well-defined chest, you figure he must have pushed the car here.</blockquote>
<blockquote>A few feet away, you notice a small pile of discarded face masks scattered on the pavement, evidence of the pandemic’s lingering presence. There's a noticeable gap between parked cars, a subtle reminder that people are still cautious despite the recent easing of social distancing rules.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>The couple steps inside just as you walk out. Something feels off about them, maybe it’s their clothes or their accent. Hard to say.</blockquote>
<<speech "mc" "$name">>Travelers?<</speech>>
<blockquote>Could they be heading out on a journey like yours with Jane?
</blockquote>
<<speech "mc" "$name">>.............................<</speech>>
<blockquote>You consider asking for travel tips, curious about their experiences on the road. But when you glance back inside, they’re gone.</blockquote>
<<speech "mc" "$name">>[[Bummer.|GSStoreExt1b]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>A New York plated car, they're far from home. There are faster plane trip and there are faster train ride, but those two choose to ride their car all the way here.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>Just like what you're about to do. You wonder why they would make such a trip? Revenge for the long lockdown? A family visit? Long vacation? Or just because?</blockquote>
<blockquote>The two of them looks tight by the way they acted earlier, though you only saw them for a few seconds. You wonder the relationship between you and Jane would be by the end of [[your own trip.|GSParkCenter1b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>Jane was arranging the items she just bought, but she stopped as soon as she noticed you approaching.</blockquote>
<<speech "gf" "Jane">>There you are. Did you say your farewell to Steve?<</speech>>
<<speech "mc" "$name">>Kinda. But it's not like we'll be gone forever.<</speech>>
<<speech "gf" "Jane">>Heh~ anyway, what did you buy?<</speech>>
<<if $convitem.length == 0>>
<<speech "mc" "$name">>This.<</speech>
<blockquote>You hand her the peppermint and the candy.</blockquote>
<<speech "gf" "Jane">>...That's it?<</speech>>
<<speech "mc" "$name">>We need sweets, so I bought sweets.<</speech>>
<<speech "gf" "Jane">>I mean, I guess...<</speech>>
<blockquote>With that, you continue to the door before a [[voice|ManHelp1-1]] stops you in your tracks.</blockquote>
<<elseif $convitem.length >= 1 && $convitem.length <= 4>>
<<speech "mc" "$name">>Here.<</speech>>
<<speech "gf" "Jane">>Looks light. You didn’t buy much?<</speech>>
<<speech "mc" "$name">>[[Mmm~|CargoCheck1-2]]<</speech>>
<<elseif $convitem.length >= 5>>
<<speech "mc" "$name">>Here you go.<</speech>>
<blockquote>You put the shopping bag beside her huge luggage and begin to [[unpack it.|CargoCheck1-2]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<speech "gf" "Jane">>Let's see...<</speech>>
<blockquote>She pulls an item from the bag.</blockquote>
<<if $convitem.includes("Charger")>><<set $affection += 2>>
<blockquote>Jane pulled the power bank out of the bag.</blockquote>
<blockquote class="location">+2 Affection</blockquote>
<<speech "gf" "Jane">>Ahh~ a power bank! And it's 30k too. Geez~<</speech>>
<<speech "mc" "$name">>It was the first thing I grabbed, not gonna lie.<</speech>>
<<speech "gf" "Jane">>Of course~ It's you we're talking about. And then...<</speech>>
<</if>>
<<if $convitem.includes("Energy")>><<set $affection += 2>>
<blockquote>Jane pulled the granola bars out.</blockquote>
<blockquote class="location">+2 Affection</blockquote>
<<speech "gf" "Jane">>Nice. You know, we used to get these as rations during short flights.<</speech>>
<<speech "mc" "$name">>Only short flights?<</speech>>
<<speech "gf" "Jane">>Mmm~ For long flights, we got filet mignon.<</speech>>
<<speech "mc" "$name">>...What?<</speech>>
<</if>>
<<if $convitem.includes("Water")>><<set $affection -= 2>>
<blockquote>She stares at the bottle of water you bought.</blockquote>
<blockquote class="location">-2 Affection</blockquote>
<<speech "gf" "Jane">>Sigh...<</speech>>
<blockquote>She points to two huge bottles of water already in the trunk.</blockquote>
<<speech "gf" "Jane">>We already have those.<</speech>>
<<speech "mc" "$name">>S-Sorry...<</speech>>
<</if>>
<<if $convitem.includes("Mask")>><<set $affection -= 2>>
<blockquote>Jane shakes her head as she saw you bought another box of mask.</blockquote>
<blockquote class="location">-2 Affection</blockquote>
<<speech "gf" "Jane">>Didn't you pack those masks yourself yesterday?<</speech>>
<blockquote>She points to three whole boxes of masks inside the trunk.</blockquote>
<<speech "mc" "$name">>W-What's one more, right?<</speech>>
<<speech "gf" "Jane">>It's too much.<</speech>>
<</if>>
<<if $convitem.includes("Meds")>><<set $affection -= 2>>
<blockquote>You can hear Jane sighing when she sees the medicine.</blockquote>
<blockquote class="location">-2 Affection</blockquote>
<<speech "gf" "Jane">>Sigh... We're not going to be on the road for months, $name. We don’t need this much medicine.<</speech>>
<<speech "mc" "$name">>What's wrong with overpacking this?<</speech>>
<<speech "gf" "Jane">>We already have medicine, dummy. Are you setting up an aspirin smuggling ring?<</speech>>
<</if>>
<<if $convitem.includes("Sunscreen")>><<set $affection += 2>>
<blockquote>Jane is pleasantly surprised as she pulls out the sunscreen.</blockquote>
<blockquote class="location">+2 Affection</blockquote>
<<speech "gf" "Jane">>Shit, sunscreen! I knew I forgot something!<</speech>>
<<speech "mc" "$name">>Aren't you lucky to have me, then?<</speech>>
<<speech "gf" "Jane">>Ha~! Sure, sure~<</speech>>
<</if>>
<<if $convitem.includes("Maps")>><<set $affection += 2>>
<blockquote>Jane murmurred in agreement as she sees the map.</blockquote>
<blockquote class="location">+2 Affection</blockquote>
<<speech "gf" "Jane">>Ah~! A map. Good thinking.<</speech>>
<<speech "mc" "$name">>I don’t really think we’re gonna need it, but it won’t hurt, right?<</speech>>
<<speech "gf" "Jane">>Yep.<</speech>>
<</if>>
<<if $convitem.includes("Flashlight")>><<set $affection -= 2>>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote class="location">-2 Affection</blockquote>
<blockquote>She says as she dangles a flashlight in her hand.</blockquote>
<<speech "mc" "$name">>Wait, when did you get that?<</speech>>
<<speech "gf" "Jane">>I didn’t get it. I took it from the house.<</speech>>
<<speech "mc" "$name">>O-Oh...<</speech>>
<</if>>
<<if $convitem.includes("Caritems")>><<set $affection += 2>>
<blockquote>Jane nods her head in agreement as she sees the the car maintenance items.</blockquote>
<blockquote class="location">+2 Affection</blockquote>
<<speech "gf" "Jane">>Ahh~ now that's what we truly needs.<</speech>>
<<speech "mc" "$name">>You can't go on a road trip without these.<</speech>>
<<speech "gf" "Jane">>True, but we nearly forgot them.<</speech>>
<<speech "mc" "$name">>R-Right.<</speech>>
<</if>>
<<speech "gf" "Jane">>That's it.<</speech>>
<blockquote>She crossed her hands after [[seeing your haul.|CargoCheck1-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<img "Images/inc/gstation1/man1.webp" "500px">><</img>>
<blockquote>The man stood by his car, his gaze locked onto you. It was him, he was the one who had called out earlier.</blockquote>
<<speech "muscman" "Muscular Man">>A little help, friend?<</speech>>
<blockquote>He asked for help, but there was no pleading in his voice. His tone was calm, almost expectant, like he knew you'd say yes.</blockquote>
<<speech "muscman" "Muscular Man">>Battery's dead, I forgot to change it.<</speech>>
<<speech "gf" "Jane">>Oh, do you need a jumpstart?<</speech>>
<<speech "muscman" "Muscular Man">>Bingo.<</speech>>
<blockquote>That was the first time he smiled and it was directed at your girlfriend. Irritation sparks in your chest, and you leaned to whisper to Jane.</blockquote>
<<speech "mc" "$name">>Should I help him...?<</speech>>
<<speech "gf" "Jane">>...Obviously? Why wouldn't you?<</speech>>
<blockquote>She's too kind for her own good. You wanted to help him just to get it over with, but there was one problem: you had no idea how to jumpstart a car.</blockquote>
<<speech "muscman" "Muscular Man">>No worries, man. I’ve got a starter in here if you don’t have one, just need your car.<</speech>>
<blockquote>That makes thing easier, but...</blockquote>
<blockquote class="choice-blockquote">
<<link [[Be honest|ManHelp1a-1]]>>
<<set $affection -= 2>>
<<set $respect -= 2>>
<<set $first_honest to true>><</link>>
<<link [[Try to do it anyway|ManHelp1b-1]]>>
<<set $first_honest to false>><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<if $gconvitem.length == 5 && $bconvitem == 0>>
<<set $affection += 10>>
<<set $respect += 10>>
<<set $first_conv_pissedoff = false>>
<blockquote class="location">+10 Affection</blockquote>
<blockquote class="location">+10 Respect</blockquote>
<blockquote>Jane turns to you with a wide smile, her eyes gleaming with approval.</blockquote>
<<speech "gf" "Jane">>That was all perfect choices, $name.<</speech>>
<<speech "mc" "$name">>Is it?<</speech>>
<<speech "gf" "Jane">>Mmm~<</speech>>
<blockquote>She throws her arms around you, pulling you into a kiss that lingers just long enough to make your heart race.</blockquote>
<<speech "gf" "Jane">>Consider this your reward.<</speech>>
<<speech "mc" "$name">>C-Cool.<</speech>>
<<elseif $bconvitem.length == 4 && $gconvitem.length == 0>>
<<set $affection -= 10>>
<<set $respect -= 10>>
<<set $first_conv_pissedoff = true>>
<blockquote class="location">-10 Affection</blockquote>
<blockquote class="location">-10 Respect</blockquote>
<blockquote>Jane crosses her arms, her gaze sharp and unwavering as she looks you up and down.</blockquote>
<<speech "gf" "Jane">>You're doing this on purpose, aren't you?<</speech>>
<<speech "mc" "$name">>D-Doing what?<</speech>>
<<speech "gf" "Jane">>Every single thing you picked is wrong. How does that even happen? Are you deliberately trying to piss me off?<</speech>>
<blockquote>Her words cut deep as she shakes her head in disappointment, her disdain barely concealed.</blockquote>
<<speech "gf" "Jane">>Tch, no matter.<</speech>>
<<else>>
<<speech "gf" "Jane">>Well, guess that's that.<</speech>>
<blockquote>With a shrug, Jane methodically packs your haul into the trunk, her movements calm but measured.</blockquote>
<<speech "mc" "$name">>Okay then.<</speech>>
<</if>>
<blockquote>As the two of you finish, a loud roar erupts from a nearby engine, only to sputter and die moments later.</blockquote>
<<speech "mc" "$name">>Mm?<</speech>>
<blockquote>Turning toward the sound, you spot the muscular man from earlier struggling with his car. He notices your gaze and raises a hand, waving with a sheepish grin.</blockquote>
<<speech "muscman" "Muscular Man">>Hey~ [[A little help?|ManHelp1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>You chose to be honest.</blockquote>
<<speech "gf" "Jane">>You... don't know how to jumpstart a car?<</speech>>
<blockquote>She looks genuinely surprised, even a bit perturbed.</blockquote>
<<speech "mc" "$name">>I bought the car a few months before the pandemic, Jane. I literally didn’t have time to fiddle with it.<</speech>>
<<speech "gf" "Jane">>W-Well... that's...<</speech>>
<blockquote>It seems like she wants to say something more, but she holds back.</blockquote>
<blockquote class="location">-2 Affection</blockquote>
<blockquote class="location">-2 Respect</blockquote>
<blockquote>The man looks like he's holding his laughter after hearing your confession.</blockquote>
<<speech "muscman" "Muscular Man">>Pft- so where are you two headed, anyway? That’s a lot of luggage.<</speech>>
<<speech "gf" "Jane">>...Florida.<</speech>>
<<speech "muscman" "Muscular Man">>Well, that's fucking stupid.<</speech>>
<<speech "mc" "$name">>W-What?<</speech>>
<blockquote>Jane bit her lip, but [[this guy doesn't hold back.|ManHelp1a-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>The muscular man walked over to his trunk and handed you the jumper cables. You could already feel the sweat starting to form.</blockquote>
<<speech "mc" "$name">>W-Why don't you set it up? I-I'll drive my car closer.<</speech>>
<<speech "muscman" "Muscular Man">>Nah, bro. You set it up, I'll do my thing.<</speech>>
<blockquote>He flexed his muscles, and for a moment, Jane couldn’t help but glance at him.</blockquote>
<<speech "muscman" "Muscular Man">>I'll push mine.<</speech>>
<blockquote>You nodded stiffly, walking toward the front of your car and lifting the hood. No clue what to do, but hey, you're a programmer, trial and error is your thing. How hard could this be?</blockquote>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>Out of the corner of your eye, you caught Jane lingering on his frame.</blockquote>
<blockquote class="location">+2 Lust</blockquote>
<<set $lust += 2>>
<blockquote>A wave of [[mixed feelings|ManHelp1b-2]] stirred inside you.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<speech "muscman" "Muscular Man">>Do you really think you're gonna drive 4,000 fucking miles without knowing a damn thing about cars? Wake up, bro.<</speech>>
<<speech "mc" "$name">>H-Hey...<</speech>>
<blockquote>He's now standing over you, his posture aggressive. Jane watches from a distance, still averting her gaze from you.</blockquote>
<<speech "muscman" "Muscular Man">>You can’t just Google your way out of a problem when your engine blows up. You better know what’s going on!<</speech>>
<blockquote>To be fair, he's speaking the truth. But that doesn't make him any less of an asshole.</blockquote>
<<speech "mc" "$name">>S-Stop...<</speech>>
<<speech "muscman" "Muscular Man">>What else can't you do? Can you change a tire? Bet you can't.<</speech>>
<blockquote>He's towering over you now, and you can feel the frustration boiling up inside. You can’t hold it back any longer, but...</blockquote>
<blockquote class="choice-blockquote">
<<link [[Fight back!|ManHelp1a-3a]]>>
<<set $affection += 5>>
<<set $respect += 5>>
<<set $lust += 5>>
<<set $first_defend to true>><</link>>
<<link [[Take it...|ManHelp1a-3b]]>>
<<set $respect -= 5>>
<<set $affection -= 5>>
<<set $first_defend to false>><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<speech "mc" "$name">>Fuck off!<</speech>>
<blockquote class="location">+5 Affection</blockquote>
<blockquote class="location">+5 Respect</blockquote>
<blockquote>You pushed him away with all your strength. He’s a big guy, but you managed to shove him back, getting him out of your face.</blockquote>
<<speech "muscman" "Muscular Man">>What? I’m just concerned. Florida’s far, man. If you can’t do anything, you’re gonna end up dead.<</speech>>
<blockquote>He says he’s concerned, but you can tell it’s not about that. You saw the way he was eyeing Jane when he stalked toward you.</blockquote>
<<speech "mc" "$name">>So what? Got any advice for a rookie traveler? Huh?<</speech>>
<<speech "muscman" "Muscular Man">>Advice? Well, did you even check your car before you started driving? <</speech>>
<blockquote>Did you? You did.</blockquote>
<<speech "mc" "$name">>Oh! I fucking did. I sent it to a garage for a check-up, a tune-up, all that shit. Is that enough for you?<</speech>>
<blockquote>Now you're the one who's standing in front of his face.</blockquote>
<<speech "muscman" "Muscular Man">>Wel-<</speech>>
<<speech "mc" "$name">>Oh! I even remembered to change the fucking battery, you know, unlike someone here.<</speech>>
<<speech "muscman" "Muscular Man">>Oh y-<</speech>>
<<speech "mc" "$name">>Asshole.<</speech>>
<blockquote>You turned your back on him, quickly dragging Jane into the car. Then, you slammed the [[door shut.|ManHelp1a-3a2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>You really want to fight back, but you can’t. Not with this guy.</blockquote>
<blockquote class="location">-5 Affection</blockquote>
<blockquote class="location">-5 Respect</blockquote>
<<speech "mc" "$name">>................................<</speech>>
<<speech "muscman" "Muscular Man">>Oh, don’t be a pussy. Look at me, I’m talking here.<</speech>>
<<speech "mc" "$name">>S-Stop it...<</speech>>
<<speech "muscman" "Muscular Man">>Look at those noodle arms. Hah! You got a huge car, can you even push that thing?<</speech>>
<<speech "mc" "$name">>...............................<</speech>>
<<speech "muscman" "Muscular Man">>Well, guess your girlfriend's here, maybe she’s strong enough to do it.<</speech>>
<blockquote>He’s tearing into your dignity, but there’s nothing you can do.</blockquote>
<<speech "muscman" "Muscular Man">>You know what? I think she'll be better off in my car.<</speech>>
<blockquote>He finally turns to Jane with a smirk on his face and gives her an inviting look. Jane, now shaken out of her shock, takes action.</blockquote>
<<speech "gf" "Jane">>O-Okay, that’s it! Do you want us to help you, or do you want to keep being a fucking asshole?<</speech>>
<<speech "muscman" "Muscular Man">>I’m not being an asshole, baby, I’m just giving him some friendly advice. And I do need your he-<</speech>>
<<speech "gf" "Jane">>Go find someone else.<</speech>>
<blockquote>Jane rushes in and pulls you [[into the car.|ManHelp1a-3b2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<speech "mc" "$name">>Tch!<</speech>>
<<img "Images/inc/interior1.webp" "700px">><</img>>
<blockquote>He’s fuming outside the car, but you just ignore him. After a few minutes, he walks away.</blockquote>
<<speech "mc" "$name">>Fucking asshole...<</speech>>
<blockquote>You take a deep breath, letting your anger settle and calm down.</blockquote>
<<speech "gf" "Jane">>Damn, $name.<</speech>>
<<speech "mc" "$name">>Sigh...<</speech>>
<<speech "gf" "Jane">>I never saw you like that before.<</speech>>
<<speech "mc" "$name">>Sorry about that...<</speech>>
<<speech "gf" "Jane">>No no no~<</speech>>
<blockquote>You turn to her, confused.</blockquote>
<<speech "gf" "Jane">>It's kinda sexy.<</speech>>
<<speech "mc" "$name">>...Hah!<</speech>>
<blockquote>You can’t help but chuckle at her unexpected reaction.</blockquote>
<<speech "mc" "$name">>Let's just go.<</speech>>
<<speech "gf" "Jane">>Mmm~ me likey~<</speech>>
<<set $firstsexy to true>>
<blockquote>With amusement tugging at your lips, you start driving, [[your mood lifted..|ManHelp1a-3a3]]</blockquote>
</div>
</div><<set $location to "Road">>
<<set $locationImages to "Road">>
<div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<blockquote>The two of you continue the trip on a much improved mood. From here, it will probably take a few hours to reach Big Bear Lake.</blockquote>
<blockquote>Jane fiddles with the radio until she heard a familiar tune.</blockquote>
<blockquote>The sun's begin to rise as you continue your journey. Light breeze slips through the window, carrying the distant scent of pine and fresh mountain air.</blockquote>
<blockquote>Jane began to sing along, her voice was far from good but you enjoyed it regardless. Soon, the landscape changed into those of trees and high mountains</blockquote>
<blockquote>Finally, the lake's calm blue waters appear on the horizon, framed by rugged peaks though still covered by morning mist. Big Bear Lake, [[in sight!|BBL1-0]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<set $firstinsult to true>>
<<img "Images/inc/interior1.webp" "700px">><</img>>
<blockquote>Jane slammed the door.</blockquote>
<<speech "mc" "$name">>.................................<</speech>>
<<speech "gf" "Jane">>Grow a fucking spine.<</speech>>
<blockquote>This is probably the first time in your relationship that she’s ever insulted you. And it actually stings.</blockquote>
<<speech "mc" "$name">>...Sorry.<</speech>>
<<speech "gf" "Jane">>Apologize to yourself.<</speech>>
<blockquote>You go silent. She’s right.</blockquote>
<<speech "gf" "Jane">>Just... drive, okay?<</speech>>
<blockquote>And [[you do.|ManHelp1a-3b3]]</blockquote>
</div>
</div><<set $location to "Road">>
<<set $locationImages to "Road">>
<div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<blockquote>The tension is palpable inside of the car. Jane turned her face from you and went straight to her phone.</blockquote>
<blockquote>The warm rays of California sun is now tinted with uneasiness as you continue your journey. The trip to Big Bear lake will probably take a few hours, you wonder when this oppresive silence will end.</blockquote>
<blockquote>To combat the silence, you decided to fiddle with the radio, but then a lucky coincidence strike as Jane appeared to the same conclusion. Both of your hand touched the knob at the same time and brushed against each other. She offered a small apologetic look, which you gladly meet with a faint, relieved smile.</blockquote>
<blockquote>Soon enough the ice begins to crack, bit by bit, as the two of you resumed to talk, there is still some tension but it's soon got overwhelmed by the scenery of pines, high mountains, and the beautiful glinting waters of the lake.</blockquote>
<blockquote>You exchanged smiles with Jane. Big Bear Lake is in sight, the first proper destination on your [[long journey.|BBL1-0]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<blockquote>You shook the thought away and forced yourself to focus. The inside of a car is similar to the inside of a computer. It should be easy for someone who understands that, but not for you.</blockquote>
<<speech "mc" "$name">>...What the fuck is this?<</speech>>
<blockquote>You stared blankly, completely clueless. You knew Google held the answers to everything, but before you could even reach for your phone, the man appeared beside you, sweat glistening off his chest.</blockquote>
<<speech "muscman" "Muscular Man">>Phew~ now, give me the cab- what the hell were you doing?<</speech>>
<<speech "mc" "$name">>I-I, uhh, got a message.<</speech>>
<blockquote>Jane approached, curiosity piqued.</blockquote>
<<speech "gf" "Jane">>You still haven't hooked it up?<</speech>>
<blockquote>Your pride is stung and with no desire to be embarrassed, you decided to hook the cable into whatever looked hookable.</blockquote>
<<speech "muscman" "Muscular Man">>That's the engine.<</speech>>
<<speech "mc" "$name">>O-Oh.<</speech>>
<blockquote>Trial and error, right? You scanned again and this time seen the battery. Trial and error says you should hook it and then try it again if it's not working, so that's what you di-</blockquote>
<<speech "muscman" "Muscular Man">>Whoa, whoa, whoa! You trying to blow us up?<</speech>>
<blockquote>Blow up? The realization hits hard, you hadn't considered the risk.</blockquote>
<<speech "muscman" "Muscular Man">>You have zero idea how to do this, do you?<</speech>>
<<speech "mc" "$name">>...............................<</speech>>
<blockquote>Without another word, he yanked the cable [[out of your hand.|ManHelp1b-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<set $firsthumiliation to true>>
<blockquote>He shoved you out of the way.</blockquote>
<<speech "muscman" "Muscular Man">>By the way, saw your luggage, where you headed?<</speech>>
<<speech "mc" "$name">>...Florida.<</speech>>
<<speech "muscman" "Muscular Man">>Florida? You’re driving to Florida without even knowing how to jumpstart a car? That’s fucking retarded.<</speech>>
<<speech "mc" "$name">>H-Hey...<</speech>>
<<speech "muscman" "Muscular Man">>Can you even change the tire?<</speech>>
<<speech "mc" "$name">>O-Of course I can.<</speech>>
<<speech "muscman" "Muscular Man">>Very convincing.<</speech>>
<<speech "mc" "$name">>S-Shut-<</speech>>
<blockquote>You raise your voice, ready to defend yourself, when someone else cuts in.</blockquote>
<<speech "gf" "Jane">>Get off him, $name.<</speech>>
<<speech "mc" "$name">>J-Jane? B-But he...<</speech>>
<<speech "gf" "Jane">>But he's what? He's right?<</speech>>
<blockquote>The man chuckles, deep and hearty. Your face burns with embarrassment, chest tight as you step over to Jane.</blockquote>
<<speech "mc" "$name">>W-Why did you side with him...?<</speech>>
<<speech "gf" "Jane">>He thought you could do it. Hell, I thought you could too. It’s fair if he’s angry, especially after you nearly blew us up.<</speech>>
<<speech "mc" "$name">>....................................<</speech>>
<<speech "gf" "Jane">>If you can't do something, just say it.<</speech>>
<<set $respect -= 10>>
<<set $affection -= 5>>
<blockquote class="location">-10 Respect</blockquote>
<blockquote class="location">-5 Affection</blockquote>
<<speech "mc" "$name">>[[S-Sorry...|ManHelp1b-4]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-gstation">
<div class="overlay"></div>
<<img "Images/inc/interior1.webp" "400px">><</img>>
<blockquote>The man got straight to work. Unlike you, he knew exactly what he was doing. Your protest died in your throat when Jane's sharp glare stopped you cold as he slipped into your car to start the engine.</blockquote>
<<speech "gf" "Jane">>.......................................<</speech>>
<blockquote>Minutes passed, and you couldn't help but notice Jane's gaze lingering on his well-defined arms and chest. Her breaths hitched ever so slightly.</blockquote>
<<set $lust += 5>>
<blockquote class="location">+5 Lust</blockquote>
<<speech "mc" "$name">>J-Jane?<</speech>>
<<speech "gf" "Jane">>.......................................<</speech>>
<blockquote>She didn't even acknowledge you.</blockquote>
<blockquote>Ten minutes later, his car roared back to life. He turned to you both, and you braced yourself for a usual thanks, but instead...</blockquote>
<<speech "muscman" "Muscular Man">>Jane, right? Hop in my car.<</speech>>
<<speech "mc" "$name">>W-Wha?<</speech>>
<<speech "muscman" "Muscular Man">>Hah! I'm just kidding.<</speech>>
<blockquote>He said it with a grin, but his eyes were locked on Jane, deep and unwavering. You saw the way her cheeks reddened, clearly flustered.</blockquote>
<<speech "muscman" "Muscular Man">>Thanks for the help guys, I'll see you around.<</speech>>
<blockquote>With that, he slid into his car and drove off, leaving a quiet, tense air behind.</blockquote>
<<speech "mc" "$name">>Haa... c-come on, Jane.<</speech>>
<blockquote>She followed without a word. You didn’t even realize that she [[never denied his offer.|ManHelp1a-5]] joke or not.</blockquote>
</div>
</div><<set $location to "Road">>
<<set $locationImages to "Road">>
<div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<<img "Images/inc/interior1.webp" "700px">><</img>>
<blockquote>You bite your lip as you restart the drive, replaying what just happened in your head. It was entirely your fault, and Jane didn’t hold back from calling you out. You steal a glance at her, only to see her focused on her phone, deliberately ignoring you.</blockquote>
<blockquote>The bright California sun feels relentless, exposing your vulnerability rather than offering warmth. The drive to Big Bear Lake will take a few hours, and you find yourself hoping that by the time you arrive, things will feel normal again.</blockquote>
<blockquote>Halfway through, the cityscape gradually fades into tall pines and rugged mountains. The change catches your rural boy's eye, and you murmur your amazement, forgetting yourself for a moment.</blockquote>
<blockquote>Jane laughs at your reaction, breaking the silence. She then orders you to open the windows, which you gladly do. Cold mountain air rushes in, catching you off guard, and your gasp only makes her laugh harder.</blockquote>
<blockquote>As you drive on, her teasing softens, slipping back into the easy banter you both know. When Big Bear Lake finally comes into view, you unconsciously press the gas a bit harder, which she catches with an adoring smile. You’ve nearly arrived at [[your destination.|BBL1-0]]</blockquote>
</div>
</div><<set $location to "Big Bear Lake">>
<<set $locationImages to "Big Bear Lake">>
<div id="main-screen">
<div class="location-bblpark">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl1.webp" "400px">><</img>>
<<speech "mc" "$name">>ACHOO~!<</speech>>
<blockquote>You arrived a few minutes later, the first thing you noticed is the cold. The cold air bites at your exposed nape. It's still early in the day, just a few minutes before the clock strikes 10 AM. You sit behind the car, tying your shoes.</blockquote>
<<speech "mc" "$name">>Done...<</speech>>
<blockquote>The parking lot is sparsely populated, with only a few cars scattered here and there. You can probably guess why that is.</blockquote>
<<speech "mc" "$name">>Ngh...<</speech>>
<blockquote>You tighten your jacket, trying to ward off the chill. Jane has already gone ahead and is currently leaning on the guardrails. Unlike you, who’s struggling with the cold, she doesn’t seem bothered by it. She’s staring out at the lake, and for some reason, you catch a hint of guilt flickering across her face.</blockquote>
<<speech "gf" "Jane">>...............................<</speech>>
<blockquote>You walk over to where she’s standing, just below a sign that reads [["Watch your distance."|BBL1-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblpark">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl4.webp" "400px">><</img>>
<<speech "mc" "$name">>Hey.<</speech>>
<blockquote>Jane stiffened the moment she heard you call her name. Slowly, she turns around.</blockquote>
<<speech "gf" "Jane">>Sorry... I guess we picked the wrong time to come here.<</speech>>
<blockquote>She gestures toward the lake. It's a beautiful sight, but something’s missing. There’s hardly anyone around, and the lake itself is eerily still, blanketed in mist, with no signs of life.</blockquote>
<<speech "mc" "$name">>..................................<</speech>>
<blockquote class="choice-blockquote">
<<link [[Are we?|BBL1-3]]>>
<<set $affection += 3>>
<<set $bbl_1 to "good">><</link>>
<<link [[We? Don't you mean you?|BBL1-3]]>>
<<set $affection -= 3>>
<<set $bbl_1 to "bad">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblpark">
<div class="overlay"></div>
<<if $bbl_1 is "good">>
<blockquote class="location">+3 Affection</blockquote>
<blockquote>You smile softly, resting your hand gently on her shoulder.</blockquote>
<<speech "mc" "$name">>Are we? It looks to me like we got the entire place to ourselves.<</speech>>
<<speech "gf" "Jane">>You’re being sweet.<</speech>>
<<speech "mc" "$name">>I am.<</speech>>
<<speech "gf" "Jane">>Oh you!<</speech>>
<blockquote>She playfully punches you in the shoulder, and you wince exaggeratedly.</blockquote>
<<speech "mc" "$name">>Oww~<</speech>>
<<speech "gf" "Jane">>Toughen up!<</speech>>
<blockquote>She stops after a few more lighthearted punches, then flashes a smile before turning back to the lake. You glance around and notice a secluded shore further down, the perfect hidden spot to relax.</blockquote>
<<speech "mc" "$name">>What do you think? Want to head down there?<</speech>>
<blockquote>She looks in the direction you’re pointing, her curiosity piqued.</blockquote>
<<speech "gf" "Jane">>There? Really? [[Sure!|BBL1-4]] But don't you dare lose your breath.<</speech>>
<<elseif $bbl_1 is "bad">>>
<blockquote class="location">-3 Affection</blockquote>
<blockquote>You feel a flicker of irritation as her words hit you.</blockquote>
<<speech "mc" "$name">>We? Jane, you picked this place.<</speech>>
<blockquote>Her eyes widen for a moment, then quickly avert as she looks away from you, clearly feels guilty.</blockquote>
<<speech "gf" "Jane">>...I'm sorry.<</speech>>
<<speech "mc" "$name">>Even the boats are out of service.<</speech>>
<<speech "gf" "Jane">>...I know.<</speech>>
<<speech "mc" "$name">>Maybe a little more research before making plans next time, huh?<</speech>>
<<speech "gf" "Jane">>.................................<</speech>>
<<speech "mc" "$name">>I mean, you even forgot about the hotel, that shou-<</speech>>
<<speech "gf" "Jane">>I get it already! Geez...<</speech>>
<blockquote>She half screamed at you, frustration seeping through her words. She half-turns away, visibly trying to hold it together, and you feel the sting of her reaction.</blockquote>
<<speech "mc" "$name">>A-Ah... s-shit...<</speech>>
<blockquote>The air feels thick now, tension brewing in the space between you. You both walk in silence, but then something catches your eye, a beautiful spot along the lake’s edge, just off the path.</blockquote>
<<speech "mc" "$name">>Let's go there.<</speech>>
<blockquote>She glances over at the spot you pointed out, her expression unreadable for a moment before softening.</blockquote>
<<speech "gf" "Jane">>...Yeah, it does look pretty.<</speech>>
<<speech "mc" "$name">>Let’s go then. [[Come on, let’s go.|BBL1-4]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl2.webp" "400px">><</img>>
<blockquote>The two of you continue down the trail leading to the lake.</blockquote>
<<speech "mc" "$name">>Careful.<</speech>>
<blockquote>The trail is slick, still damp from the rain, making each step precarious.</blockquote>
<<speech "gf" "Jane">>Right back at you.<</speech>>
<blockquote>Jane moves with ease, her practiced grace evident. Her past job required her to stay in top shape, and it clearly shows.</blockquote>
<<speech "mc" "$name">>Ngh...<</speech>>
<blockquote>Unlike you, a junior programmer that got turned into a WFH-ing junior programmer, so it's your choice to keep yourself in shape or not, and you chose not to.</blockquote>
<<speech "gf" "Jane">>Regretting not joining me for those jogs yet?<</speech>>
<<speech "mc" "$name">>I-I don't think jogging would affect these damn mud.<</speech>>
<<speech "gf" "Jane">>Oh? You sure about that?<</speech>>
<blockquote>With a teasing grin, she hops in front of you, her feet never slipping on the slick trail.</blockquote>
<<if $deptitem is "Shoe">>
<<speech "gf" "Jane">>Well, you got beaten by the wind. So I guess that makes sense.<</speech>>
<<speech "mc" "$name">>Come on... forget that already.<</speech>>
<</if>>
<blockquote>She smirks, then dashes ahead, her steps light and sure as she runs toward the [[end of the trail.|BBL1-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<speech "mc" "$name">>W-What?<</speech>>
<blockquote>As if gliding, she hopped from one dry spot to another, maintaining her balance all along the way.</blockquote>
<<speech "gf" "Jane">>I think it helps, $name.<</speech>>
<blockquote>She's far away, but you can feel her smirking.</blockquote>
<<speech "mc" "$name">>.......................................<</speech>>
<blockquote>She's acting smug, and you can't help but feel a little ticked off. What will you do about that?</blockquote>
<blockquote class="choice-blockquote">
<<link [[Run!|BBL1-6]]>>
<<set $respect -= 3>>
<<set $bbl_2 to "bad">><</link>>
<<link [[Don't get provoked.|BBL1-6]]>>
<<set $respect += 3>>
<<set $bbl_2 to "good">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<if $bbl_2 is "good">>
<blockquote class="location">+3 Respect</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You take a deep breath, steadying yourself, and continue walking at a measured pace.</blockquote>
<<speech "gf" "Jane">>Come on~<</speech>>
<<speech "mc" "$name">>Shut up, witch.<</speech>>
<blockquote>You refuse to let her get to you, focusing on keeping your cool.</blockquote>
<<if $deptitem is "Shoe">>
<<speech "gf" "Jane">>Wait... are you wearing that running shoes?<</speech>>
<<speech "mc" "$name">>Yeah.<</speech>>
<blockquote class="location">+3 Affection</blockquote>
<<speech "gf" "Jane">>Why would you wear that here? Hah, well... good call on not running.<</speech>>
<<set $affection += 3>>
<</if>>
<blockquote>Despite the slippery terrain, you press on, carefully navigating around the large wet patches on the ground.</blockquote>
<<speech "gf" "Jane">>Took your time, old man.<</speech>>
<blockquote>You catch up with her after a moment, your pace steady despite the challenges.</blockquote>
<<speech "mc" "$name">>Let's move on.<</speech>>
<<speech "gf" "Jane">>[[Lead the way.|BBL1-7]]<</speech>>
<<elseif $bbl_2 is "bad">>
<blockquote class="location">-3 Respect</blockquote>
<blockquote>You take a deep breath, try to steady yourself, and as you sprint forward, but you slip before you even take a proper step.</blockquote>
<<speech "mc" "$name">>FUCK!!!<</speech>>
<blockquote>Luckily, you manage to catch yourself with one hand before you face-plant into the mud.</blockquote>
<<speech "gf" "Jane">>$name!<</speech>>
<blockquote>Jane quickly rushes back to you, concern written all over her face.</blockquote>
<<speech "gf" "Jane">>Are you okay?<</speech>>
<<speech "mc" "$name">>Y-Yeah...<</speech>>
<<if $deptitem is "Shoe">>
<<speech "gf" "Jane">>Wait, why are you wearing running shoes here? Are you out of your mind?<</speech>>
<blockquote class="location">-3 Respect</blockquote>
<<speech "mc" "$name">>G-Give me a break, Jane.<</speech>>
<<speech "gf" "Jane">>O-Oh, sorry.<</speech>>
<<set $respect -= 3>>
<</if>>
<blockquote>As you steady yourself, Jane is practically holding you up like you're an elderly man.</blockquote>
<<speech "mc" "$name">>I-I can walk, Jane.<</speech>>
<blockquote>She lets go of you, her grip loosening slightly.</blockquote>
<<speech "mc" "$name">>EEPPPPP~!!!<</speech>>
<blockquote>Just as you find your balance again, your feet slip out from under you, and you go down once more. From behind, you hear someone laughing.</blockquote>
<blockquote>A jogger, watching the whole scene unfold, is struggling to hold back his laughter, but he's doing a very very bad job at it.</blockquote>
<<speech "gf" "Jane">>...Let's go, old man.<</speech>>
<<speech "mc" "$name">>Y-Yeah...<</speech>>
<blockquote>Jane, not missing a beat, leads you [[all the way down.|BBL1-7]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-bblrest">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl3.webp" "400px">><</img>>
<blockquote>The two of you reach the bottom of the pathway and spot a resting area ahead.</blockquote>
<<speech "mc" "$name">>It still misty, huh?<</speech>>
<<speech "gf" "Jane">>I know, right? Even though it's already around 10.<</speech>>
<blockquote>The path ahead still seems long, with your destination quite a distance away.</blockquote>
<<speech "mc" "$name">>Wanna sit down for a bit?<</speech>>
<<speech "gf" "Jane">>Out of breath already?<</speech>>
<<speech "mc" "$name">>W-What? No.<</speech>>
<<speech "gf" "Jane">>Just teasing, babe. But you’re right, we should wait for the fog to clear a little.<</speech>>
<blockquote>You nod in agreement, though the real reason you want to sit down is because you’re actually are [[out of breath.|BBL1-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<set $location to "CA - AZ Highway">>
<<set $locationImage to "Highway1">>
<<speech "mc" "$name">>*brrrrrrrrrrrrrrrrrrr*<</speech>>
<<img "Images/inc/caliroad2.webp" "500px">><</img>>
<<speech "gf" "Jane">>What was that? Are you growling at me or something?<</speech>>
<<speech "mc" "$name">>It's my tummy.<</speech>>
<blockquote>The detour to Big Bear Lake has come to an end, and you’re now back on the road.</blockquote>
<<speech "mc" "$name">>How much farther do we have to go?<</speech>>
<<speech "gf" "Jane">>About fifty miles. *gulp*<</speech>>
<<speech "mc" "$name">>Shit... I'm going to starve to death...<</speech>>
<<speech "gf" "Jane">>That's strange, I don't feel hungry at all. *cruch*<</speech>>
<blockquote>She said this while munching on a bag of potato chips.</blockquote>
<<speech "gf" "Jane">>Mmm... shit...<</speech>>
<blockquote>She paused mid-crunch, looking at the now-empty bag.</blockquote>
<<speech "mc" "$name">>Guess I won't starve alone after all.<</speech>>
<blockquote>Unbothered, she leaned over to the passenger seat and grabbed another bag of chips.</blockquote>
<<speech "mc" "$name">>[[Haa...|TheRoad1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblrest">
<div class="overlay"></div>
<blockquote>You can feel the residual dampness in the air from last night's rain, and it makes the cold bite even harder, colder than usual.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<<speech "gf" "Jane">>Is it really that cold?<</speech>>
<<speech "mc" "$name">>I-I don’t know how you’re handling it, to be honest.<</speech>>
<blockquote>Jane stands there in her usual clothes, unaffected, while you're wrapped up in a jacket, still shivering with your teeth chattering.</blockquote>
<<speech "gf" "Jane">>I’ve lived here my whole life, but you're the strange one. You've been here for what, six years? And you still can’t handle the cold?<</speech>>
<<speech "mc" "$name">>I-I can, but this is different!<</speech>>
<blockquote>Jane shakes her head with a small smile, clearly amused.</blockquote>
<<speech "gf" "Jane">>Well, you're lucky I brought this,<</speech>>
<blockquote>She reaches into her bag and pulls out a bottle of heated water and some cocoa powder.</blockquote>
<<speech "gf" "Jane">>Let's [[have a party.|BBL1-9]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblrest">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl6.webp" "400px">><</img>>
<blockquote>The sweetness and slight bitterness of the cocoa blend together perfectly, its warmth seeping through you, offering much-needed comfort.</blockquote>
<<speech "mc" "$name">>Ahh... thanks.<</speech>>
<blockquote>Jane only nods, her eyes scanning the area around you as if lost in thought.</blockquote>
<<speech "gf" "Jane">>$name... do you think things will go back to normal once we’re back?<</speech>>
<<speech "mc" "$name">>Normal, huh? I don't even know what "normal" is anymore.<</speech>>
<blockquote>It was a casual quip, but you notice Jane hesitate, her gaze lingering on you for a moment longer than usual.</blockquote>
<<speech "gf" "Jane">>...Before everything happened.<</speech>>
<blockquote>You take a moment to look around. The resting spot is almost eerily quiet, with only a few scattered people. An occasional jogger, some sitting on the pier, and a girl absorbed in a book under a nearby tree.</blockquote>
<<speech "mc" "$name">>Before everything happened...<</speech>>
<blockquote class="choice-blockquote">
<<link [[Be hopeful|BBL1-10]]>>
<<set $affection += 4>>
<<set $bbl_3 to "good">><</link>>
<<link [[Be realistic|BBL1-10]]>>
<<set $affection -= 4>>
<<set $bbl_3 to "bad">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblrest">
<div class="overlay"></div>
<<if $bbl_3 is "good">>
<blockquote class="location">+4 Affection</blockquote>
<blockquote>You set your cup down, offering Jane a gentle smile.</blockquote>
<<speech "mc" "$name">>I think it will.<</speech>>
<<speech "gf" "Jane">>...Really?<</speech>>
<blockquote>There's a note of uncertainty in her voice. She wants to believe you, but it’s hard to do so.</blockquote>
<<speech "mc" "$name">>Trust me. The moment we're back, my boss will drag everyone back into the office.<</speech>>
<blockquote>She chuckles at your attempt at humor, the tension easing from her shoulders.</blockquote>
<<speech "mc" "$name">>And you’ll be back in the air soon enough.<</speech>>
<blockquote>At the mention of "in the air," she gazes up at the sky for a moment, her thoughts distant.</blockquote>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>She turns back to you, her expression unreadable.</blockquote>
<<speech "gf" "Jane">>What if I don't want to?<</speech>>
<<speech "mc" "$name">>Then you can spend the rest of your life watching shitty telenovela with my mom.<</speech>>
<<speech "gf" "Jane">>Heh... fuck you.<</speech>>
<blockquote>The conversation settles into a comfortable silence, and gradually, you feel the warmth of the cocoa slowly working its way through you, soothing your chilled body. [[The warmth spreads through you.|BBL1-11]]</blockquote>
<<elseif $bbl_3 is "bad">>
<blockquote class="location">-4 Affection</blockquote>
<blockquote>You lower your cup, your gaze lost in the misty expanse of the lake.</blockquote>
<<speech "mc" "$name">>I don't think so.<</speech>>
<<speech "gf" "Jane">>...You don't?<</speech>>
<blockquote>You stare absently at the cup in your hands, your thoughts far away.</blockquote>
<<speech "mc" "$name">>I don’t even think this restriction lift is going to last. I’m sure we’ll be locked inside our homes again after our road trip.<</speech>>
<<speech "gf" "Jane">>...That's rather negative, $name.<</speech>>
<<speech "mc" "$name">>I'm just being realistic.<</speech>>
<<speech "gf" "Jane">>Or cynical.<</speech>>
<<speech "mc" "$name">>If that’s what it is, then sure.<</speech>>
<blockquote>You turn your gaze to the horizon, the mist still lingering in the air.</blockquote>
<<speech "mc" "$name">>It's the truth.<</speech>>
<blockquote>Jane falls silent, the words hanging between you. You take another sip of the cocoa, feeling the warmth slowly spread through you. [[The warmth courses through your body.|BBL1-11]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-bblrest">
<div class="overlay"></div>
<blockquote>The mist slowly begins to fade, and the air is becoming slightly warmer.</blockquote>
<<speech "mc" "$name">>Ahh...<</speech>>
<blockquote>Waiting for the mist to completely dissipate could take hours, so you stretch out your hand toward Jane.</blockquote>
<<speech "mc" "$name">>Let's continue.<</speech>>
<blockquote>She takes your hand in hers.</blockquote>
<<speech "gf" "Jane">>Not tired anymore?<</speech>>
<<speech "mc" "$name">>No, not anymore.<</speech>>
<<speech "gf" "Jane">>Mm-<</speech>>
<<speech "mc" "$name">>I-I mean, I wasn’t even tired in the first place!<</speech>>
<<speech "gf" "Jane">>Sure, $name. Whatever you say, $name.<</speech>>
<blockquote>She stands up and walks beside you, her pace matching yours.</blockquote>
<<speech "gf" "Jane">>Every day morning jog, 30 push-ups, 30 sit-ups, 30 chin-ups, small dumbbell exercises... What else...?<</speech>>
<<speech "mc" "$name">>What?<</speech>>
<<speech "gf" "Jane">>Your workout plan.<</speech>>
<<speech "mc" "$name">>I-I don't need one.<</speech>>
<<speech "gf" "Jane">>Sure you do.<</speech>>
<blockquote>Together, you continue [[on the trail.|BBL1-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl2.webp" "400px">><</img>>
<blockquote>The two of you continue bickering about workout regimes as you walk together. Soon enough, the sight of the lake disappears behind the trees again. The coldness from the mist is mostly gone as time goes by.</blockquote>
<blockquote>But it wasn’t all positive. The muddy track is still as muddy as ever, and now with the trail sloping upwards, you find yourself expending extra energy to [[avoid slipping.|BBL1-13]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<speech "gf" "Jane">>Don't faint now.<</speech>>
<<speech "mc" "$name">>Hell no, I won't.<</speech>>
<blockquote>The trail is rather steep, so you better walk slowly and watch your breath, but Jane, as usual, skips to the top.</blockquote>
<<speech "gf" "Jane">>Well?<</speech>>
<<speech "mc" "$name">>Again? Nah.<</speech>>
<blockquote>You continue walking, ignoring her attempts to provoke you.</blockquote>
<<speech "gf" "Jane">>Bummer.<</speech>>
<blockquote>You reach the top, carefully avoiding the wet spots and maintaining your steady breath. Meanwhile, Jane is looking around the area.</blockquote>
<<speech "gf" "Jane">>...It's pretty silent, here.<</speech>>
<<speech "mc" "$name">>So?<</speech>>
<<speech "gf" "Jane">>We're not going to that small rest area, right...?<</speech>>
<<speech "mc" "$name">>...Aren't we gonna skip it anyway?<</speech>>
<blockquote>She tugs her shirt up.</blockquote>
<<speech "gf" "Jane">>Well, we'll consider it a slight [[change of plan.|BBL1-14]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl7.webp" "700px">><</img>>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>She winked.</blockquote>
<<speech "gf" "Jane">>So...?<</speech>>
<blockquote>Your dick is solid but the circumstances is very much questionable. What if someone saw you? What if they call the police? What if they record you and blackmail you for the rest of your life?</blockquote>
<<speech "mc" "$name">>Ngh...<</speech>>
<blockquote>All of those thoughts are swirling in your mind but her wiggling tits is beckoning you in.</blockquote>
<<speech "gf" "Jane">>$name~<</speech>>
<blockquote class="choice-blockquote">
<<link [[Fuck it! Let's do it!|BBL1-15a]]>>
<<set $affection += 3>>
<<set $bbl_4 to "good">><</link>>
<<link [[No, don't do it.|BBL1-15b]]>>
<<set $affection -= 5>>
<<set $respect -= 5>>
<<set $lust += 10>>
<<set $bbl_4 to "bad">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<blockquote class="location">+3 Affection</blockquote>
<<speech "gf" "Jane">>Heheh~ I know you want it.<</speech>>
<<vid "Images/gf/gfs5.webm">>
<<speech "mc" "$name">>A-Ahhnn...<</speech>>
<<speech "gf" "Jane">>So big already~<</speech>>
<blockquote>She pulls out your dick but you're still a little paranoid.</blockquote>
<<speech "mc" "$name">>W-Wai- [[ahhnnn~|BBL1-15a-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<blockquote>You shook your head furiously which draw a huge sigh of exasperation from Jane.</blockquote>
<<speech "gf" "Jane">>Come on...<</speech>>
<blockquote>But she hasn't given up yet.</blockquote>
<<img "Images/inc/bbl1/bbl7.webp" "700px">><</img>>
<<speech "mc" "$name">>S-Stop it... this is not the place.<</speech>>
<<speech "gf" "Jane">>Oh? It's not? Where is the place then?<</speech>>
<blockquote>Exasperation turns to annoyance as she approach you.</blockquote>
<<speech "gf" "Jane">>Your house? Your bed? Nowhere else?<</speech>>
<<speech "mc" "$name">>W-We'll reach the motel in a few hours, right?<</speech>>
<<speech "gf" "Jane">>Motel, huh? Guess the next we'll do it after that is when we reach your parents house. You're boring, $name.<</speech>>
<blockquote class="location">-5 Affection</blockquote>
<blockquote class="location">-5 Respect</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>She tidied herself back up and led the way forward, leaving you behind [[to catch up.|BBL1-16]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<vid "Images/gf/gfs6.webm">>
<<speech "gf" "Jane">>There's nobody here, baby.<</speech>>
<blockquote>She said while licking the tip of your dick.</blockquote>
<<speech "gf" "Jane">>There's only you and me.<</speech>>
<blockquote>She stood up and turned back.</blockquote>
<<speech "gf" "Jane">>Isn't this exciting?<</speech>>
<blockquote>It is [[very exciting.|BBL1-15a-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<vid "Images/gf/gfs7.webm">>
<<speech "gf" "Jane">>Ahhnnn~<</speech>>
<blockquote>The thrill is second to none, you only got started but you're already shaking with excitement.</blockquote>
<<speech "mc" "$name">>Ngh~<</speech>>
<<speech "gf" "Jane">>Fuck me, baby~ fuck me~<</speech>>
<blockquote>You [[speeded up your thrusting.|BBL1-15a-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<vid "Images/gf/gfs8.webm">>
<<speech "gf" "Jane">>Ahhnn, baby~<</speech>>
<<speech "mc" "$name">>Fuck... t-this is so fucking hot...<</speech>>
<<speech "gf" "Jane">>Heheh~<</speech>>
<blockquote>But as you're about to continue, you can hear rustling coming from the trails, specifically coming from the bushes.</blockquote>
<<speech "mc" "$name">>!<</speech>>
<<speech "gf" "Jane">>[[!|BBL1-15a-5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<<if $bbl_4 is "good">>
<<img "Images/inc/bbl1/bbl2.webp" "400px">><</img>>
<blockquote>The walk continues with a jovial mood, both of you finding the experience thrilling and at the same time funny.</blockquote>
<blockquote>Your ignorance towards the place doesn’t get spared by Jane, who snickers to herself while muttering the word 'bear.' It’s only a slight embarrassment, but you can take the punches, especially if it’s from her.</blockquote>
<blockquote>After more than five minutes of walking, you smell the familiar scent of the lake, this time more distinct. You’re very close now, so the two of you quicken your pace and finally find [[the clearing|BBL1-17]] you’ve been looking at from afar.</blockquote>
<<elseif $bbl_4 is "bad">>
<<img "Images/inc/bbl1/bbl2.webp" "400px">><</img>>
<blockquote>She walks ahead at a pace she knows you'll struggle to keep up with. A few minutes later, that's exactly what happens, you lose your breath and have to take a breather.</blockquote>
<blockquote>Jane stops too, noticing you gasping for air and struggling to breathe. Guilt crosses her face for a brief moment, but it’s quickly replaced by that same annoyance she showed before.</blockquote>
<blockquote>You take a few minutes to recover, while Jane waits impatiently. Eventually, you get up and walk toward her.</blockquote>
<<speech "gf" "Jane">>You sure took your time.<</speech>>
<<speech "mc" "$name">>Haa... haa... I think I’ll join you for jogging after this trip.<</speech>>
<blockquote>A grin spreads across her face.</blockquote>
<<speech "gf" "Jane">>That's the start.<</speech>>
<blockquote>The walk continues with a lighter, more relaxed mood, but it doesn’t last long—not because of another conflict, but because you’ve finally reached [[the clearing|BBL1-17]] you were aiming for.</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-bblclearing">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl5.webp" "700px">><</img>>
<<speech "mc" "$name">>W-Wow...<</speech>>
<blockquote>The mist has completely subsided, revealing the lake in its majestic glory before you.</blockquote>
<<speech "mc" "$name">>Beautiful...<</speech>>
<blockquote>Without a second thought, you sit down in the middle of the clearing, unconcerned with dirt or mud. Jane immediately follows your lead.</blockquote>
<<speech "gf" "Jane">>..................................<</speech>>
<blockquote>She lets you soak in the beauty of the sight on your own.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>The air is fresh and unspoiled. You take a deep, generous breath, a wide smile spreading across your face as a wave of satisfaction washes over you.</blockquote>
<<speech "gf" "Jane">>You never seen something like this before, huh?<</speech>>
<<speech "mc" "$name">>Nope... never.<</speech>>
<<speech "gf" "Jane">>What do you think?<</speech>>
<<speech "mc" "$name">>...I want to live here forever.<</speech>>
<blockquote>She chuckles at your childlike wonder.</blockquote>
<<speech "gf" "Jane">>If only, $name... [[if only...|BBL1-18]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblclearing">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl5.webp" "700px">><</img>>
<<speech "gf" "Jane">>Was there no place like this where you grew up?<</speech>>
<<speech "mc" "$name">>No. This feels like a whole new world.<</speech>>
<blockquote>You grew up surrounded by beautiful beaches, a tropical environment, and bustling crowds. This serene lake is the complete opposite of that.</blockquote>
<<speech "mc" "$name">>We should come here again after our trip.<</speech>>
<<speech "gf" "Jane">>Hah~! Already making plans? We're literally sitting right in front of it.<</speech>>
<<speech "mc" "$name">>What? You don’t want to try the boats? I want to try sleeping in one of those.<</speech>>
<<speech "gf" "Jane">>Who's gonna row it then? Me?<</speech>>
<<speech "mc" "$name">>We'll figure it out later.<</speech>>
<blockquote>The two of you share a laugh, basking in the moment.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<<speech "mc" "$name">>Hey, let me [[take your picture.|BBL1-19]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-bblclearing">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl5.webp" "700px">><</img>>
<<speech "gf" "Jane">>Of me? Sure.<</speech>>
<blockquote>She got up and walked to the center of the clearing.</blockquote>
<<speech "gf" "Jane">>We'll take a picture together after this, alright?<</speech>>
<<speech "mc" "$name">>Sure, whatever.<</speech>>
<blockquote>You’re a bit camera-shy, but for a moment like this, there’s no excuse not to take a picture together.</blockquote>
<<speech "gf" "Jane">>Do I look good?<</speech>>
<<speech "mc" "$name">>You always look good. Okay, I'm taking it now, ready?<</speech>>
<<speech "gf" "Jane">>Mmmm~<</speech>>
<<img "Images/inc/bbl1/bbl8.webp" "500px">><</img>>
<<speech "mc" "$name">>Cheese~!!!<</speech>>
<blockquote>[[*snap*|BBL1-20]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<speech "gf" "Jane">>Ahhh~ don’t be such a drama queen. Here, take this.<</speech>>
<<if $convitem.includes("Energy")>>
<blockquote>She handed you the granola bar you bought at the gas station earlier.</blockquote>
<<speech "mc" "$name">>So much for emergency snacks.<</speech>>
<<speech "gf" "Jane">>Aren't you starving to death?<</speech>>
<blockquote>She held the already opened bar up to your mouth. Without hesitation, you leaned in and took a huge bite.</blockquote>
<<speech "gf" "Jane">>Watch it! that's my hand.<</speech>>
<<speech "mc" "$name">>Shorry bhout that- mmm...<</speech>>
<<else>>
<blockquote>She handed over another bag of potato chips.</blockquote>
<<speech "mc" "$name">>Geez, how many did you buy?<</speech>>
<<speech "gf" "Jane">>Four.<</speech>>
<<speech "mc" "$name">>There's still one more then? Alright, sent it in.<</speech>>
<blockquote>You opened your mouth, and with a smirk, she popped a chip directly in.</blockquote>
<<speech "mc" "$name">>Mmm~ I could get used to this.~<</speech>>
<</if>>
<blockquote>You chewed happily as the car glided along the winding desert highway. The scenery had shifted dramatically, trading the serene mountain views for the stark, rugged beauty of a harsh desert landscape.</blockquote>
<<speech "mc" "$name">>By the way, [[what time is it?|TheRoad1-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>She glanced at her phone to check the time. Judging by the sun, though, you guessed it couldn’t be too late.</blockquote>
<<speech "gf" "Jane">>It's around 2.<</speech>>
<<speech "mc" "$name">>Only 2? Feels like we’ve been out all day.<</speech>>
<<speech "gf" "Jane">>Well, we didn’t exactly do much at the lake. Not like there was a ton to do anyway.<</speech>>
<blockquote>She's still kicking herself after the restriction mishap.</blockquote>
<<speech "mc" "$name">>Anyway… what are we even supposed to do in a motel at 2 PM?<</speech>>
<<speech "gf" "Jane">>Eat, play around, traveling, chatting to strangers, sleeping, sexing, there's a lot of things to do, $name.<</speech>>
<<speech "mc" "$name">>Sounds like fun.<</speech>>
<<speech "gf" "Jane">>Mmm~<</speech>>
<blockquote>The conversation lulled, leaving a comfortable silence. As the car rolled down the highway, you unwrapped a candy and popped it into your mouth.</blockquote>
<<speech "gf" "Jane">>Gimme.<</speech>>
<blockquote>Without waiting for a reply, she reached over, snagged one from the bag, and plopped it into her mouth.</blockquote>
<<speech "mc" "$name">>That's mine! What the hell did you even buy at the [[gas station?|TheRoad1-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<speech "gf" "Jane">>Tissues, trash bags, soap, shampoo... pretty much everything practical.<</speech>>
<blockquote>She listed off the items she bought, her tone casual and unbothered.</blockquote>
<<speech "mc" "$name">>That’s it? No surprises?<</speech>>
<<speech "gf" "Jane">>Well...<</speech>>
<blockquote>She rummaged through her bag before scattering a handful of items onto the dashboard.</blockquote>
<<speech "gf" "Jane">>These.<</speech>>
<blockquote>Condoms, lots of condoms.</blockquote>
<<speech "mc" "$name">>Fucking horndog.<</speech>>
<<speech "gf" "Jane">>And you love me for it.<</speech>>
<blockquote>You couldn’t help but smirk. You do love her for that. With the road ahead clear and straight, you risked glancing at the pile for a few seconds, but something unusual caught your eye.</blockquote>
<<speech "mc" "$name">>Mmm?<</speech>>
<blockquote>Among the standard wrappers was a single black package, distinctly larger than the rest, about three times your size. You squinted, confused.</blockquote>
<<speech "mc" "$name">>What the hell is that?<</speech>>
<<speech "gf" "Jane">>That? No idea. It was in the container. Probably a packing mistake or something.<</speech>>
<<speech "mc" "$name">>Packing mistake, huh? For a second there, I thought you’d bought it on purpose for some... bizarre reason... Packing mistake, heh...<</speech>>
<blockquote>You chuckled, aiming to keep the tone light, but there was an undeniable tension creeping into your voice... one she completely missed.</blockquote>
<<speech "gf" "Jane">>Hmm, who knows? Maybe I’ll use it on someone else.<</speech>>
<blockquote>Your grip tightened on the wheel as your heart jumped. Instinctively, your foot slammed the brakes. The tires screeched against the pavement, jolting the car and sending both of you lurching forward as the vehicle swerved to the side of the road.</blockquote>
<blockquote>[[*SCREECH*|TheRoad1-4]]</blockquote>
</div>
</div>SS<div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>A loud blast of profanity erupted from the car behind you.</blockquote>
<<speech "unknown" "Other driver">>FUCKING ASSHOLE!!!<</speech>>
<blockquote>The blare of their horn rang out as you struggled to regain control. The car lurched and swerved before finally grinding to a shaky stop at the side of the road.</blockquote>
<<speech "gf" "Jane">>AHHH~!!!<</speech>>
<blockquote>Jane’s scream tore through the chaos. Panic painted her face as she clutched the seatbelt tightly. Her fear, however, quickly morphed into anger.</blockquote>
<<speech "gf" "Jane">>WHAT THE FUCK IS WRONG WITH YOU!?<</speech>>
<blockquote>You barely registered her words. Your breathing was ragged, your grip on the steering wheel white-knuckled. Sweat trickled down your forehead, dripping onto the seat below.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>Your chest heaved as you fought to steady yourself. The adrenaline coursing through your veins made your vision blur slightly. For a moment, everything was noise, horns blaring, Jane’s yelling, your heart pounding in your ears.</blockquote>
<<speech "gf" "Jane">>$name! Wha-<</speech>>
<blockquote>Her voice faltered mid-sentence. You felt her gaze shift toward you, her expression softening, confusion overtaking her frustration. The words on her mouth stopped as soon as her eyes fell on your...</blockquote>
<blockquote class="choice-blockquote">
<<link [[Raging hard-on|TheRoad1a-1]]>>
<<set $first_ntr to "true">><</link>>
<<link [[Trembling hand|TheRoad1b-1]]>>
<<set $first_love to "true">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<speech "gf" "Jane">>$name...?<</speech>>
<blockquote>Sweat trickled down your face as you gripped the wheel tightly, your knuckles white with tension.</blockquote>
<<speech "mc" "$name">>D-Don't joke about that...<</speech>>
<<speech "gf" "Jane">>W-What? The condom?<</speech>>
<<speech "mc" "$name">>J-Just stop it...<</speech>>
<blockquote>Her face froze for a moment, confused, before softening as she began to sense something was wrong.</blockquote>
<<speech "gf" "Jane">>Did... Did I say something bad?<</speech>>
<blockquote>You exhaled sharply, massaging your temples. Words felt heavy, stuck in your throat, but her questioning gaze pressed you.</blockquote>
<<if $affection >= 60>>
<blockquote>But she hesitated, noticing the stress written all over your face. Her voice softened.</blockquote>
<<speech "gf" "Jane">>Hey... it’s okay. We don’t have to talk about it right now. Let’s just focus on driving, okay?<</speech>>
<<speech "mc" "$name">>Haa... y-yeah...<</speech>>
<<speech "gf" "Jane">>Ah! Wait.<</speech>>
<blockquote>She reached back and grabbed a bottle of water, twisting the cap off before offering it to you.</blockquote>
<<speech "mc" "$name">>Thanks...<</speech>>
<<speech "gf" "Jane">>You sure you’re okay?<</speech>>
<<speech "mc" "$name">>I-I think so...<</speech>>
<blockquote>[[She smiled gently.|TheRoad1b-2a]]</blockquote>
<<else>>
<blockquote>Her curiosity got the better of her, even as she noticed your unease.</blockquote>
<<speech "gf" "Jane">>What's wrong? Is there something you can't tell me?<</speech>>
<<speech "mc" "$name">>H-Haa...<</speech>>
<<speech "gf" "Jane">>$name... you can share it with me if you like...<</speech>>
<<speech "mc" "$name">>J-Jane... s-stop...<</speech>>
<<speech "gf" "Jane">>It always makes me feel better than to bottle it up.<</speech>>
<blockquote>Your grip on the wheel tightened. You grit your teeth before you finally spoke.</blockquote>
<<speech "mc" "$name">>My first girlfriend fucked my classmate cause his cock was way fucking bigger, her words.<</speech>>
<blockquote>Silence. Jane’s eyes widened for a moment before she quickly looked away.</blockquote>
<<speech "gf" "Jane">>[[O-Oh...|TheRoad1b-2b]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<speech "gf" "Jane">>W-What...?<</speech>>
<blockquote>Her eyes grows wide when she sees the growth on your pants. You can feel her gaze and immediately tried to hide your boner, but it's too little too late.</blockquote>
<<speech "gf" "Jane">>A-Are you...? N-No fucking way...<</speech>>
<<speech "mc" "$name">>N-No, i-it's not what you think!<</speech>>
<blockquote>You pleaded but...</blockquote>
<<if $affection <= 40>>
<<speech "gf" "Jane">>Bullshit.<</speech>>
<<speech "mc" "$name">>N-No...<</speech>>
<blockquote>She's seen it, there is no way out of this.</blockquote>
<<speech "gf" "Jane">>My eyes is not lying to me, $name.<</speech>>
<<speech "mc" "$name">>N-No! T-This is just a mistake.<</speech>>
<blockquote>You're still trying to hide it, despite what's happening.</blockquote>
<<speech "gf" "Jane">>Really? Then show me.<</speech>>
<<speech "mc" "$name">>W-What...?<</speech>>
<<speech "gf" "Jane">>[[Take it out.|TheRoad1a-2a]]<</speech>>
<<else>>
<<speech "gf" "Jane">>I-I can't believe this...<</speech>>
<blockquote>She turns her head away from you.</blockquote>
<<speech "mc" "$name">>Jane... t-this is not what you think...<</speech>>
<<speech "gf" "Jane">>What is that then? Tell me.<</speech>>
<<speech "mc" "$name">>T-This is... I-I just...<</speech>>
<blockquote>You couldn't find a way to say anything.</blockquote>
<<speech "gf" "Jane">>...............................<</speech>>
<<speech "mc" "$name">>Haa... s-shit...<</speech>>
<blockquote>The conversation [[dies down immediately.|TheRoad1a-2b]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>Her usually bright and cheerful face is now replaced by confusion mixed with anger.</blockquote>
<<speech "gf" "Jane">>If that's not what I think it is then take it out.<</speech>>
<<speech "mc" "$name">>B-But...<</speech>>
<<speech "gf" "Jane">>It should be easy, right? If you got nothing to hide that is.<</speech>>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>You don't want to do it.</blockquote>
<<if $respect <= 40>>
<<speech "gf" "Jane">>Okay! If that's what you want.<</speech>>
<blockquote>She snatched your phone that is lying on the dashboard and begin to browse through it.</blockquote>
<<speech "mc" "$name">>J-Jane! S-Sto-<</speech>>
<<speech "gf" "Jane">>Oh...<</speech>>
<blockquote>Her face turns into one of utter disgust for a split second.</blockquote>
<<speech "gf" "Jane">>Cuckolding, netorare, sharing... most of the girls look like me too, huh...?<</speech>>
<blockquote>She turns to you her face now is completely blank. Your phone gently slids off her hand and fall with a thud.</blockquote>
<<speech "mc" "$name">>I-I can explain...<</speech>>
<<speech "gf" "Jane">>Can you?<</speech>>
<blockquote>You can't.</blockquote>
<<speech "gf" "Jane">>Take it off.<</speech>>
<blockquote>There's no humor in her tone, it's completely unlike her. Silently, you undo your belt and [[loosened up your pants.|Sex1a-1]]</blockquote>
<<else>>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>She lunged towards you and begin to rub her hand on your crotch.</blockquote>
<<vid "Images/gf/gfs9.webm">>
<<speech "mc" "$name">>Ahhnnn~<</speech>>
<<speech "gf" "Jane">>Holy shit... this might be the hardest I've ever feel you...<</speech>>
<blockquote>And despite your protest, she unbuckled your belt and [[loosened your pants.|Sex1b-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>She quickly averted her gaze from you, her face hidden behind a veil of silence.</blockquote>
<<set $first_ntrstate to "easy">>
<<speech "gf" "Jane">>...............................<</speech>>
<blockquote>The words caught in your throat. The air between you thickened, laden with unsaid things that neither of you could bear to speak.</blockquote>
<<speech "mc" "$name">>.................................<</speech>>
<blockquote>You couldn’t bring yourself to look at her. Every ounce of pain you felt was reflected in the silence that now enveloped the car. The trip had barely begun, yet it already felt like a failure.</blockquote>
<<speech "gf" "Jane">>...let's continue.<</speech>>
<blockquote>Her voice, soft but resolute, broke the stillness. But there was no warmth behind it.</blockquote>
<<speech "mc" "$name">>...yes.<</speech>>
<blockquote>It took every ounce of willpower to move your hands, to shift your gaze back to the road. You focused on the wheel, as if the motion itself could somehow erase the tension thickening the air between you. </blockquote>
<blockquote>Jane, meanwhile, stared out the window, her face obscured by the wind whipping her hair into disarray. Her thoughts seemed miles away, distant and lost somewhere in the desert. The sun beat down, relentless and unforgiving, but she didn’t flinch from its heat.</blockquote>
<blockquote>The desert stretched endlessly ahead of you, a harsh reminder of how far you were from where you started and how far you still had to go.</blockquote>
<blockquote>The silence hung heavy, as if both of you were still trapped in that moment. And yet, neither of you [[dared to speak.|TBC1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<set $first_ntrstate to "medium">>
<<vid "Images/gf/gfs10.webm">>
<<speech "gf" "Jane">>Is this because of what I said earlier? Holy crap...<</speech>>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<<speech "gf" "Jane">>It was literally just a joke... I can't believe you reacted like that...<</speech>>
<<speech "mc" "$name">>N-No...<</speech>>
<<speech "gf" "Jane">>$name... y-you're not turned on by what I'm thinking, right?<</speech>>
<<speech "mc" "$name">>[[H-Haa...|Sex1b-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<set $first_ntrstate to "hard">>
<blockquote>Your hardened dick plopped out of your pants, much to Jane's incredulity.</blockquote>
<<speech "gf" "Jane">>Holy fuck...<</speech>>
<<speech "mc" "$name">>...................................<</speech>>
<<speech "gf" "Jane">>I don't even know what to say.<</speech>>
<blockquote>Her eyes is tightly locked with your dick, but she stayed silent for a few minutes. Thinking that this humiliation has ended, you tried to put your dick back inside, before she stops you.</blockquote>
<<speech "gf" "Jane">>Who told you to do that?<</speech>>
<<speech "mc" "$name">>B-But...<</speech>>
<blockquote>She lunged on your dick and grabs it.</blockquote>
<<vid "Images/gf/gfs10.webm" "500px">>
<<speech "gf" "Jane">>This is literally the hardest your dick has ever been.<</speech>>
<<speech "mc" "$name">>J-Jane...<</speech>>
<<speech "gf" "Jane">>I can't believe this...<</speech>>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>She [[continues to stroke.|Sex1a-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<vid "Images/gf/gfs11.webm" "500px">>
<<speech "gf" "Jane">>I thought doing it outside would be a turn on for you but... geez... you're literally never been so hard...<</speech>>
<<speech "mc" "$name">>J-Jane, ahh- s-stop...<</speech>>
<<speech "gf" "Jane">>Is this what you get off to when I'm away? Fantasizing about me?<</speech>>
<<speech "mc" "$name">>N-Ngh... n-no...<</speech>>
<<speech "gf" "Jane">>Bullshit. Your cock is literally about to blow up.<</speech>>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<<speech "gf" "Jane">>So what the fuck am I supposed to do, $name?<</speech>>
<blockquote>She said as she idly [[strokes your dick.|Sex1a-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<vid "Images/gf/gfs12.webm" "500px">>
<<speech "gf" "Jane">>It must be rough for you when I got laid-off, huh? All the fantasy just stopped.<</speech>>
<<speech "mc" "$name">>N-No... I-I would never...<</speech>>
<<speech "gf" "Jane">>It's probably worse when I got locked up with you, and only you.<</speech>>
<<speech "mc" "$name">>Jane... p-please... ngh...<</speech>>
<<speech "gf" "Jane">>So what should I do, $name? We'll be on the road for the next two weeks.<</speech>>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<<speech "gf" "Jane">>Should I jump on the next man I see?<</speech>>
<blockquote>You're tensing up.</blockquote>
<<speech "gf" "Jane">>Better yet, should I call that douche at the gas station? I'm sure he'll fuck me well.<</speech>>
<<speech "mc" "$name">>J-Jane! [[UGHHHH~!!!|Sex1a-4]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<vid "Images/gf/gfs13.webm" "500px">>
<<speech "mc" "$name">>NGH!!!<</speech>>
<<speech "gf" "Jane">>Geez...<</speech>>
<blockquote>You came hard.</blockquote>
<<speech "gf" "Jane">>What a fucking mess...<</speech>>
<blockquote>She grabs one of the bottled water and washed her hand on the side window.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>You covered your face in agony. The trip has just started and the worse possible disaster has already struck.</blockquote>
<<speech "gf" "Jane">>..................................<</speech>>
<blockquote>You grit your teeth and grab the wheel, shaking you our of [[your stupor.|Sex1a-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/gf/gf6.webp" "500px">><</img>>
<<speech "gf" "Jane">>Drive. We'll talk about this later.<</speech>>
<blockquote>Reluctantly, you turn your focus back on the wheel and continues the journey, while Jane is putting her head out of the window, deep in thought, not minding the shines of the baking [[desert sun.|TBC1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote class="location">Make sure to save your game.</blockquote>
<<img "Images/inc/highway1/highway1.webp" "400px">><</img>>
<blockquote>The drive continues.</blockquote>
<blockquote>..............................</blockquote>
<blockquote>..............</blockquote>
<blockquote>[[Chapter 2|CH2Begin2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<vid "Images/gf/gfs11.webm">>
<<speech "gf" "Jane">>$name... b-be honest...<</speech>>
<<speech "mc" "$name">>J-Jane... u-ugh...<</speech>>
<<speech "gf" "Jane">>A-Are you...?<</speech>>
<<speech "mc" "$name">>Y-You're wrong...<</speech>>
<<speech "gf" "Jane">>Then why are you so fucking hard?<</speech>>
<<speech "mc" "$name">>Jane... s-stop...<</speech>>
<blockquote>You plead, but that last plea seems to zapped Jane back to normal.</blockquote>
<<speech "gf" "Jane">>[[.........................|Sex1b-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>She quickly averted her gaze from you, her face hidden behind a veil of silence.</blockquote>
<<speech "gf" "Jane">>...............................<</speech>>
<blockquote>The words caught in your throat. The air between you thickened, laden with unsaid things that neither of you could bear to speak.</blockquote>
<<speech "mc" "$name">>.................................<</speech>>
<blockquote>You couldn’t bring yourself to look at her. Every ounce of pain you felt was reflected in the silence that now enveloped the car. The trip had barely begun, yet it already felt like a failure.</blockquote>
<<speech "gf" "Jane">>...let's continue.<</speech>>
<blockquote>Her voice, soft but resolute, broke the stillness. But there was no warmth behind it.</blockquote>
<<speech "mc" "$name">>...yes.<</speech>>
<blockquote>It took every ounce of willpower to move your hands, to shift your gaze back to the road. You focused on the wheel, as if the motion itself could somehow erase the tension thickening the air between you. </blockquote>
<blockquote>Jane, meanwhile, stared out the window, her face obscured by the wind whipping her hair into disarray. Her thoughts seemed miles away, distant and lost somewhere in the desert. The sun beat down, relentless and unforgiving, but she didn’t flinch from its heat.</blockquote>
<blockquote>The desert stretched endlessly ahead of you, a harsh reminder of how far you were from where you started and how far you still had to go.</blockquote>
<blockquote>The silence hung heavy, as if both of you were still trapped in that moment. And yet, neither of you [[dared to speak.|TBC1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>You place your hands on the wheel and take a deep breath, steadying yourself.</blockquote>
<<set $first_lovestate to "easy">>
<<speech "mc" "$name">>Haa...<</speech>>
<<speech "gf" "Jane">>..............................<</speech>>
<blockquote>Without a word, she leans over and rests her head on your shoulder.</blockquote>
<<speech "mc" "$name">>J-Jane?<</speech>>
<<speech "gf" "Jane">>Yes?<</speech>>
<blockquote>She casually pulls out her phone, scrolling through YouTube as if nothing had happened, her laughter soon filling the car as she watches a funny video.</blockquote>
<<speech "mc" "$name">>..........................<</speech>>
<<speech "gf" "Jane">>Weren't you hungry?<</speech>>
<<speech "mc" "$name">>*brrrrrrrrrrrrrrr*<</speech>>
<<speech "gf" "Jane">>Pft-! Listen to that!<</speech>>
<<speech "mc" "$name">>P-Piss off.<</speech>>
<blockquote>Despite everything, you can’t help but crack a small smile. You press your foot on the gas pedal and [[continue the drive.|TBC1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>Her eyes widen as your dry confession settles in, leaving her momentarily speechless.</blockquote>
<<set $first_lovestate to "medium">>
<<speech "mc" "$name">>.........................<</speech>>
<blockquote>Despite her curiosity, hearing it out loud doesn’t feel satisfying, for either of you.</blockquote>
<<speech "gf" "Jane">>A-Ah... u-umm...<</speech>>
<blockquote>You grip the wheel firmly, signaling your intent to continue driving and leave the conversation behind.</blockquote>
<<speech "gf" "Jane">>H-Hey... $name...<</speech>>
<<speech "mc" "$name">>..........................<</speech>>
<<speech "gf" "Jane">>I-I'm sorry.<</speech>>
<<speech "mc" "$name">>...yeah.<</speech>>
<<speech "gf" "Jane">>$name... I mean it, I’m sorry...<</speech>>
<blockquote>You ease your foot onto the gas pedal, the car inching forward as the tension lingers.</blockquote>
<<speech "mc" "$name">>I know, Jane. [[I know.|TBC1-1]]<</speech>>
</div>
</div><<set $location to "Road">>
<<set $locationImages to "Road">>
<div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<blockquote class="location">DO NOT SAVE HERE!!!</blockquote>
<img src="images/misc/logo.webp" width="200px">
<h1><u>The Road Trip</u></h1>
<blockquote>Thank you for playing the first release of my new project, The Road Trip. As I said before, this game will primarily be an NTR project with different flavors according to the choices you made during the game. There will also be the choices you can make towards the entire game to make the main character and Jane stayed true to each other without falling into NTR, all the way into the ending.</blockquote>
<blockquote>There are four different ways for this release to end, each interactions in the future release will only be influenced by the choice and not locked into a traditional routes like in a regular VN, for instance, those who ended the release in good terms with Jane, with her not knowing his true fetish will have the chance to do NTR in the future but even those who got exposed by Jane will also got the chance to keep their relationship pure all the way till the end depending on the choices you made in the future.</blockquote>
<blockquote>For the next chapter, I'm planning to make the setting entirely on the motel and it's surrounding area, where you can interact with Jane, with the world, and see how the game will works. Everything will culminates into one final major event, where the choices you made, and the stats you have, will influence how the event will ends. Stay tuned.</blockquote>
<blockquote>Finally, to reiterate, this will be a big project that will take time to develop, so unlike Locked Down, which I somehow finished in an update / two weeks schedule, this will be a monthly release, I hope I will be faster than that but we'll see. So if you like the game and want to actively support the development then please subscribe to my <a href="https://www.patreon.com/AnonDux1/">Patreon</a> or <a href="https://anondux.fanbox.cc/">FANBOX</a>. Thank you.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<<speech "gf" "Jane">>So? Are we there yet?<</speech>>
<<speech "mc" "$name">>Hmm... probably around 2999 miles to go.<</speech>>
<<speech "gf" "Jane">>Now, we're getting really close.<</speech>>
<blockquote>It's a funny gag, but you'll probably be shooting your head if she keeps this up for every single mile.</blockquote>
<blockquote>Jane suddenly perks up and turns around.</blockquote>
<<if $deptitem is "Book">>
<blockquote>She leans over the front seat to grab something from the passenger side.</blockquote>
<<speech "mc" "$name">>Careful.<</speech>>
<<speech "gf" "Jane">>Relax, babe. I’ve handled turbulence. I can handle your shit driving.<</speech>>
<blockquote>Her playful jab earns a chuckle from you as she settles back with a familiar book in her hand.</blockquote>
<<speech "mc" "$name">>You really like that one, huh?<</speech>>
<<speech "gf" "Jane">>Of course! That's why I keep telling you to read it!<</speech>>
<<speech "mc" "$name">>I don't read romance.<</speech>>
<<speech "gf" "Jane">>You don't read at all.<</speech>>
<<speech "mc" "$name">>What? I do!<</speech>>
<<speech "gf" "Jane">>Self-help doesn’t count, babe~ Life’s about stories, so you better start living and absorbing them, got it?<</speech>>
<<speech "mc" "$name">>I-I don’t read self-help *all* the time...<</speech>>
<<speech "gf" "Jane">>Sure, sure. Here, let me recommend som- [[shit...|ForgetKindle1]]<</speech>>
<<else>>
<blockquote>She leans over the front seat to grab something from the passenger side.</blockquote>
<<speech "mc" "$name">>Careful.<</speech>>
<<speech "gf" "Jane">>Relax, babe. I’ve handled turbulence. I can handle your shit driving.<</speech>>
<blockquote>Her playful jab earns a chuckle from you as she settles back with a snack in her hand.</blockquote>
<<speech "mc" "$name">>Already diving in, huh?<</speech>>
<<speech "gf" "Jane">>We’re stopping at a gas station, right? I’ll inhale this, and we can stock up more.<</speech>>
<<speech "mc" "$name">>Hmm... I guess that works.<</speech>>
<blockquote>She opens the bag of chips, and you share a few bites in comfortable silence.</blockquote>
<<speech "gf" "Jane">>Three thousand miles, huh? Think you’ll last?<</speech>>
<<speech "mc" "$name">>It’s 3,000 miles *and* more, but keep feeding me chips, and I just might.<</speech>>
<<speech "gf" "Jane">>Mmm~<</speech>>
<blockquote>She grins, popping a chip into her mouth, then playfully offers one to you. [[You take it with a laugh.|NoForget1-1]]</blockquote>
<</if>>
</div>
</div>
<<set $location to "California">>
<<set $locationImages to "Caliroad">>
<div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>You resume your trip, hoping the detour won’t throw off your schedule too much. The warm sun has now turned slightly hotter, its rays sitting right at eye level.</blockquote>
<<speech "gf" "Jane">>It's them again.<</speech>>
<blockquote>The children from earlier are still there, playing with their skateboards. Jane waves at them once more.</blockquote>
<<speech "gf" "Jane">>They're probably wondering if they're hallucinating after seeing us twice.<</speech>>
<<speech "mc" "$name">>Maybe, but I think that one kid is just glad to see you again.<</speech>>
<<speech "gf" "Jane">>Heh... charmer...<</speech>>
<blockquote>With that, you drive onto the same [[main road|DriveCont1-1]] for the second time in fifteen minutes.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caliroad">
<div class="overlay"></div>
<blockquote>Wanting to get your mind out of it, you decided to ask Jane the most important question.</blockquote>
<<speech "mc" "$name">>Where are we going to stay by the way?<</speech>>
<<speech "gf" "Jane">>Mmm... do you know Hotel Santa Rita?<</speech>>
<<speech "mc" "$name">>No? Is that where we're staying?<</speech>>
<<speech "gf" "Jane">>Nope. It closed down in 1972. It used to be the most luxurious hotel in Tucson. I kinda wish I could’ve stayed there at least once.<</speech>>
<<speech "mc" "$name">>Well, it’s not exactly an option now. So, where are we staying?<</speech>>
<<speech "gf" "Jane">>A smaller hotel a few miles from there. It’s cozy, maybe a bit cramped, but it’s the only place I found that’s still half-operating *and* had a vacancy.<</speech>>
<blockquote>You couldn’t help but notice how the lingering impact of restrictions still affected the area.</blockquote>
<<speech "mc" "$name">>Presidential, right?<</speech>>
<<speech "gf" "Jane">>HA!!! You wish.<</speech>>
<blockquote>You chuckled, remembering how last night devolved into a playful argument over the room type. You wanted Executive Suite, which would’ve bankrupted you, while Jane wanted Presidential Suite, which would’ve bankrupted you and your extended family.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>Silence fell between you for a moment.</blockquote>
<<speech "mc" "$name">>So... which room did we end up getting?<</speech>>
<blockquote>You were genuinely curious. The debate from last night was the last thing you remembered before passing out.</blockquote>
<<speech "gf" "Jane">>...oh.<</speech>>
<<speech "mc" "$name">>[[Jane...?|DriveCont1-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<<img "Images/inc/bbl1/bbl9.webp" "400px">><</img>>
<blockquote>You gently press the gas pedal, your eyes captivated by the scenery, even though most of it is still shrouded in mist.</blockquote>
<<speech "mc" "$name">>It's still so misty...<</speech>>
<<speech "gf" "Jane">>We're in the mountains, $name. It’s always like this.<</speech>>
<<speech "mc" "$name">>Well... I've never been to a mountainous area before.<</speech>>
<blockquote>Jane smirks and lightly bops your nose.</blockquote>
<<speech "gf" "Jane">>Then you should know what to wear.<</speech>>
<blockquote>She turns toward the luggage and begins rummaging through it.</blockquote>
<<if $deptitem is "Box">>
<<speech "gf" "Jane">>I think I'll be wearing this.<</speech>>
<blockquote>Jane pulls out something, and it’s her lingerie from before.</blockquote>
<<speech "mc" "$name">>Very cool, Jane. Don't wear that though, I don't want you to die so soon.<</speech>>
<<speech "gf" "Jane">>Aww~ didn’t know you cared so much, baby.<</speech>>
<<speech "mc" "$name">>Yeah... we brought too much luggage already, don't need another one.<</speech>>
<blockquote>Jane lightly punch you in the face.</blockquote>
<<speech "mc" "$name">>H-Hey! Do you want us to fall to the lake?<</speech>>
<blockquote>Jane laugh and get back to rummaging the luggage.</blockquote>
<</if>>
<<speech "gf" "Jane">>I think I'll go with this.<</speech>>
<blockquote>A crop top and a short. You instinctively lower the car window, and a burst of cold air rushes in, making you shiver.</blockquote>
<<speech "mc" "$name">>Are you out of your mind?<</speech>>
<blockquote>Jane, however, looks completely unfazed.</blockquote>
<<speech "gf" "Jane">>Well, most of us developed cold resistance, babe.<</speech>>
<blockquote>You glance back at the swirling mist outside, trembling as you realize that it, you are [[not one of those people.|BBL1-0.1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-road">
<div class="overlay"></div>
<<speech "mc" "$name">>B-By the way, what can we do down there?<</speech>>
<blockquote>You ask as your gaze drifts to the misty lake below.</blockquote>
<<speech "gf" "Jane">>Plenty! You can rent a boat, fish... hell, you can even swim. Though, I’m not sure about that last one, given the restrictions and all.<</speech>>
<<speech "mc" "$name">>And the fucking weather.<</speech>>
<<speech "gf" "Jane">>Oh, come on! It's not that bad.<</speech>>
<blockquote>You rolled your eyes, she's still bragging about her high cold tolerance.</blockquote>
<<speech "mc" "$name">>But what are we gonna do?<</speech>>
<<speech "gf" "Jane">>Well, I didn't make a schedule but I kinda have a gist about what we'll do. I've been here before, you know.<</speech>>
<<speech "mc" "$name">>You've been everywhere.<</speech>>
<<speech "gf" "Jane">>That I am. You know, there's plenty of silent spots in the woods.<</speech>>
<<speech "mc" "$name">>...so?<</speech>>
<<speech "gf" "Jane">>Maybe we could... you know... wood, too?<</speech>>
<<speech "mc" "$name">>...keep your day job, Jane.<</speech>>
<<speech "gf" "Jane">>I don't have a job.<</speech>>
<<speech "mc" "$name">>I'm sorry to hear that.<</speech>>
<blockquote>You slam the gas pedal, wanting to get the fuck away from this conversation [[as fast as possible.|BBL1-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-bblforest">
<div class="overlay"></div>
<blockquote>You unplugged your cock from her pussy and pulled your pants up, she quickly do the same, then, as if nothing happened, you got back on the trail.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<<speech "gf" "Jane">>I-Is there someone behind us?<</speech>>
<blockquote>You quickly snapped your head to that direction but there's nothing.</blockquote>
<<speech "mc" "$name">>...I-I don't think so.<</speech>>
<<speech "gf" "Jane">>Nothing?<</speech>>
<<speech "mc" "$name">>No... w-wait... what if it's the big bear?<</speech>>
<<speech "gf" "Jane">>There's no bear in this place, $name.<</speech>>
<<speech "mc" "$name">>R-Really? T-Then why the fuck does it called Big Bear Lake?<</speech>>
<<speech "gf" "Jane">>Pfftt- f-fuck should I know?<</speech>>
<blockquote>The two of you continue up the slope towards your destination, though a few steps later, Jane smiled and grabbed a handful of your ass and whispered to your ears.</blockquote>
<<speech "gf" "Jane">>We'll finish it [[later.|BBL1-16]]<</speech>><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>Chapter 2: By the Time I Get to Phoenix</blockquote>
<<img "Images/inc/highway1/highway1.webp" "400px">><</img>>
<<if $first_ntrstate is "hard" or $first_ntrstate is "medium" or $first_ntrstate is "easy">>
<blockquote>The tension is thick and suffocating. Jane stares out at the endless desert, her fingers tapping on the car door, each click like a countdown to doom.</blockquote>
<blockquote>Meanwhile, your eyes are glued to the winding road ahead. Guilt, shame, confusion, or all three, have taken root, weighing heavy on your chest.</blockquote>
<blockquote>You drive on in silence, hunger pushed far from your mind. But even the longest roads lead somewhere. The rest area [[looms ahead.|ArriveNTR1-1]]</blockquote>
<</if>>
<<if $first_lovestate is "medium">>
<blockquote>The tension is palpable. Jane stares out at the desert but occasionally sneaks guilty glances your way.</blockquote>
<blockquote>You're fixated on the winding road ahead, struggling with guilt, shame, confusion, or maybe all three at once.</blockquote>
<blockquote>The silence between you is deafening, and hunger is a distant memory. At last, the rest area comes into [[view.|ArriveLove2-1]]</blockquote>
<</if>>
<<if $first_lovestate is "easy">>
<blockquote>The radio blares, and Jane’s hilariously off-key falsetto obliterates any tension. The two of you are rocking on the road.</blockquote>
<blockquote>Well, not in THAT way, yet, but you’re waiting for it to happen. Truth be told, aside from what happened a few minutes ago, the trip has been fantastic.</blockquote>
<blockquote>You’re out of the house for the first time in months, caught up with an old friend, and witnessed the most breathtaking sight of your life.</blockquote>
<blockquote>And best of all, she’s right there beside you.</blockquote>
<blockquote>The road winds on, and your destination is almost within [[reach.|ArriveLove1-1]]</blockquote>
<</if>>
</div>
</div><<set $location to "Outskirts of Phoenix">>
<<set $locationImages to "RestArea1">>
<div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/interior1.webp" "500px">><</img>>
<blockquote>The car comes to a full stop as you pull into the parking lot.</blockquote>
<<speech "gf" "Jane">>What do you want to eat?<</speech>>
<<speech "mc" "$name">>How should I know? I don’t even know what’s on the menu.<</speech>>
<blockquote>You turn the key, shutting off the engine.</blockquote>
<<speech "gf" "Jane">>It’s a diner in Arizona, $name. How exotic do you think the food’s going to be?<</speech>>
<<speech "mc" "$name">>You go check, then. I’ll get the room.<</speech>>
<<speech "gf" "Jane">>Okay. Just make sure it smells good.<</speech>>
<blockquote>Jane heads toward the diner without another word.</blockquote>
<<speech "mc" "$name">>[[...How?|ParkingPhoenix2a]]<</speech>>
</div>
</div><<set $location to "Outskirts of Phoenix">>
<<set $locationImages to "RestArea1">>
<div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/interior1.webp" "500px">><</img>>
<blockquote>The car comes to a full stop as you pull into the parking lot.</blockquote>
<<speech "mc" "$name">>Here we are.<</speech>>
<<speech "gf" "Jane">>Y-Yeah...<</speech>>
<blockquote>Jane's nerves are still frayed from earlier. To ease the tension, you decide to give her some space.</blockquote>
<<speech "mc" "$name">>Get us a table at the diner. I’ll handle the room.<</speech>>
<<speech "gf" "Jane">>A-Ah! Y-Yes, okay!<</speech>>
<blockquote>And with that, [[she walks away.|ParkingPhoenix2a]]</blockquote>
</div>
</div><<set $location to "Outskirts of Phoenix">>
<<set $locationImages to "RestArea1">>
<div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/interior1.webp" "500px">><</img>>
<blockquote>The car comes to a full stop as you pull into the parking lot.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You take a deep breath and turn off the engine, the weight of the silence pressing down on you.</blockquote>
<<speech "gf" "Jane">>................................<</speech>>
<blockquote>Jane leans her head out the window, completely ignoring you. Your heart pounds, teetering on the edge, but before you can speak, she gets out.</blockquote>
<<speech "gf" "Jane">>Get the room. I'll meet you in the diner.<</speech>>
<blockquote>And with that, she walks away.</blockquote>
<<speech "mc" "$name">>[[...shit.|ParkingPhoenix2a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<blockquote class="location">Location: Parking Lot</blockquote>
<<img "Images/inc/rest1/parkingphoenix.webp" "500px">><</img>>
<blockquote>Jane heads to the diner, leaving you alone in the [[silent parking lot.|NoOne1-1]] The air is still, almost heavy with the lingering heat of the desert. You grab your bag, the leather strap cool against your fingertips, and slip your wallet inside. Your beautiful car sits silently in front of Room 3, its chrome reflecting the sunny sky.</blockquote>
<blockquote>The highway stretches out beside the lot, the faint hum of tires on asphalt drifting in the distance. Traffic is sparse, only the occasional vehicle cutting through the wide expanse of the desert. Across the road, a bellowing of smoke [[catches your eye.|ChangeTire1-1]]</blockquote>
<blockquote>The motel stands beside you, its weathered exterior bathed in the warm, golden light of the late afternoon. Jane didn’t mention anything about it being overcrowded, so you take your time walking toward the [[courtyard of the area.|Center2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote class="location">Location: Courtyard</blockquote>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<blockquote>The diner sits to the west, its neon sign flickering faintly in the late afternoon sun. To the south, the [[parking lot|ParkingPhoenix2a]] stretches out, an empty, cracked expanse of concrete, and to the east, the [[motel.|MotelLobby2a]] You stand in the center of it all, the sun beating relentlessly from directly overhead. The air feels dry and the silence is only broken by the occasional distant rumble of a passing car.</blockquote>
<blockquote>A sign that reads [["Half-open"|Half1-1]] sways gently above the motel office. Your attention is quickly drawn away, though, by a man [[stumbling out|ManStumble1-1]] of the diner. His movements are unsteady and the faint smell of grease and stale coffee seems to cling to him as he steps into the open air.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingphoenix.webp" "500px">><</img>>
<blockquote>Quiet and lonely, that's how you would describe this place. Only two cars are parked near the motel, one of them yours, and just a few more are scattered near the diner.</blockquote>
<blockquote>The pandemic restrictions might have been lifted back in California, and Arizona had eased theirs even earlier, but the flow of travelers has yet to recover.</blockquote>
<blockquote>Now, the people here have to survive with the hand they've been dealt. You can only hope it's just a matter of a few more months. [[For their sake.|ParkingPhoenix2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingphoenix.webp" "500px">><</img>>
<blockquote>There's a car with smoke billowing out of its hood on the north side of the highway. From here, you can clearly see the plume of smoke, but the car itself is obscured by distance, shimmering slightly in the heat haze.</blockquote>
<blockquote>A man and a woman stand nearby. The woman is crossing her arms while the man leans over the hood, inspecting the engine. Their postures tell two different story, one of worry and one of confidence, though you can’t make out their faces or hear their conversation from this far away.</blockquote>
<blockquote>Judging by their position and the rising smoke, it’s likely they’ll end up here soon, this being the closest stop for miles. [[It seems like only a matter of time.|ParkingPhoenix2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<blockquote>A "Half-open" sign sways back and forth as it hangs on the office door, a reminder that things have not yet returned to normal. You realize it would be naive to think they already had.</blockquote>
<blockquote>The door itself is ajar, revealing a printed notice on the wall that reads, "FREE BREAKFAST!!!*" The little star at the end makes you raise an eyebrow. From where you're standing, [[you can’t see anyone inside.|Center2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<blockquote>The man looks rough and rugged, both in the way he walks and the way he carries himself. His boots kick up small puffs of dust with each step, and his sun-faded green polo shirt clings awkwardly to his broad frame as he stretches, breathing in the desert air.</blockquote>
<blockquote>Noticing your stare, he smiles, a faint grin, and gives you a slight nod. His casual acknowledgment makes your hurried, awkward smile in return feel even clumsier. Without a word, he continues toward the parking lot, his movements steady as he heads to the room where the other car is parked. [[Room 7.|Center2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<blockquote class="location">Location: Motel Lobby</blockquote>
<<img "Images/inc/rest1/lobbyphoenix.webp" "500px">><</img>>
<blockquote>Like the parking lot and the [[courtyard|Center2a]], this place feels practically empty too, but just beyond the counter, you spot a head slowly popping up, as if the clerk is finally stirring from some deep, unintended nap.</blockquote>
<blockquote>With your bag in hand, you take a slow step forward, moving closer [[to the register.|Registration1-1]] ⭐ The floor creaks underfoot, as you take your step to what appears to be the sleeping clerk.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<blockquote>You quietly approach the registration desk, careful not to disturb the clerk if she’s truly asleep.</blockquote>
<<img "Images/npc/clerk2.webp" "400px">><</img>>
<<speech "clerk2" "Manager">>Want a room, boy?<</speech>>
<blockquote>You nearly stumble over your feet as she suddenly pops up from behind the desk, her eyes wide open, showing no sign she’s been sleeping at all.</blockquote>
<<speech "mc" "$name">>I-I thought you were asleep.<</speech>>
<blockquote>She smirks, pointing casually at the registration book.</blockquote>
<<speech "clerk2" "Manager">>You think I’d miss a customer? Hell nah, boy.<</speech>>
<blockquote>You can’t help but admit she’s got some spunk.</blockquote>
<<speech "clerk2" "Manager">>So, how long you staying? A week? A month?<</speech>>
<<speech "mc" "$name">>[[A day.|Registration1-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<blockquote>She stares at you blankly.</blockquote>
<<speech "clerk2" "Manager">>How bout five?<</speech>>
<<speech "mc" "$name">>One.<</speech>>
<<speech "clerk2" "Manager">>Three, and you’ll get free dinner every day.<</speech>>
<<speech "mc" "$name">>You run the diner too?<</speech>>
<<speech "clerk2" "Manager">>My brother does, but I’ll break his neck if he says no.<</speech>>
<<speech "mc" "$name">>...One.<</speech>>
<<speech "clerk2" "Manager">>Dammit, kid. Alright, pick your room, sign here, and give me your ID and birth certificate.<</speech>>
<<speech "mc" "$name">>My what!?<</speech>>
<<speech "clerk2" "Manager">>Heh, just messing with ya. It's boring here.<</speech>>
<blockquote>You shake your head and approach the registry. It's odd that everything’s still done by hand, but you think nothing of it.</blockquote>
<<speech "mc" "$name">>1, 3, 5, 9.<</speech>>
<<speech "clerk2" "Manager">>Seven’s taken, and we’re only opening halfway. Not like we’ll get more people if we open fully anyway.<</speech>>
<blockquote>She responds absentmindedly, her attention already back on her phone.</blockquote>
<<speech "mc" "$name">>I'll take 3.<</speech>>
<<speech "clerk2" "Manager">>1, 3, and 5?<</speech>>
<<speech "mc" "$name">>[[...Room 3.|Registration1-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<blockquote>She grabs the key and writes something in the notebook.</blockquote>
<<speech "clerk2" "Manager">>There you go.<</speech>>
<blockquote>She hands you the key.</blockquote>
<<speech "clerk2" "Manager">>And here’s the complement.<</speech>>
<blockquote>She also gives you five coupons for free breakfast.</blockquote>
<<speech "mc" "$name">>...............................<</speech>>
<<speech "clerk2" "Manager">>Enjoy your stay, boy.<</speech>>
<blockquote>You nods and walk away, but as you reach the door, she calls out to you.</blockquote>
<<speech "clerk2" "Manager">>Boy, you seen Rusty?<</speech>>
<<speech "mc" "$name">>Who?<</speech>>
<<speech "clerk2" "Manager">>Sigh, never mind. Probably playing around with girls again.<</speech>>
<blockquote>With that, she disappears from view [[like before.|TheRoom2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote>You walk away, the key jangling in your pocket, its cold metal tapping against your leg with each step. The sound is almost rhythmic, but it brings little comfort as your mind races. You can’t decide whether you want to find Jane right away or check out the room first.</blockquote>
<<speech "mc" "$name">>Mm?<</speech>>
<blockquote>Just as you're about to continue walking, you feel a weight on your back. You turn, and there she is: Jane, sitting alone at a table in the diner. Her eyes meet yours from afar.</blockquote>
<blockquote>You flash her the keys and she raises an eyebrow, then flashes you a quick thumbs up. The gesture is simple, but it sends a surge of something warm through you.</blockquote>
<<speech "mc" "$name">>Right.<</speech>>
<blockquote>That meant...</blockquote>
<blockquote class="choice-blockquote">
<<link [[To the room|Room2-1]]>>
<<set $second_dinerroom to "Room">><</link>>
<<link [[To her|Diner2-1]]>>
<<set $affection += 5>>
<<set $second_dinerroom to "Diner">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote>You continue to Room 3, after what you thought was consent from Jane.</blockquote>
<<img "Images/inc/rest1/moteldoor.webp" "500px">><</img>>
<blockquote>You're lucky you parked your car close to the room, considering you didn’t even know whether it's even available when you arrived.</blockquote>
<<speech "mc" "$name">>Let's see... *click*<</speech>>
<blockquote>Click! And [[the door opened.|Room2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf7.webp" "500px">><</img>>
<blockquote>Jane is sitting in one of the seats, patiently waiting for your arrival. The menu is lying on the table, and it seems she's already made up her mind. You sit down right across from her.</blockquote>
<<if $second_dinerroom is "Room">>
<<speech "mc" "$name">>Hey.<</speech>>
<<speech "gf" "Jane">>...I meant come here.<</speech>>
<blockquote>You shared blank stare for a few moment.</blockquote>
<<speech "mc" "$name">>...Right.<</speech>>
<</if>>
<<if $second_dinerroom is "Diner">>
<<speech "gf" "Jane">>There you are.<</speech>>
<</if>>
<blockquote>She passes you the menu.</blockquote>
<<speech "gf" "Jane">>Check it out, they have cheeseburgers.<</speech>>
<<speech "mc" "$name">>We're not even in the same state, and you're still craving cheeseburgers...?<</speech>>
<blockquote>You grab the menu and scan it, hoping to find something exotic in this exotic place.</blockquote>
<<speech "mc" "$name">>.............................<</speech>>
<blockquote>Only to realize that it's the same damn food you can get anywhere.</blockquote>
<<speech "gf" "Jane">>We're only a hundred miles from home. What the hell did you expect?<</speech>>
<<speech "mc" "$name">>...I'll have a [[chicken steak.|Diner2-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<blockquote>Cozy and comfortable. Jane would love this place.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You set your bag down on the chair and open the fridge, grabbing a bottle of water. The motel seems thoughtful enough to provide some for guests.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>The cold water slides down your throat, refreshing and crisp, as you stretch, feeling the tension leave your muscles.</blockquote>
<<speech "mc" "$name">>Ahh...<</speech>>
<blockquote>Once finished, you toss the empty bottle into the trash bin, the light crinkling sound echoing in the small room. You head outside to [[meet Jane.|Room2-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote>As you step outside, you notice the courtyard has picked up some small activities. However, upon closer observation, you see that everyone is heading toward the diner, not the motel.</blockquote>
<<speech "mc" "$name">>...Maybe we should stay longer.<</speech>>
<blockquote>Your soft heart feels a pang of sympathy for the woman running the place, as it seems business isn't exactly thriving.</blockquote>
<<speech "mc" "$name">>......................................<</speech>>
<blockquote>Maybe you would consider staying longer if this were just a leisurely trip, but the two of you are heading somewhere with a purpose, and you doubt your parents would appreciate any unnecessary delays.</blockquote>
<blockquote>With that thought, you head into the diner and rejoin [[Jane.|Diner2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>After making up your mind, you pull all five coupons out and place them on the table.</blockquote>
<<speech "gf" "Jane">>W-Wow, that's a lot.<</speech>>
<<speech "mc" "$name">>I know, we should thank her.<</speech>>
<blockquote>Jane was giddy, but as she reads the fine print, her expression changes to one of bemusement. Before she can comment, someone approaches the table.</blockquote>
<<img "Images/npc/clerk3.webp" "400px">><</img>>
<<speech "clerk3" "Diner Owner">>Ha! Sorry bout my sister. I guess that’s what happens when you’ve got no clients, huh?<</speech>>
<blockquote>The man is middle-aged, wearing an apron over his shirt, and his face radiates a warm, friendly energy.</blockquote>
<<speech "clerk3" "Dave">>Name's Dave. Ready to order?<</speech>>
<<speech "mc" "$name">>Y-Yes, I’ll have a chicken steak, and she’ll have a cheeseburger.<</speech>>
<<speech "clerk3" "Dave">>Drink?<</speech>>
<<speech "gf" "Jane">>Two lattes.<</speech>>
<<speech "clerk3" "Dave">>Coming right up.<</speech>>
<blockquote>Dave disappears as quickly as he arrived, leaving you and Jane alone again in the [[quiet diner.|Diner2-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf8.webp" "400px">><</img>>
<blockquote class="location">She remembered</blockquote>
<<if $first_ntrstate is "hard">>
<blockquote>With Dave gone, her attention is fully on you.</blockquote>
<<speech "gf" "Jane">>.........................<</speech>>
<blockquote>She stares deep into your eyes, an icy edge to her gaze.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>With a single swipe of her hand, she silences your protest.</blockquote>
<<speech "gf" "Jane">>We'll talk about this later.<</speech>>
<blockquote>She stamps out any conversation on the matter [[for now.|Diner2-4]]</blockquote>
<</if>>
<<if $first_ntrstate is "medium" or $first_ntrstate is "easy">>
<blockquote>With Dave gone, her attention is fully on you.</blockquote>
<<speech "gf" "Jane">>........................<</speech>>
<blockquote>She's uncomfortable, that much is clear. It's like she wants to talk but can’t find the right words.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>Suddenly, she shakes her head, tension in her eyes.</blockquote>
<<speech "gf" "Jane">>W-We'll talk about this when we're alone...<</speech>>
<blockquote>She turns away, avoiding your gaze, looking out the window.</blockquote>
<<speech "mc" "$name">>[[...Agreed.|Diner2-4]]<</speech>>
<</if>>
<<if $first_lovestate is "medium">>
<blockquote>With Dave gone, your attention is fully on her.</blockquote>
<<speech "gf" "Jane">>H-Hey...<</speech>>
<blockquote>She's uncomfortable, clearly unsure of what to say.</blockquote>
<<speech "mc" "$name">>Jane.<</speech>>
<blockquote>Your words seem to snap her out of it.</blockquote>
<<speech "mc" "$name">>Later, okay? When we're in our room.<</speech>>
<<speech "gf" "Jane">>Y-Yes... yes, that would be perfect.<</speech>>
<blockquote>With that, she seems to [[settle down.|Diner2-4]]</blockquote>
<</if>>
<<if $first_lovestate is "easy">>
<blockquote>With Dave gone, you have the entire table to yourself.</blockquote>
<<speech "gf" "Jane">>Five breakfast coupon?<</speech>>
<<speech "mc" "$name">>She's very bored.<</speech>>
<blockquote>Jane lets out a melodic laugh.</blockquote>
<<speech "gf" "Jane">>She sounds like fun.<</speech>>
<<speech "mc" "$name">>Kind of.<</speech>>
<blockquote>Then the conversation [[continues.|Diner2-4]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>The savory smell of garlic fills the air as a few travelers trickle into the diner. The sun's low in the sky, signaling it's late afternoon. Jane stretches her arms, loosening up her muscles. After hours of sitting in the car, it's clear she's tired.</blockquote>
<<speech "mc" "$name">>It's good that we stopped here.<</speech>>
<blockquote>Jane gazes out the window, watching the sparse traffic roll by on the highway.</blockquote>
<<speech "gf" "Jane">>Was it good that I forgot to reserve the hotel, then?<</speech>>
<<speech "mc" "$name">>Nah.<</speech>>
<blockquote>A slight smile tugs at the corners of Jane's lips.</blockquote>
<<speech "gf" "Jane">>By the way, which room are we staying?<</speech>>
<<speech "mc" "$name">>Room 3. Only 7 has been taken, so it looks like they're struggling to get more guests.<</speech>>
<<speech "gf" "Jane">>Yeah...<</speech>>
<blockquote>Jane's gaze turns sorrowful as her eyes shift toward the motel office.</blockquote>
<<speech "gf" "Jane">>They have to survive, somehow...<</speech>>
<blockquote>But as she scans the environment, [[she notices something.|Diner2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "gf" "Jane">>Didn't you say only 7?<</speech>>
<blockquote>Jane raises an eyebrow, pointing toward one of the motel rooms.</blockquote>
<<speech "mc" "$name">>Well, that's what she said.<</speech>>
<blockquote>Your eyes follow her finger to Room 1, where someone just steps out of the door.</blockquote>
<<speech "mc" "$name">>Housekeeping, maybe?<</speech>>
<<speech "gf" "Jane">>There’s a car parked in front of it, though.<</speech>>
<blockquote>She’s right, a new car is parked directly in front of Room 1.</blockquote>
<<speech "mc" "$name">>I guess it’s great she got more guests.<</speech>>
<<speech "gf" "Jane">>Ain't that the truth.<</speech>>
<blockquote>Jane smiles as she turns back to you. But before the conversation can continue, Dave sets a plate [[on the table.|Diner2-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>The mouth-watering aroma of chicken, beef, and cheese wafts up from your and Jane's plates. The sweetness of the lattes mingles with the savory smells, creating an irresistible combination.</blockquote>
<<speech "mc" "$name">>Damn... this looks amazing.<</speech>>
<<speech "clerk3" "Dave">>We’ve got the best chef in all of Arizona.<</speech>>
<blockquote>As you chat, Jane snaps a picture of her food for reasons known only to her.</blockquote>
<<speech "mc" "$name">>Who?<</speech>>
<<speech "clerk3" "Dave">>Me.<</speech>>
<<speech "mc" "$name">>Wait, so you handle the register, wait tables, and cook?<</speech>>
<<speech "clerk3" "Dave">>And I clean the place up.<</speech>>
<<speech "gf" "Jane">>Geez, Dave.<</speech>>
<<speech "clerk3" "Dave">>Well, I’ve got one guy helping me, a kid named Rusty.<</speech>>
<blockquote>Your eyebrows raise slightly.</blockquote>
<<speech "mc" "$name">>Rusty? The manager mentioned him too.<</speech>>
<<speech "clerk3" "Dave">>Yeah, he works at the motel as well. He’s our resident waiter, cleaner, housekeeper, and mechanic. Between the three of us, he’s probably the richest. Haha~<</speech>>
<blockquote>Dave laughs heartily, his stomach [[bouncing with each chuckle.|Diner2-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "clerk3" "Dave">>But it’d be a LOT better if I knew where the hell he is.<</speech>>
<blockquote>Dave said with a cheerful grin still plastered on his face.</blockquote>
<<speech "gf" "Jane">>What's he like?<</speech>>
<blockquote>Dave assumed a thoughtful look, scrunching up his face as if trying to assemble the perfect description of Rusty.</blockquote>
<<speech "clerk3" "Dave">>Let’s see... he’s probably about your age, young lady. Tall, Black, smells like oil from all the grease he works with. Muscular too, from pushing all those cars. What else, what else...?<</speech>>
<blockquote>As Dave continued to list Rusty’s traits, you and Jane began to piece together an image of the man, and it struck both of you as oddly familiar.</blockquote>
<<speech "mc" "$name">>Wasn't it the guy we saw from Room 1?<</speech>>
<<speech "gf" "Jane">>Yeah, I think so.<</speech>>
<<speech "clerk3" "Dave">>Room 1?<</speech>>
<blockquote>All three pairs of eyes turned to Room 1. By now, the man you assumed was Rusty was gone. As you stared, however, [[someone else stepped out.|Diner2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/npc/nina1.webp" "400px">><</img>>
<<speech "gf" "Jane">>*Pheeeewwww*<</speech>>
<<speech "clerk3" "Dave">>Holy moly.<</speech>>
<<speech "mc" "$name">>Wowee...<</speech>>
<blockquote>As the three of you stared at the scene, Dave suddenly snapped back to reality.</blockquote>
<<speech "clerk3" "Dave">>Wait, he came out of there? Oh, that absolute fucking bastard.<</speech>>
<blockquote>Dave stomped away from your table, heading back to the counter, his steps heavy as he's fuming.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>But as Dave seethed with envy, your mind began to wander, lost in a fantasy.</blockquote>
<<speech "gf" "Jane">>Ahem.<</speech>>
<blockquote>Jane's glare was sharp enough to cut through your daydreams, throwing daggers straight into your eyes.</blockquote>
<<speech "gf" "Jane">>Fantasizing, my love?<</speech>>
<blockquote class="choice-blockquote">
<<link [[Lie|Fantasizing2-1]]>>
<<set $second_fantasy to "Lie">><</link>>
<<link [[Tell the truth|Fantasizing2-1]]>>
<<set $second_fantasy to "Truth">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<blockquote>You hesitantly follow her lead and begin eating. At first, there’s no conversation, just the rhythmic clinking of silverware on plates and the murmur of other diners weaving through the air. It’s not uncomfortable, but it’s not exactly warm either.</blockquote>
<blockquote>Suddenly, a loud thud breaks the monotony as Dave slaps the old radio. Static crackles for a moment before giving way to a soft, soulful tune, filling the diner with a comforting ambiance. It’s the kind of music that makes you want to lean back and savor every bite.</blockquote>
<blockquote>The setting sun bathes the diner in warm, golden light, casting long shadows across the table. Every so often, a stray ray stabs your eyes, making you squint or shield your face. Jane, amused by your struggle, snickers quietly behind her hand, her expression playful yet smug.</blockquote>
<<if $first_lovestate is "easy" or $first_lovestate is "medium">>
<blockquote>Taking advantage of your distraction, Jane swoops in, spearing a large chunk of your steak with her fork and popping it into her mouth without a shred of guilt. Her triumphant grin is met with your wide-eyed disbelief.</blockquote>
<blockquote>Not one to back down, you retaliate, launching an all-out food war. Every trick in your arsenal comes into play: angling the sunlight to blind her, pulling the classic "What’s that?" distraction, and even calling her phone mid-bite to throw her off. Each ploy is met with laughter, gasps, and counterattacks of her own.</blockquote>
<blockquote>By the time the meal ends, the battlefield is strewn with evidence of your mutual thievery. Bits of steak and fries have changed plates, and neither of you is entirely sure who ate more. Bellies full and spirits high, you both head back to [[your room.|FirstBed2-1]] grinning like kids who got away with mischief.</blockquote>
<<else>>
<blockquote>But that fleeting moment of amusement is all she offers. Jane quickly returns her focus to her meal, her playful demeanor evaporating. The tension lingers, heavy and unspoken, like a wall separating the two of you.</blockquote>
<blockquote>You attempt to break the silence, tossing out light conversation starters, but each one is met with curt, dismissive responses or outright silence. Her guarded expression makes it clear she’s already in her head, preparing for whatever difficult conversation lies ahead.</blockquote>
<blockquote>The minutes stretch on, each one feeling longer than the last. When Jane finally finishes her meal, she doesn’t look at you right away. Instead, she pushes her plate aside, takes a deep breath, and stands. Her chin tilts up ever so slightly as she gestures for you to follow, her posture radiating quiet determination. Without a word, you trail after her to [[the room.|FirstBedNTR2-1]] the weight of the unsaid heavy between you.</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_fantasy is "Truth">>
<<speech "gf" "Jane">>You are? Guess you're truthful, I can respect that.<</speech>>
<<elseif $second_fantasy is "Lie">>
<<speech "gf" "Jane">>Come on, $name. No need to hide it, you were woweeing along with us.<</speech>>
<</if>>
<blockquote>After that, she finally turns to her food, and you follow suit. But just as she's about to pick up the patty, she turns back to you.</blockquote>
<<if $first_ntrstate is "hard" or $first_ntrstate is "medium" or $first_ntrstate is "easy">>
<<speech "gf" "Jane">>...What were you fantasizing about?<</speech>>
<blockquote>Her eyes harden as she utters the words.</blockquote>
<<speech "mc" "$name">>U-Umm...<</speech>>
<blockquote>It's as if you're being choked by an invisible force.</blockquote>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote>There is no way out.</blockquote>
<blockquote class="choice-blockquote">
<<link [[That woman|Fantasizing2-2]]>>
<<set $second_fantasy2 to "Woman">><</link>>
<<link [[Refuse to answer|Fantasizing2-2]]>>
<<set $second_fantasy2 to "Jane">><</link>>
</blockquote>
<<else>>
<<speech "gf" "Jane">>I'll make you forget all about her tonight.<</speech>>
<<speech "mc" "$name">>GULP!!!<</speech>>
<blockquote>She smirks and then takes a small bite of her patty, savoring it with a confident air. [[Continue eating.|EatLunch2-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_fantasy2 is "Woman">>
<<speech "gf" "Jane">>I see...<</speech>>
<blockquote>Jane's gaze lingers on you for a few moments before she turns to her patty. Then, for some reason, you notice her breathing a quiet sigh of relief.</blockquote>
<<speech "gf" "Jane">>Good to know.<</speech>>
<blockquote>She then takes a small bite of her cheeseburger, savoring the moment. [[Continue eating.|EatLunch2-1]]</blockquote>
<<elseif $second_fantasy2 is "Jane">>
<blockquote>Her eyes narrow further, the weight of her gaze pressing down on you after you refuse to answer.</blockquote>
<<speech "gf" "Jane">>Me, then.<</speech>>
<blockquote>Your eyes widen, instinctively wanting to defend yourself, but her icy glare cuts you off.</blockquote>
<<speech "gf" "Jane">>Later.<</speech>>
<blockquote>Without another word, she shifts her attention to her cheeseburger and takes a deliberate bite. [[Continue eating.|EatLunch2-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>You were sweating bullet as you lied to her face, but she only smirks watching you squirm.</blockquote>
<<speech "gf" "Jane">>Come on, $name. No need to lie about it
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<<speech "gf" "Jane">>Ahhhhh~<</speech>>
<blockquote>Jane hopped onto the bed as soon as the door opened.</blockquote>
<<speech "gf" "Jane">>I should forget to reserve more hotel room.<</speech>>
<<speech "mc" "$name">>Don't.<</speech>>
<blockquote>You walk over to the fridge, grab one of the complimentary bottled waters, and toss it to her.</blockquote>
<<speech "gf" "Jane">>For free?<</speech>>
<<speech "mc" "$name">>Yeah, all this for just $70.<</speech>>
<<speech "gf" "Jane">>70?!<</speech>>
<blockquote>Jane sat up quickly, looking impressed.</blockquote>
<<speech "mc" "$name">>Maybe because they don't have pool.<</speech>>
<<speech "gf" "Jane">>But they still offer free breakfast.<</speech>>
<<speech "mc" "$name">>Nah, it’s free because the manager is screwing over her brother.<</speech>>
<<speech "gf" "Jane">>Haha~ right.<</speech>>
<blockquote>She flopped back down, twisting and turning on the bed before finally settling in to [[look at you.|FirstBed2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<blockquote>Jane spins a nearby chair and sits down, facing you. Her eyes are cold, her tone sharp.</blockquote>
<<speech "gf" "Jane">>Talk.<</speech>>
<blockquote>It’s not an invitation, but a command.</blockquote>
<<speech "mc" "$name">>T-Talk?<</speech>>
<<speech "gf" "Jane">>The truth.<</speech>>
<blockquote>Her stare doesn’t waver, the silence pressing in.</blockquote>
<<speech "gf" "Jane">>Start from the beginning.<</speech>>
<blockquote class="choice-blockquote">
<<link [[Relent|FirstBedNTR2-2]]>>
<<set $second_ntrtalk1 to "Relent">><</link>>
<<link [[Hide the truth|FirstBedNTR2-2b]]>>
<<set $second_ntrtalk1 to "Anger">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>Despite her pressure, you still hesitate to tell the truth.</blockquote>
<<speech "mc" "$name">>C-Can we just forget about it, Jane?<</speech>>
<blockquote>Her eyes narrow, and her tone drops dangerously low.</blockquote>
<<speech "gf" "Jane">>Do you not respect me, $name?<</speech>>
<<speech "mc" "$name">>I-I do... b-but...<</speech>>
<<speech "gf" "Jane">>Didn't we promise that we'll have no secret between us?<</speech>>
<<speech "mc" "$name">>I-I...<</speech>>
<blockquote>Then, with unexpected tenderness, whether from resignation or exhaustion, she whispers.</blockquote>
<<speech "gf" "Jane">>Then tell me [[the truth.|FirstBedNTR2-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>You lost your willpower and lay down on the bed, closing your eyes as exhaustion strikes.</blockquote>
<<speech "mc" "$name">>...Where should I even begin?<</speech>>
<blockquote>Jane didn't say anything, as she's letting you to compile your own thought.</blockquote>
<blockquote>You took a deep breath and speak.</blockquote>
<<speech "mc" "$name">>My first girlfriend fucked my classmate because his dick is way bigger.<</speech>>
<blockquote>And then there was silence.</blockquote>
<<speech "mc" "$name">>Her words.<</speech>>
<blockquote>A few more moments of silence, you can see Jane's eye widened.</blockquote>
<blockquote class="location">She remembered</blockquote>
<<if $first_ntrstate is "hard">>
<<speech "gf" "Jane">>W-What...?<</speech>>
<blockquote>Jane looks disturbed for a few moment before she regained herself.</blockquote>
<<speech "gf" "Jane">>W-Wait a minute, how does this lead to you liking to jerk off to cuckold porn again?<</speech>>
<<speech "mc" "$name">>W-Well, I-I don't know. It just awaken something inside me.<</speech>>
<blockquote>Jane is furrowing her brows.</blockquote>
<<speech "mc" "$name">>It's not like I've been talking to a therapist about this...<</speech>>
<blockquote>Her dagger-like stare seems to soften for a few moment.</blockquote>
<<speech "gf" "Jane">>...You should.<</speech>>
<blockquote>She cross her hand, [[intending to continue.|FirstBedNTR2-3a]]</blockquote>
<<elseif $first_ntrstate is "medium">>
<<speech "gf" "Jane">>O-Oh...<</speech>>
<blockquote>She averts her gaze for a few moment.</blockquote>
<<speech "mc" "$name">>..............................<</speech>>
<blockquote>Jane stole a quick glance and waves you to [[continue.|FirstBedNTR2-3a]]</blockquote>
<<elseif $first_ntrstate is "easy">>
<<speech "gf" "Jane">>W-What?!<</speech>>
<blockquote>Jane rose from her chair and stood before you, her eyes is quivering with guilt.</blockquote>
<<speech "mc" "$name">>Don't worry, Jane. It's in the past.<</speech>>
<blockquote>Jane sits down on the bed.</blockquote>
<<speech "gf" "Jane">>S-Stop, you can stop now... s-sorry... I-I didn't know...<</speech>>
<blockquote>Jane looks down with [[extreme guilt.|FirstNTRBed2-3b]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>You close your eyes with intense embarrassment.</blockquote>
<<speech "mc" "$name">>T-That's it. That's my supervillain origin story<</speech>>
<blockquote>You said, throwing your hands up in resignation.</blockquote>
<<speech "gf" "Jane">>...Is this your fantasy?<</speech>>
<blockquote>Softly, you nodded. Then she continues with the ultimate question.</blockquote>
<<speech "gf" "Jane">>Have you been jerking off about me?<</speech>>
<blockquote>Her question gains a bit of edge.</blockquote>
<blockquote class="choice-blockquote">
<<link [[You have|FirstBedNTR2-4a]]>>
<<set $second_ntrtalk2 to "Jerkoff">><</link>>
<<link [[You haven't|FirstBedNTR2-4a]]>>
<<set $second_ntrtalk2 to "NoJerkoff">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>Jane stirs from her chair, getting up with as she hesitantly stretch her hand towards you.</blockquote>
<<speech "gf" "Jane">>Y-You didn't tell me...<</speech>>
<blockquote>Her voice is low, quivering, because of the sudden onset of guilt that she didn't expect.</blockquote>
<<speech "gf" "Jane">>$name, I-I...<</speech>>
<blockquote>In that vulnerability, you can't help but to hold her.</blockquote>
<<speech "mc" "$name">>I can't, Jane. I obviously can't...<</speech>>
<<speech "gf" "Jane">>B-But...<</speech>>
<<speech "mc" "$name">>And I want to forget.<</speech>>
<blockquote>Her tension seems to dissipate at that moment.</blockquote>
<<speech "gf" "Jane">>R-Right...<</speech>>
<blockquote>All words then stops for a few minutes, there was only warmth from each other's body. But as Jane drifts deeper into your embrace she suddenly remember why you're having this conversation in the first place.</blockquote>
<<speech "gf" "Jane">>W-Wait... b-back then in the car.<</speech>>
<<speech "mc" "$name">>It's the after effect.<</speech>>
<<speech "gf" "Jane">>After effect?<</speech>>
<blockquote>Her eyes is pleading you to answer the question but it's up to you whether to tell the truth of your fantasy or not.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Tell her your fantasy|FirstBedLove2-1a]]>>
<<set $second_state to "Fantasy">><</link>>
<<link [[Hide the truth|FirstBedLove2-1b]]>>
<<set $second_state to "Love">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<if $second_ntrtalk2 is "Jerkoff">>
<<if $first_ntrstate is "hard">>
<blockquote>Jane's eyes turn sharp.</blockquote>
<<speech "gf" "Jane">>I see.<</speech>>
<blockquote>Multiple emotions plays within her eyes, it never truly settled even as she said something more.</blockquote>
<<speech "gf" "Jane">>Well, what if I told you that I've fucked another dude when I you were away.<</speech>>
<<speech "mc" "$name">>Y-You've WHAT!?<</speech>>
<blockquote>You jumped from the bed but as you move, you can feel your dick getting erect.</blockquote>
<<speech "gf" "Jane">>No, that's a lie.<</speech>>
<blockquote>Her eyes is locked on your tent.</blockquote>
<<speech "gf" "Jane">>But you're clearly not...<</speech>>
<blockquote>You can feel your breath quickens, she got you.</blockquote>
<<speech "gf" "Jane">>What am I going to do with you, $name...?<</speech>>
<blockquote>She approached, smirk creeping up [[her face.|FirstBedNTR2-5a]]</blockquote>
<<elseif $first_ntrstate is "medium">>
<blockquote>Jane covers her mouth as she turns her head away from you.</blockquote>
<<speech "gf" "Jane">>Holy shit, $name... holy fucking shit...<</speech>>
<blockquote>You can see Jane trembles as she turns back to you.</blockquote>
<<speech "gf" "Jane">>W-Why haven't you talked about this with me, $name?<</speech>>
<<speech "mc" "$name">>D-Do you think I could...?<</speech>>
<blockquote>Jane stops and realizes that you're right.</blockquote>
<<speech "gf" "Jane">>Dammit... Fuck!<</speech>>
<blockquote>Jane yelled as [[she clutch her head.|FirstBedNTR2-5c]]</blockquote>
<</if>>
<<elseif $second_ntrtalk2 is "NoJerkoff">>
<<img "Images/gf/gf9.webp" "500px">><</img>>
<blockquote>Jane closed her eyes and breath out a sigh of relief.</blockquote>
<<speech "gf" "Jane">>Good, that's good...<</speech>>
<blockquote>She then turns to you.</blockquote>
<<speech "gf" "Jane">>Cause I legitimately don't know what I'll do if you ever did that.<</speech>>
<blockquote>Then with that imperceptible expression she approach your [[lying figure.|FirstBedNTR2-5b]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this forever</blockquote>
<<set $second_state to "NTR">>
<<img "Images/gf/gf9.webp" "500px">><</img>>
<<speech "gf" "Jane">>You're hopeless...<</speech>>
<blockquote>She said, her tone is dangerous and the glint in her eyes is predatory.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>She crawls on the bed, her eyes never relenting ever for a split second.</blockquote>
<<speech "gf" "Jane">>You had your ex got taken away but here you are, dreaming for the second time.<</speech>>
<<speech "mc" "$name">>N-No-<</speech>>
<<speech "gf" "Jane">>Shh...<</speech>>
<blockquote>She said, as she caressed your erection. You tried to get up knowing that nothing good will come out of this.</blockquote>
<<speech "gf" "Jane">>Sit.<</speech>>
<blockquote>But she grasped your dick before [[you could even move.|FirstBedNTR2-6a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<blockquote>Jane lie down right beside you, her guarded expression seems to have loosened up.</blockquote>
<<speech "gf" "Jane">>Fucking hell, $name...<</speech>>
<blockquote>Her hand then slowly creeps towards your chest, then soon enough it reached your open hand.</blockquote>
<<speech "gf" "Jane">>How long have you had this fantasy?<</speech>>
<<speech "mc" "$name">>Years. Long before we even met.<</speech>>
<blockquote>Her grips seems to tighten.</blockquote>
<<speech "gf" "Jane">>Is this why you left me hanging for months?<</speech>>
<<speech "mc" "$name">>...Yeah.<</speech>>
<blockquote>Then her grip suddenly loosened.</blockquote>
<<speech "gf" "Jane">>You should've told me...<</speech>>
<blockquote>Told her?</blockquote>
<blockquote class="choice-blockquote">
<<link [[Make a joke|FirstBedNTR2-6c]]>>
<<set $second_ntrtalk4 to "Joke">><</link>>
<<link [[Be serious|FirstBedNTR2-6c]]>>
<<set $second_ntrtalk4 to "Serious">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>It took her a few minutes to recover but as she's done, she turns to your lying figure.</blockquote>
<<speech "gf" "Jane">>Tell me about it.<</speech>>
<blockquote>You couldn't judge the emotion within her.</blockquote>
<<speech "gf" "Jane">>Your fantasy.<</speech>>
<<speech "mc" "$name">>J-Jane, p-please...<</speech>>
<blockquote>Suddenly, she turns red with anger, and then rushed in to your balls.</blockquote>
<<speech "gf" "Jane">>You've been jerking off about me in your fucked up fantasy. I should have the right to know, huh?<</speech>>
<<speech "mc" "$name">>J-Jane- ngh!<</speech>>
<blockquote>She pinched it.</blockquote>
<<speech "mc" "$name">>O-Okay! I-I'll tell you! I-It's you I-I fantasized about you.<</speech>>
<<speech "gf" "Jane">>I fucking know that, give me the specific.<</speech>>
<blockquote>But as you told her, her grip only gets stronger.</blockquote>
<<speech "mc" "$name">>Y-You, Jane! W-With your friends! W-With your coworkers! D-During trips! NGHHH!!!<</speech>>
<<speech "gf" "Jane">>Doing what?<</speech>>
<<speech "mc" "$name">>B-Bending you over! F-From behind! I-In our bed! E-Everything!!!<</speech>>
<blockquote>The pain is immense but again she tightens her grip.</blockquote>
<<speech "mc" "$name">>AHHH!!! S-Stop!!!<</speech>>
<<speech "gf" "Jane">>Do you want it to happen?<</speech>>
<blockquote class="choice-blockquote">
<<link [[YES!!!|FirstBedNTR2-6a]]>>
<<set $second_state to "HardNTS">><</link>>
<<link [[NO!!!|FirstBedNTR2-6b]]>>
<<set $second_state to "Fantasy">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf9.webp" "500px">><</img>>
<<speech "gf" "Jane">>So fucking hopeless...<</speech>>
<<speech "gf" "Jane">>Mmm...<</speech>>
<blockquote>Like before, her eyes gain an incredibly dangerous glint.</blockquote>
<<speech "gf" "Jane">>You're so fucking hard already...<</speech>>
<<vid "Images/gf/gfs14.webm" "500px">>
<<speech "mc" "$name">>Ngh...<</speech>>
<blockquote>She seductively [[crawls|FirstBedNTR2-7]] towards you.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<blockquote>She is actually surprised when you said no, she genuinely thought that you will say yes.</blockquote>
<<speech "gf" "Jane">>Only a fantasy...?<</speech>>
<blockquote>She said, while idly playing with your dick.</blockquote>
<<speech "gf" "Jane">>Why are you so damn hard, then?<</speech>>
<<speech "mc" "$name">>I-I don't know, Jane! I-I don't fucking know!<</speech>>
<blockquote>Your helplessly genuine reply seems to shook her off her stupor.</blockquote>
<<speech "gf" "Jane">>I see...<</speech>>
<<speech "mc" "$name">>C-Can we just forget about it? P-Please...<</speech>>
<blockquote>She stares at you for a few moment.</blockquote>
<<speech "gf" "Jane">>Gonna be hard, $name...<</speech>>
<<speech "mc" "$name">>I know...<</speech>>
<blockquote>She let you go.</blockquote>
<<speech "gf" "Jane">>It gonna be so [[fucking hard.|FirstCommon2-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<speech "gf" "Jane">>I need a bath.<</speech>>
<blockquote>Jane took a quick sniff of herself before heading to the bathroom, leaving you sprawled out on the bed.</blockquote>
<<speech "mc" "$name">>...................................<</speech>>
<blockquote>You shut your eyes and exhaled a long, weary breath. The day had been utterly chaotic, and somehow, it wasn’t even evening yet.</blockquote>
<<speech "mc" "$name">>...................................<</speech>>
<blockquote>Your thoughts drifted to the two weeks ahead, an unpredictable journey that you couldn’t even begin to imagine.</blockquote>
<blockquote>Just as you let yourself relax, Jane's voice suddenly echoed from the bathroom.</blockquote>
<<speech "gf" "Jane">>Dammit, there's [[no toilet paper!|FirstCommon2-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<if $second_ntrtalk4 is "Joke">>
<<speech "mc" "$name">>Tell you what? That I fantasized seeing you getting rawdogged by some dudes?<</speech>>
<blockquote>That's an inappropriate joke but it elicited a smile from her, you're glad that she still holds her usual sense of humor.</blockquote>
<<speech "gf" "Jane">>Heh... but man, was it that bad...?<</speech>>
<<speech "mc" "$name">>...yeah.<</speech>>
<blockquote>She shakes her head.</blockquote>
<<elseif $second_ntrtalk4 is "Serious">>
<<speech "mc" "$name">>I can't... I obviously can't.<</speech>>
<blockquote>Jane stares at the ceiling for a moment.</blockquote>
<<speech "gf" "Jane">>...Yes, you're right.<</speech>>
<blockquote>Her needy grip on your hand then tightens once again.</blockquote>
<</if>>
<<speech "gf" "Jane">>...Let's just forget about all this.<</speech>>
<blockquote>She turns and kiss you.</blockquote>
<<speech "gf" "Jane">>Let's just enjoy our trip.<</speech>>
<<speech "mc" "$name">>Wouldn't have it any other way.<</speech>>
<blockquote>Jane smiled your way before [[getting up.|FirstCommon2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf9.webp" "500px">><</img>>
<<speech "gf" "Jane">>You know... why don’t we just travel from motel to motel?<</speech>>
<<speech "mc" "$name">>Why?<</speech>>
<blockquote>She spread her arms wide before answering.</blockquote>
<<speech "gf" "Jane">>To help... stimulate the local economy?<</speech>>
<<speech "mc" "$name">>I didn’t realize you were an expert in economics.<</speech>>
<blockquote>You raise an eyebrow at her strange phrasing, but you already know where this is going.</blockquote>
<<speech "gf" "Jane">>Well... I love learning new things.<</speech>>
<<speech "mc" "$name">>...This is a weird ass flirting ritual.<</speech>>
<blockquote>At that, she springs up and charges at you.</blockquote>
<<speech "gf" "Jane">>Let's not waste anytime, then.<</speech>>
<<speech "mc" "$name">>I-It’s not even night yet.<</speech>>
<<speech "gf" "Jane">>The girl from room 1 didn't wait.<</speech>>
<<speech "mc" "$name">>*gulp*<</speech>>
<<speech "gf" "Jane">>I promised, didn’t I? I’ll give you a preview for tonight...<</speech>>
<blockquote>And with a gentle tug, she [[pulls you down.|FirstBed2-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs14.webm" "500px">>
<<speech "gf" "Jane">>Mmm~<</speech>>
<blockquote>Your breath quickens as she get to work.</blockquote>
<<speech "gf" "Jane">>Remember~ [[just a preview...|FirstBed2-4]]<</speech>>
<<speech "mc" "$name">>Y-Yes...<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs15.webm" "500px">>
<<speech "mc" "$name">>A-Ahh...<</speech>>
<<speech "gf" "Jane">>Mmm~ don't tense up just yet, baby.<</speech>>
<blockquote>Her [[touch is divine.|FirstBed2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs16.webm" "500px">>
<blockquote>You close your eyes, enjoying the sensation.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>Jane is nodding her head up and down, sending you to nirvana.</blockquote>
<<speech "mc" "$name">>A-Ahh...<</speech>>
<blockquote>You can already sense something coming.</blockquote>
<blockquote class="choice-blockquote">
<<link [[CUM!!!|FirstBedCum2-1]]>>
<<set $second_lovetalk1 to "Early">><</link>>
<<link [[Hold it|FirstBed2-6]]>>
<<set $second_lovetalk1 to "Hold">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs19.webm" "500px">>
<<speech "gf" "Jane">>W-What...?<</speech>>
<blockquote>She's shocked, that much is clear on her face.</blockquote>
<<speech "gf" "Jane">>T-That was quick...<</speech>>
<<speech "mc" "$name">>S-Sorry... I-I'm a bit exhausted...<</speech>>
<<speech "gf" "Jane">>...Shouldn't you last longer if you're exhausted?<</speech>>
<blockquote>Jane furrows her brows, but after a while she just rolls her eyes and invite you to lay beside here.</blockquote>
<<speech "gf" "Jane">>Just come here, [[baby.|FirstBedOver1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs17.webm" "500px">>
<blockquote>Jane throw away all her clothes as she gives you even more of those heavenly sensation.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<<speech "gf" "Jane">>Not yet, baby...<</speech>>
<blockquote>Her nimble tongue wraps around your dick.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>Again you feel something ready to burst out.</blockquote>
<blockquote class="choice-blockquote">
<<link [[CUM!!!|FirstBedCum2-1]]>>
<<set $second_lovetalk1 to "Early">><</link>>
<<link [[Hold it|FirstBed2-7]]>>
<<set $second_lovetalk1 to "Hold">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs18.webm" "500px">>
<<speech "gf" "Jane">>Hihi~<</speech>>
<blockquote>She can see you struggling.</blockquote>
<<speech "mc" "$name">>Ngh!<</speech>>
<blockquote>She smiles with that usual lusty warmth.</blockquote>
<<speech "gf" "Jane">>Go on... cum on me.<</speech>>
<blockquote>That's [[all you need.|FirstBed2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs19.webm" "500px">>
<<speech "gf" "Jane">>Mmm~<</speech>>
<blockquote>She picks some of your cum and put it in her mouth.</blockquote>
<<speech "gf" "Jane">>Tasty...<</speech>>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>She smirks and pulled you in closer.</blockquote>
<<speech "gf" "Jane">>Come here, [[baby...|FirstBedOver1-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>Jane creeps closer to you, her fingers playing with the stray locks falling across your face.</blockquote>
<<speech "gf" "Jane">>Mmm...<</speech>>
<<if $first_lovestate is "medium">>
<blockquote class="location">She remembered</blockquote>
<blockquote>But the way her fingers idly trace your hair reveals a hint of hesitation.</blockquote>
<<speech "mc" "$name">>You're still thinking about earlier, aren't you?<</speech>>
<<speech "gf" "Jane">>...How could I not?<</speech>>
<<speech "mc" "$name">>Forget it, Jane... it's in the past.<</speech>>
<blockquote>You reply weakly, letting yourself savor the warmth of her presence.</blockquote>
<<speech "gf" "Jane">>But it still on your mind, right?<</speech>>
<<speech "mc" "$name">>It is... but I've been trying to forget.<</speech>>
<<speech "gf" "Jane">>I see...<</speech>>
<<speech "mc" "$name">>But it's been hard... especially with... u-umm...<</speech>>
<blockquote>You hesitate at the last moment.</blockquote>
<<speech "gf" "Jane">>$name?<</speech>>
<blockquote>Her eyes plead for you to answer, but it’s up to you whether to reveal the truth about your fantasy or not.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Tell her your fantasy|FirstBedLove2-1a]]>>
<<set $second_state to "Fantasy">><</link>>
<<link [[Hide the truth|FirstBedLove2-1b]]>>
<<set $second_state to "Love">><</link>>
</blockquote>
<<elseif $first_lovestate is "easy">>
<<set $second_state to "Love">>
<blockquote>Jane snuggles closer, enjoying the comfort of your presence.</blockquote>
<<speech "gf" "Jane">>I think we should go on more trips like this.<</speech>>
<<speech "mc" "$name">>The first day hasn't even over yet, darling.<</speech>>
<blockquote>You reply, your hand gently playing with her hair.</blockquote>
<<speech "gf" "Jane">>Didn’t you plan to visit Big Bear Lake already? Why can’t I make plans too, baby?<</speech>>
<<speech "mc" "$name">>Well, darling, we’ve made it to Big Bear Lake, but we might get eaten by coyotes on the third day.<</speech>>
<<speech "gf" "Jane">>Nghhh~ fuck you~<</speech>>
<blockquote>She playfully protests while keeping her head nestled against your chest.</blockquote>
<<speech "gf" "Jane">>Well~<</speech>>
<blockquote>Suddenly, she rises from the bed and [[stands up.|FirstCommon2-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>I-I...<</speech>>
<blockquote>You took a deep breath, wondering if telling her is even the right thing to do but your heart tells you to do it.</blockquote>
<<speech "mc" "$name">>I-I fantasized...<</speech>>
<<speech "gf" "Jane">>Fantasized...?<</speech>>
<blockquote>Her face gains an uncertain tint.</blockquote>
<<speech "mc" "$name">>Y-Yes... about her...<</speech>>
<<speech "gf" "Jane">>...........................<</speech>>
<<speech "mc" "$name">>With him...<</speech>>
<blockquote>You couldn't see her face but the sudden weight on her arm tell you everything you need to know.</blockquote>
<<speech "mc" "$name">>I-I don't know why, but it just happened...<</speech>>
<blockquote>Then as quickly as her tension appeared, there's a sudden gentleness within her touch, guiding you to go on.</blockquote>
<<speech "mc" "$name">>I fantasized about it, to this day. Sometimes it came in my dream, other time when I'm alone, b-but... s-sometimes... i-it came out when I see [[you...|FirstBedLove2-2a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>She raised her eyebrows, wondering what you were on about.</blockquote>
<<speech "mc" "$name">>Forget it, it's nothing.<</speech>>
<<speech "gf" "Jane">>..............................<</speech>>
<blockquote>There's a slight suspicion within her eyes but she chose not to pursue it further.</blockquote>
<<speech "gf" "Jane">>Sure.<</speech>>
<blockquote>Then slowly, she [[gets up from the bed.|FirstCommon2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>You expected revulsion at your confession. You expected her to stood up and went away, to catch a next ride back to California, alone. To be entirely gone from your life.</blockquote>
<<speech "gf" "Jane">>Go on...<</speech>>
<blockquote>But there was no condemnation on her face, she only tells you to continue.</blockquote>
<<speech "mc" "$name">>I-I'm weird, Jane... t-those fantasy... it made me hard...<</speech>>
<<speech "gf" "Jane">>In the car, did that happened just from me saying that?<</speech>>
<<speech "mc" "$name">>Y-Yes... I can't help it...<</speech>>
<<speech "gf" "Jane">>I see...<</speech>>
<blockquote>But suddenly, her tenderness seems to lessen as she turns her eyes deep towards you.</blockquote>
<<speech "gf" "Jane">>But it's just fantasy, right? Nothing more?<</speech>>
<blockquote class="choice-blockquote">
<<link [[It's nothing more.|FirstBedLove2-3a]]>>
<<set $second_state to "TrueLove">><</link>>
<<link [[There's something more.|FirstBedLove2-3a]]>>
<<set $second_state to "SoftNTS">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<if $second_state is "SoftNTS">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>This time, her tension really did tightened.</blockquote>
<<speech "gf" "Jane">>I-I...<</speech>>
<blockquote>Her eyes ran all around as if wanting to escape.</blockquote>
<<speech "mc" "$name">>I-I'm sorry, Jane.<</speech>>
<<speech "gf" "Jane">>N-No, no...<</speech>>
<blockquote>Then she tried to regain that tenderness, but she couldn't.</blockquote>
<<speech "gf" "Jane">>I-It's okay, $name. I-I understand.<</speech>>
<<speech "mc" "$name">>J-Jane, i-it's-<</speech>>
<<speech "gf" "Jane">>It's okay.<</speech>>
<blockquote>She suddenly [[stood up.|FirstCommon2-1]]</blockquote>
<<elseif $second_state is "TrueLove">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>This time, her tension really do dissipates.</blockquote>
<<speech "gf" "Jane">>I see...<</speech>>
<<speech "mc" "$name">>Nothing more, Jane.<</speech>>
<blockquote>A slight smile creep upon her lips as she caressed your exposed skin.</blockquote>
<<speech "gf" "Jane">>I'm glad.<</speech>>
<blockquote>She caressed your face one last time before [[getting up.|FirstCommon2-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs15.webm" "500px">>
<<speech "gf" "Jane">>Jerking off to her and then jerking off to me...<</speech>>
<blockquote>Her lips who's usually playful and gentle this time has a slight tinge of malice.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>But somehow, it [[feels much better.|FirstBedNTR2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs16.webm" "500px">>
<<speech "gf" "Jane">>Who's on your mind, right now?<</speech>>
<blockquote>Your dick flutters in pleasure.</blockquote>
<<speech "gf" "Jane">>Our neighbor? That asshole from the gas station?<</speech>>
<blockquote>She knows your weak point and she's killing you with it.</blockquote>
<<speech "gf" "Jane">>Or maybe the guy who took your girlfriend?<</speech>>
<<speech "mc" "$name">>NGH!!!<</speech>>
<blockquote>She smirks and [[grasped your dick.|FirstBedNTR2-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf10.webp" "500px">><</img>>
<blockquote>You're at the edge before she clamped it down.</blockquote>
<<speech "mc" "$name">>J-Jane!<</speech>>
<<speech "gf" "Jane">>No no no no~<</speech>>
<<speech "mc" "$name">>P-Please...<</speech>>
<<speech "gf" "Jane">>No.<</speech>>
<blockquote>There was no discussion as she gets up from the bed, leaving you hanging with a painful blue balls.</blockquote>
<<speech "gf" "Jane">>Don't even think about touching yourself.<</speech>>
<blockquote>She said, her tone [[final.|FirstCommon2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>Jane stormed out of the bathroom, still dry but clearly fuming.</blockquote>
<<speech "gf" "Jane">>Haa... thank hell I noticed before doing anything.<</speech>>
<blockquote>Your eyes felt heavy from exhaustion, and you didn’t bother getting up.</blockquote>
<<speech "mc" "$name">>Weren’t there some rolls in the car?<</speech>>
<<speech "gf" "Jane">>Ngh, it’s not about whether we have toilet paper or not! This isn’t about OUR preparation, it’s about hospitality!<</speech>>
<blockquote>She huffed, stomping her way toward the door.</blockquote>
<<speech "mc" "$name">>Just... be gentle with her!<</speech>>
<blockquote>You mumbled as you turned back into the bed, you're not even sure [[she heard you.|FirstCommon2-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<speech "gf" "Jane">>Be gentle, my ass.<</speech>>
<blockquote>She heard you, but she didn’t care.</blockquote>
<<speech "gf" "Jane">>We paid for the room.<</speech>>
<blockquote>The woman from earlier sat on the patio as Jane passed by.</blockquote>
<<img "Images/npc/nina2.webp" "400px">><</img>>
<<speech "nina" "Woman">>Good afternoon.<</speech>>
<<speech "gf" "Jane">>Good afternoon.<</speech>>
<blockquote>Jane flashed her usual flight attendant smile before continuing on, still visibly fuming.</blockquote>
<<speech "nina" "Woman">>...............................<</speech>>
<blockquote>The woman watched as Jane marched toward the [[manager’s office.|FirstCommon2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/lobbyphoenix.webp" "500px">><</img>>
<<speech "gf" "Jane">>Hey, we have compl- huh...?<</speech>>
<blockquote>Jane rush into the lobby, but no one's inside.</blockquote>
<<speech "gf" "Jane">>Where?<</speech>>
<blockquote>She glanced left and right, up and down, but the manager is nowhere to be seen.</blockquote>
<<speech "gf" "Jane">>Ugh...<</speech>>
<blockquote>With no sign of anyone, Jane begrudgingly sat down in one of the chairs, waiting for the manager to show up.</blockquote>
<<speech "gf" "Jane">>....................................<</speech>>
<blockquote>The clock ticked.</blockquote>
<<speech "gf" "Jane">>....................................<</speech>>
<blockquote>And ticked.</blockquote>
<<speech "gf" "Jane">>....................................<</speech>>
<blockquote>And kept ticking.</blockquote>
<<speech "gf" "Jane">>Fuck this shit.<</speech>>
<blockquote>Finally, she vaulted over the counter and walked into the manager's [[living space.|FirstCommon2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<speech "gf" "Jane">>................................<</speech>>
<blockquote>At first, everything was as quiet as before. Jane was ready to give up, thinking the manager might not even be here. But just as she turned to leave, a sudden loud scream echoed from one of the rooms.</blockquote>
<<speech "gf" "Jane">>W-What...?<</speech>>
<blockquote>Jane froze in place, stunned. She didn’t know what was happening inside, but it was clear someone needed help.</blockquote>
<<speech "gf" "Jane">>S-Shit.<</speech>>
<blockquote>But as she moved, the screams then turns to moaning.</blockquote>
<<speech "gf" "Jane">>....................................<</speech>>
<blockquote>Only then did she realize what was happening. But by that point, she was already standing at the door, her eyes locked on [[what was happening inside.|ManagerSex2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<speech "gf" "Jane">>*gasp*<</speech>>
<<vid "Images/other/clerks1.webm" "500px">>
<blockquote>The manager, and the man who she assume to be Rusty, is busy being tangled up in her bed to notice her.</blockquote>
<<speech "clerk2" "Manager">>F-Fuck, harder, fucker!<</speech>>
<<speech "rusty" "Rusty">>Take it easy, boss. My dick just done fucking a younger pussy.<</speech>>
<<speech "clerk2" "Manager">>F-Fuck you.<</speech>>
<blockquote>Despite all that, the manager seems to dove deeper and deeper [[into the bed.|ManagerSex2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<vid "Images/other/clerks2.webm" "500px">>
<<speech "clerk2" "Manager">>Ah! Fuck!!!<</speech>>
<blockquote>As Jane's eyes locked into the scene she started to feel things, multiple different things.</blockquote>
<<if $firstpushy is "True">>
<blockquote>She remembers you being pushy at the very start of the trip, asking for a quicky when she forgot her kindle, she begin to think that maybe she should've taken your offer, at least then she won't be as horny as she is now.</blockquote>
<</if>>
<<if $bbl_4 is "bad">>
<blockquote>She remembers how you turned her down in Big Bear Lake, leaving her aching for your touch. Not only that but as she watch the two getting entangled, Jane also feels angry. Tired of your indecision.</blockquote>
<<elseif $bbl_4 is "good">>
<blockquote>She remembers how the two of you did it in that forest in Big Bear Lake. The sex might not be much but she appreaciate the touch you gave her.</blockquote>
<</if>>
<blockquote>Jane feels horny, she wants to have that same sensation. But she closed her eyes as she remembers you.</blockquote>
<<speech "rusty" "Rusty">>Turn around.<</speech>>
<blockquote>Hearing his words, [[Jane opened her eyes.|ManagerSex2-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<vid "Images/other/clerks3.webm" "500px">>
<blockquote>And her eyes couldn't be shut right after that. He's relentless, Rusty. Extremely relentless. Even the manager could only lie down and take it.</blockquote>
<<if $firstinsult is "true" or $firsthumiliation is "true">>
<blockquote>This man takes what he wants, the same way that man in the gas station did as he humiliated you. Despite you not being here, she could feel her respect towards you gets lower and lower, she imagines how it would be under such a dominant man.</blockquote>
<<speech "gf" "Jane">>*gulp*<</speech>>
<</if>>
<<if $second_lovetalk1 is "Early">>
<blockquote>She remembers how you came so early just a few minutes ago. She loves you with all her heart but as she remembers your excuse, she realized that you never last long, exhausted or not.</blockquote>
<</if>>
<blockquote>Unconsciously, Jane's hand moves into her pants, but as she's ready to touch herself, Rusty yelled.</blockquote>
<<speech "rusty" "Rusty">>[[FUCK!!!|ManagerSex2-4]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<vid "Images/other/clerks4.webm" "500px">>
<blockquote>He came inside her, the sperm is slowly dripping out of her well-fucked pussy. Jane could only watch in wonder. Suddenly, something flicks inside her.</blockquote>
<<if $second_state is "NTR" or $second_state is "HardNTS">>
<<speech "gf" "Jane">>...................................<</speech>>
<blockquote>Jane's eyes is entirely locked to Rusty's huge cock.</blockquote>
<<speech "gf" "Jane">>...................................<</speech>>
<blockquote>She's gulps the saliva that is pooling in her mouth.</blockquote>
<<speech "gf" "Jane">>...................................<</speech>>
<blockquote>She's hungry.</blockquote>
<<elseif $second_state is "SoftNTS" or $second_state is "Love" or $second_state is "Fantasy">>
<<speech "gf" "Jane">>*gulp*<</speech>>
<blockquote>Jane is stunned, her eyes is locked with Rusty's huge cock.</blockquote>
<<speech "gf" "Jane">>Haa... haa... haa...<</speech>>
<blockquote>But as she stares, the thoughts of you brings her back to reality.</blockquote>
<<speech "gf" "Jane">>N-No...<</speech>>
<blockquote>Jane turns around.</blockquote>
<<elseif $second_state is "TrueLove">>
<blockquote>Jane immediately averts her gaze. She couldn't look at him, not at Rusty, nor the manager.</blockquote>
<<speech "gf" "Jane">>No...<</speech>>
<blockquote>There is only you in her mind, and she will never let you go.</blockquote>
<</if>>
<blockquote>Then after enjoying her afterglow, the manager rolls around, just to see Jane standing by the doorway.</blockquote>
<<speech "clerk2" "Manager">>[[F-Fucking shit!|ManagerSex2-5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<speech "clerk2" "Manager">>Fucking hell, tuck your dick, asshole.<</speech>>
<blockquote>The manager quickly dressed herself and takes Jane to the lobby.</blockquote>
<<speech "clerk2" "Manager">>S-So, umm, uhh, do you want a room?<</speech>>
<<speech "gf" "Jane">>No no, I'm in Room 3 with my boyfriend.<</speech>>
<<speech "clerk2" "Manager">>Room 3? He was just here alone. Did you get together a few minutes ago or something?<</speech>>
<<speech "gf" "Jane">>N-No, I was in the diner waiting for him.<</speech>>
<<speech "clerk2" "Manager">>Ahhh...<</speech>>
<blockquote>Her eyes is still wondering around, embarrassed because someone saw her.</blockquote>
<<speech "gf" "Jane">>I just want to get the toilet paper replacement.<</speech>>
<<speech "clerk2" "Manager">>...Toilet paper? W-Wait, oh that fucker...<</speech>>
<blockquote>Just then, Rusty showed up from [[the backdoor.|ManagerSex2-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<<speech "clerk2" "Manager">>BASTARD!!!<</speech>>
<blockquote>She rushed and put him on a headlock.</blockquote>
<<speech "clerk2" "Manager">>Didn't I tell you to change the fucking roll? What the fuck am I even paying you for?<</speech>>
<<speech "rusty" "Rusty">>My dick, boss.<</speech>>
<<speech "clerk2" "Manager">>That's secondary! Now get a move on!<</speech>>
<blockquote>Rusty slinks to the storage room, leaving Jane along with the manager.</blockquote>
<<speech "clerk2" "Manager">>Phew.<</speech>>
<blockquote>Now, what is there to talk about after witnessing what happened.</blockquote>
<<speech "clerk2" "Manager">>My name is Lana, by the way.<</speech>>
<<speech "gf" "Jane">>I-I'm Jane.<</speech>>
<blockquote>The manager, now Lana, sits down on her [[usual chair.|LanaTalk2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<<img "Images/npc/clerk2.webp" "400px">><</img>>
<blockquote>Even for someone as talkative as Lana, starting a conversation under the circumstances proved to be difficult. Thankfully, Rusty returned quickly, toilet paper in hand, and with a smile on his face, he spoke up.</blockquote>
<<speech "rusty" "Rusty">>How did you like the show?<</speech>>
<<speech "clerk2" "Lana">>Rusty, I fucking swear!<</speech>>
<<speech "rusty" "Rusty">>Come on, boss, it’s strange seeing you all awkward.<</speech>>
<<speech "clerk2" "Lana">>Tch, but Jane, seriously. I'm sorry you had to see that.<</speech>>
<<speech "gf" "Jane">>O-Oh, no, no, it’s uhh... I’ll try to forget it.<</speech>>
<<speech "clerk2" "Lana">>Good, because I’ll give you a free two-day extension if you do.<</speech>>
<<speech "gf" "Jane">>We're only here for one day.<</speech>>
<<speech "clerk2" "Lana">>Fuck.<</speech>>
<blockquote>At least she's back to [[her normal self.|LanaTalk2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-lobbyphoenix">
<div class="overlay"></div>
<blockquote>Jane was eager to end this awkward conversation and return to her room, but one question still lingered in her mind.</blockquote>
<<speech "gf" "Jane">>S-So... are you guys an item?<</speech>>
<<speech "rusty" "Rusty">>Nah. There’s just nothing else to do here. Before the pandemic, we at least had things to do, but now, there’s almost nobody around.<</speech>>
<<speech "clerk2" "Lana">>Like he said. We only do this when we’re bored.<</speech>>
<<speech "gf" "Jane">>...All the time, then?<</speech>>
<<speech "rusty" "Rusty">>Basically.<</speech>>
<blockquote>That answered the question, but Jane still had one more on her mind.</blockquote>
<<speech "gf" "Jane">>W-What about Dave?<</speech>>
<blockquote>Rusty locked eyes with her, his gaze unflinching.</blockquote>
<<speech "rusty" "Rusty">>I don't swing that way.<</speech>>
<blockquote>He was dead serious.</blockquote>
<<speech "gf" "Jane">>..................................<</speech>>
<<speech "rusty" "Rusty">>Room 3, right?<</speech>>
<<speech "gf" "Jane">>[[Yes.|RustyTalk2-1]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote>The two left the manager's office and headed toward the parking lot.</blockquote>
<<speech "gf" "Jane">>Y-You could just give it to me.<</speech>>
<<speech "rusty" "Rusty">>Lana would kick my ass if I'll let you do it alone.<</speech>>
<blockquote>Rusty tossed the toilet paper in the air, juggling it as they walked.</blockquote>
<<speech "rusty" "Rusty">>Room 3, your name's $name?<</speech>>
<<speech "gf" "Jane">>No, that's my boyfriend.<</speech>>
<<speech "rusty" "Rusty">>Your boyfriend... oh.<</speech>>
<blockquote>It seemed like he was already making assumptions. But before they could go any further, a voice suddenly called out from behind.</blockquote>
<<speech "nina" "Woman">>Hey there, handsome.<</speech>>
<<speech "rusty" "Rusty">>Oh~ do you need another tune up?<</speech>>
<blockquote>Rusty’s attention was fully on the woman, so Jane had to fake a cough to pull him back.</blockquote>
<<speech "rusty" "Rusty">>O-Oh, right. See you tonight, girl.<</speech>>
<<speech "nina" "Woman">>I'll be waiting...<</speech>>
<blockquote>Jane shook her head.</blockquote>
<<speech "rusty" "Rusty">>That’s what happens when you're the only good-looking guy within a hundred-mile radius.<</speech>>
<blockquote>He smirks as they enter [[Room 3.|RustyTalk2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf11.webp" "500px">><</img>>
<blockquote>As the door swings open, a horrifying scene can be seen inside. You are changing, naked, in the middle of the room.</blockquote>
<<speech "mc" "$name">>Jane, you're ba- A-AHHH!!!<</speech>>
<blockquote>Rusty stood bewildered as was Jane, you did too as they stare.</blockquote>
<<if $second_state is "NTR" or $second_state is "SoftNTS" or $second_state is "HardNTS" or $second_state is "Fantasy">>
<blockquote>In those few split moments, Jane couldn't help but to compare your dick to Rusty's bigger one, not only that but she remembers how he made Lana cum as hard as she did.</blockquote>
<<speech "gf" "Jane">>.....................................<</speech>>
<blockquote>Something that you never did.</blockquote>
<<speech "rusty" "Rusty">>Uhh... I-I don't swing that way, dude...<</speech>>
<blockquote>Rusty walks to the bathroom [[unprompted.|RustyTalk2-3]]</blockquote>
<<elseif $second_state is "TrueLove" or $second_state is "Love">>
<blockquote>Gathering herself quickly, Jane immediately pushed Rusty to the bathroom and then slamming the door on his face.</blockquote>
<<speech "mc" "$name">>G-Geez... y-y-you should've told me someone's coming.<</speech>>
<<speech "gf" "Jane">>[[S-Sorry about that.|RustyTalk2-3]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>Just like with Lana, the situation became awkward.</blockquote>
<<speech "mc" "$name">>W-Who's that?<</speech>>
<<speech "gf" "Jane">>Rusty.<</speech>>
<blockquote>You quickly threw on whatever clothes you could find, just so you’d be dressed when Rusty was done.</blockquote>
<blockquote>The two of you stood in silence for a while, waiting for Rusty to finish. It actually took him quite some time.</blockquote>
<<speech "mc" "$name">>A-Are you okay there, Rusty?<</speech>>
<<speech "rusty" "Rusty">>I'm waiting for you, man.<</speech>>
<<speech "mc" "$name">>O-Oh! I-I'm done.<</speech>>
<blockquote>Finally, Rusty emerged from the bathroom. He gave you an apologetic look and handed you something.</blockquote>
<<speech "rusty" "Rusty">>H-Here, I'm sorry.<</speech>>
<blockquote>It was two coupons for free breakfast.</blockquote>
<<speech "mc" "$name">>...Thanks.<</speech>>
<blockquote>Finally, [[he left.|RustyTalk2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote>As he's gone, you stare at the breakfast coupon, and as you do, something comes to mind.</blockquote>
<<speech "mc" "$name">>Did you meet the manager?<</speech>>
<<speech "gf" "Jane">>L-Lana! Y-Yes, I-I did!<</speech>>
<blockquote>Jane answered, a bit jittery. You wonder why, but before you could even ask, she hurried into the bathroom, probably to take that bath she mentioned earlier.</blockquote>
<<speech "mc" "$name">>Her name is Lana?<</speech>>
<<speech "gf" "Jane">>Yeah!<</speech>>
<blockquote>What to do now? It's not yet dark, so you don't have any reason to lie down just yet.</blockquote>
<<speech "mc" "$name">>Maybe I'll get some coffee...<</speech>>
<blockquote>To the [[diner|MotelRoomCenter2a]] it is.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<blockquote>Your $70 motel room is cozy, the kind of place you'd stay longer if you could. The bed is soft, and the [[breakfast coupon|Coupons2-1]] is stacking up, but you have to leave tomorrow.</blockquote>
<blockquote>The sound of running water comes from the bathroom, but there's no movement inside. The sheets are soft as you shift, feeling the coolness of the floor beneath your feet when you stand.</blockquote>
<blockquote>You still taste the latte, but it’s not quite enough. A small sigh, and you decide to get up. The heater hums softly as you walk toward [[the diner.|ParkingPhoenix2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingphoenix.webp" "500px">><</img>>
<blockquote>You stand in the parking lot, the rough pavement beneath your shoes, and [[Room 3|MotelRoomCenter2a]] to your right, with your car parked just in front. Beside it is another car, the same one you spotted earlier on the highway, its glossy surface reflecting the fading sunlight.</blockquote>
<blockquote>Room 1 is occupied by [[the woman|OnThePatio2-1]], who you saw earlier. She sits on the patio, sipping juice with a relaxed posture. You try not to stare, but after Dave’s strange reaction, you can’t help but wonder if there’s something between her and Rusty.</blockquote>
<blockquote>As you walk toward the [[courtyard|Center2b]] of the rest area, the sound of distant highway traffic grows fainter, leaving behind an eerie stillness in the air.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<blockquote>You hold 15 free breakfast coupons in hand, not because your math was off, but because you fished a few extras out of the trashcan when Jane was out. Lana seems to hand these things out like candy, you wonder if she's truly that bored.</blockquote>
<blockquote>Fifteen coupons for a fifteen-day stay. If every diner along the way to Miami accepted them, the trip would heavenly. Then again, maybe Dave would be willing to pack you some food in exchange for a few coupons. You make a mental note to ask him [[about it later.|MotelRoomCenter2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<blockquote>[[Lana|LanaLounge2-1]] is lounging in the courtyard, resting on one of the benches beneath the shade, her gaze lazily drifting toward the highway. A wisp of smoke curls from her fingers, drifting into the warm air around her.</blockquote>
<blockquote>To her right, her office door is wide open. the dim interior hinting at the coolness inside. The diner, [[your destination,|DinerCenter2b]] is to her left, its inviting neon lights flickering faintly. The parking lot stretches out in front of her, where the quiet hum of the cars contrasts with the stillness of the rest area.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/npc/nina2.webp" "500px">><</img>>
<blockquote>The woman smiled as she sees you approaching.</blockquote>
<<speech "nina" "Woman">>Good afternoon, neighbor.<</speech>>
<blockquote>The way she's dressed and the way she carried herself brings an enigmatic aura about her, but behind her mysterious smile you can sense genuine warmth.</blockquote>
<<speech "mc" "$name">>H-Hello. I didn't notice your arrival earlier.<</speech>>
<<speech "nina" "Woman">>That would make perfect sense because my car was pushed here.<</speech>>
<blockquote>Pushed? Your mind immediately went to the man from earlier.</blockquote>
<<speech "mc" "$name">>Rusty? Right?<</speech>>
<<speech "nina" "Woman">>Yes, you're familiar with him?<</speech>>
<<speech "mc" "$name">>No, I just heard his name from the manager, both manager actually.<</speech>>
<blockquote>Her eyes gaze to the diner as if something dawns upon her.</blockquote>
<<speech "nina" "Woman">>I see, that's why he was rushing to the diner while also appearing from the office just a few minutes ago...<</speech>>
<blockquote>As she said something about diner, you feel your throat dries and craving for caffeine.</blockquote>
<<speech "nina" "Woman">>He's quite a multitalented man...<</speech>>
<blockquote>Nina said, then her eyes gains a lustful glint. You only watch in silence as the transformation took over, then, as if sensing there's no more conversation to be had, you simply [[walk away.|ParkingPhoenix2b]]</blockquote>
</div>
</div>
<div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<<speech "mc" "$name">>Hey, Lana.<</speech>>
<<speech "clerk2" "Lana">>Kid. You know my name, huh?<</speech>>
<blockquote>She smiles, taking a slow, deliberate drag of her cigarette. Her mask is long gone now, revealing a strikingly beautiful middle-aged woman with sharp eyes and a confident air.</blockquote>
<<speech "clerk2" "Lana">>Falling in love, kid?<</speech>>
<<speech "mc" "$name">>I might, if you keep giving me those coupons.<</speech>>
<blockquote>She lets out a raspy, throaty laugh, slapping her knee for good measure.</blockquote>
<<speech "clerk2" "Lana">>Good one, kid.<</speech>>
<blockquote>As you share the moment, your eyes drift to the wide-open lobby door. The thought of the exposed entrance brings a nagging sense of unease.</blockquote>
<<speech "mc" "$name">>You’re really leaving that door open? Anyone could just walk in.<</speech>>
<<speech "clerk2" "Lana">>Relax, kid. Ain’t no thieves around here. And even if one showed up, they’d probably leave cash in the register when they’re cracked them.<</speech>>
<<speech "mc" "$name">>That's... quite a security system.<</speech>>
<<speech "clerk2" "Lana">>Heh. Besides, if anyone tried something, I’d just let Rusty loose on ’em. This desert wouldn't mind a few more mounds, y'know.<</speech>>
<<speech "mc" "$name">>...............................<</speech>>
<blockquote>You decided to get away as [[fast as possible.|Center2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<blockquote>[[Dave|DaveCleaning2-1]] is diligently cleaning the counter, the sound of the cloth swishing across the surface a rhythmic background as you [[enter the diner,|Center2b]] [[Rusty|RustyChair2-1]] is sitting in one of the chairs, his thumb scrolling mindlessly over his phone, the soft glow of the screen lighting up his face in the otherwise dim diner.</blockquote>
<blockquote>The diner is almost entirely empty now, save for some stragglers from earlier, who are sipping their coffee, their voices low as they overstayed their welcome in the quiet ambiance.</blockquote>
<blockquote>The seat you occupied earlier is fortunately still unclaimed, the cushion inviting you with its warmth. You want to slide into it immediately, but instead, you decide to [[order the coffee|CoffeeOrder2-1]] ⭐ directly from Dave, skipping the wait for a waiter.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>One black coffee, please.<</speech>>
<<speech "clerk3" "Dave">>Coming right up.<</speech>>
<blockquote>You make your way back to your table. The sun is dipping, casting long shadows, and the last rays are fading. Night is creeping in.</blockquote>
<<speech "mc" "$name">>...................................<</speech>>
<<img "Images/inc/rest1/longroad.webp" "600px">><</img>>
<blockquote>Rusty gives you a wave from his seat, and you wave back before he buries himself in his phone again. You can't help but shake your head. The scenery is too beautiful to be glued to a screen.</blockquote>
<<speech "mc" "$name">>*yawn*<</speech>>
<blockquote>Everything feels so calm, [[so peaceful.|CoffeeOrder2-2]] It's a welcome change from the usual rush.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<blockquote>Rusty sits at one of the diner tables, engrossed in his phone. A steaming cup of coffee rests in front of him, the rich aroma mingling with the faint sounds of clashing steel echoing from his phone's speaker.</blockquote>
<blockquote>You consider approaching him, partly out of curiosity about what he’s playing and partly to ask why he’s not working. But the memory of your earlier mishap flashes through your mind, making you hesitate. The last thing you need is another unnecessary [[awkward encounter.|DinerCenter2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<blockquote>You walk up to where Dave is standing and slide a free breakfast coupon across the counter.</blockquote>
<<speech "clerk3" "Dave">>...You're eating breakfast at 5?<</speech>>
<<speech "mc" "$name">>N-No. I'm just curious at what I'll get if I use this.<</speech>>
<<speech "clerk3" "Dave">>...You'll get free breakfast.<</speech>>
<blockquote>His usually kind expression shifts into a slight frown, more from confusion than irritation.</blockquote>
<<speech "mc" "$name">>A-Anyway, I was wondering... does Lana handing these out like candy hurt your business?<</speech>>
<blockquote>At your question, his familiar warm smile returns.</blockquote>
<<speech "clerk3" "Dave">>Not at all. We’ve got an agreement, one coupon per customer, and for her to never serve any food. It’s been working out just fine.<</speech>>
<<speech "mc" "$name">>She gave me five, though.<</speech>>
<<speech "clerk3" "Dave">>Does it really matter these days?<</speech>>
<blockquote>Dave gestures broadly, as if to point out the near-empty diner and the lack of any activity. His voice softens.</blockquote>
<<speech "clerk3" "Dave">>Nowadays, I let her have fun with it. It’s been a rough year for everyone, you know?<</speech>>
<blockquote>He gives a quiet nod, then turns back to polishing a glass, his movements [[calm and unhurried.|DinerCenter2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/npc/clerk3.webp" "400px">><</img>>
<<speech "clerk3" "Dave">>Here ya go.<</speech>>
<blockquote>Dave, as always, flashes his bright smile and places the coffee in front of you.</blockquote>
<blockquote>You thank him and take a sip. The moment the liquid touches your tongue, you're caught off guard by the unexpected blend. There's a hint of nutmeg, a touch of chocolate, a flavor combination you've never had before.</blockquote>
<<speech "mc" "$name">>Mmm! This is good.<</speech>>
<<speech "clerk3" "Dave">>Glad you like it.<</speech>>
<blockquote>He beams, clearly proud of his creation. It’s only then that you notice everyone still sitting in the diner has a cup of coffee in front of them, even Rusty.</blockquote>
<<speech "mc" "$name">>Your specialty?<</speech>>
<<speech "clerk3" "Dave">>Yup! Made it when we were all locked up here. I’ve been thinking of using it to make my own coffee shop in Phoenix.<</speech>>
<<speech "mc" "$name">>Well, it’s already better than most coffee shops I know.<</speech>>
<<speech "clerk3" "Dave">>Great, that’s high praise coming from a city boy like you.<</speech>>
<<speech "mc" "$name">>City boy? Me?<</speech>>
<blockquote>You pause for a moment, trying to picture it. Do you really look like a city boy? Maybe after years of living in California, you're starting to act and look like one. As you’re about to continue the conversation, [[Rusty joins in.|CoffeeOrder2-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<<speech "rusty" "Rusty">>Dude, seriously. Sorry for what happened.<</speech>>
<<speech "mc" "$name">>Forget it, man, come on. It was an accident.<</speech>>
<blockquote>Rusty shakes his head vigorously, clearly still feeling bad about it.</blockquote>
<<speech "rusty" "Rusty">>You know what? That coffee’s on the house.<</speech>>
<<speech "clerk3" "Dave">>Hey!<</speech>>
<blockquote>You chuckle at their banter. It’s clear that there’s something deeper between Rusty, Dave, and maybe even Lana, beyond just the professional front.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>You take another sip of the coffee. Time passes, and one by one, the other patrons quietly leave. Soon, it’s just you, Rusty, and Dave left in the diner.</blockquote>
<<speech "mc" "$name">>Pretty peaceful, huh?<</speech>>
<<speech "clerk3" "Dave">>Pretty bad for business.<</speech>>
<<speech "rusty" "Rusty">>Pretty fucking boring, you mean.<</speech>>
<blockquote>It seems you’re the only one who appreciates the peace and quiet in this place. Just as you’re about to return to your coffee, a sudden honking breaks the calm from [[outside.|CoffeeOrder2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/bus.webp" "400px">><</img>>
<<speech "mc" "$name">>Looks like your wish is granted...<</speech>>
<blockquote>You mutter as a stampede of people pours out of a bus and floods toward the diner.</blockquote>
<<speech "clerk3" "Dave">>Rusty... set the table.<</speech>>
<<speech "rusty" "Rusty">>Roger that.<</speech>>
<blockquote>Rusty jumps into action, swiftly clearing the unwashed plates, resetting the tables, and placing the menus.</blockquote>
<<speech "mc" "$name">>.........................<</speech>>
<blockquote>Dave, too, springs into action. He rushes behind the counter, turning on the stove, wiping down the surfaces, and spraying a pleasant-smelling cleaner all around the diner.</blockquote>
<blockquote>As you glance out the window, the group approaches. Leading the pack are a [[bunch of children and their parents.|CoffeeOrder2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "npcgroup" "Parents">>Settle down, kids!<</speech>>
<blockquote>One of the parents called out as the children rushed inside the diner.</blockquote>
<<speech "childgroup" "Children">>Yes, dad!<</speech>>
<blockquote>A boy replied, leading the other kids to a table next to you. One of the little girls turns toward you.</blockquote>
<<speech "childgroup" "Children">>Hello, mister!<</speech>>
<<speech "mc" "$name">>H-Hi.<</speech>>
<<speech "childgroup" "Children">>What are you eating, mister?<</speech>>
<<speech "mc" "$name">>Nothing, I was just drinking coffee.<</speech>>
<<speech "childgroup" "Children">>*tch* *tch* *tch* that's unhealthy, mister.<</speech>>
<blockquote>You gaze deep at your coffee, the child's words sinking in as you briefly reflect on your life choices.</blockquote>
<<speech "npcgroup" "Parents">>Ah, sorry about that. And you, don't judge others unless you want to be judged yourself. It's their choice.<</speech>>
<blockquote>The girl’s parent entered the diner, apologizing for her and gently reprimanding the girl. You start to feel a little better about yourself.</blockquote>
<<speech "childgroup" "Children">>Well, he chose badly.<</speech>>
<blockquote>Only to feel [[bad again.|CoffeeOrder2-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>The activity picks up as people continue pouring into the small diner. It’s so cramped now that some customers are forced to take their orders outside.</blockquote>
<<speech "clerk3" "Dave">>Rusty, those guys are waiting outside!<</speech>>
<<speech "rusty" "Rusty">>In a bit!<</speech>>
<blockquote>Rusty spins around the diner, hustling to deliver dishes and take more orders, barely keeping up.</blockquote>
<blockquote>They’re clearly overwhelmed. Dave may have years of experience, and Rusty’s fast and diligent, but it’s not enough, there just aren’t enough hands.</blockquote>
<<speech "mc" "$name">>*sip*<</speech>>
<blockquote>Your coffee’s finished, the cup now empty. You stand up, grabbing the glass, but the moment you do, a new group takes your seat. That’s how packed it’s gotten.</blockquote>
<<speech "mc" "$name">>Hey, Dave.<</speech>>
<<speech "clerk3" "Dave">>$name! Just put it there, Rusty will pay for it!<</speech>>
<blockquote>You set the empty cup on the counter, then grab a lone pen and a small notebook resting beside it.</blockquote>
<<speech "clerk3" "Dave">>W-Wha-<</speech>>
<<speech "mc" "$name">>Can I take your order, sir?<</speech>>
<blockquote>You’re joining [[in the fray.|CoffeeOrder2-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<blockquote>Dave was caught off-guard. He wanted to turn around and stop you, but you were already heading to the corner of the diner where someone had been calling for Rusty for a few minutes.</blockquote>
<blockquote>With a reluctant sigh, Dave returned to the stove, preparing for the incoming orders, and the ones yet to come.</blockquote>
<blockquote>You, on the other hand, had worked as a part-time waiter during your college days, so this wasn’t anything new. You may not be as charming as Rusty, who’s openly flirting with some of the moms, but you can handle the job.</blockquote>
<blockquote>As you jot down and turn in an order, you glance outside, planning your next move for tackling the crowd outside. But as you do, Lana’s already out there, joining the fray. True to form, she hands out complimentary breakfast coupons with each meal.</blockquote>
<blockquote>After a while, even Dave starts calling you for help, treating you like part of the team. The tasks continue for the next ten minutes until almost everyone’s meals are served. But as you take a quick breather, a voice calls from [[one of the tables.|JaneNina2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/npc/nina3.webp" "400px">><</img>>
<<speech "nina" "Woman">>Fish and chips, and hot chocolate for the drink, if you please.<</speech>>
<blockquote>The woman from earlier spoke, and you quickly wrote down her order before turning to the person beside her.</blockquote>
<<speech "mc" "$name">>Okay, and you, ma'am?<</speech>>
<<img "Images/gf/gf8.webp" "400px">><</img>>
<<speech "gf" "Jane">>Onion rings and a lemonade, I don’t want to eat dinner just yet.<</speech>>
<<speech "mc" "$name">>Wait, what the hell are you doing here?<</speech>>
<blockquote>You were so focused on the job, you hadn’t realized it was Jane.</blockquote>
<<speech "gf" "Jane">>I was waiting for you to come back. But here you are, moonlighting as a waiter.<</speech>>
<blockquote>Jane’s feigned impatient, but her wide smile told a different story.</blockquote>
<<speech "mc" "$name">>Well, I couldn't just sit around doing nothing.<</speech>>
<blockquote>Suddenly, she pushed you aside, spotting someone calling for a waiter.</blockquote>
<<speech "gf" "Jane">>Go, someone is calling you.<</speech>>
<blockquote>You nod, slot the order to Dave, and rush over to the other table.</blockquote>
<<speech "gf" "Jane">>.....................................<</speech>>
<blockquote>A genuine [[smile|JaneNina2-2]] creeps across her face.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>You approach the next table where two beautiful middle-aged women are seated.</blockquote>
<<speech "mc" "$name">>Good evening, ma’am. Can I take your order?<</speech>>
<<speech "npcgroup" "Middle-aged lady">>Oh~ you're a cutie aren't you?<</speech>>
<blockquote>Ah, this type.</blockquote>
<<speech "mc" "$name">>T-Thanks, ma'am.<</speech>>
<<speech "npcgroup" "Middle-aged lady">>Say, have you seen my son?<</speech>>
<<speech "mc" "$name">>Your son? What does he look like?<</speech>>
<<speech "npcgroup" "Middle-aged lady">>I don’t know yet, but he could look like you, if you want.<</speech>>
<blockquote>That’s a new one. The other woman bursts into silent laughter.</blockquote>
<<speech "npcgroup" "Middle-aged lady">>So? Want to 'search' for him together?<</speech>>
<blockquote class="choice-blockquote">
<<link [[Just take her order|JaneNina2-3]]>>
<<set $second_dinertalk1 to "Professional">><</link>>
<<link [[Flirt back|JaneNina2-3]]>>
<<set $second_dinertalk1 to "Flirt">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_dinertalk1 is "Professional">>
<blockquote class="location">She appreciates it</blockquote>
<blockquote>You smile politely and glance over at Jane, who's sitting at the other table, observing the situation.</blockquote>
<<speech "mc" "$name">>Sorry, ma’am. I’m already on a search mission for someone else.<</speech>>
<<speech "npcgroup" "Middle-aged Lady">>Ah! I see.<</speech>>
<blockquote>She leans in closer, undeterred.</blockquote>
<<speech "npcgroup" "Middle-aged Lady">>But I really, really, really like loyal men...<</speech>>
<<speech "mc" "$name">>Good to know, ma’am. Now, what would you like to order?<</speech>>
<<speech "npcgroup" "Middle-aged Lady">>*tch* Churros and black coffee.<</speech>>
<blockquote>You hide a small smile and take her order. After taking the other woman’s order, you head back to [[Dave.|JaneNina2-4]]</blockquote>
<<elseif $second_dinertalk1 is "Flirt">>
<blockquote>You lower the notebook for a moment and glance at her, entertained.</blockquote>
<<speech "mc" "$name">>Mmm... I’m sorry, ma’am, but I’m occupied with taking orders for everyone.<</speech>>
<blockquote>She smirks.</blockquote>
<<speech "mc" "$name">>We could search for him after I'm done.<</speech>>
<blockquote>You smirk, feeling proud after returning such an esoteric flirtation, but as you're done, you can feel bloody murder creeping through your soul.</blockquote>
<<speech "gf" "Jane">>..................................<</speech>>
<blockquote class="location">She will kill you</blockquote>
<<speech "mc" "$name">>A-Ahh... u-umm... w-wait... w-what was that? C-Churros?<</speech>>
<<speech "npcgroup" "Middle-aged Lady">>Oh, darling~ you insult me. Southwest salad and a nice warm cup of tea, s’il vous plaît.<</speech>>
<blockquote>You quickly take her order, your heart pounding in your neck. After turning to the other woman, you try to make your way back to Dave.</blockquote>
<<speech "npcgroup" "Middle-aged Lady">>I'll be waiting...<</speech>>
<blockquote>You [[steer clear|JaneNina2-4]] from her from that point on.</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote>After taking her order, you expand your area of operation and step outside, leaving Rusty to handle the interior.</blockquote>
<blockquote>As you walk down the steps, you spot Lana moving around calmly, already managing most of the customers outside.</blockquote>
<<speech "mc" "$name">>Looks like everything's taken care of, huh?<</speech>>
<<speech "clerk2" "Lana">>Do you really think I’d stand around while Dave’s swamped like that?<</speech>>
<<speech "mc" "$name">>I didn't say that.<</speech>>
<blockquote>She crosses her arms and smirks.</blockquote>
<<speech "clerk2" "Lana">>But you, Mr. Boyfriend, you didn't have to do that.<</speech>>
<<speech "mc" "$name">>Do you really think I’d stand around while Dave’s swamped like that?<</speech>>
<<speech "clerk2" "Lana">>...I said that.<</speech>>
<<speech "mc" "$name">>You did.<</speech>>
<blockquote>The absurd back-and-forth stops when you hear someone calling out.</blockquote>
<<speech "clerk2" "Lana">>Mmm~ what about you take it?<</speech>>
<<speech "mc" "$name">>[[Sure.|JaneNina2-5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<blockquote>You walk over to where the sound came from. Three people are sitting under a tree, each focused on their laptops.</blockquote>
<<speech "mc" "$name">>Yes? Can I help you?<</speech>>
<<speech "npcgroup" "Tech Dude">>Give me something light, portable, and not messy.<</speech>>
<<speech "mc" "$name">>.................................<</speech>>
<blockquote>You try to recall the menu.</blockquote>
<<speech "mc" "$name">>...Onion rings?<</speech>>
<<speech "npcgroup" "Tech Dude">>That, three dishes please.<</speech>>
<blockquote>You quickly jot down their order and turn back.</blockquote>
<<speech "npcgroup" "Tech Girl">>I'll have BLT.<</speech>>
<<speech "mc" "$name">>O-Okay,<</speech>>
<<speech "npcgroup" "Tech Dude">>And two more onion rings.<</speech>>
<<speech "mc" "$name">>S-Sure.<</speech>>
<blockquote>You scribble everything down.</blockquote>
<<speech "npcgroup" "Tech Dude">>By the way, you take Crypto?<</speech>>
<<speech "mc" "$name">>...Nah.<</speech>>
<<speech "npcgroup" "Tech Dude">>Figures. Boomers.<</speech>>
<blockquote>Your lips twitch, but you take their orders anyway. Unbeknownst to you, Jane is [[quietly watching|JaneNina2-6]] as you interact with all the customers.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>There’s no way for Jane to hear you from inside, but she can see every shift in your expression, first blank, then incredulous, and finally confident. That last one is her favorite.</blockquote>
<blockquote>A smile creeps up on her face.</blockquote>
<<speech "nina" "Woman">>How long have you been with him?<</speech>>
<<speech "gf" "Jane">>Two years.<</speech>>
<<speech "nina" "Woman">>Two? I would've guessed ten.<</speech>>
<blockquote>She says with an enigmatic smile before returning to her dinner.</blockquote>
<<speech "gf" "Jane">>W-Wait, uhh, my name is Jane, by the way.<</speech>>
<<speech "nina" "Nina">>Nina, pleasure to meet you.<</speech>>
<blockquote>Nina shakes her hand and glances outside.</blockquote>
<<speech "nina" "Nina">>Where are you going, if I may ask?<</speech>>
<<speech "gf" "Jane">>Miami.<</speech>>
<<speech "nina" "Nina">>To the beach? But it's so far away?<</speech>>
<<speech "gf" "Jane">>Well, we're going to meet his parents, and maybe we'll head to the beach once we're there, if it's open, that is.<</speech>>
<blockquote>Jane averts her gaze as she says this, the thought of [[Big Bear Lake|JaneNina2-7]] still lingering.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "nina" "Nina">>Only two years, and you're already getting married?<</speech>>
<blockquote>Her words pull Jane out of the moment.</blockquote>
<<speech "gf" "Jane">>N-No! W-We're just going on a vacation.<</speech>>
<<speech "nina" "Nina">>Vacation...?<</speech>>
<blockquote>Nina smiles and takes a bite of her food.</blockquote>
<<speech "nina" "Nina">>To Miami, from here as well, that's brave.<</speech>>
<<speech "gf" "Jane">>Y-Yeah?<</speech>>
<<speech "nina" "Nina">>It’s a long trip, Jane. Anything could happen along the way.<</speech>>
<blockquote>Jane narrows her eyes, intrigued yet cautious.</blockquote>
<<speech "gf" "Jane">>Meaning?<</speech>>
<<speech "nina" "Nina">>Meaning, you could fall deeper in love, and he might ask you to marry him later.<</speech>>
<blockquote>Nina says smoothly, her smirk never fading.</blockquote>
<<speech "gf" "Jane">>...You have a way with words.<</speech>>
<<speech "nina" "Nina">>I'm very slithery.<</speech>>
<blockquote>With that, [[she finished her food.|JaneNina2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>She tilts her head, her eyes scanning the surroundings. But after not finding what she's looking for, she turns back to her drink.</blockquote>
<<img "Images/npc/nina3.webp" "400px">><</img>>
<<speech "nina" "Nina">>Well, Jane, it seems we’ll be here for the next hour or so.<</speech>>
<<speech "gf" "Jane">>Wouldn’t it be better if we just left and let others sit here?<</speech>>
<<speech "nina" "Nina">>Nonsense, we're paying customers too.<</speech>>
<blockquote>Nina smiles and continues.</blockquote>
<<speech "nina" "Nina">>You’re not asking where I’m going?<</speech>>
<<speech "gf" "Jane">>Ah, that reminds me, where are you going?<</speech>>
<<speech "nina" "Nina">>Ha~ I like you.<</speech>>
<blockquote>Nina stares longingly into the dark desert and said.</blockquote>
<<speech "nina" "Nina">>To Quebec.<</speech>>
<<speech "gf" "Jane">>O-Oh!<</speech>>
<blockquote>Jane didn’t expect that. For a few moments, she's shocked, but then her curiosity peaks, and she's thoroughly intrigued. Seeing how giddy Jane is, Nina smirks and [[regales her tale.|JaneNina2-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<blockquote>Amidst the loud, rowdy crowd, Jane is captivated by Nina’s tale and her reason for traveling. To them, it feels as though the world has shrunk to this small diner in the middle of nowhere.</blockquote>
<blockquote>Once or twice, she glances at you, still hard at work serving the customers outside. In her mind, she replaces Nina with you and her in those stories, letting her imagination run wild.</blockquote>
<blockquote>Time flies when you’re having fun, and that's exactly how Jane feels as the story ends and the next one begins. The crowd inside the diner seems to thin out.</blockquote>
<blockquote>But Nina still has stories to tell. She talks on and on, until the moon nearly reaches its peak. Jane laughs and sniffs as she listens. But as all good things must, this too comes to an end. Nina begins talking about [[her current trip,|JaneNina2-10]] signaling the end of all the stories.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "nina" "Nina">>I'm going to Vegas at first light. I have someone to meet before continuing on.<</speech>>
<<speech "gf" "Jane">>An old friend?<</speech>>
<<speech "nina" "Nina">>...More than that.<</speech>>
<blockquote>Nina hesitated as she spoke, prompting Jane to hold back from pushing further. But as the conversation stalled, she noticed someone cleaning behind them, Rusty.</blockquote>
<<speech "gf" "Jane">>..........................<</speech>>
<blockquote>Jane's eyes lingered on Rusty for a moment before glancing at Nina. She remembered him leaving Nina's room earlier and began to wonder if her flirtation was just that, or if there was something more behind it.</blockquote>
<<speech "nina" "Nina">>From this seat, I can tell you saw him leaving my room, huh?<</speech>>
<<speech "gf" "Jane">>W-Wha?<</speech>>
<blockquote>Nina smiled enigmatically.</blockquote>
<<speech "nina" "Nina">>Yep, we did it.<</speech>>
<<speech "gf" "Jane">>O-Oh.<</speech>>
<blockquote>Questions swirled [[inside her mind.|JaneNina2-11]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>But she couldn't say any of them as she already saw him naked and in the middle of a very passionate sex with Lana, of all people.</blockquote>
<<speech "nina" "Nina">>What's wrong? Don't you have something to say? Something like, "This girl is so easy!"<</speech>>
<<speech "gf" "Jane">>N-No! I would never, but... t-that's right... didn't you just met him...?<</speech>>
<<speech "nina" "Nina">>We did, yeah, but he helped me with my car. Without him I'll be stranded or fated to push that lunk of steel to the city.<</speech>>
<<speech "gf" "Jane">>I'm sure any sensible driver would help you.<</speech>>
<<speech "nina" "Nina">>Well, I'm very lucky to have him be the one who helped me then.<</speech>>
<blockquote>Nina stretch her fingers as if remembering a sensation.</blockquote>
<<speech "nina" "Nina">>He fixed up my car free of charge, and he even gave me a discount for staying in this motel.<</speech>>
<blockquote>She then gaze into Jane's eye.</blockquote>
<<speech "nina" "Nina">>And he's the best one I had in years.<</speech>>
<blockquote>It sends shivers down Jane's spine.</blockquote>
<<speech "unknown" "Bus">>[[VROOOMMM!!!|JaneNIna2-12]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>Jane nearly jumps out of her chair, her gaze snapping to the source of the sound. It's the bus, driving away without her even realizing it.</blockquote>
<<speech "gf" "Jane">>W-What?<</speech>>
<blockquote>Jane looks around and sees that everyone else is gone, leaving only Rusty and Dave still at their stations.</blockquote>
<<speech "nina" "Nina">>Seems like we talked for a long time.<</speech>>
<blockquote>Jane turns back to the windows and sees you sitting with Lana. You look incredibly exhausted, while Lana seems to be laughing.</blockquote>
<<speech "gf" "Jane">>Seems like we are...<</speech>>
<blockquote>Suddenly, Nina rises from her seat and pays for her meal. Dave serves her with his usual warm smile, but when she pays, she turns to Rusty.</blockquote>
<<speech "nina" "Nina">>I’m craving some hot chocolate. Can you deliver it to my room?<</speech>>
<blockquote>Dave nearly breaks his pen in frustration while Rusty just smirks.</blockquote>
<<speech "rusty" "Rusty">>I'll get it ready.<</speech>>
<blockquote>Finally, Nina turns to Jane.</blockquote>
<<speech "nina" "Nina">>Remember, Jane. Fourteen days is a very long time...<</speech>>
<blockquote>[[And left.|JaneNina2-13]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>Jane sits stunned, flustered by Nina's last statement. A lot could happen in fourteen days, and by the looks of it, things could happen on the very first day.</blockquote>
<<speech "gf" "Jane">>...................................<</speech>>
<<speech "mc" "$name">>*thud*<</speech>>
<blockquote>As Jane mulls over the thought, you crash onto the table.</blockquote>
<<speech "gf" "Jane">>$name!<</speech>>
<<speech "mc" "$name">>No... tired...<</speech>>
<blockquote>You lay your head on the steel table, its coldness soothing your tired body.</blockquote>
<<speech "gf" "Jane">>..........................................<</speech>>
<blockquote>Jane leans back in her seat, allowing you to enjoy a moment of peace. Deep inside, though, she feels quite proud of what you did.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>Jane spins the straw from her lemonade, pointing it toward you. Softly, you raise your head and [[take a long sip.|JaneNina2-14]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>Now, time seems to move slowly. Your chest rises and falls as you take quick, labored breaths, understandable, given that this might be the most extensive exercise you've had in years.</blockquote>
<blockquote>Jane leans in closer, never touching you, but puckers her lips, blowing some air on your hair. Her cool breath caresses your scalp, not lowering your temperature, but somehow lifting your spirits.</blockquote>
<blockquote>You take another sip of her lemonade, and she gladly lets you. She even gazes deeply into your eyes as you do, something that only raises your temperature.</blockquote>
<blockquote>Her intense gaze makes you blush, but as she smiles, pleased with your reaction, someone places something [[on the table.|JaneNina2-15]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "clerk2" "Lana">>Here you go, thanks for the help, kid.<</speech>>
<blockquote>Lana places a refreshing-looking juice on the table. The hot air around it condenses, making you even thirstier.</blockquote>
<<speech "mc" "$name">>T-Thanks.<</speech>>
<blockquote>Lana waves her hand and walks back behind the counter.</blockquote>
<<speech "mc" "$name">>I'm surprised she didn't give us a free breakfast coupon.<</speech>>
<<speech "gf" "Jane">>That joke is getting stale, I think.<</speech>>
<blockquote>You take a sip of your drink, an orange juice that actually looks amazing. As the liquid hits your tongue, you realize it's far better than it looks.</blockquote>
<<speech "mc" "$name">>Mmm... w-wow! T-This family should go into the beverage industry.<</speech>>
<<speech "gf" "Jane">>You're moonlighting as a career advisor, too?<</speech>>
<<speech "mc" "$name">>I'm multitalented. Anyway, speaking of moonlight...<</speech>>
<blockquote>You look outside and see the moon shining down on this [[small diner.|DinerNight2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "700px">><</img>>
<blockquote>You glance at the clock on the wall.</blockquote>
<<speech "mc" "$name">>Man, it's already 8.<</speech>>
<blockquote>At this point, lunch feels like it was ages ago, and it might be the perfect time for dinner.</blockquote>
<<speech "mc" "$name">>Hey, Lana, when does Dave usually close up?<</speech>>
<<speech "clerk2" "Lana">>In about an hour. You guys haven’t had dinner yet, right?<</speech>>
<<speech "mc" "$name">>Yeah.<</speech>>
<<speech "clerk2" "Lana">>Sit tight, I'll make something up, on the house.<</speech>>
<<speech "mc" "$name">>Y-You don't ne-<</speech>>
<<speech "clerk2" "Lana">>Shut up, sit down. Consider it a thank you and an apology.<</speech>>
<blockquote>Surprised by the sudden generosity, you sit back in your seat. Jane is excitedly rubbing her hands at the thought of a free meal, but there's something nagging at you.</blockquote>
<<speech "mc" "$name">>...Apology? For what?<</speech>>
<<speech "gf" "Jane">>Why don't you take a bath first, stinky?<</speech>>
<blockquote>Your thoughts are immediately interrupted as she hastily interrupted. After all, with all that sweat, you are [[very stinky.|DinerNight2a]]</blockquote>
<<speech "mc" "$name">>Y-Yeah, just don’t eat my portion before I’m back.<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<blockquote>Night has fallen, and the sweat from your long day's work has turned stale. It’s time to take a bath. You stand and glance around, noticing that there’s no Rusty, or the [[girl|WhereNina2-1]] Jane was talking to for the past hour.</blockquote>
<blockquote>In the kitchen, [[Lana|LanaCook2-1]] seems to have taken over, with no sign of Dave. From outside, you catch the faint sound of someone cleaning while singing, the voice carried by the evening air. [[You pause to walk outside.|CenterNight2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>[[Dave|DaveSinging2-1]] is out by the benches, singing his heart out as he sweeps the area. That’s probably why you didn’t see him in [[the diner|DinerNight2a]], he must have stepped out to let loose with his singing.</blockquote>
<blockquote>Behind you, the motel office remains open, but it’s clear no one is there; Lana didn’t even bother to turn the lights on. Your destination, however, lies in the parking lot, where the [[bus once was|BusGone2-1]] and where your [[room is located.|ParkingNight2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<<speech "clerk3" "Dave">>L! Is FOr tHe WaY yOU lOok aT mE~!<</speech>>
<blockquote>The horrific rendition of such beautiful song should be considered a war crime, but you quite like Dave so you refrain from calling human rights activist.</blockquote>
<<speech "mc" "$name">>Good evening, Dave...<</speech>>
<<speech "clerk3" "Dave">>Ah, $name. Come on, join me.<</speech>>
<blockquote>You do NOT want to.</blockquote>
<<speech "mc" "$name">>So, uhh... is this your nightly ritual?<</speech>>
<<speech "clerk3" "Dave">>No no, I'm just doing this to ruin the mood.<</speech>>
<<speech "mc" "$name">>...What mood?<</speech>>
<blockquote>In response he belted out the next line.</blockquote>
<<speech "clerk3" "Dave">>O! iS foR tHE OnLY onE i SeE~!<</speech>>
<blockquote>Not wanting your ear to be obliterated, you steer clear [[from him.|CenterNight2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingnphoenix.webp" "500px">><</img>>
<blockquote>You walk past [[the benches|CenterNight2a]], but before reaching the parking lot proper, you notice something, a car from Room 7 is already gone. A fleeting thought crosses your mind: it’s a shame you never got to meet whoever stayed there.</blockquote>
<blockquote>As you step into the parking lot, an unexpected sound catches your attention, moaning and grunting, coming from Room 2. You know that room isn’t being rented, which only deepens the mystery.</blockquote>
<blockquote>The door is slightly ajar, and despite yourself, you feel a strange pull to [[move closer.|NinaRusty2-1]] ⭐ </blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>The parking lot is as empty as before, the bus that was carrying those stampeding horde is no longer here.</blockquote>
<<speech "clerk3" "Dave">>$name, thanks for earlier.<</speech>>
<blockquote>You can hear Dave speaking from behind you, for once, he called you your real name.</blockquote>
<<speech "mc" "$name">>Don't mention it.<</speech>>
<<speech "clerk3" "Dave">>No need to be modest, man.<</speech>>
<blockquote>He smiled as he stood beside you. You enjoy the gratitude he's radiating but you wonder where those group came from and is going to.</blockquote>
<<speech "clerk3" "Dave">>They're going to Florida in case you're wondering.<</speech>>
<<speech "mc" "$name">>Florida? That's my destination too.<</speech>>
<<speech "clerk3" "Dave">>Orlando?<</speech>>
<<speech "mc" "$name">>Miami.<</speech>>
<<speech "clerk3" "Dave">>Ah, then you're not going in the same direction... but really, $name, thanks a lot for earlier. That crowd was the biggest one we had in close to a year.<</speech>>
<blockquote>Somehow, hearing that makes you a little happy. It's a sign that things is looking up.</blockquote>
<<speech "mc" "$name">>I'm sure you, Rusty, and Lana can handle it.<</speech>>
<<speech "clerk3" "Dave">>We could but it wouldn't be as smooth, so, again, [[thanks.|CenterNight2a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/moteldoor.webp" "500px">><</img>>
<blockquote>It's a room like any other, but there's a sports poster being hung on the front wall, but it shows a sign of being put up, tear down, put up, tear down, and over and over again. But that's not what you're here for.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>You're here for the sound.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>Slowly, [[you peek inside.|NinaRusty2-2]]</blockquote>
</div>
</div>
<div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<vid "Images/npc/ninas1.webm" "500px">>
<blockquote>This is where he is.</blockquote>
<<speech "nina" "Nina">>Fuck! You're cock is amazing!<</speech>>
<<speech "rusty" "Rusty">>Well, you could come back for more.<</speech>>
<<speech "nina" "Nina">>I-I would! I-I fucking would!<</speech>>
<blockquote>The elegant guise of Nina is nowhere to be found. You watch in silence stunned but aroused, and then...</blockquote>
<blockquote class="choice-blockquote">
<<link [[You look in closer|NinaRusty2-3]]>>
<<set $second_rustyninatalk1 to "Watch">><</link>>
<<link [[You regain your senses|NinaRusty2-3]]>>
<<set $second_rustyninatalk1 to "Run">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<vid "Images/npc/ninas2.webm" "500px">>
<<if $second_rustyninatalk1 is "Watch">>
<blockquote>You walk closer to the door, wanting to see clearly.</blockquote>
<<speech "mc" "$name">>.................................<</speech>>
<<speech "nina" "Nina">>I-I should thank my car that it broke like that!<</speech>>
<<speech "rusty" "Rusty">>Yep!<</speech>>
<blockquote>As they move faster and faster, trying to find their orgasm, you also did something.</blockquote>
<blockquote class="choice-blockquote">
<<link [[You're starting to rub yourself|NinaRusty2-4]]>>
<<set $second_rustyninatalk2 to "Rub">><</link>>
<<link [[You regain your senses|NinaRusty2-4]]>>
<<set $second_rustyninatalk1 to "Run">><</link>>
</blockquote>
<<elseif $second_rustyninatalk1 is "Run">>
<blockquote>Your eyes are wide open but suddenly you feel a zap, making you realize what you're currently doing.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<blockquote>You quietly whispered and then run back to [[your room.|InRoom2-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<if $second_rustyninatalk2 is "Rub">>
<<vid "Images/npc/ninas3.webm" "500px">>
<blockquote>The moment, Rusty shoot his load, you finally realized what your hand has been doing.</blockquote>
<<speech "mc" "$name">>A-Ah.<</speech>>
<<speech "rusty" "Rusty">>Sup, bro? Wanna come join in?<</speech>>
<blockquote>You're startled beyond believe, Rusty only smiles, inviting you to come in.</blockquote>
<<speech "mc" "$name">>N-No.<</speech>>
<blockquote>You quickly went away. Rusty then went back to Nina.</blockquote>
<<speech "rusty" "Rusty">>I was hoping Jane would be the one to see us.<</speech>>
<<speech "nina" "Nina">>Heh, of course you did.<</speech>>
<blockquote>You didn't hear them as you're already in [[your room.|InRoom2-1]]</blockquote>
<</if>>
<<if $second_rustyninatalk1 is "Run">>
<blockquote>Your eyes are wide open but suddenly you feel a zap, making you realize what you're currently doing.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<blockquote>You quietly whispered and then run back to [[your room.|InRoom2-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>You ran off, completely forgetting that Jane could see your every move from the diner window.</blockquote>
<<if $second_rustyninatalk2 is "Rub">>
<<speech "gf" "Jane">>...............................<</speech>>
<blockquote>Jane couldn’t believe her eyes. She understood what you saw, but she never imagined you’d actually do what you did.</blockquote>
<<speech "clerk2" "Lana">>Well, well, well...<</speech>>
<blockquote>Lana stepped closer, clearly amused after witnessing your actions herself.</blockquote>
<<speech "clerk2" "Lana">>Looks like someone was enjoying the show.<</speech>>
<blockquote>Without a word, Jane stood up and [[left the diner.|InRoom2-2]]</blockquote>
<</if>>
<<if $second_rustyninatalk1 is "Run">>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>Jane couldn’t believe her eyes. She understood what you saw, but what you just did left her completely baffled.</blockquote>
<<speech "clerk2" "Lana">>Well, now, isn’t that a good boy.<</speech>>
<blockquote>Lana walked closer, clearly entertained by your sudden reaction.</blockquote>
<<speech "clerk2" "Lana">>Never thought he’d bolt like that.<</speech>>
<<speech "gf" "Jane">>Y-Yeah...<</speech>>
<<speech "clerk2" "Lana">>He's a keeper.<</speech>>
<blockquote>Jane smiled softly, though she couldn’t help but wonder how you're handling yourself in the room.</blockquote>
<<speech "clerk2" "Lana">>Go on, it'll be ready in a few minutes.<</speech>>
<blockquote>With that, [[she left.|InRoom2-2]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf11.webp" "500px">><</img>>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>You are standing in the bathroom, naked, with a raging hard-on.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<blockquote>The memory from earlier is still so strong that it couldn't left you.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>The water has not yet running, but with the unbounded desire you currently have now. What will you do?</blockquote>
<blockquote class="choice-blockquote">
<<link [[Fantasize and search for release|InRoom2-3]]>>
<<set $second_masturbation to "Yes">><</link>>
<<link [[Turn on the water faucet|InRoom2-3]]>>
<<set $second_masturbation to "No">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<if $second_masturbation is "Yes">>
<blockquote>Your hand creeps downward, the memory from earlier spurs you to it.</blockquote>
<<speech "mc" "$name">>H-Haa... haa... haa...<</speech>>
<<vid "Images/npc/ninas1.webm" "500px">>
<blockquote>You closed your eyes and stroke yourself.</blockquote>
<<speech "mc" "$name">>M-Mmm...<</speech>>
<blockquote>But the memory comes to an end and your erection then become sustained by fantasy.</blockquote>
<<vid "Images/gf/gfs34.webm" "500px">>
<<speech "mc" "$name">>[[J-Jane...|InRoom2-4]]<</speech>>
<<elseif $second_masturbation is "No">>
<blockquote>You promptly turns on the knob and let the water spray upon you.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>The coldness runs through your skin, defusing any lust and impurity that is emerging within.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>As time goes by your erection is getting lower and lower until it completely turned off.</blockquote>
<blockquote>Then, you let yourself stood still and enjoy [[the sensation.|InRoom2-4]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<if $second_masturbation is "Yes">>
<blockquote>Jane heart dropped as she heard you moan, her ear is sticking on the bathroom door.</blockquote>
<<speech "mc" "$name">>J-Jane... n-no...<</speech>>
<blockquote>She didn't sneak inside the room, she waltz in and closed the door normally but you didn't even realize that she entered.</blockquote>
<<speech "gf" "Jane">>...................................<</speech>>
<<if $second_state is "NTR" or $second_state is "HardNTS">>
<<set $second_confrontation to "NTR">>
<blockquote>But slowly, a smile crept into her lips.</blockquote>
<<speech "mc" "$name">>H-Haa... n-nghh...<</speech>>
<blockquote>She knows what you're doing, she knows what you're thinking, she even knows what you're fantasizing.</blockquote>
<blockquote>Her heartbeat quickens as she realized the intensity of your fantasy.</blockquote>
<<speech "mc" "$name">>F-Fuck... c-cumming...<</speech>>
<blockquote>You grunted, finally. Jane smiles and [[she left.|InRoom2-5]]</blockquote>
<<elseif $second_state is "SoftNTS" or $second_state is "Fantasy">>
<<set $second_confrontation to "Tempted">>
<blockquote>Jane is stunned.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>She knows what you're doing, but she doesn't know why you're doing this. She didn't realize that this desire has taken it's root so deep within you.</blockquote>
<<speech "gf" "Jane">>...................................<</speech>>
<blockquote>As she listened to your groaning she can also her the people next door moaning. In that instance Jane has some doubt.</blockquote>
<<speech "mc" "$name">>J-Jane... ughh!<</speech>>
<blockquote>You grunted, finally. Jane left, with a seed of temptation [[planted in her.|InRoom2-5]]</blockquote>
<<elseif $second_state is "Love" or $second_state is "TrueLove">>
<<set $second_confrontation to "Confused">>
<blockquote>Jane is profoundly confused.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>She knows what you're doing, and she has a semblance of understanding of why you're masturbating, but why are you saying her name?</blockquote>
<<speech "mc" "$name">>J-Jane... n-no... d-don't...<</speech>>
<blockquote>She can hear you quickening your stroke, as if every single time her name comes out, you are inching closer and closer to orgasm.</blockquote>
<<speech "mc" "$name">>NGH!!!<</speech>>
<blockquote>That powerful groan signals your orgasm, and with heart still unsettled, Jane [[leave|InRoom2-5]] undetected.</blockquote>
<</if>>
<<elseif $second_masturbation is "No">>
<blockquote>Jane is surprised when she entered the room, she expected intense sounds of masturbation coming from the bathroom but instead only a peaceful sounds of running water.</blockquote>
<<speech "gf" "Jane">>.......................................<</speech>>
<<if $second_state is "NTR" or $second_state is "HardNTS" or $second_state is "SoftNTS" or $second_state is "Fantasy">>
<<set $second_confrontation to "Hopeful">>
<blockquote>But it didn't change the fact about your confession. You might have prevailed over your desire this time but, as Nina said, 14 days is a long time.</blockquote>
<<speech "gf" "Jane">>.......................................<</speech>>
<blockquote>Jane sincerely hoped that you can manage until then.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>And with that, she goes back to [[the diner.|InRoom2-5]]</blockquote>
<<elseif $second_state is "TrueLove" or $second_state is "Love">>
<<set $second_confrontation to "Love">>
<blockquote>Jane smiled genuinely at your control over your desire.</blockquote>
<<speech "gf" "Jane">>........................................<</speech>>
<blockquote>What happened back in the car and a few hours ago, notwithstanding, Jane sincerely hope that you can continue be like this forever.</blockquote>
<<speech "gf" "Jane">><small>I love you.</small><</speech>>
<blockquote>And with that, she goes back to [[the diner.|InRoom2-5]]</blockquote>
<</if>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<blockquote>A few minutes have passed since Jane left the room. You’ve taken your time cleaning up, but now your stomach is loudly voicing its complaints.</blockquote>
<<speech "mc" "$name">>...............................<</speech>>
<blockquote>The moaning from the other room has stopped, leaving only an eerie silence. It feels peaceful, but not in a comforting way. You quickly shake off the unease.</blockquote>
<<speech "mc" "$name">>Stop it... let's go to Jane.<</speech>>
<blockquote>Grabbing a fresh shirt and pants, you steel yourself and head toward [[the diner.|BeforeConfrontation2-1]]</blockquote>
</div>
</div>
<div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>The quiet stretches even here. The doors to Rooms 1 and 2 are closed. Nina must be resting in one of them, exhausted.</blockquote>
<blockquote>You press on toward the center of the rest area where Dave had been earlier, but he’s nowhere in sight. Instead, you notice a shadow moving behind the diner, and you’re certain it doesn’t belong to Rusty.</blockquote>
<blockquote>From the motel desk, faint wisps of smoke rise into the night sky, Lana must be there, smoking away her evening. But your attention is drawn to the diner window, where Jane is clearly staring at you. Her expression says it all: she’s probably wondering why in the world you’re standing there, looking so suspicious.</blockquote>
<blockquote>Jane shakes her head, exasperated. You can’t help but smile as you make your way to [[where she is now.|BeforeConfrontation2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<<speech "gf" "Jane">>You looked like a thief just now.<</speech>>
<<speech "mc" "$name">>R-Right.<</speech>>
<blockquote>Standing there in the middle of everything, swaying your head back and forth, you really did look like a thief to anyone watching.</blockquote>
<<speech "mc" "$name">>Just wondering where everyone is.<</speech>>
<<speech "gf" "Jane">>Dave said he want to check his stock for tomorrow. Lana’s back at her office after she made this.<</speech>>
<blockquote>She gestures toward the food on the table, a delicious-looking fish and chips, courtesy of Lana.</blockquote>
<<speech "gf" "Jane">>Come on, sit down before it gets cold.<</speech>>
<blockquote>You nod and [[take a seat.|Eat2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<blockquote>You pick up your fork and spoon and start eating. Jane follows suit.</blockquote>
<blockquote class="location">She remembered</blockquote>
<<if $second_confrontation is "NTR">>
<blockquote>As you eat, Jane often steals glances at you, but when you notice, she quickly twists her face into a smile, though it doesn’t quite reach her eyes.</blockquote>
<<elseif $second_confrontation is "Tempted">>
<blockquote>As you eat, Jane’s eyes often drift toward the parking lot. Her breath hitches as she gazes softly in the direction of the rooms. You want to ask why, but she seems too deep in thought.</blockquote>
<<elseif $second_confrontation is "Confused">>
<blockquote>As you eat, Jane looks lost in thought, her gaze shifting between you and the view outside. She tries to eat normally, but you can tell her mind is swirling with countless thoughts.</blockquote>
<<elseif $second_confrontation is "Hopeful">>
<blockquote>As you eat, Jane sneaks glances at you, offering a shy smile before turning back to her plate. Your face grows redder by the minute, wondering what she’s doing, but she just smiles softly and continues eating.</blockquote>
<<elseif $second_confrontation is "Love">>
<blockquote>As you eat, Jane playfully steals food from your plate, giving you a cheeky wink. You can’t help but forgive her immediately. Before long, you’re stealing bites from her plate too, turning the meal into a lively exchange filled with laughter.</blockquote>
<</if>>
<blockquote>As the quiet of the night settles over you both, the conversation turns to tomorrow's plans, where you’ll go, where you’ll stop, and your [[final destination.|Eat2-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>New Mexico.<</speech>>
<<speech "gf" "Jane">>I thought we're going through Tucson.<</speech>>
<<speech "mc" "$name">>We're in the northern part of Arizona, might as well drive through it.<</speech>>
<blockquote>Jane listens to your words and then nods as she realize the wisdom behind it.</blockquote>
<<speech "mc" "$name">>Got any good spots to visit in New Mexico?<</speech>>
<blockquote>Jane hesitates for a moment, glancing around averting her gaze. She seems a little uncomfortable suggesting a destination.</blockquote>
<<speech "mc" "$name">>Go ahead and check your phone, Jane. This isn’t a test.<</speech>>
<blockquote>Jane exhales a small sigh of relief, pulling out her phone and opening her maps app.</blockquote>
<<speech "gf" "Jane">>Well... the Petrified Forest seems to be up and running.<</speech>>
<<img "Images/inc/rest1/forest.webp" "700px">><</img>>
<<speech "mc" "$name">>Petrified Forest? What's that?<</speech>>
<<speech "gf" "Jane">>It’s a forest, but all the trees have turned to stone.<</speech>>
<<speech "mc" "$name">>W-What do you mean?<</speech>>
<<speech "gf" "Jane">>I mean exactly that. Millions of years ago, it was a forest, but the trees fossilized and turned into stone.<</speech>>
<<speech "mc" "$name">>So... it’s like a quarry now?<</speech>>
<<speech "gf" "Jane">>What? No! [[Anyway!|Eat2-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>Jane swipes the screen and shows you something else.</blockquote>
<<img "Images/inc/rest1/meteor.webp" "700px">><</img>>
<<speech "mc" "$name">>W-Wow...<</speech>>
<<speech "gf" "Jane">>I guess we’ve got our next destination.<</speech>>
<blockquote>On her screen is a massive crater. Your inner child kicks into overdrive as you stare at it in awe.</blockquote>
<<speech "mc" "$name">>W-Wanna go there now?<</speech>>
<<speech "gf" "Jane">>No.<</speech>>
<<speech "mc" "$name">>W-Why?<</speech>>
<<speech "gf" "Jane">>It’s dark. I’d rather not risk being caught off guard if another one comes down.<</speech>>
<<speech "mc" "$name">>Makes sense.<</speech>>
<blockquote>You settle back in your seat, the initial excitement calming.</blockquote>
<<speech "mc" "$name">>Anything else worth checking out?<</speech>>
<<speech "gf" "Jane">>Maybe a lunch spot, umm, Holbrook, or Winslow. If we’re quick enough, I think we can make it to Albuquerque by 7.<</speech>>
<<speech "mc" "$name">>7, huh? Sounds lucky.<</speech>>
<<speech "gf" "Jane">>Don't jinx it.<</speech>>
<blockquote>You laugh, brushing off her warning, and return [[to your meal.|Eat2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<<speech "gf" "Jane">>14 days, huh...?<</speech>>
<<speech "mc" "$name">>If we take our time, yeah.<</speech>>
<blockquote>Jane glances around, her expression contemplative before she speaks again.</blockquote>
<<speech "gf" "Jane">>A lot could happen in fourteen days.<</speech>>
<<speech "mc" "$name">>Are you already having second thoughts?<</speech>>
<<speech "gf" "Jane">>No... it's just that something already happened in the first day.<</speech>>
<blockquote>[[You pause, her words sinking in.|Eat2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "NTR">>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<blockquote>She smirked. It brought you a sense of dread.</blockquote>
<<speech "gf" "Jane">>And I think you want something to happen as well...<</speech>>
<blockquote>You're sitting silenced.</blockquote>
<<speech "gf" "Jane">>I heard you.<</speech>>
<<speech "mc" "$name">>Y-You w-what?<</speech>>
<<speech "gf" "Jane">>And I couldn't believe what I heard, well, maybe I can.<</speech>>
<blockquote>She smirked seeing you squirm in your seat.</blockquote>
<<speech "gf" "Jane">>You fantasized me with him, didn't you?<</speech>>
<<speech "mc" "$name">>........................................<</speech>>
<<speech "gf" "Jane">>Yep. Tell me, $name, how hard did it made you cum?<</speech>>
<blockquote>You couldn't take her pressure anymore.</blockquote>
<<speech "mc" "$name">>J-Jane-<</speech>>
<<speech "rusty" "Rusty">>[[*ahem*|EatNTR2-1]]<</speech>>
<<elseif $second_confrontation is "Tempted">>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<blockquote>Jane then averts her gaze before continuing, her face is bright red, and she's breathing quite quickly.</blockquote>
<<speech "gf" "Jane">>In the bathroom, I heard you.<</speech>>
<blockquote>Your eyes widened, shocked.</blockquote>
<<speech "gf" "Jane">>Do you really want it to happen, $name?<</speech>>
<<speech "mc" "$name">>J-Jane, n-no I... i-it was a mistake.<</speech>>
<<speech "gf" "Jane">>Mistake, how? I could hear you calling my name, n-not only that but I heard you doing it over and over again.<</speech>>
<blockquote>You are stuck, there's no way out of this.</blockquote>
<<speech "gf" "Jane">>I even heard you cum so damn hard. Tell me, do you want me to do it?<</speech>>
<blockquote>Jane leans over the table, getting close to your face. As you stumble for words at her direct question, someone else appeared.</blockquote>
<<speech "rusty" "Rusty">>[[*ahem*|EatNTS2-1]]<</speech>>
<<elseif $second_confrontation is "Confused">>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<blockquote>Jane looks you straight in the eye.</blockquote>
<<speech "gf" "Jane">>You were screaming out my name inside of that bathroom.<</speech>>
<<speech "mc" "$name">>W-Wha!? *ack* *cough*<</speech>>
<blockquote>It caught you so off-guard that you choked.</blockquote>
<<speech "gf" "Jane">>I saw you watching Nina and him but why were you screaming out my name, $name?<</speech>>
<<speech "mc" "$name">>W-Well, J-Jane, I-I...<</speech>>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>Jane narrows her eyes, but amidst the tension, someone came and broke it.</blockquote>
<<speech "rusty" "Rusty">>[[*ahem*|EatConfused2-1]]<</speech>>
<<elseif $second_confrontation is "Hopeful">>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<blockquote>Jane smiles mischievously.</blockquote>
<<speech "gf" "Jane">>Well, I saw you watching the scene with unbounded interest.<</speech>>
<<speech "mc" "$name">>W-What? O-Oh, fucking hell...<</speech>>
<<speech "gf" "Jane">>Pfftt!<</speech>>
<blockquote>Jane held her laughter as she eats her food.</blockquote>
<<speech "gf" "Jane">>I'm surprised you didn't jack off, though.<</speech>>
<<speech "mc" "$name">>Dammit, Jane, I'm eating.<</speech>>
<<speech "gf" "Jane">>Me too!<</speech>>
<blockquote>After a while, she had her fill of laughing at you.</blockquote>
<<speech "gf" "Jane">>Haa... gotta salute you, though. Even I got bothered when I saw him did it.<</speech>>
<<speech "mc" "$name">>Ha? You saw me running away but then took my place at that door? I thought I closed it.<</speech>>
<<speech "gf" "Jane">>No no, when I saw him with Lana.<</speech>>
<<speech "mc" "$name">>Oh, right... wait... WHAT THE FUCK!?<</speech>>
<blockquote>But as you jumped in surprise someone appeared.</blockquote>
<<speech "rusty" "Rusty">>[[*ahem*|EatHope2-1]]<</speech>>
<<elseif $second_confrontation is "Love">>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<blockquote>Jane smiles and gaze deeply into your eyes.</blockquote>
<<speech "gf" "Jane">>Thank you for not betraying my trust.<</speech>>
<<speech "mc" "$name">>H-Huh? Where did this come from?<</speech>>
<blockquote>Jane didn't answered but only looks to her left, to the parking lot and to room number 2.</blockquote>
<<speech "mc" "$name">>...Oh, crap.<</speech>>
<<speech "gf" "Jane">>Hah! Calm down, $name.<</speech>>
<<speech "mc" "$name">>H-How could I? I-I mean, I-I was in public!<</speech>>
<<speech "gf" "Jane">>That's true... and Lana saw you as well.<</speech>>
<<speech "mc" "$name">>Oh, for fuck sake...<</speech>>
<blockquote>She lends a kind hand to your exposed skin.</blockquote>
<<speech "gf" "Jane">>But thank you for controlling your desire.<</speech>>
<<speech "mc" "$name">>W-Wait, d-does that mean...? Crap, I didn't even hear you.<</speech>>
<<speech "gf" "Jane">>I'm quite sneaky. Even Lana didn't hear me until she's done.<</speech>>
<<speech "mc" "$name">>...Lana? Done doing what?<</speech>>
<<speech "gf" "Jane">>When she was doing it with Rusty.<</speech>>
<<speech "mc" "$name">>Oh, I see... WAIT WHAT!?<</speech>>
<blockquote>But as you jumped in surprise someone appeared.</blockquote>
<<speech "rusty" "Rusty">>[[*ahem*|EatLove2-1]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "Tempted">>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<blockquote>Rusty is standing next to the table, his huge build is overshadowing the two of you at the same time.</blockquote>
<<speech "rusty" "Rusty">>Hey, guys. Done eating yet?<</speech>>
<blockquote>Rusty smirks, he fully heard your discussion from beginning to the end.</blockquote>
<<speech "mc" "$name">>N-No, w-we haven-<</speech>>
<<speech "gf" "Jane">>*gasp*<</speech>>
<blockquote>Jane gasped in surprised and pulled back, you're startled wondering why.</blockquote>
<<speech "rusty" "Rusty">>Ah, yep, sorry. Night duty, wants to keep cool.<</speech>>
<blockquote>His huge cock was poking out of his short pants.</blockquote>
<<speech "rusty" "Rusty">>By the way, I overheard you guys for a bit. Whatever your problem is, maybe I can help you, hah?<</speech>>
<blockquote>Rusty leans in, openly smirking.</blockquote>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote>At that moment, Jane suddenly snaps her heads towards you.</blockquote>
<<speech "gf" "Jane">>C-Can he help us...?<</speech>>
<blockquote>Her eyes is wide, she's on the brink, she wants your answer here and now.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Nod your head|EatNTS2-2]]>>
<<set $second_finalconfront to "NTS1">><</link>>
<<link [[Shake your head|EatNTS2-2]]>>
<<set $second_finalconfront to "NTS2">><</link>>
</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "NTR">>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<blockquote>Rusty is standing next to the table, his huge build is overshadowing the two of you at the same time.</blockquote>
<<speech "gf" "Jane">>Well... good evening, Rusty.<</speech>>
<<speech "rusty" "Rusty">>Good evening, just thought I overheard something interesting.<</speech>>
<blockquote>Jane smirks, sending you into a full blown panic.</blockquote>
<<speech "gf" "Jane">>Oh? And what might that be?<</speech>>
<<speech "rusty" "Rusty">>Sounds like someone needs a little tune up.<</speech>>
<blockquote>You shivered in your seat, but you're tongue tied.</blockquote>
<<speech "gf" "Jane">>Mmm... a tune up? Like what you gave Lana and Nina?<</speech>>
<<speech "rusty" "Rusty">>Pretty much.<</speech>>
<blockquote>Suddenly, Jane puts her hand on yours.</blockquote>
<<speech "gf" "Jane">>What do you think, $name? Should I get a little tune up?<</speech>>
<blockquote class="choice-blockquote">
<<link [[Nod your head|EatNTR2-2]]>>
<<set $second_finalconfront to "NTR1">><</link>>
<<link [[Shake your head|EatNTR2-2]]>>
<<set $second_finalconfront to "NTR2">><</link>>
</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this forever</blockquote>
<<if $second_finalconfront is "NTR1">>
<<img "Images/gf/gf7.webp" "500px">><</img>>
<blockquote>Jane giggled and put her hand on you.</blockquote>
<<speech "gf" "Jane">>I'm so lucky to have such an understanding boyfriend...<</speech>>
<blockquote>It brought chill to your spine, you reach your hand to her as she is rising from her seat.</blockquote>
<<speech "gf" "Jane">>Hehe...<</speech>>
<blockquote>She instead took your hand and kissed it.</blockquote>
<<speech "gf" "Jane">>I'll see you later...<</speech>>
<<speech "rusty" "Rusty">>Heh.<</speech>>
<blockquote>He holds her in his arms and then walk outside.</blockquote>
<<speech "mc" "$name">>....................................<</speech>>
<blockquote>You see them walk together from the window, never even bothering to look back.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Your dick is getting steadily harder at each step they take, finally, you reached full mast as you see the door to room 2 getting [[closed.|EatNTR2-3]]</blockquote>
<<elseif $second_finalconfront is "NTR2">>
<<img "Images/gf/gf7.webp" "500px">><</img>>
<blockquote>You shook your head vehemently, this is wrong, you finally realized, you don't want this to happen.</blockquote>
<<speech "mc" "$name">>Oh...<</speech>>
<blockquote>But Jane's smirks only gets wider.</blockquote>
<<speech "gf" "Jane">>But I do think I need a tune up.<</speech>>
<blockquote>Your heart dropped and you're in a full blown panic.</blockquote>
<<speech "mc" "$name">>J-Jane-<</speech>>
<blockquote>She kissed your cheek and then pushed you away.</blockquote>
<<speech "gf" "Jane">>You're too late, my love.<</speech>>
<blockquote>Finally, they left. Leaving you all alone with a palpitating heart, trembling limbs, a full blown erection.</blockquote>
<<speech "mc" "$name">>N-No... h-haa...<</speech>>
<blockquote>You grab your head and look to the parking lot, just right at the moment as the door to [[room 2|EatNTR2-3]] is being closed.</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_finalconfront is "NTS1">>
<blockquote class="location">She will remember this forever</blockquote>
<blockquote>Everything seems to have stopped as soon as you nod your head. Rusty only smiles, you're still frozen, and Jane is silently breathing.</blockquote>
<<speech "gf" "Jane">>I see...<</speech>>
<blockquote>Finally, she broke the silence. She then turns to Rusty. Rusty stretch his hand to her.</blockquote>
<<speech "rusty" "Rusty">>Let's go.<</speech>>
<<speech "gf" "Jane">>...Yes.<</speech>>
<blockquote>She said as she took his hand, her eyes is filled with undisguised lust.</blockquote>
<<speech "gf" "Jane">>If that's what you want.<</speech>>
<blockquote>She said, as she [[left you.|EatNTS2-3]]</blockquote>
<<elseif $second_finalconfront is "NTS2">>
<blockquote class="location">She will remember this</blockquote>
<<speech "gf" "Jane">>O-Oh!<</speech>>
<blockquote>Your vehement head shaking seems to bring her back down to earth.</blockquote>
<<speech "gf" "Jane">>W-What...? Shit, what the hell am I doing?<</speech>>
<<speech "rusty" "Rusty">>Well, girl, I was about to show you heaven.<</speech>>
<blockquote>Jane blushed but she pushed Rusty away.</blockquote>
<<speech "gf" "Jane">>P-Piss off...<</speech>>
<<speech "rusty" "Rusty">>Chill, just want you guys to know that we're closing up soon.<</speech>>
<blockquote>Rusty went away without a fight, whistling to himself as he walk to the toilet.</blockquote>
<<speech "mc" "$name">>...................................<</speech>>
<blockquote>You're all red as soon as Jane turned to you.</blockquote>
<<speech "gf" "Jane">>L-Let's just finish our food...<</speech>>
<<speech "mc" "$name">>[[Y-Yes...|NoNTR2-1]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "Tempted">>
<blockquote>Rusty is standing next to the table, his huge build is overshadowing the two of you at the same time.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Nod your head|EatNTS2-2]]>>
<<set $second_finalconfront to "NTS1">><</link>>
<<link [[Shake your head|EatNTS2-2]]>>
<<set $second_finalconfront to "NTS2">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "Confused">>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<blockquote>Rusty is standing next to the table, his huge build is overshadowing the two of you at the same time.</blockquote>
<<speech "rusty" "Rusty">>Hey, guys. Done eating yet?<</speech>>
<<speech "gf" "Jane">>We'll be done in a sec.<</speech>>
<<speech "rusty" "Rusty">>Take your time...<</speech>>
<blockquote>Rusty walks away while eyeing you, his eyes is knowing.</blockquote>
<<speech "gf" "Jane">>So?<</speech>>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>You shook your head vehemently but she quickly stopped you.</blockquote>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote class="choice-blockquote">
<<link [[Tell the truth|EatConfused2-2]]>>
<<set $second_finalconfront to "Confused1">><</link>>
<<link [[Lie|EatConfused2-2a]]>>
<<set $second_finalconfront to "Confused2">><</link>>
</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "Hopeful">>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<blockquote>Rusty is standing next to the table, his huge build is overshadowing the two of you at the same time.</blockquote>
<<speech "rusty" "Rusty">>It's impolite to talk about other people, you know.<</speech>>
<blockquote>He said, clearly joking.</blockquote>
<<speech "mc" "$name">>Y-You're doing w-what?<</speech>>
<<speech "rusty" "Rusty">>Doing who, $name,<</speech>>
<<speech "gf" "Jane">>With Lana, I caught them when I'm get that toilet paper.<</speech>>
<<speech "rusty" "Rusty">>Yeah, that time when I saw you... you know...<</speech>>
<blockquote>In one moment watching a man vigorously having sex then in the next one seeing her boyfriend changing.</blockquote>
<<speech "gf" "Jane">>Y-Yeah...<</speech>>
<blockquote>Rusty then smirks.</blockquote>
<<speech "rusty" "Rusty">>Don't worry, dude, size aren't that important.<</speech>>
<blockquote>That's a straight insult, Jane looks scandalized, she wants to defend you but as she looks at you, she saw something that stunned her instead.</blockquote>
<blockquote class="choice-blockquote">
<<link [[You're covering your pants|EatHope2-2]]>>
<<set $second_finalconfront to "Hope1">><</link>>
<<link [[You're fighting back|EatHope2-2]]>>
<<set $second_finalconfront to "Hope2">><</link>>
</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_confrontation is "Love">>
<<img "Images/npc/rusty1.webp" "400px">><</img>>
<blockquote>Rusty is standing next to the table, his huge build is overshadowing the two of you at the same time.</blockquote>
<<speech "rusty" "Rusty">>It's impolite to talk about other people, you know.<</speech>>
<blockquote>He said, clearly joking.</blockquote>
<<speech "gf" "Jane">>Hey, Rusty.<</speech>>
<blockquote>Jane said back with her usual cheeriness.</blockquote>
<<speech "mc" "$name">>D-Dude, you're doing it with Lana too?<</speech>>
<<speech "rusty" "Rusty">>Women can't get enough of me.<</speech>>
<blockquote>He winks at Jane.</blockquote>
<<speech "mc" "$name">>H-Hey!<</speech>>
<<speech "rusty" "Rusty">>Haha~ I mean, what else is there to do over here? I used to be swamped with work, you know, fixing cars, making beds, destroying beds, all that but now there's no one here.<</speech>>
<<speech "mc" "$name">>I guess...<</speech>>
<blockquote>You draw a parallel to your own life in isolation, other than your phone, the internet, TV, and Jane, there's nothing else to interact with.</blockquote>
<<speech "rusty" "Rusty">>I mean, if you and Jane are staying here for an entire year, I'm sure you're going to look some wild fun too, right Jane?<</speech>>
<blockquote>Rusty winked again, this time his intention is undisguised.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Let him talk|EatLove2-2]]>>
<<set $second_finalconfront to "Love1">><</link>>
<<link [[Put him down|EatLove2-2]]>>
<<set $second_finalconfront to "Love2">><</link>>
</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_finalconfront is "Confused1">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>Jane's relentless gaze and Rusty's subtle teasing made you stop resisting, you lost your resolve and tells the truth.</blockquote>
<<speech "mc" "$name">>I-I... I fantasized about you... w-with him.<</speech>>
<<speech "gf" "Jane">>You WHA-<</speech>>
<<speech "rusty" "Rusty">>Ahahahahahaha~<</speech>>
<blockquote>Rusty laughed openly but an icy glare from Jane stopped him.</blockquote>
<<speech "gf" "Jane">>So? Should I be thankful that you swapped Nina with me in your fantasy?<</speech>>
<<speech "mc" "$name">>N-No, Jane, please.<</speech>>
<<speech "gf" "Jane">>What? Do you want to make it a reality?<</speech>>
<blockquote>You are stopped in your tracks, but even your pause signifies that you didn't immediately turn down the idea.</blockquote>
<<speech "rusty" "Rusty">>Well, I'm ready if yo-<</speech>>
<<speech "gf" "Jane">>Shut the hell up!<</speech>>
<blockquote>Jane lashed out.</blockquote>
<<speech "rusty" "Rusty">>Wew, aight~<</speech>>
<blockquote>Rusty left and walk to the toilet, though for some reason you're feeling a little disappointed. But as you look back to Jane, she's already getting up from her seat.</blockquote>
<<speech "gf" "Jane">>I'm full.<</speech>>
<blockquote>And she [[left.|EatConfused2-3]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_finalconfront is "Hope1">>
<blockquote class="location">She will remember this forever</blockquote>
<<speech "gf" "Jane">>W-What?<</speech>>
<blockquote>It caught Rusty off-guard as he laughed his ass off.</blockquote>
<<speech "mc" "$name">>S-Shit, I-I can explain!<</speech>>
<blockquote>Jane shakes her head in disbelief, her face is twisted into anger.</blockquote>
<<speech "gf" "Jane">>I-I can't fucking believe this...<</speech>>
<<speech "mc" "$name">>J-Jane pl-<</speech>>
<<speech "gf" "Jane">>There's nothing to explain, $name.<</speech>>
<blockquote>Her icy glare sent chills down you spine.</blockquote>
<<speech "gf" "Jane">>What happened in the bathroom was just a fluke... I couldn't believe I trusted you...<</speech>>
<<speech "mc" "$name">>J-Jane n-<</speech>>
<<speech "gf" "Jane">>You WANT this.<</speech>>
<blockquote>You whimpered as her harsh words is instead turning you on.</blockquote>
<<speech "gf" "Jane">>Yep, holy shit...<</speech>>
<blockquote>The absurdity made her snickers.</blockquote>
<<speech "gf" "Jane">>Well, lucky for you, I'm extremely horny.<</speech>>
<<speech "mc" "$name">>J-Jane!<</speech>>
<blockquote>She's smirking, and it brought you terror.</blockquote>
<<speech "gf" "Jane">>I'm just granting your wish, darling.<</speech>>
<blockquote>Jane spat out before walking away with Rusty in hand, they [[left you.|EatNTR2-3]] All alone in the diner, as you can see them walking straight to room 2.</blockquote>
<<elseif $second_finalconfront is "Hope2">>
<blockquote class="location">She appreciates your effort</blockquote>
<<speech "mc" "$name">>P-PIss off, Rusty.<</speech>>
<blockquote>You stuttered but you stood up for yourself.</blockquote>
<<speech "rusty" "Rusty">>Ahh... sorry bout that. Just thought I was being nice.<</speech>>
<<speech "gf" "Jane">>Yeah! He's mine, Rusty, even if he got the smallest dick in the whole planet I'll still love him.<</speech>>
<<speech "mc" "$name">>...Really?<</speech>>
<<speech "gf" "Jane">>...I think so.<</speech>>
<blockquote>There's a sudden awkwardness to the conversation.</blockquote>
<<speech "rusty" "Rusty">>W-Well, just want to tell you guys that we're closing in a few minutes.<</speech>>
<<speech "gf" "Jane">>R-Really?<</speech>>
<blockquote>Without much thought, Jane went straight to her food and the same goes to you. Rusty only shrugs his hand and walk away, going back to his phone like before.</blockquote>
<<speech "mc" "$name">>Seriously though?<</speech>>
<<speech "gf" "Jane">>Maybe, but your tongue is great.<</speech>>
<<speech "mc" "$name">>Thanks.<</speech>>
<blockquote>And so, you continue to eat [[until it's done.|EatHope2-3]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<if $second_finalconfront is "Love1">>
<<speech "gf" "Jane">>Are you really going to say that in front of my boyfriend?<</speech>>
<<speech "rusty" "Rusty">>Would saying it not in front of him be better?<</speech>>
<<speech "gf" "Jane">>Umm, no, it'll be much worse.<</speech>>
<blockquote>You shake your head at his boldness, though maybe that's how he got Lana.</blockquote>
<<speech "mc" "$name">>But seriously, Lana?<</speech>>
<<speech "rusty" "Rusty">>Why not her? If I have to make a top three of the women here, she'll comfortably makes it, it'll be Lana at third, Nina at second, and Jane here at first.<</speech>>
<<speech "gf" "Jane">>Heh, charmer.<</speech>>
<<speech "mc" "$name">>There's only three woman here.<</speech>>
<<speech "rusty" "Rusty">>Your point? By the way, we're gonna close up in a few minutes.<</speech>>
<<speech "gf" "Jane">>R-Right.<</speech>>
<<speech "rusty" "Rusty">>Anyway, can I stand here for a bit? I kinda like watching your face.<</speech>>
<<speech "mc" "$name">>Y-You!<</speech>>
<blockquote>Jane is all red, you shake your head and quicken up your pace, wanting to [[get the hell away|EatLove2-3]] from him as fast as possible.</blockquote>
<<elseif $second_finalconfront is "Love2">>
<blockquote class="location">She will remember this</blockquote>
<<speech "mc" "$name">>Sigh... piss off, man.<</speech>>
<<speech "rusty" "Rusty">>C'mon, just kidding around.<</speech>>
<blockquote>Jane also smiled in good spirit.</blockquote>
<<speech "gf" "Jane">>Maybe I'll think about it if $name pissed me off enough.<</speech>>
<<speech "mc" "$name">>Have I ever?<</speech>>
<<speech "gf" "Jane">>Well, there was one time when you stole my ice cream.<</speech>>
<<speech "mc" "$name">>That's the threshold?<</speech>>
<blockquote>You laughed along with her and then continue eating.</blockquote>
<<speech "rusty" "Rusty">>Been a while since I last seen such a romantic couple.<</speech>>
<blockquote>Rusty quipped as you continue to eat, he then went away, intending to clean up before [[closing the place.|EatLove2-3]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<blockquote>Suddenly a storm of regret assaulted all your senses.</blockquote>
<<speech "mc" "$name">>F-Fuck... w-what have I done...<</speech>>
<blockquote>Cold sweat freely gushed from your forehead as you tremble in your seat.</blockquote>
<<speech "mc" "$name">>H-Haa... J-Jane...<</speech>>
<blockquote>*beep*</blockquote>
<<speech "mc" "$name">>W-What...?<</speech>>
<blockquote>A small beep, signifying a message comes from your phone.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<<speech "gf" "Jane">>"Come over..."<</speech>>
<<speech "mc" "name">>S-Shit!<</speech>>
<blockquote>You said that, you got angry and crushed but your arousal knows no bound.</blockquote>
<<speech "mc" "$name">>R-Room 2...<</speech>>
<blockquote>You stand up and take your [[first step.|EatNTR2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>The courtyard somehow feels emptier as you step outside the diner. There is no one else in sight, not even a shadow or a smoke.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>The puff from your breath seems to be your only companion.</blockquote>
<<speech "mc" "$name">>Room 2...<</speech>>
<blockquote>You repeated it like a magic spell, and as if mind controlled by an arch-wizard, you [[continue on.|EatNTR2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingnphoenix.webp" "500px">><</img>>
<blockquote>Here you are, in front of the door.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>Earlier you can clearly hear Nina because the door was open but now the door is closed. You're not even sure what you'll find inside, you're even beginning to think that the message she sent was a simple prank.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Jane is quite mischievous after all.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<blockquote>But your erection wouldn't settle. You HAVE to know. You HAVE to open this door.</blockquote>
<<speech "mc" "$name">>Ngh!<</speech>>
<blockquote>Finally, you grab the door handle, and with a small creak, [[the door is opened.|EatNTR2-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs20.webm" "500px">>
<blockquote>What you see is what you expected.</blockquote>
<<speech "rusty" "Rusty">>Hey~ look who's here.<</speech>>
<blockquote>The frazzled lusty looks within her eyes gets even wilder as she noticed your arrival.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Jane turns back to you, smirks, and continues on.</blockquote>
<<speech "gf" "Jane">>[[Heh~|EatNTR2-7]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<blockquote>Suddenly a storm of regret assaulted all your senses.</blockquote>
<<speech "mc" "$name">>F-Fuck... w-what have I done...<</speech>>
<blockquote>Cold sweat freely gushed from your forehead as you tremble in your seat.</blockquote>
<<speech "mc" "$name">>H-Haa... J-Jane...<</speech>>
<blockquote>*beep*</blockquote>
<<speech "mc" "$name">>W-What...?<</speech>>
<blockquote>A small beep, signifying a message comes from your phone.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<<speech "gf" "Jane">>"Wanna come watch?"<</speech>>
<<speech "mc" "name">>S-Shit!<</speech>>
<blockquote>You said that, you regretted everything you did but your dick couldn't be quelled.</blockquote>
<<speech "mc" "$name">>R-Room 2...<</speech>>
<blockquote>You stand up and take your [[first step.|EatNTS2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<set $second_finalstate to "NoSex">>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>You are now standing in the middle of the courtyard, Rusty is locking up the diner as the two of you are done eating your meal.</blockquote>
<<speech "mc" "$name">>...............................<</speech>>
<<speech "gf" "Jane">>.............................<</speech>>
<blockquote>You're too embarrassed to even look at each other.</blockquote>
<<speech "mc" "$name">>W-What time is it?<</speech>>
<<speech "rusty" "Rusty">>Nine.<</speech>>
<blockquote>Rusty is done locking the place and is walking towards you. But as soon as he gets closer, Jane turns to you.</blockquote>
<<speech "gf" "Jane">>...L-Let's just talk about this tomorrow.<</speech>>
<<speech "mc" "$name">>R-Right...<</speech>>
<blockquote>You're all standing in place, looking at each other.</blockquote>
<<speech "rusty" "Rusty">>Sounds like a rough time. Wanna sleep with me instead?<</speech>>
<<speech "mc" "$name">>N-No tha-<</speech>>
<<speech "rusty" "Rusty">>Not you.<</speech>>
<blockquote>You thought Jane going to jump at him for that but she didn't.</blockquote>
<<speech "gf" "Jane">>N-No... s-shut up, Rusty...<</speech>>
<blockquote>With that, the night is over, you quietly went to your room and locked the door. Jane immediately went to bed and turned from you, you did the same. That night, there was [[no word being shared.|TBC2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>The courtyard somehow feels emptier as you step outside the diner. There is no one else in sight, not even a shadow or a smoke.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>The puff from your breath seems to be your only companion.</blockquote>
<<speech "mc" "$name">>Room 2...<</speech>>
<blockquote>You repeated it like a magic spell, and as if mind controlled by an arch-wizard, you [[continue on.|EatNTS2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingnphoenix.webp" "500px">><</img>>
<blockquote>Here you are, in front of the door.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<blockquote>Earlier you can clearly hear Nina because the door was open but now the door is closed. You're not even sure what you'll find inside, for all you know Jane could be regretting everything as much as you are.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>This was all a mistake after all.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<blockquote>But your erection wouldn't settle. You HAVE to know. You HAVE to open this door.</blockquote>
<<speech "mc" "$name">>Ngh!<</speech>>
<blockquote>Finally, you grab the door handle, and [[push it open.|EatNTS2-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs20.webm" "500px">>
<blockquote>What you see is what you expected.</blockquote>
<<speech "rusty" "Rusty">>Hey~ look who's here.<</speech>>
<blockquote>The frazzled lusty looks within her eyes gets even wilder as she noticed your arrival.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Jane turns back to you, smiles, and continues on.</blockquote>
<<speech "gf" "Jane">>[[H-Hey~|EatNTS2-7]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>Haa...<</speech>>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<blockquote>All alone in the diner, the panic from earlier still coursing through your vein.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>You can see Jane stomping through the night and walk to your room and then slammed the door behind her.</blockquote>
<<speech "mc" "$name">>Ugh...<</speech>>
<blockquote>From afar you flinched from her force and anger.</blockquote>
<blockquote>You don't even know how you can see her face from this day on, hell, you're not even sure that she'll be with you in the morning.</blockquote>
<<speech "mc" "$name">>Shit...<</speech>>
<blockquote>So with that dark thought, you [[leave the diner.|EatConfused2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>There is no way out of this, you have to admit your mistake and tell her a lie.</blockquote>
<<speech "mc" "$name">>I'm sorry. i-it just I couldn't hold it anymore.<</speech>>
<<speech "gf" "Jane">>Why were you calling my name, then?<</speech>>
<<speech "mc" "$name">>W-Well, do you want me to call Nina's name?<</speech>>
<blockquote>She thought for a moment, frowning her brows but eventually finding a semblance of sense within your word but there's still doubt within her.</blockquote>
<<speech "gf" "Jane">>...Don't lie to me, $name.<</speech>>
<<speech "mc" "$name">>L-Lie?<</speech>>
<blockquote>But right at that moment, Rusty approached again.</blockquote>
<<speech "rusty" "Rusty">>Speed it up, guys. I want to close this place up.<</speech>>
<<speech "gf" "Jane">>A-Ah.<</speech>>
<<speech "mc" "$name">>R-Right!<</speech>>
<blockquote>You immediately went to your food, and while Jane is not looking Rusty gave you a thumbs up.</blockquote>
<<speech "gf" "Jane">>W-We'll talk about it later.<</speech>>
<<speech "mc" "$name">>T-Tomorrow, yes.<</speech>>
<blockquote>She only nodded and went back to [[her food.|EatConfused2-2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<set $second_finalstate to "NoSex">>
<blockquote class="location">You have tricked her, for now</blockquote>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>You are now standing in the middle of the courtyard, Rusty is locking up the diner as the two of you are done eating your meal.</blockquote>
<<speech "mc" "$name">>*burp*<</speech>>
<<speech "gf" "Jane">>Where's your decorum?<</speech>>
<<speech "mc" "$name">>I left it inside the diner.<</speech>>
<blockquote>You look around the empty courtyard, it is empty, not even a shadow and not even a single car running in the highway.</blockquote>
<<speech "mc" "$name">>Geez... what time is it?<</speech>>
<<speech "rusty" "Rusty">>Nine.<</speech>>
<blockquote>Rusty is done locking the place and is walking towards you. But as soon as he gets closer, Jane turns back to you.</blockquote>
<<speech "gf" "Jane">>So why tomorrow again?<</speech>>
<blockquote>Your heart dropped, you were hoping that she forgotten all about it already.</blockquote>
<<speech "gf" "Jane">>We could talk abo-<</speech>>
<<speech "rusty" "Rusty">>*yawn*<</speech>>
<<speech "gf" "Jane">>*yawn*<</speech>>
<<speech "mc" "$name">>*yawn*<</speech>>
<blockquote>You're all standing in place, looking at each other.</blockquote>
<<speech "mc" "$name">>Tomorrow.<</speech>>
<<speech "gf" "Jane">>R-Right.<</speech>>
<blockquote>Finally, the night is over, you quietly shook Rusty's hand as you continue on to the room and finally, you vow to give him a tip [[when you leave.|TBC2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>The courtyard somehow feels emptier as you step outside the diner. There is no one else in sight, not even a shadow or a smoke.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>The puff from your breath seems to be your only companion.</blockquote>
<<speech "mc" "$name">>Sigh...<</speech>>
<blockquote>Again, you sighed. But even in your darkened state of mind you know that lamenting about what happened won't fix a thing, so you continue on to [[your room.|EatConfused2-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/parkingnphoenix.webp" "500px">><</img>>
<<set $second_finalstate to "Angry">>
<blockquote>At least. that was the plan before you realized that Jane locked the door from the inside.</blockquote>
<<speech "mc" "$name">>Sigh...<</speech>>
<blockquote>Again, you sighed. You're getting to the point of you're tired of sighing.</blockquote>
<<speech "mc" "$name">>................................<</speech>>
<blockquote>But you're realized that maybe this is the best thing to happen. Seeing you in her current state will only make her angrier, so with a final sigh of acceptance you turn back.</blockquote>
<<speech "mc" "$name">>...I'm sorry.<</speech>>
<blockquote>You get in your car and put on a blanket Jane lifted from one of her flight.</blockquote>
<<speech "mc" "$name">>Good night.<</speech>>
<blockquote>And you [[closed your eyes.|TBC2b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>You are now standing in the middle of the courtyard, Rusty is locking up the diner as the two of you are done eating your meal.</blockquote>
<<speech "mc" "$name">>*burp*<</speech>>
<<speech "gf" "Jane">>Where's your decorum?<</speech>>
<<speech "mc" "$name">>I left it inside the diner.<</speech>>
<blockquote>You look around the empty courtyard, it is empty, not even a shadow and not even a single car running in the highway.</blockquote>
<<speech "mc" "$name">>Geez... what time is it?<</speech>>
<<speech "rusty" "Rusty">>Nine.<</speech>>
<blockquote>Rusty is done locking the place and is walking towards you.</blockquote>
<<speech "mc" "$name">>Is that why I'm sleepy?<</speech>>
<<speech "gf" "Jane">>Oh... you're sleepy?<</speech>>
<blockquote>She looks a little let down.</blockquote>
<<speech "mc" "$name">>Well... I guess I could stay up for a bit longer.<</speech>>
<blockquote>Jane smiled, Rusty shakes his head, then the three of you continue on to the parking lot and to [[the room|EatHope2-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/motelphoenix.webp" "500px">><</img>>
<<speech "mc" "$name">>Ahh... home sweet home...<</speech>>
<blockquote>You walk and leapt on the bed.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>*clack*</blockquote>
<<speech "mc" "$name">>Huh?<</speech>>
<blockquote>Jane twirls the key in her hand with a devious smirk.</blockquote>
<<speech "gf" "Jane">>You think I'll let you sleep, baby?<</speech>>
<<speech "mc" "$name">>I-I hope you do.<</speech>>
<<speech "gf" "Jane">>Well... I'm not feeling particularly generous tonight.<</speech>>
<blockquote>She leapt and with a practiced hand, loosened your pants.</blockquote>
<<speech "gf" "Jane">>Enjoy yourself, [[darling.|EatHope2-5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/nightroad.webp" "500px">><</img>>
<blockquote>You are now standing in the middle of the courtyard, Rusty is locking up the diner as the two of you are done eating your meal.</blockquote>
<<speech "mc" "$name">>*burp*<</speech>>
<<speech "gf" "Jane">>Where's your decorum?<</speech>>
<<speech "mc" "$name">>I left it inside the diner.<</speech>>
<blockquote>You look around the empty courtyard, it is empty, not even a shadow and not even a single car running in the highway.</blockquote>
<<speech "mc" "$name">>Geez... what time is it?<</speech>>
<<speech "rusty" "Rusty">>Nine.<</speech>>
<blockquote>Rusty is done locking the place and is walking towards you.</blockquote>
<<speech "mc" "$name">>Is that why I'm sleepy?<</speech>>
<<speech "gf" "Jane">>Oh... you're sleepy?<</speech>>
<blockquote>She looks a little let down.</blockquote>
<<speech "mc" "$name">>Well... I guess I could stay up for a bit longer.<</speech>>
<<if $second_finalconfront is "Love1">>
<<set $second_cheatinterest to "True">>
<blockquote>Rusty smirks and said.</blockquote>
<<speech "rusty" "Rusty">>Well, if he's sleepy, you know where to find me.<</speech>>
<blockquote class="location">She's uncertain</blockquote>
<blockquote>And went off to his room. You turn to Jane and see that she's steaming red.</blockquote>
<<speech "mc" "$name">>Sigh... come on.<</speech>>
<blockquote>You grab her hand and continue to [[the room.|EatHope2-4]]</blockquote>
<<else>>
<<set $second_cheatinterest to "False">>
<blockquote>Jane smiled, Rusty shakes his head, then the three of you continue on to the parking lot and to [[the room.|EatHope2-4]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs21.webm" "500px">>
<<speech "gf" "Jane">>AHhhh~ H-Holy fuck!<</speech>>
<blockquote>She never did anything like this before to you.</blockquote>
<<speech "rusty" "Rusty">>This is some top tier fucking pussy!<</speech>>
<blockquote>Rusty quickens his pace, drawing high pitched moans that you never heard before.</blockquote>
<<speech "gf" "Jane">>H-Hey~<</speech>>
<blockquote>Her eyes [[falls on you.|EatNTR2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs26.webm" "500px">>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs22.webm" "500px">>
<<speech "gf" "Jane">>W-What are you waiting for? Take it off~<</speech>>
<blockquote>She winks, seeing your hard erection from behind your pants. And as if spellbound, you did as you're told.</blockquote>
<<speech "gf" "Jane">>Ahhh~ there it is.<</speech>>
<blockquote>Your significantly smaller dick pops out. Drawing small laughter from both Rusty and Jane, their taunts only makes you harder.</blockquote>
<<speech "rusty" "Rusty">>Stroke it, brother.<</speech>>
<blockquote>Again, you [[do as you're told.|EatNTR2-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs23.webm" "500px">>
<<speech "gf" "Jane">>M-Mpphhh~<</speech>>
<blockquote>Their dance is so intense that you're quickly match their pace.</blockquote>
<<speech "gf" "Jane">>Like what you see, baby?<</speech>>
<blockquote>You nodded, your hand is working your dick.</blockquote>
<<speech "gf" "Jane">>Ahahaha~<</speech>>
<blockquote>Her teasing eyes got even meaner.</blockquote>
<<speech "gf" "Jane">>Then jerk it like [[you mean it.|EatNTR2-10]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs24.webm" "500px">>
<<speech "gf" "Jane">>H-He's making me cum, baby~<</speech>>
<blockquote>You grit your teeth and continue stroking, you're coming close to the edge.</blockquote>
<<speech "gf" "Jane">>Ahhhhhh~<</speech>>
<blockquote>Jane's eyes rolls upward because of the intense pleasure, she twitched like mad, vibrating on the bed with extreme intensity.</blockquote>
<<speech "rusty" "Rusty">>My turn.<</speech>>
<blockquote>Jane came but Rusty penetrated her again.</blockquote>
<<speech "rusty" "Rusty">>[[I'm close!|EatNTR2-11]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<speech "rusty" "Rusty">>NGH!!!<</speech>>
<<vid "Images/gf/gfs25.webm" "500px">>
<blockquote>He came all over your beloved girlfriend's face. and your response to that is...</blockquote>
<<speech "mc" "$name">>NGH!!!<</speech>>
<<vid "Images/other/cums2.webm" "500px">>
<blockquote>Cum as hard as he did.</blockquote>
<<speech "gf" "Jane">>Heh~<</speech>>
<blockquote>[[Jane laughed.|EatNTR2-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<set $second_finalstate to "NTR">>
<<img "Images/gf/gf12.webp" "500px">><</img>>
<blockquote>Suddenly, she grabbed you from the front.</blockquote>
<<speech "gf" "Jane">>Baby...<</speech>>
<<speech "mc" "$name">>Y-Yes...?<</speech>>
<blockquote>And she devoured your lips, sharing the cum that is inside her mouth all on your face.</blockquote>
<<speech "mc" "$name">>M-Mmm~!<</speech>>
<blockquote>You wanted to retch but she didn't let you as she is holding you deep within that kiss, a few minutes after she let you go, gasping for air.</blockquote>
<<speech "mc" "$name">>H-Haa... haa...<</speech>>
<blockquote>Suddenly, she pulled you again, this time much gently and brings her close to your face.</blockquote>
<<speech "gf" "Jane">>Baby...<</speech>>
<blockquote>You look deep within her lust laden eyes.</blockquote>
<<speech "gf" "Jane">>I think this is the beginning of a beautiful journey...<</speech>>
<blockquote>And she gave you one [[final kiss.|TBC2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">Save your progress!</blockquote>
<blockquote>......................................</blockquote>
<blockquote>.....................</blockquote>
<blockquote>...</blockquote>
<blockquote>[[To be Continued|TBC2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs21.webm" "500px">>
<<speech "gf" "Jane">>AHhhh~ H-Holy fuck!<</speech>>
<blockquote>She never did anything like this before to you.</blockquote>
<<speech "rusty" "Rusty">>This is some top tier fucking pussy!<</speech>>
<blockquote>Rusty quickens his pace, drawing high pitched moans that you never heard before.</blockquote>
<<speech "gf" "Jane">>$name~<</speech>>
<blockquote>Her eyes [[falls on you.|EatNTS2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs22.webm" "500px">>
<<speech "gf" "Jane">>Y-You want this, right? C-Come on, take it off~<</speech>>
<blockquote>She winks, seeing your hard erection from behind your pants. And as if spellbound, you did as you're told.</blockquote>
<<speech "gf" "Jane">>Ahhh~ there it is.<</speech>>
<blockquote>Your significantly smaller dick pops out. Drawing small laughter from Rusty, his taunts only makes you harder.</blockquote>
<<speech "rusty" "Rusty">>Stroke it, brother.<</speech>>
<blockquote>Again, you [[do as you're told.|EatNTS2-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs23.webm" "500px">>
<<speech "gf" "Jane">>M-Mpphhh~<</speech>>
<blockquote>Their dance is so intense that you're quickly match their pace.</blockquote>
<<speech "gf" "Jane">>Like what you see, baby?<</speech>>
<blockquote>You nodded.</blockquote>
<<speech "gf" "Jane">>Ahahaha~<</speech>>
<blockquote>Her teasing eyes got even flirtier.</blockquote>
<<speech "gf" "Jane">>Then jerk it like [[you mean it.|EatNTS2-10]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs24.webm" "500px">>
<<speech "gf" "Jane">>H-He's making me cum, baby~<</speech>>
<blockquote>You grit your teeth and continue stroking, you're coming close to the edge.</blockquote>
<<speech "gf" "Jane">>Ahhhhhh~<</speech>>
<blockquote>Jane's eyes rolls upward because of the intense pleasure, she twitched like mad, vibrating on the bed with extreme intensity.</blockquote>
<<speech "rusty" "Rusty">>My turn.<</speech>>
<blockquote>Jane came but Rusty penetrated her again.</blockquote>
<<speech "rusty" "Rusty">>[[I'm close!|EatNTS2-11]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<speech "rusty" "Rusty">>NGH!!!<</speech>>
<<vid "Images/gf/gfs25.webm" "500px">>
<blockquote>He came all over your beloved girlfriend's face. and your response to that is...</blockquote>
<<speech "mc" "$name">>NGH!!!<</speech>>
<<vid "Images/other/cums2.webm" "500px">>
<blockquote>Cum as hard as he did.</blockquote>
<<speech "gf" "Jane">>Wow~<</speech>>
<blockquote>[[Jane exclaimed in astonishment.|EatNTS2-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<set $second_finalstate to "NTS">>
<<img "Images/gf/gf12.webp" "500px">><</img>>
<blockquote>Suddenly, you hug her.</blockquote>
<<speech "mc" "$name">>J-Jane...<</speech>>
<<speech "gf" "Jane">>D-Did you like it...?<</speech>>
<blockquote>Then you devoured her lips, sharing the cum that is inside her mouth all on your face.</blockquote>
<<speech "gf" "Jane">>M-Mmm~!<</speech>>
<blockquote>Jane was caught off-guard but she let it continue, then within your warmth, she holds you even deeper. After a few minutes or so, you let her go as the two of you gasped for air.</blockquote>
<<speech "mc" "$name">>H-Haa... haa...<</speech>>
<blockquote>This time, she pulled you in.</blockquote>
<<speech "gf" "Jane">>Baby...<</speech>>
<blockquote>You look deep within her lust laden eyes.</blockquote>
<<speech "mc" "$name">>I love you...<</speech>>
<blockquote>And you shared one [[final kiss.|TBC2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">Save your progress!</blockquote>
<blockquote>......................................</blockquote>
<blockquote>.....................</blockquote>
<blockquote>...</blockquote>
<blockquote>[[To be Continued|TBC2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs32.webm" "500px">>
<<speech "gf" "Jane">>Look at that...<</speech>>
<blockquote>Jane smiles while stroking your cock.</blockquote>
<<speech "gf" "Jane">>You're not sleepy at all aren't you?<</speech>>
<<speech "mc" "$name">>If it's for you...<</speech>>
<blockquote>She smirks and throws herself on [[the bed.|EatHope2-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs33.webm" "500px">>
<<speech "gf" "Jane">>Come on... seriously this time...<</speech>>
<blockquote>You teased her for a few more moment.</blockquote>
<<speech "gf" "Jane">>I've been waiting for this from morning, you know...<</speech>>
<<speech "mc" "$name">>Sorry to keep you waiting, then.<</speech>>
<<if $bbl_4 is "good">>
<<speech "gf" "Jane">>And there'll be no bear to interrupt us, either...<</speech>>
<<speech "mc" "$name">>Even if there is, I'll punch him away.<</speech>>
<<speech "gf" "Jane">>That's my manly man...<</speech>>
<</if>>
<blockquote>Finally, [[you penetrated her.|EatHope2-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs26.webm" "500px">>
<<speech "gf" "Jane">>Mmm...<</speech>>
<blockquote>Jane groaned softly, feeling your throbbing member grinding against her tight wall.</blockquote>
<<speech "mc" "$name">>You feel so good...<</speech>>
<blockquote>In response, [[she held you closer.|EatHope2-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs27.webm" "500px">>
<<speech "gf" "Jane">>A-Ahh...<</speech>>
<blockquote>The pulsating feeling of her small orgasm stimulates you.</blockquote>
<<speech "mc" "$name">>Mmm...<</speech>>
<blockquote>With that, [[you continue.|EatHope2-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs28.webm" "500px">>
<blockquote>You moved through some different position, keeping the pace and keeping the intensity.</blockquote>
<<speech "mc" "$name">>F-Fuck!<</speech>>
<<speech "gf" "Jane">>Ahhh~<</speech>>
<<speech "mc" "$name">>Is this good, Jane?<</speech>>
<<speech "gf" "Jane">>S-Shut up and fuck me.<</speech>>
<blockquote>And that's [[what you did.|EatHope2-10]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs29.webm" "500px">>
<blockquote>Jane moved her hips like a woman's possessed.</blockquote>
<<speech "mc" "$name">>H-Holy shit, Jane.<</speech>>
<<speech "gf" "Jane">>Keep it hard so I could go to work.<</speech>>
<blockquote>You closed your eyes and enjoys the sensation.</blockquote>
<<speech "gf" "Jane">>W-We'll be doing this on the road, in public, in a forest, in the desert, in the car, in the beach, wherever the hell we're be going.<</speech>>
<<speech "mc" "$name">>Mmm~!<</speech>>
<blockquote>The thought sends you [[into a frenzy.|EatHope2-11]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs30.webm" "500px">>
<blockquote>You flipped her over feeling your climax is near.</blockquote>
<<speech "mc" "$name">>S-Shit!<</speech>>
<blockquote>Sensing your intensity, Jane instead curls her legs on your back.</blockquote>
<<speech "gf" "Jane">>Inside.<</speech>>
<blockquote>Getting the greenlight, [[you move faster.|EatHope2-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<set $second_finalstate to "Love">>
<<vid "Images/gf/gfs31.webm" "500px">>
<blockquote>And spray your load inside her welcoming fold.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<<speech "gf" "Jane">>You're great.<</speech>>
<blockquote>You lost all energy and fall down.</blockquote>
<<speech "mc" "$name">>I love you...<</speech>>
<blockquote>You kissed her lips and she kissed you back.</blockquote>
<<speech "gf" "Jane">>I love you too...<</speech>>
<blockquote>Jane enjoys your warmth as she embraced you.</blockquote>
<<speech "gf" "Jane">>Sleep well, $name. You'll need the energy...<</speech>>
<blockquote>Your breath softens as you feel drowsiness taking you deeper.</blockquote>
<<speech "gf" "Jane">>Good night.<</speech>>
<blockquote>And with a final peck on your cheek, [[you fall asleep.|TBC2c]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">Save your progress!</blockquote>
<blockquote>......................................</blockquote>
<blockquote>.....................</blockquote>
<blockquote>...</blockquote>
<blockquote>[[To be Continued|TBC2-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<<speech "mc" "$name">>Smells amazing.<</speech>>
<blockquote>Lana’s face lights up with a proud smile at your compliment.</blockquote>
<<speech "clerk2" "Lana">>Obviously. I used to be the assistant chef here before I got the motel.<</speech>>
<<speech "mc" "$name">>'Got' the motel?<</speech>>
<<speech "clerk2" "Lana">>Simple story. My brother built this diner himself, but our pops owned the motel long before I was even born. Time does what time does, and eventually, the motel landed in my hands.<</speech>>
<blockquote>She speaks with a nostalgic edge while deftly frying the crispy fish, her movements fluid and precise. Watching her, you suspect she might be just as skilled as Dave with a knife.</blockquote>
<<speech "clerk2" "Lana">>Now I’m just hoping time does its thing again and brings back all [[my guests.|DinerNight2a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinernight.webp" "500px">><</img>>
<blockquote>The enigmatic lady from earlier is no longer here. You must have been so exhausted that you didn’t even notice her leaving, with Rusty trailing closely behind.</blockquote>
<<speech "mc" "$name">>Where's the lady from before?<</speech>>
<<speech "gf" "Jane">>You mean Nina.<</speech>>
<<speech "mc" "$name">>Maybe, we never introduced ourselves.<</speech>>
<blockquote>Jane glances away, hesitating for a moment as if deciding whether to tell you more. Her thoughts seem to linger on Nina before drifting to her journey.</blockquote>
<<speech "gf" "Jane">>She's traveling to Quebec, you know. All the way from Tucson.<</speech>>
<<speech "mc" "$name">>By car? And in that smoky one?<</speech>>
<<speech "gf" "Jane">>Yeah... Apparently, there was a mishap with the mechanics, but she seems like a pretty experienced traveler.<</speech>>
<blockquote>The words "experienced traveler" pique your curiosity like a spark catching fire.</blockquote>
<<speech "mc" "$name">>Did she gave you any traveling tips?<</speech>>
<<speech "gf" "Jane">>She said to "triple fucking check the car before driving".<</speech>>
<blockquote>Recalling the state of her car, you can’t help but wonder if she even follows [[her own advice.|DinerNight2a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<blockquote class="location">DO NOT SAVE HERE!!!</blockquote>
<img src="images/misc/logo.webp" width="200px">
<h1><u>The Road Trip</u></h1>
<blockquote>Thank you again for playing and supporting the game. Here's something for some notification: I have decided to lessen the need of stats and stats-based consequence and instead focus primarily on the variable, which means, from here on out, everything is choice->consequence, so the emphasize on Choice-matter is getting emphasized more. This is because the complexity of the game might be overwhelming for me to write, test, and balance, so I decided to made the pivot. Don't worry though, everything will be much more coherent by doing it this way,</blockquote>
<blockquote>Finally, as I wrote earlier in my Patreon post, I would appreciate if you support me on <a href="https://www.patreon.com/AnonDux1/">Patreon</a> or <a href="https://anondux.fanbox.cc/">FANBOX</a>. As it will help me develop the game with a peace of mind, things happened and as the result I need to provide for my family much more than I used to, I would appreciate any support you guys could spare, thank you.</blockquote>
<blockquote>Below is some variables for ending of Chapter 1, you can click on one and then press [[here,|CH2Begin2-1]] to replay Chapter 2. It's to make things easier for you guys who wants to get another Chapter 2 route.</blockquote>
<blockquote>
<<link "NTR STATE: Hard">>
<<set $first_ntrstate to "hard">>
<<set $first_lovestate to "none">>
<</link>>
<<link "NTR STATE: Medium">>
<<set $first_ntrstate to "medium">>
<<set $first_lovestate to "none">>
<</link>>
<<link "NTR STATE: Easy">>
<<set $first_ntrstate to "easy">>
<<set $first_lovestate to "none">>
<</link>>
<<link "LOVE STATE: Medium">>
<<set $first_lovestate to "medium">>
<<set $first_ntrstate to "none">>
<</link>>
<<link "LOVE STATE: Easy">>
<<set $first_lovestate to "easy">>
<<set $first_ntrstate to "none">>
<</link>>
</blockquote>
</div>
</div>cheatmenu
<div class="cheatmenu-container">
<div class="cheatmenu-title">Cheat Menu
(Change passage to take efffect)</div>
<div class="cheatmenu-links">
<<link "Affection +10">>
<<set $affection += 10>>
<</link>>
<<link "Lust +10">>
<<set $lust += 10>>
<</link>>
<<link "Respect +10">>
<<set $respect += 10>>
<</link>>
<<link "Affection -10">>
<<set $affection -= 10>>
<</link>>
<<link "Lust -10">>
<<set $lust -= 10>>
<</link>>
<<link "Respect -10">>
<<set $respect -= 10>>
<</link>>
</div>
</div>