<<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 "AZ Highway">>
<img id="locationImage" src="images/inc/highway1/highway1.webp" alt="Current Location">
<<elseif $location is "Petrified Forest">>
<img id="locationImage" src="images/inc/az2/petroad.webp" alt="Current Location">
<<elseif $location is "AZ-NM Highway">>
<img id="locationImage" src="images/inc/highway1/highway1.webp" alt="Current Location">
<<elseif $location is "Road">>
<img id="locationImage" src="images/post/road.webp" alt="Current Location">
<<elseif $location is "Holbrook">>
<img id="locationImage" src="images/inc/az2/street.webp" alt="Current Location">
<<elseif $location is "Gallup">>
<img id="locationImage" src="images/inc/az2/galluproad.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>
<<set $second_state to "Fantasy">>
<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">[[Replay this chapter|TBC2-1]]</blockquote>
<blockquote>......................................</blockquote>
<blockquote>.....................</blockquote>
<blockquote>...</blockquote>
<blockquote>[[Chapter 3|CH3Begin3-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">[[Replay this chapter|TBC2-1]]</blockquote>
<blockquote>......................................</blockquote>
<blockquote>.....................</blockquote>
<blockquote>...</blockquote>
<blockquote>[[Chapter 3|CH3Begin3-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">[[Replay this chapter|TBC2-1]]</blockquote>
<blockquote>......................................</blockquote>
<blockquote>.....................</blockquote>
<blockquote>...</blockquote>
<blockquote>[[Chapter 3|CH3Begin3-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><div id="main-screen">
<div class="location-centerphoenix">
<div class="overlay"></div>
<<set $location to "Outskirts of Phoenix">>
<<set $locationImages to "RestArea1">>
<blockquote class="location">[[Replay Chapter 2|TBC2-1]]</blockquote>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<blockquote>Chapter 3: Dinosaur</blockquote>
<blockquote>The motel rested quietly under the pale morning sky, its neon sign flickering faintly against the soft glow of dawn. A light breeze carried the scent of hot sand and the faint hum of an engine somewhere down the highway. Shadows stretched long across the parking lot, where the few cars that remained seemed almost frozen in time.</blockquote>
<blockquote>Time passes, then the first rays of sunlight spilled over the horizon, painting the dusty windows gold. Somewhere inside, the sound of a coffee pot gurgling broke the silence, a promise of life stirring back into the [[sleepy diner.|CH3Begin3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<<speech "clerk3" "Dave">>To the city~<</speech>>
<blockquote>Behind the counter, Dave is mumbling a happy tune as he flipped the pancakes onto a plate. The time is only seven, time where he could sing and let loose.</blockquote>
<blockquote>The smell of freshly brewed coffee fills the morning air with the early sunlight shines through the open windows. Dave turns as he balanced the plates and cups before his eyes scanned for Rusty.</blockquote>
<<speech "clerk3" "Dave">>Table 3, [[kid.|CH3Begin3-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote>Rusty approached from a solitary chair at the far side of the diner with a heavy bags in his eyes and a huge yawn, though his right hand is still clutching his phone.</blockquote>
<<speech "rusty" "Rusty">>You're not paying me enough for morning shift...<</speech>>
<<speech "clerk3" "Dave">>That a complaint? You should bring it to the owner.<</speech>>
<blockquote>Rusty complained but he took the tray.</blockquote>
<<speech "rusty" "Rusty">>*yawn*<</speech>>
<blockquote>He let out another yawn before continuing to [[table 3.|CH3Begin3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "rusty" "Rusty">>Here you go, darlings.<</speech>>
<blockquote>Rusty slides the plates and tidily place the steaming hot cups on the table.</blockquote>
<<img "Images/gf/gf8.webp" "500px">><</img>>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS">>
<<set $rustysex to "True">>
<<speech "gf" "Jane">>Thanks...<</speech>>
<blockquote>Her fingers crawled on Rusty's exposed skin as her words gained a seductive tune.</blockquote>
<<speech "rusty" "Rusty">>You're welcome.<</speech>>
<blockquote>His tone is as strong as his muscle.</blockquote>
<<speech "rusty" "Rusty">>Enjoy.<</speech>>
<<speech "gf" "Jane">>I will.<</speech>>
<blockquote>He left but Jane's gaze never left his figure.</blockquote>
<<speech "mc" "$name">>................................<</speech>>
<blockquote>She turns to you, winked, and then starts to eat [[her pancakes.|CH3Begin3-5]]</blockquote>
<<elseif $second_finalstate is "Angry">>
<<speech "mc" "$name">>ACCCHHIIAAAAAA!!!<</speech>>
<blockquote>Rusty jumped as you sneezed your brains out.</blockquote>
<<speech "rusty" "Rusty">>What the fuck, dude?<</speech>>
<blockquote>Jane on the other hand, glared at you with extreme intensity.</blockquote>
<<speech "gf" "Jane">>That's what you get for sleeping in the cold.<</speech>>
<<speech "mc" "$name">>B-But you locked the door. *sniff*<</speech>>
<<speech "gf" "Jane">>W-Well, I thought you're gonna have enough sense to turn on the engine.<</speech>>
<<speech "mc" "$name">>I-I don't want to waste the gas.<</speech>>
<<speech "gf" "Jane">>So it's better to be sick on the road, huh?<</speech>>
<blockquote>As you argue, Rusty shrugged and went off undetected.</blockquote>
<<speech "mc" "$name">>*sniff*<</speech>>
<<speech "gf" "Jane">>...Let's just eat, let this warm you up.<</speech>>
<<speech "mc" "$name">>[[Y-Yeah...|CH3Begin3-5]]<</speech>>
<<elseif $second_finalstate is "NoSex">>
<<speech "mc" "$name">>Thanks.<</speech>>
<blockquote>You replied, Jane didn't even notice that Rusty was there as her head is fully turned to the horizon outside.</blockquote>
<<speech "gf" "Jane">>.............................<</speech>>
<blockquote>Finding things to say in this situation is close to impossible.</blockquote>
<<speech "rusty" "Rusty">>Guess, I'll leave you guys to it.<</speech>>
<blockquote>Rusty left, leaving you two alone, still without words. Before long you started eating and [[Jane followed suit.|CH3Begin3-5]]</blockquote>
<<elseif $second_finalstate is "Love">>
<<speech "gf" "Jane">>Thanks~<</speech>>
<blockquote>Jane replied cheerfully as she received her food.</blockquote>
<<speech "rusty" "Rusty">>Holler if you need anything else... or whisper if there's anything you need.<</speech>>
<<speech "mc" "$name">>Dude, it's seven.<</speech>>
<<speech "rusty" "Rusty">>I know.<</speech>>
<blockquote>He smirks and then walks away.</blockquote>
<<speech "mc" "$name">>That guy...<</speech>>
<<speech "gf" "Jane">>Heh~<</speech>>
<blockquote>Jane snickers as she sees your exasperated expression.</blockquote>
<<speech "gf" "Jane">>Come on, let's [[just eat.|CH3Begin3-5]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/centerphoenix.webp" "500px">><</img>>
<blockquote>You pick up the silverware and then starts to eat, Dave's rough voice accompanies your breakfast, but you have to admit that he does sounds good when he's not deliberately screaming the lyrics out like last night.</blockquote>
<blockquote>You look at Jane and she's peacefully enjoying her fluffy pancakes, you smiled when the syrup got on her cheeks in which she'll notice and wipes them while blushing mildly.</blockquote>
<blockquote>The clock says seven and the sun indicates that too. The plan was made yesterday and you don't want to dally much longer here, as to not be late when you reach [[Albuquerque.|CH3Begin3-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>*burp*<</speech>>
<<speech "gf" "Jane">>*tch* *tch* *tch*<</speech>>
<blockquote>The food is all finished and she's there enjoying the afterglow. She was still sleepy when you entered the diner, but now she's seems to be completely up.</blockquote>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS">>
<blockquote>But as she noticed your staring, she begins to smirk once again.</blockquote>
<<speech "mc" "$name">>M-Mmm...<</speech>>
<blockquote>You squirmed under her gaze and she didn't say anything. Instead her her gaze gets even more intense.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>Wanting to run away, you gets up.</blockquote>
<<elseif $second_finalstate is "Angry" or $second_finalstate is "NoSex">>
<blockquote>Her gaze softens compared to the one she gave you earlier this morning.</blockquote>
<<speech "mc" "$name">>...How's the food?<</speech>>
<<speech "gf" "Jane">>As great as yesterday.<</speech>>
<blockquote>She replied, again with a softer tone. Hearing that, you smiled gently and then gets up from your seat.</blockquote>
<<elseif $second_finalstate is "Love">>
<<speech "gf" "Jane">>Yeeeeesssss~?<</speech>>
<blockquote>You were staring too intensely that she caught you red-handed.</blockquote>
<<speech "mc" "$name">>O-Oh, u-umm... f-food's great, right?<</speech>>
<<speech "gf" "Jane">>Heh, you're lucky I'm your girlfriends, or else I'll kick your ass.<</speech>>
<<speech "mc" "$name">>Hey, I won't stare at anyone except my girlfriend.<</speech>>
<<speech "gf" "Jane">>Oh, what a romantic.<</speech>>
<blockquote>With a little smile, you get up from your seat and look at the empty dishes.</blockquote>
<</if>>
<blockquote>Picking up all the dirty dishes you deliver them to Dave.</blockquote>
<<speech "clerk3" "Dave">>I'm not paying your morning shift either.<</speech>>
<<speech "mc" "$name">>J-Just wanna help.<</speech>>
<blockquote>Dave took the plate and put them on the sink, as he turned around, you pull out your weapon. The free breakfast coupon.</blockquote>
<<speech "mc" "$name">>You guys accept th-<</speech>>
<<speech "clerk3" "Dave">>But thanks for yesterday, we wouldn't survive without you, so all these is on the house!<</speech>>
<<speech "mc" "$name">>............................<</speech>>
<blockquote>You got your free breakfast, but you feel hollow inside. With that, you return to your table, [[dejected.|CH3Begin3-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf7.webp" "500px">><</img>>
<blockquote>But in the midst of your dejection, Jane is laughing her ass off.</blockquote>
<<speech "mc" "$name">>...Laugh all you want.<</speech>>
<<speech "gf" "Jane">>Oh, I will.<</speech>>
<<speech "mc" "$name">>*thud*<</speech>>
<blockquote>You slammed your head on the table, making a huge impact.</blockquote>
<<speech "gf" "Jane">>Careful, you'll make a mark. And speaking about mark.<</speech>>
<<speech "mc" "$name">>...The crater?<</speech>>
<<speech "gf" "Jane">>Exactly.<</speech>>
<blockquote>Jane turns her phone [[to you.|CH3Begin3-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/meteor.webp" "700px">><</img>>
<<speech "mc" "$name">>W-Wow...<</speech>>
<<speech "gf" "Jane">>It's always impressive, right?<</speech>>
<blockquote>Jane smiled as she look at the map and then gauge the distance between this place and Albuquerque.</blockquote>
<<speech "gf" "Jane">>From here we'll drive from eight, then we'll be there by ten, spend an hour or two, and continues on.<</speech>>
<<speech "mc" "$name">>Holbrook for lunch?<</speech>>
<<speech "gf" "Jane">>Yup. It'll be a fifty minutes drive.<</speech>>
<<speech "mc" "$name">>I'll do it in twenty.<</speech>>
<<speech "gf" "Jane">>I'll call your mom.<</speech>>
<<speech "mc" "$name">>................................<</speech>>
<blockquote>She continues to swipe on her phone to see [[what's next.|CH3Begin3-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/forest.webp" "700px">><</img>>
<<speech "gf" "Jane">>After lunch we'll go to the forest.<</speech>>
<<speech "mc" "$name">>Mmm.<</speech>>
<<speech "gf" "Jane">>Twenty minutes away from Holbrook. So, I think we'll be done by four.<</speech>>
<<speech "mc" "$name">>We're still a long way to go to Albuquerque, right?<</speech>>
<<speech "gf" "Jane">>Three hours away, why?<</speech>>
<blockquote>You incline your head from it's position and look at her incredulously.</blockquote>
<<speech "mc" "$name">>That'll be quite a drive.<</speech>>
<<speech "gf" "Jane">>...You're not the only one with a license in this table.<</speech>>
<<speech "mc" "$name">>...Oh, right.<</speech>>
<blockquote>Jane then stops for a moment, considering the destination.</blockquote>
<<speech "gf" "Jane">>But, you're right. I guess we could stop at Grants or Milan.<</speech>>
<<speech "mc" "$name">>Keep it to the US, if you please.<</speech>>
<blockquote>Jane smiled curtly, and sips the last remnants of her drink. The food being done, and the fact that you did little to no unpacking, there's nothing left [[to do here.|CH3Begin3-10]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/npc/clerk3.webp" "400px">><</img>>
<blockquote>You rose from your seat along with Jane, it is time to go. But first, there is something that you want to get.</blockquote>
<<speech "mc" "$name">>Dave, two strawberry crepes please.<</speech>>
<<speech "clerk3" "Dave">>Coming right up.<</speech>>
<blockquote>You tell Jane to go ahead while you wait for the order to be finished. But still, you're still hasn't backed down.</blockquote>
<<speech "mc" "$name">>Can I use these?<</speech>>
<blockquote>You slid two coupons on the counter. Dave laughed heartily then points to the text.</blockquote>
<<speech "clerk3" "Dave">>Breakfast.<</speech>>
<<speech "mc" "$name">>Well, worth a try.<</speech>>
<blockquote>Dave turned back to his workstation.</blockquote>
<<speech "clerk3" "Dave">>Oh, I didn't tell you yesterday, but we take crypto, if that's your thing.<</speech>>
<blockquote>You stare at the coupons silently.</blockquote>
<<speech "mc" "$name">>...No, it's not my thing.<</speech>>
<blockquote>You sit on the chair [[to wait.|CH3Begin3-11]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/dinerphoenix.webp" "500px">><</img>>
<blockquote>By now Dave has stopped singing, there's only the sizzling sound of fire filling the air, though he did engage in some small talks as you wait, ranging from sports, work, to your destination.</blockquote>
<blockquote>The sugary smell from the pan is enticing you, you couldn't wait for it to be ready, even though you bought them for later during the drive. Though knowing Jane, you're sure that it'll vanish in about five minutes.</blockquote>
<blockquote>As your mind wanders to Jane, you turned around from your seat, looking at the parking lot. Now, there's only one car there, only yours. Nina was long gone as you woke up, most likely moving on at dawn. You feel a slight sense of unease as you realized that you will never see her again, not only her but everyone else here.</blockquote>
<blockquote>You shook that glum thought out of your mind and then look at your car. Where Jane is currently sitting, [[waiting for you.|JaneTalk3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/inc/rest1/centerphoenix.webp" "400px">><</img>>
<<if $second_finalstate is "NTR">>
<blockquote>But Jane is not the only one you see in that parking lot. Rusty is currently leaning over your car window, obstructing your view of Jane. For a moment, you feel your saliva thickens.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>Your heart beat harshly as you watch Rusty lowering himself for whisper. And then it dropped as you see the door opened.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>Jane steps out of the car. She looks at the diner, right at you, and gives you her usual winks. Finally, she continues on to [[Room 2.|JaneTalk3-2a]]</blockquote>
<<elseif $second_finalstate is "NTS">>
<blockquote>But Jane is not the only one you see in that parking lot. Rusty is currently leaning over your car window, obstructing your view of Jane. For a moment, you feel your saliva thickens.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>Your heart beat harshly as you watch Rusty lowering himself for whisper. And then it dropped as you feel your phone vibrates.</blockquote>
<<speech "gf" "Jane">>"Can I?"<</speech>>
<blockquote>You look towards the car immediately, Rusty is standing near the door, letting you see Jane. From afar you can see her through the window, she's beckoning you to answer.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Nod your head|JaneTalk3-2b]]>>
<<set $third_ntsbegin to "Granted">><</link>>
<<link [[Shake your head|JaneTalk3-2b]]>>
<<set $third_ntsbegin to "Denied">><</link>>
</blockquote>
<<elseif $second_finalstate is "Angry" or $second_finalstate is "NoSex">>
<blockquote>As you turn back, you see Jane taking a sneaky glance at Rusty who is currently cleaning the floor. Rusty then noticed her gaze and approached her to talk.</blockquote>
<<speech "mc" "$name">>............................<</speech>>
<blockquote>You are a little uneasy as she look at her. But there's one other feeling beside unease that is welling up within you, something that you wouldn't want to mention.</blockquote>
<<speech "clerk3" "Dave">>Here.<</speech>>
<blockquote>You jumped on your seat as Dave [[suddenly interrupted you.|JaneTalk3-2c]]</blockquote>
<<elseif $second_finalstate is "Love">>
<blockquote>As you turn, you can see Jane chatting with Rusty. Her usual personable and cheery attitude always makes her well-liked by everyone, something that sometimes makes you feel a certain way.</blockquote>
<<speech "mc" "$name">>.............................<</speech>>
<<if $second_cheatinterest is "True">>
<blockquote>From afar you can see her hands getting touchy with Rusty, she's affectionately rubbing his huge arms while Rusty himself is reciprocating the touch.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>From here, you cannot see her eyes, but you can clearly see her blush as Rusty touched her back.</blockquote>
<<elseif $second_cheatinterest is "False">>
<blockquote>But that was the extent of their interaction as Jane is keeping a distance between the two of them.</blockquote>
<<speech "mc" "$name">>................................<</speech>>
<blockquote>The way she speaks and laughed might be the same as usual, but there is something more reserved just for you.</blockquote>
<</if>>
<<speech "clerk3" "Dave">>Here you go.<</speech>>
<blockquote>You jumped on your seat as Dave interrupted your little [[peeping session.|JaneTalk3-2c]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<speech "clerk3" "Dave">>What're you looking at, kid?<</speech>>
<<speech "mc" "$name">>AH!<</speech>>
<blockquote>You jumped on your seat as Dave suddenly speaks up with a steaming hot crepes in hand.</blockquote>
<<speech "mc" "$name">>N-Nothing.<</speech>>
<<speech "clerk3" "Dave">>Really?<</speech>>
<blockquote>He frowns his eyebrows, suspicious.</blockquote>
<<speech "mc" "$name">>Y-Yes, a-anyway, thank you.<</speech>>
<blockquote>You quickly grab the crepes, gave him the money, and walks out to the parking lot.</blockquote>
<<if $third_ntsbegin is "Granted">>
<blockquote>Dave's eyes linger on you and the car, realizing that Jane is not there, he then looked around the diner, realizing that Rusty is also not around.</blockquote>
<<speech "clerk3" "Dave">>...There's no way, right?<</speech>>
<blockquote>He stood frozen for a few moments before gathering his thought back.</blockquote>
<<speech "clerk3" "Dave">>Yeah, no fucking way.<</speech>>
<blockquote>With an obviously nervous whistling, he went off to the storage area, wanting to keep his mind off things and wanting to recheck the stock. He missed the moment you entered [[Room 2.|JaneTalk3-3a]]</blockquote>
<<elseif $third_ntsbegin is "Denied">>
<blockquote>Dave's eyes linger on you and the car, where he sees Rusty looking at little bummed out as he stood in front of your car.</blockquote>
<<speech "clerk3" "Dave">>Hm?<</speech>>
<blockquote>Questions is raised inside his mind, until he finally realized that Rusty must've been rejected. Then with a joyful smile, Dave raised his fist in triumph.</blockquote>
<<speech "clerk3" "Dave">>[[Finally!|JaneTalk3-3b]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "clerk3" "Dave">>What're you looking at, kid?<</speech>>
<blockquote>As you still trying to recover, he look at where your eye were.</blockquote>
<<speech "clerk3" "Dave">>Heh, looking at your girlfriend, huh? You know, most people gets tired looking at their partners especially after being together for long.<</speech>>
<<speech "mc" "$name">>Haa... well, not me.<</speech>>
<<speech "clerk3" "Dave">>Hah!<</speech>>
<blockquote>He laughed heartily while handing you the crepes.</blockquote>
<<speech "clerk3" "Dave">>Okay then. Thanks for the patronage.<</speech>>
<<speech "mc" "$name">>Yeah.<</speech>>
<blockquote>You rose from the stool and turn to Dave for the final time.</blockquote>
<<speech "mc" "$name">>I'll see you later, Dave.<</speech>>
<<speech "clerk3" "Dave">>I'll be waiting.<</speech>>
<blockquote>With the final farewell done, you step out of the diner, and walks to [[the car.|JaneTalk3-3c]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-dinerphoenix">
<div class="overlay"></div>
<<speech "clerk3" "Dave">>What're you looking at, kid?<</speech>>
<<speech "mc" "$name">>AH!<</speech>>
<blockquote>You jumped on your seat as Dave suddenly speaks up with a steaming hot crepes in hand.</blockquote>
<<speech "mc" "$name">>N-Nothing.<</speech>>
<<speech "clerk3" "Dave">>Really?<</speech>>
<blockquote>He frowns his eyebrows, suspicious.</blockquote>
<<speech "mc" "$name">>Y-Yes, a-anyway, thank you.<</speech>>
<blockquote>You quickly grab the crepes, give him the money, and walks out to the parking lot.</blockquote>
<<speech "clerk3" "Dave">>....................................<</speech>>
<blockquote>Dave's eyes linger on you and the car, realizing that Jane is not there, he then looked around the diner, realizing that Rusty is also not around.</blockquote>
<<speech "clerk3" "Dave">>...There's no way, right?<</speech>>
<blockquote>He stood frozen for a few moments before gathering his thought back.</blockquote>
<<speech "clerk3" "Dave">>Yeah, no fucking way.<</speech>>
<blockquote>With an obviously nervous whistling, he went off to the storage area, wanting to keep his mind off things and wanting to recheck the stock. He missed the moment you entered [[Room 2.|JaneTalk3-3a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<speech "gf" "Jane">>Mmm... c-come in.<</speech>>
<blockquote>Her sweet voice beckons as you enter the room.</blockquote>
<<speech "rusty" "Rusty">>There you are~<</speech>>
<<vid "Images/gf/gfs35.webm" "500px">>
<blockquote>There they are.</blockquote>
<<speech "rusty" "Rusty">>Sit, we're just [[getting started.|JaneTalk2-4a]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs36.webm" "500px">>
<blockquote>Like yesterday, your eyes follows their lurid movement.</blockquote>
<<speech "gf" "Jane">>$name~ d-don't just sit there.<</speech>>
<blockquote>Your cock is hard, that's for sure. But you are currently holding the crepes as you didn't even think about putting it in the car first.</blockquote>
<<speech "mc" "$name">>M-Maybe later.<</speech>>
<<speech "gf" "Jane">>H-Haa~ Later, you said?<</speech>>
<blockquote>Jane laughed.</blockquote>
<<speech "gf" "Jane">>Maybe we'll find someone on the road, huh?<</speech>>
<<speech "mc" "$name">>T-That's not...<</speech>>
<blockquote>Seeing her usual smirk, you realized that she's [[teasing you.|JaneTalk2-5a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs37.webm" "500px">>
<<speech "gf" "Jane">>OH FUCK!<</speech>>
<blockquote>She suddenly came.</blockquote>
<<speech "rusty" "Rusty">>Hah~ I don't want to keep you from your trip.<</speech>>
<blockquote>Her quivering pussy is instead pummeled once again as Rusty himself is searching for his orgasm.</blockquote>
<<speech "rusty" "Rusty">>I'm close!<</speech>>
<blockquote>You watch the [[scene intensely.|JaneTalk3-6a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-motelphoenix">
<div class="overlay"></div>
<<vid "Images/gf/gfs25.webm" "500px">>
<blockquote>Like yesterday, he came all over Jane. But unlike yesterday, Jane wipes her own face without using your face as the helper.</blockquote>
<<speech "rusty" "Rusty">>Phew~ that was a nice workout.<</speech>>
<<speech "gf" "Jane">>The best one I've had.<</speech>>
<blockquote>She replied while winking at you. Rusty stood up, quickly recovering after that arduous sex.</blockquote>
<<speech "rusty" "Rusty">>Welp, time to clock in.<</speech>>
<blockquote>Then with a dap on your shoulder.</blockquote>
<<speech "rusty" "Rusty">>Have a nice trip, brother.<</speech>>
<blockquote>And turns to Jane.</blockquote>
<<speech "rusty" "Rusty">>If you need anything more, you know where to find me.<</speech>>
<blockquote>He smirks, and walks away.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<<speech "mc" "$name">>..............................<</speech>>
<<speech "gf" "Jane">>Well? Ready to go?<</speech>>
<blockquote>She stretched her hand.</blockquote>
<<speech "mc" "$name">>Yeah.<</speech>>
<blockquote>And [[you took it.|CarCommon3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<blockquote>*thud* the car door closed gently as you sit down in the driver seat.</blockquote>
<<if $third_ntsbegin is "Denied">>
<blockquote>Jane looks at you for a moment and then rolled her eyes, electing to look out of the windows, more specifically to Rusty who is now walking away.</blockquote>
<</if>>
<<speech "mc" "$name">>Here.<</speech>>
<blockquote>You hand over the crepes.</blockquote>
<<speech "gf" "Jane">>O-Oh!<</speech>>
<blockquote>She must've forget that you were ordering one in the first place.</blockquote>
<<speech "gf" "Jane">>T-Thanks.<</speech>>
<blockquote>She took it off your hand quite quickly, she took yours too but place it on the box.</blockquote>
<<speech "mc" "$name">>Just don't wolf it down immediately.<</speech>>
<blockquote>You know it would bounce off her ears but you have to [[at least try.|CarCommon3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<blockquote>You approach your car where Rusty and Jane was chatting around. As you approach you can see Rusty furrowing his brows.</blockquote>
<<speech "rusty" "Rusty">>Come on, man. One more?<</speech>>
<blockquote>His question stops you.</blockquote>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote>Even Jane is straight up pleading.</blockquote>
<<speech "mc" "$name">>I-I...<</speech>>
<blockquote>You are conflicted.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Nod your head|JaneTalk3-4b]]>>
<<set $third_ntsbegin to "Granted">><</link>>
<<link [[Shake your head|JaneTalk3-4b]]>>
<<set $thrid_ntsbegin to "Denied">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<if $third_ntsbegin is "Granted">>
<blockquote>With a complicated heart, you nodded.</blockquote>
<<speech "rusty" "Rusty">>Sweet!<</speech>>
<blockquote>Rusty perked up, Jane also perked up as she immediately gets out of the car.</blockquote>
<<speech "gf" "Jane">>Thank you, baby.<</speech>>
<blockquote>She kissed you on the lips before Rusty takes her hand and drags her to Room 2.</blockquote>
<<speech "mc" "$name">>..................................<</speech>>
<blockquote>You are standing there, stunned, with the crepes on your hand.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>Then you took a deep breath, and walks to [[Room 2.|JaneTalk3-3a]]</blockquote>
<<elseif $third_ntsbegin is "Denied">>
<blockquote>You weakly shakes your head.</blockquote>
<<speech "rusty" "Rusty">>Sigh...<</speech>>
<blockquote>Rusty lets out a huge sigh while Jane, unbeknownst to you, grits her teeth in anger.</blockquote>
<<speech "rusty" "Rusty">>Okay, then.<</speech>>
<blockquote>Rusty was about to walk away before he suddenly turn back to you and Jane.</blockquote>
<<speech "rusty" "Rusty">>But, if you ever changed your mind. You know where to find me.<</speech>>
<<speech "gf" "Jane">>Yeah! I know.<</speech>>
<blockquote>Jane loudly replied, catching you off-guard. Now with a heavier heart, you get [[into the car.|CarCommon3-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>Hey hey, what's so funny?<</speech>>
<blockquote>Jane and Rusty was laughing among themselves as you approach your car.</blockquote>
<<speech "gf" "Jane">>N-Nothing, just l-look at Dave.<</speech>>
<blockquote>Confused, you turn around to see Dave clutching his other pen behind the windows as he's staring at Jane and Rusty.</blockquote>
<<speech "rusty" "Rusty">>Dude hasn't get laid in a year and is getting cranky when I talk to any girl.<</speech>>
<blockquote>You chuckled at the ridiculousness.</blockquote>
<<speech "mc" "$name">>I mean, in this empty highway? I'll be surprised if there's any woman.<</speech>>
<<speech "rusty" "Rusty">>Heh, I know, but there's his wife but she's the cautious type, she never even came here for nearly a year.<</speech>>
<<speech "gf" "Jane">>...His what?<</speech>>
<<speech "rusty" "Rusty">>Wife, he got a wife and two kids. Both is in college, his wife is in Phoenix though, living with her parents, scared of getting out cause of the virus and close to the hospital.<</speech>>
<blockquote>The revelation keeps coming that you're losing your mind.</blockquote>
<<speech "rusty" "Rusty">>I mean, there's a reason why there's a huge space behind the diner. It's his house.<</speech>>
<<speech "mc" "$name">>O-Okay, okay, stop.<</speech>>
<blockquote>You had enough and put a [[stop to it.|JaneTalk3-4c]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<blockquote>You then walks closer to the front door. Putting your hand on the handle but not yet opening it.</blockquote>
<<speech "mc" "$name">>Well then. Guess I'll see you later.<</speech>>
<blockquote>Rusty smiles and nods.</blockquote>
<<speech "rusty" "Rusty">>Later? Already making plan on stopping here on your return trip?<</speech>>
<<speech "gf" "Jane">>Of course. It's cozy, cheap, the food's tasty.<</speech>>
<<speech "rusty" "Rusty">>What about the hospitality?<</speech>>
<<speech "gf" "Jane">>Second to none.<</speech>>
<<speech "rusty" "Rusty">>Cool, I'll be sure to tell that to Lana.<</speech>>
<blockquote>Then with a light tap on your car hood, he said his farewell.</blockquote>
<<speech "rusty" "Rusty">>Safe travels.<</speech>>
<blockquote>And walks away.</blockquote>
<<speech "mc" "$name">>Haa... I'll miss this place.<</speech>>
<blockquote>Finally, you open the door and [[slid inside.|CarCommon3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/gf/gf1.webp" "500px">><</img>>
<blockquote>But with that finally out of the way, your hand is free.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You grasped the steering wheel, taking a deep breath and feeling the rubber touching your hand, then with a final look around the parking lot, you turn to Jane.</blockquote>
<<speech "mc" "$name">>Ready?<</speech>>
<blockquote>She turns to you.</blockquote>
<<speech "gf" "Jane">>Let's go.<</speech>>
<blockquote>You turn on the car engine and braced yourself for the long drive to come.</blockquote>
<<speech "mc" "$name">>Let's g-<</speech>>
<<speech "clerk2" "Lana">>Where the fuck do you think you're [[going?|CarCommon3-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<img "Images/npc/clerk2.webp" "400px">><</img>>
<blockquote>She barged on your car, jumping into the passenger seat without warning and then putting her hands on your shoulder.</blockquote>
<<speech "clerk2" "Lana">>Think I'll let you leave?<</speech>>
<<speech "gf" "Jane">>$name!? W-What did you do?<</speech>>
<blockquote>Lana then dugs her hand inside your pocket and then roughly fished out whatever it is she's looking for.</blockquote>
<<speech "mc" "$name">>W-Wha- oh...<</speech>>
<blockquote>It's the room key.</blockquote>
<<speech "clerk2" "Lana">>People takes the shampoo and soap, never the damn key.<</speech>>
<<speech "mc" "$name">>S-Sorry!<</speech>>
<blockquote>Lana pursed her lips, thinking some evil matter.</blockquote>
<<speech "clerk2" "Lana">>Maybe I'll should let you take it, and then charge for the entire time you're holding that room when you're back.<</speech>>
<<speech "mc" "$name">>W-What makes you think we'll be back?<</speech>>
<<speech "clerk2" "Lana">>You won't?<</speech>>
<<speech "mc" "$name">>W-Well, uhh, I don't know... maybe?<</speech>>
<<speech "clerk2" "Lana">>Good enough for me.<</speech>>
<blockquote>She finally loosens her hold on you and put the key in [[her pocket.|CarCommon3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<blockquote>But she once again put her hands on you, but this time on Jane too.</blockquote>
<<speech "clerk2" "Lana">>Well. Thanks for staying with us.<</speech>>
<blockquote>For once she showed her genuine smile, something she didn't even show when you checked in.</blockquote>
<<speech "clerk2" "Lana">>We'll be waiting for your return trip.<</speech>>
<<speech "mc" "$name">>Y-Yeah.<</speech>>
<blockquote>She then turns to Jane.</blockquote>
<<speech "clerk2" "Lana">>I'm sure Rusty would miss you too.<</speech>>
<<if $second_finalstate is "NTR">>
<<speech "gf" "Jane">>The feeling is completely mutual.<</speech>>
<blockquote>She said while smirking and caressing your thigh, Lana raised her eyebrows but then smiles knowingly.</blockquote>
<<speech "clerk2" "Lana">>Ahhh~ I didn't know you guys were into that.<</speech>>
<<elseif $second_finalstate is "NTS">>
<<speech "gf" "Jane">>We would really want to see him again, right $name?<</speech>>
<blockquote>Jane looks at you while softly caressing your thigh.</blockquote>
<<speech "mc" "$name">>...We'll see.<</speech>>
<blockquote>And Lana smiles knowingly.</blockquote>
<<speech "clerk2" "Lana">>We'll see indeed.<</speech>>
<<elseif $second_finalstate is "Angry" or $second_finalstate is "NoSex">>
<blockquote>Jane gave you an enigmatic glance before replying.</blockquote>
<<speech "gf" "Jane">>...We'll be back very soon.<</speech>>
<<speech "mc" "$name">>Y-Yeah.<</speech>>
<blockquote>Lana raised her eyebrows but didn't pursue the matter much further.</blockquote>
<<elseif $second_finalstate is "Love">>
<blockquote>Jane has her usual cheeky smile.</blockquote>
<<speech "gf" "Jane">>Well, I very much would if this guy pissed me off.<</speech>>
<<speech "mc" "$name">>Ouch, is our love that fragile?<</speech>>
<<speech "gf" "Jane">>Oh, very much, yeah.<</speech>>
<blockquote>You two shares a saccharine smile.</blockquote>
<<speech "clerk2" "Lana">>So young, so in love... makes me wanna retch.<</speech>>
<blockquote>Lana shivers in the back.</blockquote>
<<speech "clerk2" "Lana">>Dave has his wife and kids, the young has life ahead of them, but here, there's only me, all alone in this desert, where can I find my oasis?<</speech>>
<<speech "mc" "$name">>There's Rusty.<</speech>>
<<speech "clerk2" "Lana">>Fuck no.<</speech>>
<</if>>
<blockquote>Lana then gets up, and gets out of the car.</blockquote>
<<speech "clerk2" "Lana">>Anyway, I hope you reach Miami safely.<</speech>>
<<speech "gf" "Jane">>Thanks, Lana.<</speech>>
<<speech "clerk2" "Lana">>Yup, 'kay, then. See ya.<</speech>>
<blockquote>With that parting words, she [[closed the door.|CarCommon3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-parkingphoenix">
<div class="overlay"></div>
<<speech "mc" "$name">>Well...<</speech>>
<blockquote>You hold the steering wheel once again.</blockquote>
<<speech "mc" "$name">>Ready to go?<</speech>>
<<img "Images/gf/gf1.webp" "500px">><</img>>
<blockquote>She looks a bit exasperated.</blockquote>
<<speech "gf" "Jane">>Been ready since the key was in your pocket.<</speech>>
<<speech "mc" "$name">>M-My bad.<</speech>>
<blockquote>You turn your head on the road.</blockquote>
<<speech "mc" "$name">>Time to go.<</speech>>
<blockquote>And [[drive.|PhoenixRoad3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<set $location to "AZ Highway">>
<<set $locationImage to "Highway1">>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>You reentered the sparsely populated highway quite easily, glancing at your rear view mirror one last time as you drive away.</blockquote>
<<speech "mc" "$name">>And that was the first day...<</speech>>
<<speech "gf" "Jane">>A very eventful first day. And a very promising second one.<</speech>>
<blockquote>Jane quips, still amused from earlier event.</blockquote>
<<speech "gf" "Jane">>Literally till you stepped on it.<</speech>>
<<speech "mc" "$name">>Gimme a break. This is literally my first time ever going on a road trip.<</speech>>
<<speech "gf" "Jane">>Is it?<</speech>>
<<speech "mc" "$name">>My first time ever going to a hotel by myself.<</speech>>
<<speech "gf" "Jane">>Guess you'll be lost without me, huh?<</speech>>
<<speech "mc" "$name">>I wouldn't go that far.<</speech>>
<<speech "gf" "Jane">>Ha! Right.<</speech>>
<blockquote>You gaze at the long road, the car drives along [[the desert highway.|PhoenixRoad3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>The sun hasn't yet shown it's full appearance, it reminds you of the beginning of your trip when the world hasn't fully awaken.</blockquote>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS">>
<blockquote>What happened last night and earlier still fresh in your mind. That was an earth shattering event, something that might destroy any relationship. But as you stole a quick glance at her, she seems rather undisturbed, preferring to talk about your destination and other mundane things.</blockquote>
<blockquote>Though you can feel her usual warmth is almost imperceptibly replaced by something else, something more bestial, you can only hope that this isn't permanent.</blockquote>
<<elseif $second_finalstate is "Angry" or $second_finalstate is "NoSex">>
<blockquote>What happened last night is still fresh in your mind. Though from the looks of it, Jane seems to prefer avoiding the topic entirely. You conversed like it's normal, talking about the earlier motel, the destination, and all the other stuff.</blockquote>
<blockquote>Though you can feel her drifting away during some of the talk, especially those regarding someone else, like Rusty and Lana. It looks like there is a lot in her mind.</blockquote>
<<elseif $second_finalstate is "Love">>
<blockquote>What happened last night is still fresh in your mind, especially what happened before you fell asleep. She talked like normal while being a little more touchy than usual. You can only smile in silence, enjoying the peaceful drive.</blockquote>
<blockquote>You can only hope that this feeling would last forever, or that she would stop being touchy or else you gotta find a quick stop somewhere nearby.</blockquote>
<</if>>
<blockquote>The drive went on for a little while as you chat. Then suddenly you can see the highway exit on the [[left side of the road.|PhoenixRoad3-3]]</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">>I think that's where Nina is going.<</speech>>
<blockquote>You look to the left side of the road where there's a sign saying Las Vegas, the exit leads through a small town and continues on to the horizon.</blockquote>
<<speech "gf" "Jane">>She's going to Vegas.<</speech>>
<<speech "mc" "$name">>I thought she's going to Quebec.<</speech>>
<<speech "gf" "Jane">>There's someone she wants to meet.<</speech>>
<<speech "mc" "$name">>I see. I wonder who.<</speech>>
<blockquote>Jane looks out the window, wondering that same question.</blockquote>
<<speech "gf" "Jane">>...Someone special.<</speech>>
<blockquote>Your car moves softly, getting ever closer to the exit.</blockquote>
<<speech "mc" "$name">>...I hope she get to see that person.<</speech>>
<blockquote>And continues on, leaving the Las Vegas marker [[behind.|PhoenixRoad3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>As you drive along, Jane is getting increasingly quieter, her eyes locked on the rear view mirror.</blockquote>
<<speech "mc" "$name">>Jane?<</speech>>
<blockquote>She's never this quiet, especially after she talked normally just a few minutes ago.</blockquote>
<<speech "gf" "Jane">>$name...<</speech>>
<<speech "mc" "$name">>Yeah?<</speech>>
<<speech "gf" "Jane">>Will we meet another Nina?<</speech>>
<<speech "mc" "$name">>What do you mean?<</speech>>
<blockquote>She had to gather herself before continuing.</blockquote>
<<speech "gf" "Jane">>...Those, umm, those who we'll... never meet again.<</speech>>
<blockquote>Your grip on the wheel tightens.</blockquote>
<<speech "mc" "$name">>...There's still a long road ahead. Yes, we will.<</speech>>
<blockquote>Jane gazed at the long road before continuing.</blockquote>
<<speech "gf" "Jane">>...H-How does it make you feel?<</speech>>
<blockquote class="choice-blockquote">
<<link [[Be optimistic|PhoenixRoad3-5a]]>>
<<set $third_roadtalk1 to "Optimist">><</link>>
<<link [[Be pessimistic|PhoenixRoad3-5b]]>>
<<set $third_roadtalk1 to "Pessimist">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>You softly exhaled and glance at Jane. Giving her a quick comforting smile.</blockquote>
<<speech "mc" "$name">>I welcome the experience.<</speech>>
<<speech "gf" "Jane">>B-But... d-doesn't it make you sad, you know there's no way we could meet her again, right?<</speech>>
<<speech "mc" "$name">>It does, I know, but that's the nature of everything. Everyone has their story, and every story has an end, but because it ended doesn't mean we should despair.<</speech>>
<<speech "gf" "Jane">>B-But...<</speech>>
<<speech "mc" "$name">>Everything makes you feel a certain way, Jane. Nina, and others we'll meet in the future, will have their stories, and they will come and go, but we shouldn't be sad.<</speech>>
<blockquote>Jane is now fully turned to you.</blockquote>
<<speech "mc" "$name">>The thought of never seeing her again can be overwhelming but it will pass. But the memory you shared with her will lingers on.<</speech>>
<<speech "gf" "Jane">>......................................<</speech>>
<<speech "mc" "$name">>So, just cherish that memory.<</speech>>
<blockquote>Finally, you turn towards her.</blockquote>
<<speech "mc" "$name">>And hope that she'll cherish that memory the same way you do.<</speech>>
<blockquote>You smiled.</blockquote>
<<speech "mc" "$name">>Besides, it'll make you appreciate those who are with you.<</speech>>
<blockquote>And you squeeze her open palm. It made her smile, a smile that makes you feel as if all your crimes were forgiven.</blockquote>
<<speech "gf" "Jane">>Yeah... [[r-right...|PhoenixRoad3-6]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>You avert your gaze from her before you answered her question.</blockquote>
<<speech "mc" "$name">>It makes me lonely.<</speech>>
<blockquote>Jane sigh in relief, knowing that she's not alone in feeling that way.</blockquote>
<<speech "mc" "$name">>Seeing people come and go, the thought of never seeing them again makes me feel a certain way, after knowing all about them, like their story just ceased right then and there...<</speech>>
<<speech "gf" "Jane">>Sad, right?<</speech>>
<<speech "mc" "$name">>Right... you too?<</speech>>
<blockquote>Jane looks out the horizon, taking her time composing herself before replying to your question.</blockquote>
<<speech "gf" "Jane">>...More than you realized.<</speech>>
<blockquote>Then you exhaled the breath that you were holding.</blockquote>
<<speech "mc" "$name">>But it makes you appreciate those who's with you.<</speech>>
<blockquote>Jane softly flutters her eyes, letting her gaze travels towards you.</blockquote>
<<speech "mc" "$name">>So let's cherish the memory of meeting her.
<</speech>>
<blockquote>And you looked right at her with a somber smile.</blockquote>
<<speech "mc" "$name">>And hope she will cherish the memory the same way you do.<</speech>>
<blockquote>She then turns to you with her usual smile, as if all your crimes were forgiven.</blockquote>
<<speech "gf" "Jane">>I know, $name... [[I hope so.|PhoenixRoad3-6]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>You smiled at each other for a few moments, finding peace despite the heavy topics.</blockquote>
<<speech "mc" "$name">>But you're the flight attendant here, you traveled all over the world. Surely you handled this before?<</speech>>
<<speech "gf" "Jane">>Well... I'll let you in on a secret. In all my travel I only ever talk if anyone started the conversation.<</speech>>
<<speech "mc" "$name">>Wait, what?<</speech>>
<<speech "gf" "Jane">>My deepest secret. I got lots of friends back home, but I really never talked with anyone I know I'll never meet again.<</speech>>
<<speech "mc" "$name">>I see... I didn't know that...<</speech>>
<<speech "gf" "Jane">>Well, now you know.<</speech>>
<blockquote>She gave you her melancholic smile.</blockquote>
<<speech "gf" "Jane">>I just don't want the regret of farewell.<</speech>>
<<speech "mc" "$name">>...Regret, huh?<</speech>>
<blockquote>Regret, that is the what everything comes down to.</blockquote>
<<speech "gf" "Jane">>..........................................<</speech>>
<blockquote>Jane was silent, until she suddenly glanced and turns to you.</blockquote>
<<speech "gf" "Jane">>$name... [[listen...|PhoenixRoad3-7]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS">>
<<img "Images/gf/gf6.webp" "500px">><</img>>
<blockquote>She looked away and took a deep breath.</blockquote>
<<speech "gf" "Jane">>I didn't regret what happened last night.<</speech>>
<blockquote>Your eyes widened as you hear her say that.</blockquote>
<<speech "gf" "Jane">>We lost ourselves to the moment. And if you're angry with what I did then you should know that it's only natural I did what I did.<</speech>>
<<speech "mc" "$name">>.................................<</speech>>
<blockquote>She's correct.</blockquote>
<<speech "gf" "Jane">>It's way too late to back out. There is no way back. And there is no going back.<</speech>>
<blockquote>Her tone is resolute, and everything seems final, especially given that you're in the middle of the highway, literally and figuratively with no turning back given that you're nearly 400 miles away from home.</blockquote>
<<speech "mc" "$name">>I know, Jane... I know..<</speech>>
<blockquote>You tendered your agreement, and that was the last words you shared for the [[next few miles.|PhoenixRoad3-8]]</blockquote>
<<elseif $second_finalstate is "Angry" or $second_finalstate is "NoSex">>
<blockquote>But she averted her gaze once more.</blockquote>
<<img "Images/gf/gf6.webp" "500px">><</img>>
<<speech "gf" "Jane">>Forget about yesterday.<</speech>>
<blockquote>Her words caught you off-guard.</blockquote>
<<speech "gf" "Jane">>Everything you said, everything I said, all of them.<</speech>>
<<speech "mc" "$name">>............................<</speech>>
<<speech "gf" "Jane">>Don't mention anything about this again, not a peep about your, uhh, f-fantasy, or what I heard, a-anything.<</speech>>
<blockquote>That all seems to be the best possible path to take but, you know you can't fully promise her.</blockquote>
<<speech "mc" "$name">>...I'll try.<</speech>>
<blockquote>Is the best response you could muster, and that was the last words you shared for the [[next miles.|PhoenixRoad3-8]]</blockquote>
<<elseif $second_finalstate is "Love">>
<<img "Images/gf/gf1.webp" "500px">><</img>>
<<speech "gf" "Jane">>Let's make this trip one without regret.<</speech>>
<blockquote>She has that gentle smile on her face, unlike her usual cheery one.</blockquote>
<<speech "mc" "$name">>Wouldn't have it any other way.<</speech>>
<<speech "gf" "Jane">>I'll hold you to that, you know.<</speech>>
<blockquote>She smirk, poking your cheek.</blockquote>
<<speech "mc" "$name">>If you keep poking then I'll hit another car, then we'll regret everything.<</speech>>
<<speech "gf" "Jane">>Well then drive better.<</speech>>
<blockquote>She continues poking your face peacefully as you [[drive on.|PhoenixRoad3-8]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>The drive continues on in a relatively quiet manner. Her usual chattiness seems to have been subdued because of the previous interaction, on your part, you focused your mind on driving as to keep the silence away.</blockquote>
<blockquote>By now, nearly two hours has passed. The sun is nearly at it's peak, shining it's light upon this long desert highway, traffic has also increased from all the highway exit along the way.</blockquote>
<blockquote>After a while, you see Jane grabs the crepes that's been sitting in the cooler and begins to eat it. And now, the silence is filled by the consistent crunch of crispy batter. You certainly wants to eat your portion too, but in a few short minutes, you'll see the marker to your [[destination.|Meteor3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>The nav points to the right, meaning you got to take the next exit.</blockquote>
<<speech "mc" "$name">>We'll get off here...<</speech>>
<blockquote>You swerve to the exit, Jane raised her head from her crepes and begins to observe the length of the road you still have to go through.</blockquote>
<<speech "gf"" Jane">>Desert as far as they eye can see.<</speech>>
<<speech "mc" "$name">>We're only six miles away.<</speech>>
<blockquote>The sign on the road tells you so.</blockquote>
<<speech "gf" "Jane">>Don't you think the meteor should fall closer to the road? It's a bit inconvenient this way.<</speech>>
<<speech "mc" "$name">>Heh, I know, right.<</speech>>
<blockquote>You cracked a smile but continues on to the road leading to the site, though as you drive you feel something odd's afoot.</blockquote>
<<speech "mc" "$name">>...Strange.<</speech>>
<<speech "gf" "Jane">>Yeah?<</speech>>
<<speech "mc" "$name">>Where's everyone else?<</speech>>
<blockquote>Jane notice your concern and she looks around, she also finds no one along the road.</blockquote>
<<speech "gf" "Jane">>Well... there wasn't much people in Lana's motel too, I guess the place hasn't recovered either.<</speech>>
<blockquote>Her explanation makes sense, though there's still doubt in your mind as you [[drive on.|Meteor3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<speech "gf" "Jane">>Look, RV park.<</speech>>
<blockquote>Your eyes move to the place she's pointing to. There's an RV park but like before, it's very sparsely populated.</blockquote>
<<speech "mc" "$name">>Everywhere we go, it's all feel like a ghost town.<</speech>>
<<speech "gf" "Jane">>I know... but look.<</speech>>
<blockquote>She pointed to something else, this time something amusing.</blockquote>
<<img "Images/inc/az2/speed.webp" "500px">><</img>>
<<speech "gf" "Jane">>Heh, what if it broke the speed limit? Nobody could give 'em a ticket.<</speech>>
<<speech "mc" "$name">>Don't underestimate the boys in blue, Jane.<</speech>>
<blockquote>She snickers then suddenly pointed to something else again.</blockquote>
<<speech "mc" "$name">>What now?<</speech>>
<<speech "gf" "Jane">>There's a man on the street.<</speech>>
<blockquote>He wasn't exactly on the street but he's standing on the wayside, besides the RV park with his thumbs up. A hitchhiker.</blockquote>
<<speech "mc" "$name">>Should we?<</speech>>
<<speech "gf" "Jane">>Why not? He's probably going to the crater too.<</speech>>
<blockquote>This road only leads to the crater and nowhere else, with that, you slows down as you get closer to [[the man.|Meteor3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/npc/case.webp" "500px">><</img>>
<blockquote>The stranger lowers his arms and smiles widely as you slow your car.</blockquote>
<<speech "gf" "Jane">>Hey there, cowboy. Need a lift?<</speech>>
<blockquote>The stranger lets out a charming smile right at Jane, sending waves of feelings into your spine.</blockquote>
<<speech "case" "Stranger">>Sure am, sugar. You guys heading to Gallup?<</speech>>
<<speech "mc" "$name">>Gallup? Yeah, but we're seeing the crater first, you're heading that way too aren't you?<</speech>>
<<speech "case" "Stranger">>Ah, about that, the crater's closed.<</speech>>
<<speech "mc" "$name">>...................................<</speech>>
<blockquote>You turn to Jane with a shaky pupil, she, in turn, scrambled to check her phone. But you still don't want to believe what he said.</blockquote>
<<speech "mc" "$name">>C-Closed? D-Did the earth have a CO2 lasering done when we're not looking?<</speech>>
<<speech "case" "Stranger">>Heh, good one. But I'm not messing with ya. It's closed cause of health concern. Take it from me, man, I work around there.<</speech>>
<blockquote>Suddenly, Jane gasped.</blockquote>
<<speech "gf" "Jane">>H-He's right... t-the statement was just released this morning...<</speech>>
<<speech "mc" "$name">>*thud*<</speech>>
<blockquote>And like a meteor, your head hits the [[steering wheel.|Meteor3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>Your shoulders sag and you lost all sense of reality. In this void, there is only you and the increasingly far dream of that crater.</blockquote>
<<speech "gf" "Jane">><small>Get in.</small><</speech>>
<<speech "case" "Stranger">><small>Thank you.</small><</speech>>
<blockquote>The outside world seems to have disappear, leaving you all alone in that void of despair and nothingness.</blockquote>
<<speech "case" "Stranger">><small>So, what's a couple of Californians doing here so early in the morning?</small><</speech>>
<<speech "gf" "Jane">><small>Oh, how did you know where we're from?</small><</speech>>
<<speech "case" "Stranger">><small>Your charming mannerism.</small><</speech>>
<blockquote>You didn't even realize that the stranger is already inside your car.</blockquote>
<<speech "case" "Stranger">>Ah, where's my manners, let me [[introduce myself.|Meteor3-5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/npc/case2.webp" "500px">><</img>>
<<speech "case" "Case">>The name's Case, a former cowboy.<</speech>>
<<speech "gf" "Jane">>Jane, a former globetrotter.<</speech>>
<blockquote>They shook hand, Sharing simple pleasantry then it turns to you.</blockquote>
<<speech "mc" "$name">>...$name. Fan of a formerly living huge reptiles.<</speech>>
<blockquote>As the sense of defeat fades, you raised your head and turns to the man at the passenger seat.</blockquote>
<<speech "mc" "$name">>Gallup, right?<</speech>>
<<speech "case" "Case">>Yup, you're going there?<</speech>>
<<speech "mc" "$name">>We are, though I think we'll stop at Holbrook and the Petrified Forest, but we'll go straight to Holbrook from here.<</speech>>
<<speech "case" "Case">>It's up to you, I'm the passenger here. You can even take a detour to Texas if you want.<</speech>>
<<speech "gf" "Jane">>Really?<</speech>>
<<speech "case" "Case">>No, I'm just kidding, please don't.<</speech>>
<blockquote>You couldn't help but to smirk, but seeing as the conversation might took some time, you might as well turn back now.</blockquote>
<<speech "mc" "$name">>Kay, guys. [[Buckle up.|Meteor3-6]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>You make a U-turn in this silent road, knowing there's nobody here to stop you anyway.</blockquote>
<<speech "case" "Case">>So, where're you two beautiful pair going to?<</speech>>
<<speech "gf" "Jane">>We're going to the coast, Miami.<</speech>>
<<speech "case" "Case">>Ahh~ seeing the sights as you go, huh?<</speech>>
<<speech "mc" "$name">>Yeah, and that crater was... our destination.<</speech>>
<blockquote>You said, already recovered from your mental breakdown.</blockquote>
<<speech "gf" "Jane">>But you're not too broken up about it.<</speech>>
<<speech "mc" "$name">>I'm already planning for the return trip.<</speech>>
<<speech "gf" "Jane">>Ohhh~ forward thinking, I like it.<</speech>>
<<speech "mc" "$name">>And I'm praying that if the next one come down, it'll be in our neighborhood.<</speech>>
<<speech "gf" "Jane">>Hush!<</speech>>
<blockquote>She flicks your nose. From behind, [[Case is chuckling to himself.|CaseIntro3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote>By now, you have reentered the main highway, and already changed the destination on the navigation app. Now, it's to Holbrook.</blockquote>
<<speech "gf" "Jane">>So, what were you doing in that RV park, Case?<</speech>>
<<speech "case" "Case">>Well... I lived there... Used to at least.<</speech>>
<<speech "mc" "$name">>Used t-<</speech>>
<<speech "gf" "Jane">>Was it rough living there during the lockdown?<</speech>>
<blockquote>Jane rushed in, pinching your thigh.</blockquote>
<<speech "case" "Case">>For some it may, i lost count on how many times I heard the family next door screaming at each other. But, me? I love it.<</speech>>
<blockquote>Case talked while looking back to the RV park behind you.</blockquote>
<<speech "case" "Case">>Far from the city, and far from any meddling hand. Here, we're truly free.<</speech>>
<blockquote>Case smiles as he talk about his former place of living.</blockquote>
<<speech "case" "Case">>It's the wild west over here, well, except the gunplay, but there's lots of cows.<</speech>>
<blockquote>He said while pointing to the right side of the road, where there are cattle openly grazing everywhere, some of them are eyeing you as you stare at them.</blockquote>
<<img "Images/inc/az2/cows.webp" "500px">><</img>>
<<speech "mc" "$name">>That big one is staring at me...<</speech>>
<<speech "case" "Case">>That? Oh, that's Rusty, he's a bit intense.<</speech>>
<<speech "gf" "Jane">>...Who?<</speech>>
<<speech "case" "Case">>That huge cow's name.<</speech>>
<<speech "mc" "$name">>...PFT!!!<</speech>>
<blockquote>You lost it, laughing to yourself, Jane snickers too but she hides her face as she laughed. Case was the only one sitting around, wondering what in the world is so funny. In the end, he's just sitting back, lounging in the passenger seat, [[enjoying the moment.|CaseIntro3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>As the road continues the laughter soon subsides, replaced by a comfortable silence inside of the car, soon after that, Case continues to converse and Jane, despite the talk you had earlier, couldn't help but to engage.</blockquote>
<blockquote>And as the miles goes by you feel your eyes attracted to rear view mirror, you sneak a glance at the man in the backseat who is currently chatting with your girlfriend.</blockquote>
<blockquote>There's something within him, something you can't put your fingers on, but you don't feel much danger. He's a far different man from Rusty who's imposing figure could blot out the sun, Case, on the other hand, is fit, but there is a certain danger you felt from the way he [[speaks.|CaseIntro3-3.5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<<if $second_finalstate is "NTR">>
<blockquote>After that, from the corner of your eyes you can see Jane fully engaged in the conversation, she's laughing way too much at his jokes, as if you're not even there.</blockquote>
<blockquote>Then from the mirror you can see Case getting ever closer, using his words and body language like a practiced Casanova, sometimes he stole a glance at you but he continues on after realizing that you're not doing anything to stop them.</blockquote>
<blockquote>They went through lots of topics but a few miles after that they settle into silence, but before that they shared one long look at each other, a look that is tinged with [[flirtation.|CaseIntro3-4a]]</blockquote>
<<elseif $second_finalstate is "NTS">>
<blockquote>After that, from the corner of your eyes you can see Jane engaged in the conversation, she's laughing, sometimes too much, at his jokes, but she always spared a quiet look at you.</blockquote>
<blockquote>Then from the mirror you can see Case getting ever closer, using his words and body language like a practiced Casanova, sometimes he stole a glance at you, wondering if you're ever going to interfere.</blockquote>
<blockquote>They then continues to talk, but as they talk, Jane continues to look at you, sometimes even blatantly staring. She's testing your boundary. What will you do...?</blockquote>
<blockquote class="choice-blockquote">
<<link [[Let them talk|CaseIntro3-4a]]>>
<<set $third_casents1 to "Talk">><</link>>
<<link [[Interfere|CaseIntro3-4b]]>>
<<set $third_casents1 to "NoTalk">><</link>>
</blockquote>
<<else>>
<blockquote>After that, from the corner of your eyes you can see Jane engaged in the conversation, but you realized that she's keeping her distance, redirecting the topic when Case used his silver tongue on her, fully sensing what he's doing.</blockquote>
<blockquote>But from the mirror you can see that Case is not one to back down, after realizing that his tactics wouldn't work he begin to talk about something else to make her open up, it seems to have work as Jane began to talk openly.</blockquote>
<blockquote>You can see him slowly chipping away at her defense, maybe it's time for you to rescue her?</blockquote>
<blockquote class="choice-blockquote">
<<link [[Let them talk|CaseIntro3-4c]]>>
<<set $third_caseneutral1 to "Talk">><</link>>
<<link [[Distract|CaseIntro3-4b]]>>
<<set $third_caseneutral1 to "Distract">><</link>>
</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<speech "mc" "$name">>Look, Rusty.<</speech>>
<blockquote>You suddenly pointed to another huge cow that is grazing freely.</blockquote>
<<if $third_ntsbegin is "Denied">>
<blockquote>It draws a smile from Jane but she rolled her eyes at your attempt to distract them.</blockquote>
<<else>>
<blockquote>Jane snapped back to reality after hearing your voice, getting zapped and then looks outside the window at the cow you're pointing at.</blockquote>
<</if>>
<<speech "gf" "Jane">>O-Oh, but they look quite similar.<</speech>>
<<speech "case" "Case">>The one with clipped ear? She's actually very famous here. She's Barbara, old as hell, I think she saw the meteor impact.<</speech>>
<blockquote>As soon as he said that, an uproar of laughter can be heard coming from the seat right next to you. But as you turn to the suspect, she's actually tries to stifle her laughter. On your part, you're keeping a straight face.</blockquote>
<<speech "case" "Case">>Again? Geez, what's so funny?<</speech>>
<blockquote>You can only shake your head in silence, putting your eyes fully [[on the road.|CaseIntro3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<blockquote>You let them continue talking and chose to focus on the road.</blockquote>
<<speech "case" "Case">>Former globetrotter, huh? Let me guess, you're a pilot?<</speech>>
<<speech "gf" "Jane">>Ahh~ that's close. Flight attendant, used to be.<</speech>>
<<speech "case" "Case">>They clipped your wings, huh?<</speech>>
<<speech "gf" "Jane">>I guess... you?<</speech>>
<<speech "case" "Case">>Yep, got kicked out of my job in Winslow, now here I am.<</speech>>
<blockquote>He said, resigned, but quite easily.</blockquote>
<<speech "case" "Case">>Guess we folks should stick together, huh?<</speech>>
<<speech "gf" "Jane">>Yup.<</speech>>
<blockquote>Case stretched his hand for a fist bump, which Jane returned with a smile. But Case didn't stop there, he suddenly fully focused his gaze to Jane's eye.</blockquote>
<<speech "case" "Case">>But are you going back to the sky after all of this is done?<</speech>>
<<speech "gf" "Jane">>...I don't know. M-Maybe if they'll take me back.<</speech>>
<blockquote>Case smiled, sending flutters to her stomach.</blockquote>
<<speech "case" "Case">>I'm willing to bet on my life that they'll come ringing the moment it's over, cause you might be the most beautiful woman I've ever laid my eyes on.<</speech>>
<blockquote>He said nonchalantly before poking into his pants to look at his phone. Jane on the other hand, is a little stunned.</blockquote>
<<speech "mc" "$name">>[[......................................|CaseIntro3-5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<if $third_casents1 is "Talk">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>She smirked as she saw you enabling her.</blockquote>
<<speech "gf" "Jane">>Heeee~<</speech>>
<blockquote>She even softly laughed at your behavior.</blockquote>
<</if>>
<blockquote>They then stopped talking, but the tension lingers. You can see Jane smirking right beside you and shakes her head as you continue to enables her behavior.</blockquote>
<<speech "gf" "Jane">>How far are we to Holbrook?<</speech>>
<blockquote>You look at the satnav.</blockquote>
<<speech "mc" "$name">>Twenty miles.<</speech>>
<<speech "gf" "Jane">>Ahh~ what a shame, we were having such a nice conversation, right Case?<</speech>>
<<speech "case" "Case">>We could still have a nice conversation in Holbrook.<</speech>>
<<speech "gf" "Jane">>Ahh~ that's right, you'll be with us till we reach Gallup after all...<</speech>>
<blockquote>Then with a small glance at your crotch, she smirks and looks out the [[horizon.|CaseIntro3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>The drive then continues on without any other huge events, by now the sun is close to the top but because you skipped the crater, you are running early by at least two whole hours.</blockquote>
<blockquote>Soon the scenery changed and you pass through the city of Winslow, though because you're sticking into the highway, you didn't have the chance to look at the city, but then, Case started talking, filling the air with some interesting story about the cities on your path, acting as your tour guide.</blockquote>
<blockquote>You listened to him, as did Jane, spellbound to his stories. And Case, being a local and well-traveled man, knows a lot about everything. Soon enough the stories became an enjoyable ambient.</blockquote>
<blockquote>But every drive must come to an end, and a few miles after you passed Joseph City, the scenery changed once again, showing multiple buildings right in front of you, and unlike what you did in Winslow, you drive your car on the right, exiting the highway, and entering your destination. [[Welcome to Holbrook.|HolbrookEnter3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-holbrookstreet">
<div class="overlay"></div>
<<set $location to "Holbrook">>
<<set $locationImage to "Holbrook">>
<blockquote>The car rolls on through the streets of Holbrook. There are few locals walking around the city, going to their preferred establishment for the day. But as you look around, your eyes met another pair of eyes.</blockquote>
<<speech "mc" "$name">>Whoa!<</speech>>
<<speech "gf" "Jane">>What's up?<</speech>>
<<img "Images/inc/az2/dinosaur1.webp" "500px">><</img>>
<<speech "mc" "$name">>Dinosaur.<</speech>>
<<speech "gf" "Jane">>Oh... that's actually cool as hell.<</speech>>
<blockquote>A huge statue of a dinosaur greets you with it's scaly skin as you enter the city.</blockquote>
<<speech "case" "Case">>There's more to see here, brother. [[Look there.|Holbrook3-1,5]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-steakpark">
<div class="overlay"></div>
<blockquote>His guidance led you to a fiery red building with a huge sign saying "Tim's Steakhouse", unconsciously you sped up, mouth already watering at the tought of beef.</blockquote>
<<speech "gf" "Jane">>Wipe that droll off your face.<</speech>>
<blockquote>You didn't heed her request and continue on driving, then you pull inside the empty parking lot, with Case being the first one to get out.</blockquote>
<<speech "mc" "$name">>Whoa!<</speech>>
<<speech "gf" "Jane">>Sup?<</speech>>
<<speech "mc" "$name">>Dinosaur.<</speech>>
<<img "Images/inc/az2/dinosaur3.webp" "500px">><</img>>
<blockquote>Right across the street is pack of dinosaurs statue.</blockquote>
<<speech "case" "Case">>It's everywhere around here. I heard that the man from the shop over there was the first one to do it, then everyone else joined in the fun, who wouldn't want a dinosaur in their property, right?<</speech>>
<<speech "mc" "$name">>Exactly, Now I want one in my place.<</speech>>
<<speech "gf" "Jane">>In our neighborhood?<</speech>>
<blockquote>Your mind immediately went to the rascals around the street who spray painted everything.</blockquote>
<<speech "mc" "$name">>...Yeah, this thing will turn into a Porcupine in a week.<</speech>>
<blockquote>Again, you feel dejected.</blockquote>
<<speech "case" "Case">>Come on, then. Let's come in, it looks like there's nobody here.<</speech>>
<blockquote>Case called from the opened door, making you and Jane [[walk inside.|HolbrookEnter3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<blockquote>Behind the counter is a stern looking man, muscular and quite tall.</blockquote>
<<speech "clerk4" "Owner">>Case.<</speech>>
<<speech "case" "Case">>Owner.<</speech>>
<blockquote>He curtly said and then his eyes turned on you.</blockquote>
<<speech "clerk4" "Owner">>Welcome to Tim's Steakhouse. As he said, there's no one here, so pick your seat and call me when you're ready to make an order.<</speech>>
<blockquote>He said like a well-rehearsed machine, with just enough hospitality to not scare you away. Then following his lead, you and Jane walks to the windows seat, where you can see the pack of dinosaurs, while Case walks to the counter and chat with the owner.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You exhaled and sit down, opening the menu that is laying on the table. Jane sits in front of you, staring for a moment before [[speaking.|HolbrookEnter3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<img "Images/gf/gf13.webp" "500px">><</img>>
<<speech "gf" "Jane">>What do you think of Case?<</speech>>
<blockquote>Jane speaks, making your raise your eyes from the menu.</blockquote>
<blockquote class="location">Your action has consequences</blockquote>
<<if $second_finalstate is "NTR" or $third_casents1 is "Talk">>
<<speech "gf" "Jane">>Haa~ don't answer that.<</speech>>
<blockquote>Jane takes her eyes off you and into the two men that are currently chatting.</blockquote>
<<speech "gf" "Jane">>Being all silent, letting us talk, letting it all play out... I can see you from miles away, $name.<</speech>>
<<speech "mc" "$name">>...................................<</speech>>
<<speech "gf" "Jane">>So predictable.<</speech>>
<blockquote>Your eyes drill holes into the menu.</blockquote>
<<speech "gf" "Jane">>And [[soooo hopeless...|HolbrookEnter3-5]]<</speech>>
<<elseif $third_casents1 is "NoTalk">>
<<speech "gf" "Jane">>Wait... don't answer that.<</speech>>
<blockquote>Jane takes her eyes off you and into the two men that are currently chatting.</blockquote>
<<speech "gf" "Jane">>...I said I didn't regret it, right?<</speech>>
<<speech "mc" "$name">>...yeah.<</speech>>
<blockquote>Jane looks into your eyes.</blockquote>
<<speech "gf" "Jane">>But do you?<</speech>>
<blockquote>Your eyes drill holes into the menu.</blockquote>
<<speech "gf" "Jane">>If you do, well... try your best to [[stop me.|HolbrookEnter3-5]]<</speech>>
<<elseif $third_caseneutral1 is "Talk">>
<<speech "mc" "$name">>Case? He's fine.<</speech>>
<blockquote>She raised her eyebrows as you said that.</blockquote>
<<speech "gf" "Jane">>Really? Fine? That's it?<</speech>>
<<speech "mc" "$name">>W-Well, I'm an IT guy, and we're pretty famous for having impeccable people skills. A-Anyway, what's your take?<</speech>>
<<speech "gf" "Jane">>He's a playboy.<</speech>>
<<speech "mc" "$name">>Agreed.<</speech>>
<blockquote>You agreed almost immediately.</blockquote>
<<speech "gf" "Jane">>...And?<</speech>>
<<speech "mc" "$name">>...And?<</speech>>
<blockquote>You look away, feigning ignorance.</blockquote>
<<if $second_finalstate is "Angry">>
<<set $third_ntrpath to "NTR">>
<blockquote class="location">Your action has massive consequence</blockquote>
<blockquote>Something she caught quite easily as her eyes widened, surprised, and then she grits her teeth.</blockquote>
<<speech "gf" "Jane">>...If that's what you wish.<</speech>>
<blockquote>And immediately went to [[her menu.|HolbrookEnter3-5]]</blockquote>
<<elseif $second_finalstate is "Confused" or $second_finalstate is "Love" or $second_finalstate is "NoSex">>
<<set $third_ntrpath is "Cheat">>
<<speech "gf" "Jane">>You're just letting him flirt like that?<</speech>>
<<speech "mc" "$name">>W-Well, I-I'm, u-umm...<</speech>>
<<speech "gf" "Jane">>Be careful, $name...<</speech>>
<blockquote>Jane shakes her head and went to [[her menu.|HolbrookEnter3-5]]</blockquote>
<</if>>
<<elseif $third_caseneutral1 is "Distract">>
<<speech "mc" "$name">>Case? He's fine.<</speech>>
<blockquote>She raised her eyebrows as you said that.</blockquote>
<<speech "gf" "Jane">>Really? Fine? That's it?<</speech>>
<<speech "mc" "$name">>W-Well, I'm an IT guy, and we're pretty famous for our impeccable people skills. A-Anyway, what's your take?<</speech>>
<<speech "gf" "Jane">>He's a playboy.<</speech>>
<<speech "mc" "$name">>I could see that...<</speech>>
<<speech "gf" "Jane">>And?<</speech>>
<<speech "mc" "$name">>Don't fall for it?<</speech>>
<<speech "gf" "Jane">>That's quite unreassuring, $name.<</speech>>
<<speech "mc" "$name">>I'm just saying.<</speech>>
<<speech "gf" "Jane">>Heh~<</speech>>
<blockquote>Jane laughed.</blockquote>
<<speech "gf" "Jane">>I won't. But I like your method, it's subtle, but effective. Getting the local guide to point out the interesting curiosities... l-like that cow.<</speech>>
<<speech "mc" "$name">>Okay, now let's just order something.<</speech>>
<blockquote>Jane snickers before going to [[the menu.|HolbrookEnter3-5]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<img "Images/inc/az2/interior.webp" "400px">><</img>>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS">>
<blockquote>Jane relent from her stare and went back to her menu. Leaving you enough time to compose yourself.</blockquote>
<</if>>
<blockquote>By now the clock strikes eleven, you are early by two whole hours but you don't particularly mind having lunch early, especially if it's as salivating as a steak.</blockquote>
<blockquote>It only took you a few second but you made up your mind, you called the man from earlier and ordered your food, and in that same instance, Jane also made her mind, ordering the same food as yours.</blockquote>
<blockquote>The stern man only nodded, but you can hear Case chuckling from afar. He took your order and walk to the kitchen, before returning to [[the counter.|Restaurant3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<speech "mc" "$name">>...That's the waiter? I thought he owned the place.<</speech>>
<<speech "gf" "Jane">>Maybe it's another Dave's situation, he's the waiter and cashier, but not the chef.<</speech>>
<blockquote>You stare at the big man, his physique is way bigger than even Rusty, but then, you see Case turns around and walk to your table, in his hand there's three cocktails.</blockquote>
<<speech "case" "Case">>Here's a little something for you, as thanks for saving me.<</speech>>
<<speech "gf" "Jane">>Ahh~ you shouldn't.<</speech>>
<<speech "case" "Case">>I couldn't let you go unrewarded, now.<</speech>>
<blockquote>Then without an invitation, he sits right beside [[Jane.|Restaurant3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<blockquote>Jane didn't shimmied away, instead she seems to get closer to him.</blockquote>
<<else>>
<blockquote>Jane shimmied away, giving Case more space to sit.</blockquote>
<</if>>
<<speech "case" "Case">>Here you go, my saviors.<</speech>>
<blockquote>He slid in two glass of juice on the table.</blockquote>
<<speech "gf" "Jane">>Thank you.<</speech>>
<<speech "case" "Case">>Don't mention it, love, I hitched a ride, so gratitude is in order. Besides, I had to use my entire repertoire of charm to coax these out of the old man. You wouldn't want to let my hard work go to waste, hmm?<</speech>>
<blockquote>It seems he's using the same skill on Jane too.</blockquote>
<<speech "mc" "$name">>You know the owner?<</speech>>
<<speech "case" "Case">>Yup, he's my best friend, and I used to live here, well... before something happened.<</speech>>
<blockquote>Another mysterious line. But sensing that they've build enough rapport during the trip, Jane asked him.</blockquote>
<<speech "gf" "Jane">>Something, huh...? You know, you've been quite mysterious.<</speech>>
<<speech "case" "Case">>I love to keep you curious. Do you want to know more?<</speech>>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<blockquote>Jane returned his seductive smile with her own as her fingers are tracing on Case's wrist.</blockquote>
<<speech "gf" "Jane">>i really do...<</speech>>
<<else>>
<blockquote>Jane is a little flustered but she regained herself quite quickly.</blockquote>
<<speech "gf" "Jane">>W-Well, if you don't mind.<</speech>>
<</if>>
<blockquote>Case smiled before then turning to the [[street outside.|Restaurant3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<speech "case" "Case">>It was about a girl.<</speech>>
<<speech "mc" "$name">>Figured as much.<</speech>>
<blockquote>Jane gave you a dirty look but Case laugh at your quip.</blockquote>
<<speech "case" "Case">>Guess I'm that easy to read, huh? But if you want to start from the very beginning then, my life got more complicated, and way more exciting.<</speech>>
<blockquote>That rakish smile on his face got even wider.</blockquote>
<<speech "case" "Case">>I was born just like you, in a city, with well-to-do family, great friends, great school, great university. All about it was great.<</speech>>
<blockquote>Suddenly, Case looks to his sleeve, to the tattoo on his arm that said, an inked print of a mountain, a print that says "Sierra Madre"</blockquote>
<<speech "case" "Case">>But as time goes on, even great becomes ordinary, and before long it becomes a bore. I had everything... but I wanted more.<</speech>>
<blockquote>He smiled as if remembering some fond memories.</blockquote>
<<speech "case" "Case">>One day, I came upon a small post on a stupid forum, it's supposed to be nothing special, just a boomer raging about how "Kids these days can't survive in the real world." heh, at least it was supposed to be that... <</speech>>
<blockquote>You can see Jane, sitting at the edge of her seat.</blockquote>
<<speech "case" "Case">>But it made an impression on me, it made me think, "Could I?" and there was no way I could answer that, unless I tried it myself.<</speech>>
<blockquote>You're sitting there, silent and listening.</blockquote>
<<speech "case" "Case">>So, that's what I did. I packed my bags with clothes, take $500 in my pocket, and I walked out. A bag, some cash, and my name. I didn't even tell anybody.<</speech>>
<blockquote>He took a sip on his cocktail.</blockquote>
<<speech "case" "Case">>It was supposed to be a challenge, one week away with only those, just to see if I could survive. It sounds really good when I came up with that plan.<</speech>>
<blockquote>But it's clearly didn't end well.</blockquote>
<<speech "case" "Case">>I rode a bus all the way to New Orleans. The plan was to find a cheap hotel and then just go around with that money. That plan was utter shit. And my priority was already fucked up cause I wanted to sightsee and have fun.<</speech>>
<blockquote>He snickers.</blockquote>
<<speech "case" "Case">>And as the reward, I wasted all my money by the fourth day.<</speech>>
<blockquote>And he's still smiling.</blockquote>
<<speech "case" "Case">>And then my bag got stolen.<</speech>>
<blockquote>He reminisce as if it's all fond memories.</blockquote>
<<speech "case" "Case">>Leaving me with my [[name.|Restaurant3-4]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<speech "clerk4" "Owner">>Then he drifted all the way here.<</speech>>
<blockquote>The owner suddenly said as he put your orders on the table. Jane quickly takes her phone out and took a quick picture before Case continues his story.</blockquote>
<<speech "case" "Case">>That I did. I was helpless and alone, homeless, aimless, depressed, yet my pride wouldn't let me beg for help.<</speech>>
<blockquote>He smiled again.</blockquote>
<<speech "case" "Case">>But I know what I've lost and I don't want to wallow in my self made disaster. So, I got back on my feet, start hustling in the street, then traveled all over the country doing whatever jobs I could get, it took five years, until I reached Texas.<</speech>>
<<speech "mc" "$name">>Texas?<</speech>>
<<speech "case" "Case">>Yep, worked in a national park as a campground helper.<</speech>>
<<speech "mc" "$name">>Campground helper, huh? Met a lot of girls. I bet.<</speech>>
<<speech "case" "Case">>Bingo. But that was until I met this one girl, Melissa. She was different from all the others. She's so damn beautiful, within and without, that she blinded my eyes when I saw her.<</speech>>
<blockquote>He speaks rather nonchalantly unlike when he talks about his past journey.</blockquote>
<<speech "case" "Case">>At first glance I was charmed, at the second I was bewitched, and the next, I was spellbound. She's like a witch, a very educated one, when we talk it's like she's speaking in cursive...<</speech>>
<blockquote>Your eyes moving around to see Jane still at the edge of her seat.</blockquote>
<<speech "case" "Case">>She stayed there for three days, and during those three days I chased her around like a puppy, but no matter what I did she wouldn't budge, she only wanted to talk, to keep me deeper within her grasp, and nothing more.<</speech>>
<blockquote>As he talk, the owner is simply putting down the dishes.</blockquote>
<<speech "case" "Case">>She told me she lives here, so... being the man that I was, and am, I quit my job and followed her here, hoping to get her heart but... well... she...<</speech>>
<<speech "clerk4" "Owner">>She's my wife.<</speech>>
<blockquote>*thud* Case slammed his hand on [[the table.|Restaurant3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<speech "case" "Case">>Fuck this world, man...<</speech>>
<blockquote>Jane facepalmed, so do you.</blockquote>
<<speech "clerk4" "Owner">>Okay, that's all for the story, do you want something?<</speech>>
<<speech "case" "Case">>How about Melissa?<</speech>>
<<speech "clerk4" "Owner">>Sure, 700 quintillion dollars, cash.<</speech>>
<<speech "case" "Case">>Fuck! Just give me the usual.<</speech>>
<blockquote>The owner notes his order and then went to the kitchen, Case on the other hand gets up, excused himself and went to the bathroom.</blockquote>
<<speech "mc" "$name">>...Interesting guy.<</speech>>
<<speech "gf" "Jane">>Heh.<</speech>>
<blockquote>Jane's eyes wander on the bathroom door.</blockquote>
<blockquote class="location">Your answer has consequences</blockquote>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<<speech "gf" "Jane">>Maybe I should be his Melissa.<</speech>>
<blockquote>You shiver in surprise as you immediately look at her.</blockquote>
<<if $third_casents1 is "NoTalk">>
<blockquote>Her eyes challenged you.</blockquote>
<blockquote class="choice-blockquote">
<<link [[You backed down|Restaurant3-6]]>>
<<set $third_casents2 to "Defeat">><</link>>
<<link [[You stopped her|Restaurant3-6]]>>
<<set $third_casents2 to "Win">><</link>>
</blockquote>
<<else>>
<blockquote>She's not playing around, her eyes alone tell you that. But in the end she decided to go to the dish and start [[eating.|Restaurant3-6]]</blockquote>
<</if>>
<</if>>
<<if $second_finalstate is "Love" or $second_finalstate is "NoSex" or $second_finalstate is "Confused" or $third_ntrpath is "Cheat" or $third_caseneutral1 is "Distract">>
<<speech "gf" "Jane">>Now, I kinda want to see this Melissa.<</speech>>
<<speech "mc" "$name">>And bring up his supressed lust?<</speech>>
<<speech "gf" "Jane">>It isn't that suppressed to be honest.<</speech>>
<<speech "mc" "$name">>Yeah... that's true.<</speech>>
<blockquote>With that, you [[started to eat.|Restaurant3-6]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<img "Images/inc/az2/interior.webp" "400px">><</img>>
<<set $dinosaurhead to "off">>
<<if $third_casents2 is "Defeat" or $second_finalstate is "NTR">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>Her strong gaze is too much for you that you backed down almost immediately, which amused Jane to no end.</blockquote>
<<elseif $third_casents2 is "Win">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>You return her challenge with your own strong gaze, after a while she smiled and turn to the food.</blockquote>
<</if>>
<blockquote>You sink your knife on the steak and put the beef on your mouth, the juiciness immediately punched your mouth, Jane did the same and she let out some involuntary moan which draw a little smirk from your lips.</blockquote>
<blockquote>Soon enough Case returned from the bathroom but he didn't return to your table, instead he went to the counter where the owner was standing at, they talked like old friend despite the circumstances, and a few minutes after that something happened.</blockquote>
<blockquote>From the kitchen, a very beautiful woman with a long flowing blonde hair shows up with a tray of beautifully marbled steak and then proceeds to where the two are. She smiled gently as she set the food down, but the woman didn't go away, she joins their conversation.</blockquote>
<blockquote>You cannot see Case's expression, but you can hear him laughing as they talk, even the stern man cracked a smile once or twice. You trade a quick look with Jane, she softly nodded and keep her gaze away from them, continuing her lunch as you soon do too,</blockquote>
<blockquote>The clock then strikes 12, right at the moment you finished your food, by now the woman is already gone, most likely back to the kitchen, leaving Case and the stern man. With your stomach full, you are ready to [[continue your journey.|Steakhouse3a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<img "Images/inc/az2/interior.webp" "400px">><</img>>
<<if $dinosaurhead is"off">>
<blockquote>By now the steakhouse is filled with some more customers, but it's not as busy as to have you moonlight as a waiter once again, and looking at [[the owner,|CaseOwner3-1]] you don't think he'll appreciate you doing it either</blockquote>
<blockquote>Jane is scrolling her phone, most likely posting the picture she took. [[The kitchen,|Melissa3-1]] while not open for the public to see, let out an amazing smell of beef being smoked, the smell is making you hungry again but you don't think you have enough space for another meat, especially knowing you have Dave's crepes still uneaten.</blockquote>
<blockquote>You raise from your seat and then stretch your legs, your feet is taking you to where the [[dinosaur is standing.|SteakPark3a]]</blockquote>
<<else>>
<blockquote>Everyone is off their feet as you stalked back inside the steakhouse, some kids are scared but some are laughing with their parents taking pictures. On the counter, you could see Case laughing while the owner is still keeping his [[stoic face.|CaseOwner3-1]]</blockquote>
<blockquote>Jane is scrolling her phone, most likely looking at the pictures she just took. [[The kitchen,|Melissa3-1]] while not open for the public to see, let out an amazing smell of beef being smoked, the smell is making you hungry again but you don't think you have enough space for another meat, especially knowing you have Dave's crepes still uneaten.</blockquote>
<blockquote>You raise from your seat and then stretch your legs, your feet is taking you to where the [[dinosaur is standing.|SteakPark3a]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakpark">
<div class="overlay"></div>
<<img "Images/inc/az2/dinosaur3.webp" "500px">><</img>>
<<if $dinosaurhead is "off">>
<blockquote>[[Your car,|JourneyCont3-1]] ⭐ who was all alone is now accompanied by a few more cars. As the lunch time arrives everyone is coming here, not only the locals but judging from the plates, tourists as well. It seems business is better in [[this steakhouse|Steakhouse3a]] than in Dave's diner.</blockquote>
<blockquote>[[The dinosaurs|Dinosaur3-1]] stared at you when you ate, wondering whether to eat the meat or to eat you, this is one of those times you're glad that dinosaur went extinct.</blockquote>
<blockquote>As your eyes wander across the street, you can see a small [[souvenir shop|Souvenir3-1]] decorated with all kinds of dinosaur around them, beside you, Jane is clearly interested, and so are you to be honest.</blockquote>
<<else>>
<blockquote>[[Your car,|JourneyCont3-1]] ⭐ who was all alone is now accompanied by a few more cars. As the lunch time arrives everyone is coming here, not only the locals but judging from the plates, tourists as well. It seems business is better in [[this steakhouse|Steakhouse3a]] than in Dave's diner.</blockquote>
<blockquote>[[The dinosaur|Dinosaur3-1]] is staring at you, treating you as it's kin. As you stand in front of all of them, you feel a strange sense of connection, sadness about their unfortunate fate, hundred of millions of years ago.</blockquote>
<blockquote>The souvenir shop you got your new hat from is right over there, Jane is no longer interested in it, she's only interested in taking a copious amount of your candid picture.</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<img "Images/inc/az2/interior.webp" "400px">><</img>>
<<if $dinosaurhead is"off">>
<blockquote>You approach Case and the owner as they're chatting along near the counter.</blockquote>
<<speech "clerk4" "Owner">>You're done, anything else I could you?<</speech>>
<<speech "mc" "$name">>Ah, no thanks, I'm full enough as it is and I already got some food packed.<</speech>>
<<speech "case" "Case">>Oh, brother, you're missing out on his jerky.<</speech>>
<blockquote>It does sounds nice but you're full and with a heart, you declined.</blockquote>
<<speech "mc" "$name">>Speaking of, you never really told us why you left the RV park.<</speech>>
<blockquote>He smirks seeing your curiosity.</blockquote>
<<speech "case" "Case">>Isn't it obvious? The place is closing up for a few month, so I'm just going home.<</speech>>
<<speech "mc" "$name">>...That's it?<</speech>>
<<speech "case" "Case">>That's it.<</speech>>
<<speech "mc" "$name">>Then why were you so mysterious about it?<</speech>>
<blockquote>By now even the owner knows the answer.</blockquote>
<<speech "clerk4" "Owner">>It's to make your girlfriend curious.<</speech>>
<blockquote>Your eyes went blank.</blockquote>
<<speech "mc" "$name">>For fuck sake...<</speech>>
<blockquote>And walked away leaving Case [[snickering to himself.|Steakhouse3a]]</blockquote>
<<else>>
<blockquote>You approach Case and the owner with your new apparel on.</blockquote>
<<speech "case" "Case">>Nice hat, bro.<</speech>>
<<speech "dino" "$name">>Shit, how do you know it's me?<</speech>>
<<speech "case" "Case">>Cause of her.<</speech>>
<blockquote>Jane is hot on your trails, taking pictures.</blockquote>
<<speech "dino" "$name">>Right...<</speech>>
<<speech "case" "Case">>And cock your head back a little or wear a sweatband, so your sweat don't trickle to your eyes.<</speech>>
<<speech "dino" "$name">>...You a know a lot about this, huh?<</speech>>
<<speech "case" "Case">>Sure am, I used to be a mascot down in Florida, great job but the heat nearly killed me.<</speech>>
<blockquote>You nodded, letting the flaps goes up and down.</blockquote>
<<speech "clerk4" "Owner">>You sure you don't want more meat?<</speech>>
<<speech "dino" "$name">>No, I'm [[still full.|Steakhouse3a]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakrestaurant">
<div class="overlay"></div>
<<img "Images/inc/az2/interior.webp" "400px">><</img>>
<<if $dinosaurhead is "off">>
<blockquote>You gaze at the kitchen doorway, between the salivating aroma of beef you can see the same blonde hair from earlier fluttering as the woman mills about the kitchen.</blockquote>
<blockquote>You knows how she looks, and it is exactly like Case described. Beautiful, is an understatement.</blockquote>
<<speech "gf" "Jane">>Are you falling in love?<</speech>>
<<speech "mc" "$name">>A-Ah!<</speech>>
<blockquote>She's pulling back, feigning being hurt.</blockquote>
<<speech "gf" "Jane">>I can't believe you're doing this to me, baby...<</speech>>
<<speech "mc" "$name">>N-Ngh!<</speech>>
<blockquote>You grunted which amused her.</blockquote>
<<speech "gf" "Jane">>Careful, you sounded like a cow. Wouldn't want her to [[cut you up, now.|Steakhouse3a]]<</speech>>
<<else>>
<blockquote>You gaze at the kitchen doorway, between the salivating aroma of beef you can see the same blonde hair from earlier fluttering as the woman mills about the kitchen.</blockquote>
<blockquote>You knows how she looks, and it is exactly like Case described. Beautiful, is an understatement.</blockquote>
<<speech "gf" "Jane">>Is she looking tasty?<</speech>>
<<speech "dino" "$name">>Not as much as you.<</speech>>
<<speech "gf" "Jane">>Aww.<</speech>>
<blockquote>Then you look back at the doorway, this time focusing on the aroma.</blockquote>
<<speech "dino" "$name">>How do you think a dinosaur tastes like?<</speech>>
<<speech "gf" "Jane">>Lizardy maybe?<</speech>>
<<speech "dino" "$name">>How does a lizard tastes?<</speech>>
<<speech "gf" "Jane">>Don't ask me, you're the carnivore.<</speech>>
<blockquote>Her words rings true, and it seems like your hat is making you want to [[eat lizard.|Steakhouse3a]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakpark">
<div class="overlay"></div>
<<speech "npcgroup" "Clerk">>Welcome to the Dinostore.<</speech>>
<blockquote>Cheery voice from the clerk greeted you as you enter the souvenir store. </blockquote>
<<speech "mc" "$name">>Cool name.<</speech>>
<<speech "npcgroup" "Clerk">>Thanks, my three-year old son comes up with that and it sticks.<</speech>>
<blockquote>You chuckled and then browse the merchandise being sold here, most of them are dinosaur themed accessories like keychains, figurine, and phone cover.</blockquote>
<<speech "gf" "Jane">>$name... look...<</speech>>
<blockquote>There was trepidation within her voice which made you curious, and as you approach her, you see something that you didn't expect.</blockquote>
<<img "Images/inc/az2/hat.webp" "500px">><</img>>
<blockquote>A dinosaur novelty hat.</blockquote>
<<speech "npcgroup" "Clerk">>Oh, yes, that one! It's a bestseller in our store, people can't get enough of it!<</speech>>
<<speech "mc" "$name">>...Is that so?<</speech>>
<blockquote>Suddenly you feel a tug on your sleeve, Jane is smiling ear to ear.</blockquote>
<<speech "gf" "Jane">>Buy it!<</speech>>
<<speech "mc" "$name">>Et tu, Jennie?<</speech>>
<blockquote class="choice-blockquote">
<<link [[Buy it|Souvenir3-2]]>>
<<set $owndinosaur to "Yes">>
<<set $dinosaurhead to "on">><</link>>
<<link [[Don't buy it|Souvenir3-2]]>>
<<set $owndinosaur to "No">>
<<set $dinosaurhead to "off">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakpark">
<div class="overlay"></div>
<<img "Images/inc/az2/dinosaur3.webp" "500px">><</img>>
<<if $dinosaurhead is "off">>
<blockquote>Well-crafted statues of dinosaur are standing before you. Mighty, intimidating, and impressive. All of them are made with extreme care, minding the proportion of their true self while also adjusting it to be a more believable yet still intimidating size.</blockquote>
<<speech "gf" "Jane">>Are you serious about making one in the house?<</speech>>
<<speech "mc" "$name">>...I think I am.<</speech>>
<blockquote>Jane raised her eyebrows.</blockquote>
<<speech "mc" "$name">>I mean, look at it, isn't it impressive?<</speech>>
<<speech "gf" "Jane">>It is, but you just said it'll turn into a porcupine.<</speech>>
<<speech "mc" "$name">>I take that back.<</speech>>
<blockquote>Your immediate answer caught her off-guard.</blockquote>
<<speech "gf" "Jane">>Oh? Why is that?<</speech>>
<<speech "mc" "$name">>Would you want to deface this?<</speech>>
<blockquote>You pointed at the mighty statue.</blockquote>
<<speech "mc" "$name">>No. They'll be in awe, and then fall in love with them, like I did fifteen years ago.<</speech>>
<blockquote>With that, you now have a [[new goal in mind.|SteakPark3a]]</blockquote>
<<else>>
<<speech "dino" "$name">>..................................<</speech>>
<blockquote>You're staring deep into their glossy eyes, and they're looking back at your sharp teeth.</blockquote>
<<speech "gf" "Jane">>Talk to them.<</speech>>
<<speech "dino" "$name">>I will not.<</speech>>
<<speech "gf" "Jane">>Come on, I won't send it to your friends or anything.<</speech>>
<<speech "dino" "$name">>You saying that means you will.<</speech>>
<blockquote>Sensing you won't budge, she's just taking some more pictures from [[another angle.|SteakPark3a]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-steakpark">
<div class="overlay"></div>
<blockquote>You walk to your car with Jane hot on your trails, then you softly slap the hood of your car.</blockquote>
<<if $dinosaurhead is "on">>
<<speech "dino" "$name">>Holy crap this thing is hot.<</speech>>
<blockquote>You murmured as you take off the hat and then throw it inside the car.</blockquote>
<</if>>
<<speech "mc" "$name">>Well, time to go.<</speech>>
<blockquote>Jane looks to the steakhouse.</blockquote>
<<speech "gf" "Jane">>I'll call hi-<</speech>>
<<speech "case" "Case">>No need.<</speech>>
<blockquote>He strolls outside as Jane mentioned him, as if sensing that it's time to go.</blockquote>
<<speech "mc" "$name">>There you are, ready to go?<</speech>>
<<speech "case" "Case">>I'm always ready, brother.<</speech>>
<blockquote>With his usual charming smile he walks towards your car without even looking back.</blockquote>
<<speech "gf" "Jane">>Will you come back here?<</speech>>
<<speech "case" "Case">>Well, depends on whether there's still a place for me in her heart.<</speech>>
<<speech "gf" "Jane">>T-That's... uh...<</speech>>
<<speech "case" "Case">>Nah, just kidding. I'll be back when the RV park reopen.<</speech>>
<blockquote>He said as he opens the front door and sit in the driver's seat.</blockquote>
<<speech "mc" "$name">>.........................................<</speech>>
<<speech "case" "Case">>Oh, I'm just thinking that maybe I should take the wheel, I know a lot about the area, might as well be the guide, right?<</speech>>
<<speech "gf" "Jane">>Mmm... now that I think about it, you do have your crepes uneaten.<</speech>>
<blockquote>Jane went inside the other front door, leaving you outside, wondering if this is the right to go. But as they're already settling in, you open the back door and [[sit down.|JourneyCont3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-holbrookstreet">
<div class="overlay"></div>
<<speech "case" "Case">>It's only thirty miles away, so don't bother sitting tight.<</speech>>
<blockquote>He quips as he started to drive. In that time, Jane hands you your crepes, which you immediately decline.</blockquote>
<<speech "mc" "$name">>I'm still full, maybe further down the road.<</speech>>
<<speech "case" "Case">>By the way, how long are you planning to spend in the forest?<</speech>>
<<speech "gf" "Jane">>It should've been a couple of hours, but as we're ahead in that schedule, I think we could spend a lot more.<</speech>>
<blockquote>You agreed as you stretch your legs in the passenger seat.</blockquote>
<<speech "case" "Case">>Then I'll show you around the north and a little bit on the forest area, that way you'll be in Albuquerque around five.<</speech>>
<<speech "gf" "Jane">>You're the man.<</speech>>
<<speech "case" "Case">>That I am.<</speech>>
<blockquote>Case flashed his usual [[charming smile.|JourneyCont3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-holbrookstreet">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>The drive seems to go quite smoothly as you exit the vicinity of Holbrook.</blockquote>
<<speech "case" "Case">>By the way, you're not taking a picture with the dinosaur?<</speech>>
<<speech "gf" "Jane">>I did.<</speech>>
<blockquote>Jane took lots of selfies while you're not looking, and she took lots of yours too.</blockquote>
<<speech "case" "Case">>I mean, together.<</speech>>
<<speech "gf" "Jane">>Well, $name here is a bit camera shy.<</speech>>
<<speech "case" "Case">>Heh, is that right?<</speech>>
<blockquote>He hid it quite well but there's a very slight tone of condescension in his voice, which you caught.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Stay quiet|JourneyCont3-4]]>>
<<set $third_casents3 to "Defeat">>
<<set $third_caseneutral3 to "Defeat">><</link>>
<<link [[Make joke about it|JourneyCont3-4]]>>
<<set $third_casents3 to "Win">>
<<set $third_caseneutral3 to "Win">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-holbrookstreet">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<if $third_caseneutral3 is "Win">>
<blockquote>Sensing he's making fun of you, you decided to... make fun of yourself.</blockquote>
<<speech "mc" "$name">>Jane, you know I'm not shy. I just got to hide my identity from them.<</speech>>
<blockquote>You said, keeping the straightest face imaginable while staring at the next dinosaur statue.</blockquote>
<<speech "case" "Case">>...Them?<</speech>>
<<speech "mc" "$name">>The- Ah! Shit, sorry, forget I mentioned it.<</speech>>
<blockquote>Case looks very confused but he turns to Jane and see her snickering to herself.</blockquote>
<<speech "case" "Case">>Dammit, you got me. Can't believe I got outfoxed for once.<</speech>>
<blockquote>Case smiled as he continues [[to drive.|JourneyCont3-5]]</blockquote>
<<elseif $third_caseneutral3 is "Defeat">>
<blockquote>Not wanting to raise any tension, you stayed quiet.</blockquote>
<<speech "gf" "Jane">>I tried my best to break him out of his shell, but he didn't budge, I gave up.<</speech>>
<blockquote>Now she's talking as if you're a child.</blockquote>
<<speech "case" "Case">>You can't just give up like that,<</speech>>
<<speech "gf" "Jane">>Nope, not again, never again.<</speech>>
<<speech "mc" "$name">>You're talking like I'm not here.<</speech>>
<<speech "gf" "Jane">>Well then say something.<</speech>>
<blockquote>Jane quipped sharply, taking his side. Case smirks as he continues [[to drive.|JourneyCont3-5]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<set $location to "AZ-NM Highway">>
<<set $locationImage to "AZ-NM Highway">>
<<img "Images/inc/az2/petroad.webp" "500px">><</img>>
<blockquote>The drive continues on without other incident. You enjoy the scenery from the backseat, seeing the sight that you've missed before.</blockquote>
<blockquote>The afternoon sun is shining brightly on top of your head, but thankfully the clouds are present and plenty, it will provide you with the much needed shade during your visit.</blockquote>
<blockquote>Like before, Jane and Case begins to talk, and like you noticed earlier, he's always the one to start the conversation, it seems that your talk from earlier about her fear is mostly true. Despite her appearance and usual mannerism, she wants to keep everyone she meets in arms-length.</blockquote>
<blockquote>Your thought soon changed as Case suddenly enters the right lane, exiting the highway, your eyes drift to the right and left to see that nothing much has changed. You wonder if this is [[truly the place.|PetForest3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<speech "case" "Case">>We're nearly there.<</speech>>
<<speech "mc" "$name">>Really? I thought it would be more quarry like.<</speech>>
<<speech "gf" "Jane">>I told you it's a forest.<</speech>>
<blockquote>Jane said, like a running gag.</blockquote>
<<speech "case" "Case">>Anyway, I think we don't have the time to go to the visitor center so we'll just go straight to the park, okay?<</speech>>
<<speech "mc" "$name">>Sure, man. You're the boss.<</speech>>
<blockquote>The car continues rolling until the gate, you hand Case your card and he paid for the ticket, though before you drive in, the ranger reminds you of your mask.</blockquote>
<<speech "mc" "$name">>Here you go.<</speech>>
<blockquote>You handed a mask to Case, which he took and wear.</blockquote>
<<speech "case" "Case">>Kay, now [[we're ready.|PetForest3-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<set $location to "Petrified Forest">>
<<set $locationImage to "Petrified Forest">>
<blockquote>Case drives slowly, letting you two enjoy the sight on your right. Beautiful endless horizon filled with dunes and colorful mountains.</blockquote>
<<speech "mc" "$name">>Damn...<</speech>>
<blockquote>You mumbled under your breath. Case heard it and enters a small stop where everything can be seen very clearly.</blockquote>
<<speech "case" "Case">>Let's stop here for now.<</speech>>
<blockquote>He knows the spot, and this might be the perfect place to stop. Jane exit the vehicles, and her jaw hits the pavement.</blockquote>
<<speech "gf" "Jane">>This is amazing...<</speech>>
<blockquote>You joined her with a camera in your hand.</blockquote>
<<img "Images/inc/az2/petrified1.webp" "800px">><</img>>
<blockquote>Your eyes wander to the endless skies, to the faraway place that even your eyes cannot reach. Case is sitting inside of the car, not making any words, only observing the sight and observing the two of you.</blockquote>
<blockquote>Jane used her camera and so do you, taking all kinds of picture from all kinds of angles, after a while, you are both satisfied.</blockquote>
<<speech "case" "Case">>Impressed already?<</speech>>
<<speech "gf" "Jane">>O-Of course! Look how beautiful it is.<</speech>>
<<speech "case" "Case">>Beautiful? It's bad.<</speech>>
<<speech "gf" "Jane">>B-Bad?<</speech>>
<<speech "case" "Case">>Lands...<</speech>>
<blockquote>You wanted to throw yourself into the ravine.</blockquote>
<<speech "case" "Case">>Heh, come on! I'll get you guys [[to the top.|PetForest3-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<img "Images/inc/az2/petroad.webp" "500px">><</img>>
<blockquote>Having taken enough photos you got back into the car, still in the backseat while Case is still on the steering wheel.</blockquote>
<blockquote>He drives in that same slow pace, by now every windows is down as you let the air inside. Jane puts her head outside, cheerfully hollering as the badlands accompany your journey.</blockquote>
<blockquote>Case's next destination is the top of the north side, there you can finally see everything with all it's glory. You couldn't wait, and so seems Jane, because as soon as the car enters the parking spot, she bolted out of the vehicle and walks up to the stairs, into the little [[hiking trail.|PetForest3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<blockquote>You set your foot outside of the car, from the corner of your eyes you can see some people congregating in front of a small building.</blockquote>
<<speech "case" "Case">>It's a museum, there's some small pieces of petrified wood around but I think you much rather prefer seeing one in the wild, right?<</speech>>
<blockquote>Case also gets out, he stretched his legs before continuing to the walkway to where Jane is at.</blockquote>
<blockquote>The cloudy skies makes everything feels cooler, but before continuing on, you can't help but to admire everything about this place.</blockquote>
<<speech "npcgroup" "Guide">>-ave some exhibit of the wood that was preserved from the 19th century.<</speech>>
<blockquote>A guide is talking about the park without any hitch or hesitation, signaling her experience.</blockquote>
<<speech "childgroup" "Kid">>Ma'am! If I build a house with petfified wood, would it be a loghouse or a normal house?<</speech>>
<<speech "npcgroup" "Guide">>Ha~ good one, first of all, it's petrified wood, and to answer that question, it's... w-well... umm... w-wait...<</speech>>
<blockquote>Her composed expression suddenly runs cold, you can see her bottom lips trembling as she takes out her trusty guidebook, then not finding anything there, she quickly takes out her phone. Seeing all this, you decided to avert your gaze and continue on where [[Jane is waiting.|PetForest3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<img "Images/inc/az2/petrified2.webp" "800px">><</img>>
<blockquote>At the top is Jane, looking over the horizon with a huge smile on her face. Case is sitting near her, fearlessly with his legs hanging to the cliffs.</blockquote>
<<speech "gf" "Jane">>There you are!<</speech>>
<blockquote>She turned to you with a twinkling eyes.</blockquote>
<<speech "mc" "$name">>Sorry, had to take a breather.<</speech>>
<blockquote>Jane shakes her head slowly but the smile is still there.</blockquote>
<<speech "gf" "Jane">>Yup, you'll go jogging with me when we're back.<</speech>>
<<speech "mc" "$name">>Yeah, sure, whatever.<</speech>>
<blockquote>She turns back to the horizon, enjoying the moment as if she's the only one in the world.</blockquote>
<<speech "gf" "Jane">>.....................................<</speech>>
<blockquote>Seeing her serenity, you can't help but to turn on your [[camera.|PetForest3-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<img "Images/gf/gf14.webp" "700px">><</img>>
<blockquote>And takes her picture.</blockquote>
<<speech "gf" "Jane">>C'mon, at least warn me.<</speech>>
<<speech "mc" "$name">>Then it won't be fun.<</speech>>
<blockquote>She skipped and hopped to your side, looking at the picture.</blockquote>
<<speech "gf" "Jane">>Mmmm~<</speech>>
<<speech "mc" "$name">>Sorry, no retake.<</speech>>
<<speech "gf" "Jane">>Ohh... careful darling, I'm a little vindictive.<</speech>>
<blockquote>She said with a smile.</blockquote>
<<speech "case" "Case">>Well, take your time guys.<</speech>>
<blockquote>Case suddenly said, surprising you and her, but as he said, he is giving you time to [[look around.|PetForest3-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<img "Images/inc/az2/petrified2.webp" "800px">><</img>>
<blockquote>And that's what you did, taking scenery pictures all over. Jane also takes some photos, but unlike you, she chose live subjects and despite your objection, she got some.</blockquote>
<blockquote>The sight of the badlands is stunning, with it's reddish mountain and it's shiny peaks, you find it hard to believe that it's all naturally formed. And unlike the sight below, this badlands don't stretch all the way into the horizon but instead gives way to the wide open terrain, you wonder what did the ancient people did with all these spaces, did they utilized it? Or did they consider it holy, letting nature stay to themselves like it is now.</blockquote>
<blockquote>Thoughts swirls within you as you feel a slight tug on your sleeve, you turn your back to see Jane being her usual self. She pointed to your watch, as somehow fifteen minutes has gone by. With a slight shake of your head, you follow her and Case back down [[to the car.|PetForest3-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<speech "mc" "$name">>Ahh...<</speech>>
<blockquote>Again, you sit down in the backseat.</blockquote>
<<speech "gf" "Jane">>Geez, $name, What were you watching, huh?<</speech>>
<blockquote>She jokingly said as she shows you a picture on her phone. A picture of you looking absolutely stunned at that spot.</blockquote>
<<if $third_caseneutral3 is "Win">>
<<speech "mc" "$name">>Delete that, Jane. They'll find me.<</speech>>
<blockquote>She cackled like a madman while ignoring your plea.</blockquote>
<<else>>
<<speech "mc" "$name">>Jane...<</speech>>
<<speech "gf" "Jane">>Retake? No retake.<</speech>>
<blockquote>She cackled like a madman.</blockquote>
<</if>>
<<speech "mc" "$name">>Anyway, where do we go next?<</speech>>
<<speech "case" "Case">>In case you've forgotten this park is named Petrified Forest, but you haven't seen any petrified wood yet, right?<</speech>>
<<speech "mc" "$name">>Now that you mentioned it.<</speech>>
<<speech "case" "Case">>Now, I'll take you to the heart of it.<</speech>>
<blockquote>And the trip [[continues.|PetForest3-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<img "Images/inc/az2/petroad.webp" "500px">><</img>>
<blockquote>The car continues rolling, this time downward, taking you back to the same scenery from when you left Holbrook. Ahead is the bridge that you passed by earlier, but now you are on it, and is going deeper into the center of the forest.</blockquote>
<blockquote>As he drive, Case talks about the park and it's history, using his past experience working in a national park and also of his time living in around the area. You're lucky that you picked up an able tour guide.</blockquote>
<blockquote>Case mentioned that the drive is going to take a ten or so minutes. After that ten minutes of unchanging scenery, he finally turns left, into a long road that is split into two, as you enter the one way road, everything seems a little eerie, as the land stretched as far as the eye can see but there is only one car on the road, [[yours.|PetForest3-10]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<speech "mc" "$name">>...Strange.<</speech>>
<<speech "gf" "Jane">>Oh, shut up. You're going to close the site again.<</speech>>
<blockquote>With that, you shut your trap.</blockquote>
<<speech "mc" "$name">>..............................<</speech>>
<blockquote>But that feeling of eeriness soon fade as you reach the end of the road, there are two cars in the parking lot, with their passengers most likely already exploring further on foot.</blockquote>
<<speech "case" "Case">>We have all the place for ourselves.<</speech>>
<<speech "mc" "$name">>Yeah...<</speech>>
<blockquote>When the car is parked, everyone [[disembarked.|PetForest3-11]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<<speech "mc" "$name">>Wow...<</speech>>
<<speech "gf" "Jane">>It's getting a bit stale, you know.<</speech>>
<<speech "mc" "$name">>Okay, I'll stop.<</speech>>
<blockquote>Case chuckled as he leads you further down, where all the wood resides The place can only reached by foot, but it's only a few minutes of walking..</blockquote>
<<speech "mc" "$name">>Here we are?<</speech>>
<blockquote>You've arrived at a large open space that reminds you of the sight you saw earlier.</blockquote>
<<speech "case" "Case">>Ah!<</speech>>
<blockquote>Suddenly he turned around towards you and Jane, with a mischievous smile.</blockquote>
<<speech "case" "Case">>By the way, wanna see my petrified wood?<</speech>>
<blockquote>He said while moving his hand closer to his pants.</blockquote>
<<speech "mc" "$name">>NO NO NO NO NO!!!<</speech>>
<blockquote>And pulls a keychain out of his pocket, a small petrified wood hanging on it.</blockquote>
<<speech "case" "Case">>Cool, right?<</speech>>
<<speech "mc" "$name">>...yeah.<</speech>>
<blockquote>With that, he turned back and continue to walk, you didn't even see his wood.</blockquote>
<<speech "gf" "Jane">>Seriously, what did you expect?<</speech>>
<<speech "mc" "$name">>[[...Petrified wood.|PetForest3-12]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<blockquote>Case pointed to the side where some unassuming small pieces of wood are strewn about on the ground.</blockquote>
<<img "Images/inc/az2/petrified3.webp" "800px">><</img>>
<<speech "gf" "Jane">>Oh~<</speech>>
<blockquote>Jane immediately takes out her phone to immortalize the 200 million years old wood.</blockquote>
<<speech "mc" "$name">>Can I touch it?<</speech>>
<<speech "case" "Case">>Go on, but just touch it okay? If I see you pocketing any of it, even the smallest one, I'll cut your hands off.<</speech>>
<blockquote>You chuckled but it dies down as you realize that he's being completely serious.</blockquote>
<<speech "mc" "$name">>No, I swear I won't.<</speech>>
<<speech "case" "Case">>Then go right ahead.<</speech>>
<blockquote>You move forward, Jane right on your trails, crouch and put your [[finger on it.|PetForest3-13]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<<img "Images/inc/az2/petrified3.webp" "600px">><</img>>
<blockquote>Your finger trace little circles on the texture of that wood, feeling the quartz-like touch on your palm, and in that instant you are transported into another dimension, a place beyond history, beyond memory.</blockquote>
<blockquote>In your hand is something that predates humanity itself. Tens of million years before the meteor that ended the dinosaur hits, it even predates the dinosaurs themselves, it was there when every continent joined as one, drifting together as the earth spins endlessly.</blockquote>
<blockquote>That wood in your hand has always been there, enduring, a silent witness to the passage of time, a snapshot before everything began. It saw mass extinctions, the meteor shower that pelted the earth, volcanic eruptions that changed the land, ice ages that froze over the world, the rise of world conquering mammals, and then finally, humanity.</blockquote>
<blockquote>Now, it rested on your palm, aeon of earth history culminated into one single piece of wood. It has witnessed the incredible, until finally, it ended up in [[your hand.|PetForest3-14]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<blockquote>You trembled at the enormity of it all.</blockquote>
<<speech "mc" "$name">>.............................<</speech>>
<blockquote>Softly, you place the wood back to where it always was.</blockquote>
<blockquote>You shook your head silently, gathering yourself as you stand back up and let out one single exhale.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You then gaze to the left.</blockquote>
<<speech "gf" "Jane">>.............................<</speech>>
<blockquote>On the side, you can see Jane crouching in front of the same wood that you just touched. She softly caressed it, feeling it's weight, and then smiled.</blockquote>
<<speech "gf" "Jane">>Wow.<</speech>>
<blockquote>You only [[chuckle.|PetForest3-15]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<blockquote>Case is still standing on the trail, waiting for you two to finish.</blockquote>
<<speech "case" "Case">>Consider this one the preview, there's a lot more further on the trail.<</speech>>
<blockquote>He assumed his tour guide persona.</blockquote>
<<speech "gf" "Jane">>Lead the way.<</speech>>
<blockquote>Jane pops out beside you, making Case move, guiding you further in while talking about the interesting factoids he knew.</blockquote>
<<speech "mc" "$name">>By the way, how do you know so much about this place?<</speech>>
<<speech "case" "Case">>I used to work here, selling souvenir at the south entrance.<</speech>>
<<speech "mc" "$name">>You used to work everywhere seems like.<</speech>>
<<speech "case" "Case">>I'm multitalented.<</speech>>
<blockquote>As he said that, [[he turned back.|PetForest3-16]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<<img "Images/inc/az2/petrified4.webp" "600px">><</img>>
<blockquote>You continue on to where Case is standing, near the center of the site where there are huge blocks of petrified wood laying.</blockquote>
<<speech "case" "Case">>Here is where all those famous pictures on the internet comes from.<</speech>>
<blockquote>Case proudly presents the wood, Jane walks to the side to take a closer look and take some more picture, while you're content watching from the sideline.</blockquote>
<<speech "mc" "$name">>Careful, it's slippery.<</speech>>
<blockquote>She answered nonchalantly, instead scanning the entire wood, taking picture after picture.</blockquote>
<<speech "case" "Case">>She's fun.<</speech>>
<blockquote>His eyes look at her up and down.</blockquote>
<<speech "case" "Case">>She reminds me a lot of Melissa.<</speech>>
<<speech "mc" "$name">>Real-<</speech>>
<<speech "gf" "Jane">>AHHHH!!!<</speech>>
<blockquote>A scream and then a splash. You swivel your head towards the source only to see Jane on the ground, clutching her ankle, and in that moment you...</blockquote>
<blockquote class="choice-blockquote">
<<link [[Froze|PetForest3-17]]>>
<<set $third_fall to "Froze">><</link>>
<<link [[Rush to her side|PetForest3-17]]>>
<<set $third_fall to "Rush">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<if $third_fall is "Froze">>
<blockquote>As you stare at her writhing figure, you froze. But Jane is too busy clutching her ankle to notice, suddenly, someone else sprung to her side, Case.</blockquote>
<<speech "case" "Case">>Shit, you alright?<</speech>>
<<speech "gf" "Jane">>U-Ugh, i-it's just my ankle.<</speech>>
<<speech "case" "Case">>Stop, don't move it too much or you'll make it worse. I'll take care of it.<</speech>>
<<speech "gf" "Jane">>Y-Yeah? A-Ah!<</speech>>
<blockquote>Case lift her easily, putting her entire weight on his arm on a bridal carry. At that moment you snapped out of the haze but it's too late as Jane is already tight on his arms.</blockquote>
<<speech "case" "Case">>Let's go back to the car.<</speech>>
<blockquote>With a simple command, you [[follow his lead.|PetForest3-18]]</blockquote>
<<elseif $third_fall is "Rush">>
<blockquote>You quickly rush to her side, putting your warm presence near her.</blockquote>
<<speech "mc" "$name">>You okay?<</speech>>
<<speech "gf" "Jane">>M-My ankle...<</speech>>
<blockquote>You look at her ankle to see that she sprained it.</blockquote>
<<speech "mc" "$name">>It doesn't look bad just yet but let's go back to the car just to be safe.<</speech>>
<<speech "gf" "Jane">>Y-Yeah...<</speech>>
<blockquote>You lift her up on your hand on a princess carry, making her blush, and then walk back towards the parking lot with Case [[leading the way.|PetForest3-18]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-petway">
<div class="overlay"></div>
<<if $third_fall is "Froze">>
<blockquote>You open the passenger door, letting Case set her down, but then Case also join her in the backseat.</blockquote>
<<speech "mc" "$name">>W-Wha?<</speech>>
<<speech "case" "Case">>Take the wheel, man. I'll take care of her.<</speech>>
<blockquote>Seeing that he already took the initiative, you took the driver seat.</blockquote>
<<elseif $third_fall is "Rush">>
<blockquote>Case opened the passenger door and immediately sits on the far side of the seat, his hand waiting for you to put her in his arms.</blockquote>
<<speech "mc" "$name">>Careful now.<</speech>>
<blockquote>You gently place her inside and she smiled in gratitude.</blockquote>
<<speech "case" "Case">>Sit in front, man. Don't worry, I'll take care of her.<</speech>>
<blockquote>Seeing that he's already inside, you decided to do as he said.</blockquote>
<</if>>
<<speech "gf" "Jane">>Oww...<</speech>>
<<speech "case" "Case">>Let's incline the ankle for a while.<</speech>>
<blockquote>He tenderly place her injured leg on his knees, seeing the bruise, you look around the cooler for some ice, and thankfully you found some.</blockquote>
<<speech "mc" "$name">>Use this.<</speech>>
<blockquote>Jane looks grateful as Case took the ice from your hand, he then gently rubbed it all over her ankle.</blockquote>
<<speech "gf" "Jane">>Haa... I-I'm feeling better already.<</speech>>
<blockquote>She's putting on [[a brave face.|PetForest3-19]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<blockquote>With her safe and secure, it's time to think about what to do next.</blockquote>
<<speech "mc" "$name">>Case, sorry but I think we're gonna go back to Holbrook.<</speech>>
<blockquote>The two swivel their head right at you but Jane is the first one responding.</blockquote>
<<speech "gf" "Jane">>J-Just because of this? No, no, just continue on to Albuquerque, I'll be fine.<</speech>>
<<speech "mc" "$name">>You need rest, not three hours of jostling in a car.<</speech>>
<<speech "gf" "Jane">>I-It's just a sprained ankle! You know me, I could even tank a bullet to the head, t-this is nothing.<</speech>>
<<speech "mc" "$name">>It's not nothing if we aggravate it. It's still two hundred miles away, what if it swollen along the way, huh?<</speech>>
<<speech "gf" "Jane">>It won't! it's just a bruise!<</speech>>
<<speech "mc" "$name">>I'm not taking any chances.<</speech>>
<blockquote>By now you are face to face with each other, feeling each other's breath as the talk started to heat up.</blockquote>
<<speech "case" "Case">>Uhh... why don't we just go to Gallup?<</speech>>
<<speech "gf" "Jane">>Gallup?<</speech>>
<<speech "case" "Case">>[[My place.|PetForest3-20]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<blockquote>You traded look with Jane then assume a serious look, both taking his suggestions into consideration,</blockquote>
<<speech "mc" "$name">>Gallup...<</speech>>
<<speech "gf" "Jane">>That means we don't have to turn back...<</speech>>
<<speech "mc" "$name">>And it's not that far from here...<</speech>>
<<speech "gf" "Jane">>I DID suggested Grants or Milan...<</speech>>
<<speech "mc" "$name">>And I said Albuquerque was too far...<</speech>>
<blockquote>Like ping pong, the idea bounced back and forth.</blockquote>
<<speech "gf" "Jane">>It'll probably cheaper too...<</speech>>
<<speech "mc" "$name">>Maybe the breakfast coupon will work there...<</speech>>
<<speech "gf" "Jane">>No.<</speech>>
<<speech "mc" "$name">>Fuck.<</speech>>
<blockquote>Suddenly, Case barged in.</blockquote>
<<speech "case" "Case">>I mean stay at my house, as thanks for your kindness.<</speech>>
<<speech "gf" "Jane">>Your house?<</speech>>
<blockquote>Once again you traded look with Jane and then steal a glance at Case. He's not a bad person, you saw him interacted with that stern owner and his wife, and judging by those two, you think they wouldn't associate with someone unscrupulous. Not to mention your own experience with him.</blockquote>
<<speech "gf" "Jane">>Why not?<</speech>>
<blockquote>Jane suddenly said before you even finished wrapping your thought.</blockquote>
<<speech "mc" "$name">>J-Jane.<</speech>>
<<speech "gf" "Jane">>I trust him.<</speech>>
<blockquote>She already made up her mind, but she's right, there's no reason to deny the man repaying his debt. With a little accepting nod, you change [[your satnav.|ToGallup3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<set $location to "AZ-NM Highway">>
<<set $locationImage to "AZ-NM Highway">>
<<img "Images/inc/az2/petroad.webp" "500px">><</img>>
<blockquote>Gallup, seventy miles away, far closer than the original two hundred. If you're driving properly, you'll be there in an hour. Which means at 3PM.</blockquote>
<blockquote>So with that in mind, you pull out from the parking lot and continue on to the one way road, but as soon as you rejoin the main road, you took a right, leading you all the way back to the north entrance.</blockquote>
<blockquote>In the rearview mirror you can see Case rubbing ice on Jane's bruise, and even with her strong persona, she couldn't help but to wince in pain. Seeing that, you unconsciously put your feet on the gas with a little [[more force than necessary.|ToGallup3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-petroad">
<div class="overlay"></div>
<<speech "gf" "Jane">>S-Slow down, $name. We'll be there even if you're not fast.<</speech>>
<<speech "mc" "$name">>I know but I don't think staying cooped up here for long is good for your legs.<</speech>>
<blockquote>You quickly exited the ticket booth you entered earlier and then join the highway.</blockquote>
<<speech "case" "Case">>I guess, I'll help you relax, then.<</speech>>
<<speech "gf" "Jane">>M-Mmmhhh~<</speech>>
<blockquote>Suddenly you can hear a moan of pleasure from the passenger seat, your eyes went straight to the rear view mirror.</blockquote>
<<speech "case" "Case">>Don't worry, nothing strange here, just a little massage.<</speech>>
<blockquote>His hand is gently on her legs, not her ankle, but her thigh.</blockquote>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote>A little call of your name, her tone signifies she wants you to make a decision. after seeing his hand hovers on her legs, you decide to...</blockquote>
<blockquote class="choice-blockquote">
<<link [[Go slower|ToGallup3-3a]]>>
<<set $third_massage to "Yes">><</link>>
<<link [[Go faster|ToGallup3-3b]]>>
<<set $third_massage to "No">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<speech "mc" "$name">>Okay...<</speech>>
<blockquote>You slowed down, now following the traffic rules.</blockquote>
<<speech "case" "Case">>That's better, now we don't have to worry about something worse than a sprained ankle.<</speech>>
<<speech "gf" "Jane">>....................................<</speech>>
<blockquote>Jane didn't reply, only closing her eyes as she feels Case's able hands touched her.</blockquote>
<<speech "case" "Case">>Just lay down, I used to be a masseur, you know. A very good one.<</speech>>
<<speech "mc" "$name">>...Sounds like you've been everything.<</speech>>
<<speech "case" "Case">>I haven't been a male prostitute, but, I got the talent.<</speech>>
<<speech "gf" "Jane">>NGHHH!~!!!<</speech>>
<blockquote>His large hand suddenly pressure her abdomen, making her scream in pleasure.</blockquote>
<<speech "mc" "$name">>.................................<</speech>>
<blockquote>With your mind going haywire, you [[continue to drive.|ToGallup3-4a]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<<speech "mc" "$name">>Sorry, Jane.<</speech>>
<blockquote>With that little apology, you step on the gas pedal.</blockquote>
<<speech "gf" "Jane">>H-Hey!<</speech>>
<<speech "mc" "$name">>Don't worry, I'll slow down if the road is busy.<</speech>>
<blockquote>Seeing as the highway is still relatively empty, you speed up, most likely cutting the time of arrival by half an hour.</blockquote>
<<speech "case" "Case">>In the meantime, let me help you with the pain.<</speech>>
<<speech "gf" "Jane">>NGH!!!<</speech>>
<blockquote>His large hand suddenly pressure her abdomen, making her scream in pleasure.</blockquote>
<<speech "case" "Case">>Trust me, I used to be a masseur.<</speech>>
<blockquote>Your eyes went to the rear-view mirror for a few moment before refocusing on the road, taking the wheel [[under control.|ToGallup3-4b]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>Jane squirms and writhe under his touch, letting out soft moan as he showed his technique. But as the traffic grows as you're getting closer to the bigger city, you cannot keep an eye on them much further.</blockquote>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<blockquote>Jane, it seemed to you, is also exaggerating the pleasure just to egg you on, she moaned loudly and each time you look at the rear view mirror, you can see her spreading her legs wider and wider for him to access.</blockquote>
<blockquote>Her method works very well, as you struggle to hide the erection that is growing under your pants. And because you chose to drive slower, you have to endure the torture for much longer.</blockquote>
<blockquote>And that also means he has more than enough time to do [[his magic.|ToGallup3-5a]]</blockquote>
<<else>>
<blockquote>Jane, it seemed to you, is hiding the extent of pleasure she is getting. Sometimes she gasped and then you'll hear a stifled moan, and each time you look at the rear view mirror, you can see her unconsciously opening her legs just to give him easier access.</blockquote>
<blockquote>Your heart dropped as you see the pleasure welling within her eyes, and because you chose to drive slower, you have to endure the torture for much longer.</blockquote>
<blockquote>And that also means he has more than enough time to do [[his magic.|ToGallup3-5a]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-galluproad">
<div class="overlay"></div>
<<set $location to "Gallup">>
<<set $locationImage to "Gallup">>
<<img "Images/inc/az2/galluproad.webp" "500px">><</img>>
<blockquote>It took an full hour for you to reach the city limits and by now, Jane is sinking deeper into his hands, as the massage graduated from the legs and spread towards her entire body.</blockquote>
<<speech "mc" "$name">>...Here we are.<</speech>>
<<speech "gf" "Jane">>Haa... haa... haa...<</speech>>
<blockquote>Long labored breath is the only answer you got from Jane.</blockquote>
<<speech "case" "Case">>Go straight until you nearly hit the eastern limit then turn right, there'll be a school and then take the second left.<</speech>>
<blockquote>You quietly follow his order, sneaking a glance at Jane once or twice. You can him caressing her inner thigh, but without Jane complaining.</blockquote>
<<speech "case" "Case">>Through that road.<</speech>>
<blockquote>You enter a long road, already far from Gallup's the city, as Case hailed some of his friends as you enter the higher part of the residential area. You feel a little intimidated as you drive through.</blockquote>
<<speech "gf" "Jane">>Mmm...<</speech>>
<blockquote>Jane arose from her daze and look [[around the area.|Gallup3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<img "Images/inc/ariroad1.webp" "500px">><</img>>
<blockquote>Jane squirms and writhe under his touch, letting out soft moan as he showed his technique. But as the traffic grows you have to keep your eyes on the road, considering your speed.</blockquote>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<blockquote>Jane, it seemed to you, is also exaggerating the pleasure just to egg you on, she moaned loudly and each time you look at the rear view mirror, you can see her spreading her legs wider and wider for him to access.</blockquote>
<blockquote>Her method works, as you struggle to hide the erection that is growing under your pants. But because you're driving quickly, your lust quickly subsides.</blockquote>
<blockquote>And that also means he has less time to work [[his magic.|ToGallup3-5b]]</blockquote>
<<else>>
<blockquote>Jane, it seemed to you, is hiding the extent of pleasure she is getting. Sometimes she gasped and then you'll hear a stifled moan, and each time you look at the rear view mirror, you can see her unconsciously opening her legs just to give him easier access.</blockquote>
<blockquote>Your heart dropped as you see the pleasure welling within her eyes, and because you chose to drive faster, everything will end soon.</blockquote>
<blockquote>And that also means he has less time to work [[his magic.|ToGallup3-5b]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-galluproad">
<div class="overlay"></div>
<<set $location to "Gallup">>
<<set $locationImage to "Gallup">>
<<img "Images/inc/az2/galluproad.webp" "500px">><</img>>
<blockquote>It only took you a thirty minutes of intense driving to reach the city limit, you stole a quick glance at the rear-view mirror to see Jane composing herself after his massage.</blockquote>
<<speech "gf" "Jane">>Pray that I won't tell your mom about your driving, $name.<</speech>>
<<speech "case" "Case">>Give him a break, sugar. He's doing this for you.<</speech>>
<blockquote>His hand caressed her back softly, as if calming her down and Jane only took it in stride.</blockquote>
<<speech "mc" "$name">>So... where to go now?<</speech>>
<<speech "case" "Case">>Go straight until you nearly hit the eastern limit then turn right, there'll be a school and then take the second left.<</speech>>
<blockquote>You enter a long road, already far from Gallup's the city, as Case hailed some of his friends as you enter the higher part of the residential area. You feel a little intimidated as you drive through.</blockquote>
<<speech "gf" "Jane">>Mmm...<</speech>>
<blockquote>Jane gives an apprising look towards the [[environment inside.|Gallup3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-galluproad">
<div class="overlay"></div>
<<speech "gf" "Jane">>You lived here, huh?<</speech>>
<<speech "case" "Case">>Born and raised, babe. Now take the right over there.<</speech>>
<blockquote>You feel a little out of place.</blockquote>
<<speech "mc" "$name">>By the way, would your family mind about us barging in uninvited?<</speech>>
<<speech "case" "Case">>Family? Ah, forgot to mention, they all moved to Texas three years ago, now this place is all mine.<</speech>>
<<speech "gf" "Jane">>W-What? So why are you living in that RV park?<</speech>>
<<speech "case" "Case">>Cause I work there, and well, the place is nice.<</speech>>
<blockquote>You can't believe how nonchalant he is, but at the same time, knowing that he's a rich kid that spent most of his adult life on the road, working hard labor, you can understand him.</blockquote>
<<speech "case" "Case">>Okay, stop there, that's [[my house.|Gallup3-2]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-caseext">
<div class="overlay"></div>
<<img "Images/inc/az2/caseext.webp" "500px">><</img>>
<blockquote>His house is huge and private, to say the least, far from the hustle bustle of the city and also far from the highway, there are only a few other residential building spread evenly alongside the road.</blockquote>
<<speech "mc" "$name">>Nice house.<</speech>>
<<speech "case" "Case">>What can I say? My parent is rich.<</speech>>
<blockquote>He spoke easily but without arrogance in his voice.</blockquote>
<<speech "case" "Case">>Come on then, let's get you settled in.<</speech>>
<blockquote>Case opened the passenger door and begin to carry Jane.</blockquote>
<<speech "gf" "Jane">>H-Hey! I can walk.<</speech>>
<<speech "case" "Case">>Nonsense. Follow me, $name.<</speech>>
<blockquote>Before you realize he already has her in his hand and is now walking confidently to [[his dwelling.|Gallup3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<img "Images/inc/az2/caseint.webp" "400px">><</img>>
<<speech "case" "Case">>Come in, sorry if it's a bit messy.<</speech>>
<blockquote>On the contrary, it's not messy at all. There's some dust here and there but everything is where it's supposed to be.</blockquote>
<<speech "mc" "$name">>No problem, it's not that dirty.<</speech>>
<blockquote>He sets Jane on the sofa before waltzing to the kitchen, most likely to grab some water.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>You can't help but to look around, you've never been in a house this big before.</blockquote>
<<speech "gf" "Jane">>It's huge.<</speech>>
<blockquote>Jane is also admiring the place.</blockquote>
<<speech "mc" "$name">>By the way, how's your ankle?<</speech>>
<<speech "gf" "Jane">>Better, much better.<</speech>>
<blockquote>She stretched her legs and then [[glance at you.|Gallup3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<img "Images/gf/gf15.webp" "700px">><</img>>
<<if $third_massage is "Yes">>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<<speech "gf" "Jane">>Nice job for driving so slowly. He only touched my pussy three times.<</speech>>
<<speech "mc" "$name">>H-He w-what?!<</speech>>
<blockquote>You were about to be outraged but then with that enigmatic smirk of hers, she shut you down, and she simply said.</blockquote>
<<speech "gf" "Jane">>I'd let him of course.<</speech>>
<<speech "mc" "$name">>J-Jan-<</speech>>
<blockquote>But Case's quick reappearance stops you from talking.</blockquote>
<<speech "gf" "Jane">>Ah~ thanks for [[the water.|Gallup3-5]]<</speech>>
<<else>>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>Jane averts her gaze, trembling with a strange feeling between her legs.</blockquote>
<<speech "mc" "$name">>What's wrong, Jane?<</speech>>
<<speech "gf" "Jane">>N-Nothing...<</speech>>
<blockquote>Her eyes then flutters open the moment she hear Case reentered the [[living room.|Gallup3-5]]</blockquote>
<</if>>
<<elseif $third_massage is "No">>
<<speech "gf" "Jane">>When did you become a good driver?<</speech>>
<blockquote>She asked with a blank face.</blockquote>
<<speech "mc" "$name">>There was barely any traffic, what could I hit? Desert wind?<</speech>>
<blockquote>She shook her head.</blockquote>
<<speech "gf" "Jane">>Guess that's true. But seriously, NEVER drive that fast ever again or I'll call your mom.<</speech>>
<<speech "mc" "$name">>You're making it sounds like I'm scared of my mom.<</speech>>
<<speech "gf" "Jane">>You're not?<</speech>>
<<speech "mc" "$name">>Nahhh~<</speech>>
<<speech "gf" "Jane">>I'll tell her that.<</speech>>
<blockquote>Before you could take back your words, Case reentered the [[living room.|Gallup3-5]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<speech "case" "Case">>Another drinks for my saviors. But this time, it's just water.<</speech>>
<blockquote>The clink of tray comes from the table.</blockquote>
<<speech "case" "Case">>Man, you guys don't know this but I was waiting in that spot for two hours before you showed up, I was scared that I'll be stranded for days.<</speech>>
<<speech "mc" "$name">>...Why don't you just get down the highway?<</speech>>
<<speech "case" "Case">>Well, I figured that there'll be some poor schmuck, no offense, come the crater way so I don't need to use my legs, but well, look at the bright side, I got to meet you kind people.<</speech>>
<blockquote>He said with his signature charm.</blockquote>
<<speech "case" "Case">>Also, if you didn't meet me then you wouldn't have that heavenly massage, right Jane?<</speech>>
<<speech "gf" "Jane">>If we didn't meet you then there's a chance that I wouldn't sprain my ankle.<</speech>>
<<speech "case" "Case">>Ahaa~ but that's hypothetical, let's not think about that anymore. Come, drink, [[enjoy yourself.|CaseHouse3-0]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<blockquote>The cold water splashed around your throat, lowering your sky-high temperature because of what happened earlier. Jane calmly sips Case's offering while keeping her legs inclined with the pillow.</blockquote>
<<speech "case" "Case">>By the way, why don't I lead you to your room for tonight?<</speech>>
<blockquote>Hearing that, Jane tried to get up with her own strength, but she instead winced in pain.</blockquote>
<<speech "gf" "Jane">>Ngh...<</speech>>
<<speech "mc" "$name">>Don't push yourself too much, Jane.<</speech>>
<blockquote>You give her a helping hand, making it easier for her to stand and then guides her to where Case is beckoning [[you to go.|CaseHouse3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<img "Images/inc/az2/casebed.webp" "400px">><</img>>
<blockquote>He leads you into a medium sized bedroom, there's some old Christmas decoration hanging on the wall, and a picture of an old lady.</blockquote>
<<speech "case" "Case">>Don't mind the picture, this used to be my grandmother's room.<</speech>>
<<speech "gf" "Jane">>C-Can we really stay here? T-This is billion times better than our last motel room...<</speech>>
<blockquote>You could only hope Lana didn't install any listening device on your pocket as she said that.</blockquote>
<<speech "case" "Case">>It's okay, I don't think she'll mind besides, it's... a bit hard to reach her now.<</speech>>
<<speech "gf" "Jane">>O-Oh... I-I'm sorry...<</speech>>
<<speech "case" "Case">>Yeah, she moved to the Philippines with my grandpa.<</speech>>
<<speech "gf" "Jane">>....................................<</speech>>
<<speech "case" "Case">>Anyway, I'll leave you guys to it. I'm gonna go get changed, if you need me I'll be in my room, the first one on the right, upstairs.<</speech>>
<blockquote>He mentioned casually.</blockquote>
<<speech "case" "Case">>Feel free to take a bath, the bathroom is right beside the kitchen.<</speech>>
<blockquote>With that, he bids you farewell and [[walk out.|CaseHouse3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<img "Images/gf/gf16.webp" "400px">><</img>>
<blockquote>She sinks on the bed.</blockquote>
<<speech "mc" "$name">>So...<</speech>>
<blockquote>Jane rose from the bed and put her hand on your chest.</blockquote>
<<speech "gf" "Jane">>So... take a bath, you're smelling like a dead chicken.<</speech>>
<<speech "mc" "$name">>R-Really?<</speech>>
<<speech "gf" "Jane">>Worse, a sweaty dead chicken.<</speech>>
<blockquote>The heat, your temperature, and the tension you felt must've all contributed to all the sweat you've shed.</blockquote>
<<speech "mc" "$name">>Well... guess I'll do something about it.<</speech>>
<blockquote>You unpack your bag, pick up a change of clothes, and went off [[on your way.|CaseHouse3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<img "Images/inc/az2/caseint.webp" "400px">><</img>>
<blockquote>As Case mentioned, the bathroom is near the kitchen, you went in and undressed, smelling your own clothes just to check the facts and gagged as you realize the fact is, in fact, factual.</blockquote>
<blockquote>You stood under the running water, naked, rinsing all the dirt that is sticking in your skin. As you stood, you wonder about the path you took, not only on your journey to Miami, but also of your own journey with Jane.</blockquote>
<blockquote>Some many things happened today, it rivaled even yesterday, but like yesterday. There is no turning back from all your decision. As you finished your shower, the sun has gone down, after that, the [[main event will begin.|CaseHouse3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<img "Images/inc/clock.webp" "300px">><</img>>
<blockquote>..........................................</blockquote>
<blockquote>......................</blockquote>
<blockquote>[[...|Dinner3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<img "Images/inc/az2/casedinner.webp" "400px">><</img>>
<<speech "mc" "$name">>Complements to the chef.<</speech>>
<blockquote>The clinking of the silverware signifies you're done.</blockquote>
<<speech "case" "Case">>You're welcome.<</speech>>
<<speech "gf" "Jane">>Let me guess, you were a chef too?<</speech>>
<<speech "case" "Case">>Yup.<</speech>>
<<speech "mc" "$name">>What haven't you do?<</speech>>
<<speech "case" "Case">>Desk job.<</speech>>
<blockquote>The conversation then continues with a jovial mood. Case then connected his phone to the sound system, getting some music to accompany the talk.</blockquote>
<<if $second_finalstate is "NTR" or $second_finalstate is "NTS" or $third_ntrpath is "NTR">>
<blockquote>Jane is eyeing him like a hungry hawk, a look that is clearly reciprocated by Case, as he openly flirts with her [[in front of your face.|DinnerNTR3-1]]</blockquote>
<<elseif $third_ntrpath is "Cheat" or $second_cheatinterest is "True">>
<blockquote>Jane is eyeing him discreetly, it is very subtle but, to the point of you not noticing but Case can see [[through her immediately.|Dinner3-2]]</blockquote>
<<else>>
<blockquote>Everyone chatted as normal, Case often tries to flirt with Jane and sometimes it did get her but more often than not it went [[over her head.|Dinner3-2]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<speech "gf" "Jane">>You know, you being so good at everything makes me feel a little jealous.<</speech>>
<blockquote>Jane suddenly said among the pleasant conversation.</blockquote>
<<speech "case" "Case">>Oh? Why is that?<</speech>>
<<speech "gf" "Jane">>I mean, you're a great chef, a great driver, a great tour guide, a great everything.<</speech>>
<<speech "case" "Case">>Well, it's all from experience.<</speech>>
<blockquote>Feeling a little uncomfortable about the talk, you wanted to cut in and join.</blockquote>
<<if $second_finalstate is "NTR" or $third_ntrpath is "NTR">>
<<img "Images/gf/gf17.webp" "600px">><</img>>
<blockquote>But as you're about to speak, Jane turns to you with a stare that sent shivers down your spine.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<<speech "gf" "Jane">>I'm sure there's a lot more experience you wanted to show me, huh?<</speech>>
<<speech "case" "Case">>Mmm~ [[I got plenty more in store.|DinnerNTR3-2]]<</speech>>
<<else>>
<<img "Images/gf/gf17.webp" "600px">><</img>>
<blockquote>But as you're about to speak, Jane turns to you and gives you an enigmatic smile.</blockquote>
<<speech "gf" "Jane">>What is it, baby? Can you see that I'm talking?<</speech>>
<blockquote>She twirls her hair and went back to Case.</blockquote>
<<speech "gf" "Jane">>I'm just wondering whether there's something you can teach me...<</speech>>
<<speech "case" "Case">>Well, that's a coincidence because I used to be a teacher.<</speech>>
<<speech "gf" "Jane">>Oh really? Do you hear that, $name?<</speech>>
<blockquote>She turns to you with that [[usual smile.|DinnerNTS3-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<speech "case" "Case">>How's it feeling now?<</speech>>
<blockquote>Case mentioned during the chat, pointing at Jane's injured ankle.</blockquote>
<<speech "gf" "Jane">>Much better, I can walk, a little.<</speech>>
<<speech "case" "Case">>Thanks to my massage, I assume?<</speech>>
<blockquote>He casually mentioned, half-jokingly.</blockquote>
<<speech "case" "Case">>How about staying here until it's totally fine?<</speech>>
<<speech "mc" "$name">>Oh, we wouldn't want to impose.<</speech>>
<<speech "gf" "Jane">>True, besides we still have a long way to go.<</speech>>
<blockquote>2100 miles, still so far away.</blockquote>
<<speech "case" "Case">>I see... what about another massage then?<</speech>>
<<if $third_massage is "Yes">>
<<speech "case" "Case">>You trembled when I put light pressure on your abdomen.<</speech>>
<blockquote>The memory of what happened earlier made Jane blush.</blockquote>
<<speech "gf" "Jane">>W-Why are you massaging my abdomen in the first place?<</speech>>
<<speech "case" "Case">>Because it was tight, to be honest your ankle is the least of your problem.<</speech>>
<<speech "mc" "$name">>Oh, maybe because she jogged too much.<</speech>>
<blockquote>Jane gave you a dirty look before [[answering him.|Dinner3-3]]</blockquote>
<<else>>
<<speech "case" "Case">>We were just getting started anyway.<</speech>>
<blockquote>Despite the briefness of their encounter, Jane cannot wipes the memory of his hands away so easily.</blockquote>
<<speech "case" "Case">>Let's continue where we left off.<</speech>>
<blockquote>Jane quickly shakes her head.</blockquote>
<<speech "case" "Case">>Oh? I even thought about giving you a special focus to your abdomen, because it's dangerously tight.<</speech>>
<<speech "mc" "$name">>Mmm... maybe because she jogged too much?<</speech>>
<blockquote>Jane gives you a dirty look before giving Case a [[proper answer.|Dinner3-3]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<img "Images/gf/gf17.webp" "600px">><</img>>
<<speech "gf" "Jane">>Say, my legs is still hurting, can you give me more massage?<</speech>>
<<speech "case" "Case">>More? It'll be my pleasure.<</speech>>
<<speech "gf" "Jane">>Heh~ I'm sure it will.<</speech>>
<blockquote>Their sexual tension in palpable, you can only watch from the sidelines.</blockquote>
<<speech "case" "Case">>Could I, brother?<</speech>>
<blockquote>He suddenly said to you, only to have Jane cuts him off.</blockquote>
<<if $third_ntrpath is "NTR">>
<<speech "gf" "Jane">>Oh, don't mind him.<</speech>>
<blockquote>Jane suddenly grabs your thigh and dove to your face.</blockquote>
<<speech "gf" "Jane">>This is what he fucking wants.<</speech>>
<blockquote>Her tone sent shivers down your spine.</blockquote>
<<speech "case" "Case">>Ohh~ I see. Didn't know you're into that, but, don't worry, I don't mind it one bit.<</speech>>
<blockquote>He said as he takes Jane's hand.</blockquote>
<<speech "gf" "Jane">>See you later, love.<</speech>>
<blockquote>And went off [[up the stairs.|MeanNTR3-1]]</blockquote>
<<else>>
<<speech "gf" "Jane">>He sure do. He even watched me getting a little tune-up yesterday night.<</speech>>
<<speech "case" "Case">>Shit~ what the hell did I do to get this lucky?<</speech>>
<blockquote>She pointed to your growing erection and laughed.</blockquote>
<<speech "gf" "Jane">>See what I mean? Well, it might be hard to see, anyway, let's go.<</speech>>
<blockquote>She took his hand and [[walk upstairs.|DinnerNTR3-3]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<blockquote>She stares down at you, with eyes full of challenge and undisguised lust, she knows what she wanted, she only needs your answer.</blockquote>
<<speech "gf" "Jane">>Well...?<</speech>>
<blockquote>Seeing the tension, Case is gracious enough to leave the kitchen, he instead goes on to the living room. You can see him sitting around the stairs, waiting for someone.</blockquote>
<<speech "gf" "Jane">>Come on...<</speech>>
<blockquote>But despite her strong eyes, you can see her pleading.</blockquote>
<<speech "mc" "$name">>*gulp*<</speech>>
<blockquote>With a gulp, you answered.</blockquote>
<blockquote class="choice-blockquote">
<<link [[Let her|DinnerNTS3-2]]>><</link>>
<<link [[Deny her|DinnerChallenge3-1]]>><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<blockquote>You sat there, stunned, with a growing erection and a heavy heart. You couldn't believe she said all those daring things to you, but despite that, you know that you only have yourself to blame.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Soon, the sound from the speaker is distorted, delivering a terrifying rendition of "Blue Moon", and not long after that, it shuts off completely, leaving you all alone in that silent kitchen in the middle of this spacious house.</blockquote>
<<speech "mc" "$name">>J-Ja-<</speech>>
<<speech "gf" "Jane">>FUCK!!!<</speech>>
<blockquote>The sounds came from upstairs. You cannot believe your ears, they are doing it.</blockquote>
<<speech "mc" "$name">>N-No...<</speech>>
<blockquote>Slowly, you get up from your chair and climb the stairs accompanied by her moan, then, as you stood in front of the door, you took a deep breath and [[push it open.|MeanNTR3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<img "Images/inc/az2/casedinner.webp" "400px">><</img>>
<blockquote>You sat there, stunned, with a growing erection, the humiliating words she throw only egged you further..</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Soon, the sound from the speaker is distorted. Delivering a terrifying rendition of "Blue Moon", and not long after that, it shuts off completely, leaving you all alone in that silent kitchen in the middle of this spacious house.</blockquote>
<<speech "mc" "$name">>..........................<</speech>>
<<speech "gf" "Jane">>FUCK!!!<</speech>>
<blockquote>It is exactly like yesterday.</blockquote>
<blockquote>Slowly, you get up from your chair and climb the stairs accompanied by her moan, then, as you stood in front of the door, you took a deep breath and [[push it open.|MeanNTR3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs45.webm" "500px">>
<blockquote>There she is, under him, too busy being nailed that she didn't even notice your entry.</blockquote>
<<speech "gf" "Jane">>A-Ahhnnnn~ F-Fuckkk~<</speech>>
<blockquote>They hollered and moaned loudly.</blockquote>
<<speech "mc" "$name">>[[H-Haa...|MeanNTR3-3]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<blockquote class="location">She will remember this</blockquote>
<blockquote>You can see the relief within her shoulder as you said yes.</blockquote>
<<speech "gf" "Jane">>Thanks, $name.<</speech>>
<blockquote>She embraced you, giving you a little kiss.</blockquote>
<<speech "gf" "Jane">>I'll go to him, then.<</speech>>
<blockquote>She gets up from her seat but the nagging pain is still there.</blockquote>
<<speech "mc" "$name">>H-Hey, don't push yourself.<</speech>>
<<speech "gf" "Jane">>N-No, it's okay, I'm sure he'll be accommodating.<</speech>>
<blockquote>Not wanting to see her in pain, you did the unthinkable.</blockquote>
<<speech "mc" "$name">>Here.<</speech>>
<blockquote>You took her hand and help her up, she let out an incredulous smile, nearly laughing but composed herself quickly.</blockquote>
<<speech "mc" "$name">>Let's go.<</speech>>
<blockquote>With her in your hand, you guide her to the living room where Case is waiting.</blockquote>
<<speech "case" "Case">>Wow, I didn't realize you were into this this much.<</speech>>
<blockquote>You let her go and place her on his hand.</blockquote>
<<speech "mc" "$name">>Just... d-don't be rough.<</speech>>
<<speech "gf" "Jane">>What are you talking about, $name? You're coming with us, right?<</speech>>
<blockquote>You traded looks.</blockquote>
<<speech "mc" "$name">>...Right.<</speech>>
<blockquote>Then with a little chuckle, Case picks her off her feet, and carried her all the way to his room with you following [[right behind.|DinnerNTS3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<blockquote>Jane turns on her chair, looking right at you, gazing deeper into your eyes.</blockquote>
<<if $third_casents3 is "Defeat">>
<<speech "gf" "Jane">>Aren't you going to stand up and stop me?<</speech>>
<blockquote>Her eyes gained that dangerous glint from before.</blockquote>
<<speech "gf" "Jane">>Or are you just going to be yourself?<</speech>>
<blockquote>She said with disdain.</blockquote>
<</if>>
<<if $third_fall is "Froze">>
<<speech "gf" "Jane">>You're just going to sit there and watch me fall into his arms again?<</speech>>
<blockquote>Her voice gains a tint of amusement.</blockquote>
<<speech "gf" "Jane">>I guess that's what you like, huh? Watching and letting real man do the work.<</speech>>
<blockquote>And laughed.</blockquote>
<</if>>
<<if $third_massage is "Yes">>
<<speech "gf" "Jane">>You know, any other day I would applaud you for not recklessly endangering us.<</speech>>
<blockquote>But her appreciative smile wavers quickly.</blockquote>
<<speech "gf" "Jane">>But this is not one of those days.<</speech>>
<blockquote>She touches your shoulder gently.</blockquote>
<<speech "gf" "Jane">>Thank you for keeping me safe.<</speech>>
<blockquote>And said with tone thick with sarcasm.</blockquote>
<</if>>
<<if $third_casents2 is "Defeat">>
<blockquote>Suddenly she gains a very mischievous smile, and it sent shivers down your spine.</blockquote>
<<speech "gf" "Jane">>Oh, don't give me that look.<</speech>>
<blockquote>She cups your face and brings it closer to hers.</blockquote>
<<speech "gf" "Jane">>I'll always be your Jane.<</speech>>
<blockquote>Then the smile becomes tinged with lust.</blockquote>
<<speech "gf" "Jane">>But tonight, I'll be his Melissa.<</speech>>
<blockquote>And with those final words, you lose.</blockquote>
<</if>>
<<if $third_casents2 is "Win" and $third_massage is "No" and $third_casents3 is "Win" and $third_fall is "Rush">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>But her challenging gaze suddenly weakens as she remembers all the events that transpired today, then she suddenly looks remorseful, to the point of shaking.</blockquote>
<<speech "gf" "Jane">>Last night was a mistake, wasn't it?<</speech>>
<blockquote>She said somberly as she grabs your hand. this time you have no way of answering her.</blockquote>
<<speech "gf" "Jane">>But we cannot turn back time.<</speech>>
<blockquote>Her grips tighten.</blockquote>
<<speech "gf" "Jane">>We can only continue on, with sin and regret.<</speech>>
<blockquote>You gaze into her eyes.</blockquote>
<<speech "mc" "$name">>Let's not make the same mistake again.<</speech>>
<<speech "gf" "Jane">>It's [[all in your hand,|DinnerRegret3-1]] $name...<</speech>>
<<else>>
<blockquote class="location">You didn't make enough effort.</blockquote>
<<speech "gf" "Jane">>You did something, I cannot discount that, but...<</speech>>
<blockquote>She deliberates her words.</blockquote>
<<speech "gf" "Jane">>You hesitated, you don't even know what you want.<</speech>>
<blockquote>Suddenly she grabs your collar.</blockquote>
<<speech "gf" "Jane">>Unlike Rusty.<</speech>>
<blockquote>And she rubs your hardening dick.</blockquote>
<<speech "gf" "Jane">>And unlike him.<</speech>>
<blockquote>She pushed you away without looking back.</blockquote>
<<speech "gf" "Jane">>Good night... we'll keep the door open.<</speech>>
<blockquote>With that, [[she went away.|DinnerNTR3-3]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<img "Images/inc/az2/casedinner.webp" "400px">><</img>>
<<set $third_finalstate is "Regret">>
<blockquote>She stood up from the chair, intending to walk to the bedroom before she her ankle gives out on her. Seeing that, you quickly gets up and offers your hand which she took gladly.</blockquote>
<blockquote>The clock strikes 9, it's late. With her in your hand, the two of you continues on to the living room. You expected to see Case somewhere but he's nowhere to be seen.</blockquote>
<blockquote>Though your inquiring look is almost immediately suppressed by Jane who wants the day to be done. She tugs your sleeve, pulling you faster into the bedroom.</blockquote>
<blockquote>And that's all for the day, the door slowly closed as you stepped inside. There was no place, no time, and no situation for anything else.</blockquote>
<<img "Images/gf/gf16.webp" "600px">><</img>>
<blockquote>You gently sets her on the bed, kissed her good night, and tuck yourself in. Closing the previous chapter of your relationship, and finally [[ending this eventful day.|TBC3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casedinner">
<div class="overlay"></div>
<<img "Images/gf/gf17.webp" "600px">><</img>>
<<speech "gf" "Jane">>I'll have to pass.<</speech>>
<<speech "case" "Case">>Mmm~ that's a shame.<</speech>>
<blockquote>He shrugged his hand but it's clear that from his eyes you can see that he hasn't given up yet.</blockquote>
<<speech "case" "Case">>But if you changed your mind, you know where to find me.<</speech>>
<blockquote>Upstairs, the first door on the right.</blockquote>
<<speech "case" "Case">>Anyway, you can just leave all the dirty dishes over there. I still have some things left to unpack, so, I'll see you later.<</speech>>
<blockquote>Case nods and walk away but turning back before he reached the stairs.</blockquote>
<<speech "case" "Case">>Remember, you just need to knock.<</speech>>
<blockquote>And with that, he finally went upstairs.</blockquote>
<<speech "mc" "$name">>He's uhh... persistent, isn't he?<</speech>>
<<speech "gf" "Jane">>Yeah...<</speech>>
<<speech "mc" "$name">>Well... not as persistent as you were three years ago.<</speech>>
<blockquote>It drew a little smirk on her face.</blockquote>
<<speech "gf" "Jane">>Sometimes persistence is all you need.<</speech>>
<blockquote>Seeing that it's late, you take her hand and help her up.</blockquote>
<<speech "mc" "$name">>And charm helps a lot.<</speech>>
<<speech "gf" "Jane">>Sure, and he's not lacking in that regard.<</speech>>
<blockquote>With that, you guide her to [[the bedroom.|Dinner3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<blockquote>Jane still hobbles on her feet but with your hand on hers, she could handle herself better.</blockquote>
<<speech "gf" "Jane">>What a day...<</speech>>
<blockquote>She said as she stretch her legs on the bed.</blockquote>
<<speech "gf" "Jane">>Mmm...<</speech>>
<<speech "mc" "$name">>Sleepy?<</speech>>
<<speech "gf" "Jane">>M-Mm? N-No, not yet.<</speech>>
<<if $third_massage is "Yes">>
<blockquote>Suddenly her eyes flutters around the room before settling in on the door.</blockquote>
<<speech "mc" "$name">>Something on your mind?<</speech>>
<blockquote>Her eyes widened.</blockquote>
<<speech "gf" "Jane">>O-Oh, uh, no... just...<</speech>>
<blockquote>She covers her skin, as if wanting to cover up what she's currently feeling.</blockquote>
<<speech "mc" "$name">>Mmm?<</speech>>
<blockquote>You hops beside her, after that she suddenly pounce on your arms.</blockquote>
<<speech "gf" "Jane">>[[I need you.|Dinner3-5]]<</speech>>
<<else>>
<blockquote>As she said that, Jane suddenly drags you on the bed.</blockquote>
<<speech "mc" "$name">>H-Hey!<</speech>>
<<speech "gf" "Jane">>What are you waiting for?<</speech>>
<blockquote>You sigh and then look at the picture of Case' grandmother.</blockquote>
<<speech "mc" "$name">>H-Here?<</speech>>
<<speech "gf" "Jane">>U-Ugh! Shut up, [[I need you.|Dinner3-5]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs38.webm" "500px">>
<<speech "mc" "$name">>J-Jane-<</speech>>
<<speech "gf" "Jane">>Shhh~<</speech>>
<blockquote>She moved backward but you can see slight tilt on her movement, as if she's avoiding her injured leg.</blockquote>
<<speech "mc" "$name">>Y-Your l-<</speech>>
<<speech "gf" "Jane">>[[Shut up.|Dinner3-6]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs39.webm" "500px">>
<<speech "mc" "name">>Mmhhh~ f-fuck~<</speech>>
<<speech "gf" "Jane">>Mmm~ moan for me, baby.<</speech>>
<<speech "mc" "$name">>N-Noo~<</speech>>
<blockquote>But you're still resisting, seeing as she winced when [[stretched her legs.|Dinner3-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs40.webm" "500px">>
<<speech "mc" "$name">>A-Ahh~<</speech>>
<blockquote>You grit your teeth, and in that moment, Jane takes her mouth off as she's taking a breath.</blockquote>
<<speech "gf" "Jane">>Haa... haa...<</speech>>
<<speech "mc" "$name">>Jane...<</speech>>
<blockquote>You growled.</blockquote>
<<speech "gf" "Jane">>Yes, darling?<</speech>>
<blockquote class="choice-blockquote">
<<link [[Give her what she wants|Dinner3-8]]>>
<<set $third_finalsex to "Yes">><</link>>
<<link [[Stop her|DinnerCheat3-1]]>>
<<set $third_finalsex to "No">><</link>>
</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<speech "mc" "$name">>That does it!<</speech>>
<blockquote>You flip her over the bed.</blockquote>
<<speech "gf" "Jane">>Ahnn~ haha~<</speech>>
<<speech "mc" "$name">>I'll show you!<</speech>>
<<vid "Images/gf/gfs51.webm" "500px">>
<<speech "gf" "Jane">>Yes~ please~ show me~<</speech>>
<blockquote>And it [[commences.|Dinner3-9]]</blockquote>
</div>
</div>
<div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<speech "mc" "$name">>S-Stop!<</speech>>
<blockquote>You gently pushed her back and then put back your pants.</blockquote>
<<speech "gf" "Jane">>W-What?<</speech>>
<<if $third_massage is "No">>
<<speech "mc" "$name">>I didn't drive like a madman to hurt your leg in a bed.<</speech>>
<blockquote>You replied curtly before turning around, laying back in the bed.</blockquote>
<<speech "mc" "$name">>J-Just go to sleep.<</speech>>
<blockquote>You pull the blanket on, marking the end of your conversation.</blockquote>
<<speech "gf" "Jane">>[[......................................|DinnerFast3-1]]<</speech>>
<<else>>
<<speech "mc" "$name">>J-Just stop, Jane.<</speech>>
<<speech "gf" "Jane">>B-But...<</speech>>
<<speech "mc" "$name">>Your leg is still hurting, I don't want to make it even worse.<</speech>>
<blockquote>Jane sits there, stunned, seeing you laying back on the bed and covering yourself with the blanket.</blockquote>
<<speech "mc" "$name">>Go to sleep, we still have a long trip ahead of us.<</speech>>
<blockquote>And that ends the [[conversation.|DinnerSlow3-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs54.webm" "500px">>
<<speech "mc" "$name">>You want this, darling?<</speech>>
<<speech "gf" "Jane">>Y-Yeahhh~<</speech>>
<<speech "mc" "$name">>Then you'll [[fucking get it.|Dinner3-10]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs52.webm" "500px">>
<blockquote>You flipped her over, not even caring about her sprained ankle.</blockquote>
<<speech "gf" "Jane">>Ahnnn~<</speech>>
<blockquote>And by the sounds of it, she doesn't seems bothered too.</blockquote>
<<speech "gf" "Jane">>Fuck me! FUCK ME!!!<</speech>>
<blockquote>You [[readily obliged.|Dinner3-11]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs53.webm" "500px">>
<blockquote>Jane screamed and hollered, not even caring, perhaps even forgetting, that you are in someone else's house.</blockquote>
<<speech "mc" "$name">>Fuckin slut!<</speech>>
<<speech "gf" "Jane">>Y-Yesss~<</speech>>
<blockquote>You can feel her tighten up as you called her a slut.</blockquote>
<<speech "mc" "$name">>You love this?<</speech>>
<<speech "gf" "Jane">>Yeaaaaaaaahhhh~<</speech>>
<blockquote>And you charged on and [[on and on.|Dinner3-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs55.webm" "500px">>
<<speech "mc" "$name">>H-Haa... haa...<</speech>>
<<speech "gf" "Jane">>Mmmm~<</speech>>
<blockquote>She shivers, sending sensitive feeling all across your dick.</blockquote>
<<speech "mc" "$name">>F-Fuck!<</speech>>
<<speech "gf" "Jane">>C-Cum inside me, baby~<</speech>>
<<speech "mc" "$name">>[[NGH!|Dinner3-13]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs56.webm" "500px">>
<<speech "gf" "Jane">>C-Cum...<</speech>>
<blockquote>By now her legs is tangling your abdomen, letting you in deeper.</blockquote>
<<speech "mc" "$name">>S-Shit.<</speech>>
<<speech "gf" "Jane">>Let it out~<</speech>>
<blockquote>With that invitation, that's [[what you'll do.|Dinner3-14]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs57.webm" "500px">>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>Sperm shoots out of your dick, into her welcoming fold.</blockquote>
<<speech "gf" "Jane">>Mmmm~ s-so warm...<</speech>>
<<speech "mc" "$name">>Nghh~<</speech>>
<blockquote>You laid on her for a few moments, enjoying the afterglow.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>Spent, you rolled to your [[side of the bed.|Dinner3-15]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<set $third_finalstate to "Love">>
<blockquote>Sweat runs down your face, exhaustion is taking you.</blockquote>
<<speech "mc" "$name">>Shit... t-that was amazing...<</speech>>
<blockquote>You mumbled to yourself and expecting an affirmative reply from Jane.</blockquote>
<<speech "mc" "$name">>Mmm?<</speech>>
<blockquote>But none came. Softly, you turn your head towards her.</blockquote>
<<img "Images/gf/gf16.webp" "400px">><</img>>
<blockquote>Just to see her sleeping peacefully.</blockquote>
<blockquote class="location">Your love grew</blockquote>
<<speech "mc" "$name">>Haa... heh. Man...<</speech>>
<blockquote>You gently put your hand on her palm.</blockquote>
<<speech "mc" "$name">>Haa... what a day...<</speech>>
<blockquote>And let the exhaustion [[takes you.|TBC3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<blockquote class="location">Save your progress!</blockquote>
<blockquote>..........................................</blockquote>
<blockquote>......................</blockquote>
<blockquote>[[To Be Continued|Afterword3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<speech "case" "Case">>Here we are~<</speech>>
<blockquote>Gently. he flung her on the bed.</blockquote>
<<speech "gf" "Jane">>Hey!<</speech>>
<blockquote>But she bounced on it. As she's bouncing, Case looks around a scratch his hair.</blockquote>
<<speech "case" "Case">>...Now what?<</speech>>
<<speech "mc" "$name">>...What?<</speech>>
<<speech "case" "Case">>This is the first time I've ever done it in front of a willing audience.<</speech>>
<<speech "mc" "$name">>...Willing?<</speech>>
<<speech "case" "Case">>No, I mean, first time in front of other people, at all.<</speech>>
<<speech "mc" "$name">>I-I see...<</speech>>
<blockquote>As Case and you mill about in silence, Jane decides to take action, he pulled him on to [[the bed.|DinnerNTS3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs46.webm" "500px">>
<blockquote>At that, they finally notice you.</blockquote>
<<speech "gf" "Jane">>Haa... haha~<</speech>>
<blockquote>She laughed softly while ramming her hips on his cock.</blockquote>
<<speech "gf" "Jane">>There you are, cucky. I thought you went home.<</speech>>
<<speech "mc" "$name">>Ngh!<</speech>>
<<speech "case" "Case">>[[Pft-|MeanNTR3-4]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<blockquote>Case laughed as he saw your rapidly growing boner, Jane on the other hand, smirks.</blockquote>
<<speech "gf" "Jane">>Something wrong, darling?<</speech>>
<<speech "mc" "$name">>M-Mmm...<</speech>>
<<speech "gf" "Jane">>I could swear I saw a tiny petrified wood there.<</speech>>
<blockquote>Her mocking tone is only making you go even harder.</blockquote>
<<speech "gf" "Jane">>Not in the mood to talk? Well, same, I'm in the mood to fuck.<</speech>>
<blockquote>She turned around, still wincing in pain, but her pussy is practically flooded for him.</blockquote>
<<speech "gf" "Jane">>If you don't mind.<</speech>>
<<vid "Images/gf/gfs47.webm" "500px">>
<blockquote>She said as they [[shared a kiss.|MeanNTR3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs48.webm" "500px">>
<<speech "gf" "Jane">>You're so big~<</speech>>
<<speech "case" "Case">>Bigger than him?<</speech>>
<blockquote>He's egging her on.</blockquote>
<<speech "gf" "Jane">>N-Nghh~ w-why don't you show him?<</speech>>
<<speech "mc" "$name">>H-Huh...?<</speech>>
<<speech "gf" "Jane">>Come on, even from here I can see that you're harder than this fucking monster.<</speech>>
<blockquote>You're confused yet aroused, in daze you take out your extremely hard dick.</blockquote>
<<speech "gf" "Jane">>[[Look at that~|MeanNTR3-6]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs49.webm" "500px">>
<blockquote>With your humiliation completed, they continued on.</blockquote>
<<speech "gf" "Jane">>You're bigger~<</speech>>
<blockquote>You started to stroke.</blockquote>
<<speech "gf" "Jane">>You're better~<</speech>>
<blockquote>You grit your teeth.</blockquote>
<<speech "gf" "Jane">>He can't compare~<</speech>>
<blockquote>Your heart goes wild.</blockquote>
<blockquote>Hearing her erotic words also sent Case into frenzy, he quickens his pace as he's getting closer to orgasm.</blockquote>
<<speech "case" "Case">>Shit, [[you bitch~|MeanNTR3-7]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<speech "gf" "Jane">>F-Fuck! It's my safe day!<</speech>>
<blockquote>Suddenly you snapped back to reality.</blockquote>
<<speech "mc" "$name">>J-Jan-<</speech>>
<<speech "case" "Case">>I'M CUMMING!!!<</speech>>
<<vid "Images/gf/gfs50.webm" "500px">>
<blockquote>And seals the deal.</blockquote>
<<speech "mc" "$name">>H-Haa... haa... [[NGH!!!|MeanNTR3-8]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<set $third_finalstate to "NTR">>
<<vid "Images/other/cums2.webm" "500px">>
<blockquote>And it also sent you spiraling into your own orgasm.</blockquote>
<<speech "mc" "$name">>NGhhhhh!!!<</speech>>
<blockquote>A very powerful one.</blockquote>
<<speech "mc" "$name">>Haa... haa...<</speech>>
<blockquote>It took you a few minutes to recover but as you finally bring your head to Jane, you can see her still kissing him.</blockquote>
<<speech "mc" "$name">>[[J-Jane...|MeanNTR3-9]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<blockquote>Without speaking she takes his pants off.</blockquote>
<<speech "case" "Case">>Ohoho~ you guys have been doing this for years, huh?<</speech>>
<<speech "mc" "$name">>Uhh, no, actually.<</speech>>
<<speech "case" "Case">>Well, I'm impressed with her... boldness.<</speech>>
<blockquote>Jane pulls down his underwear to reveal a massive snake.</blockquote>
<<speech "gf" "Jane">>W-Whoa...<</speech>>
<blockquote>Seeing your girlfriend looking so intimidated in front of it makes you aroused, badly so, to the point of taking your pants in front of them.</blockquote>
<<speech "gf" "Jane">>Whew...<</speech>>
<blockquote>You're naked too, Jane stares at you for a moment, waiting for your signal. At that, [[you nodded.|DinnerNTS3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs41.webm" "500px">>
<<speech "gf" "Jane">>Mmm~<</speech>>
<blockquote>As she gently put that thing in her mouth, you also get to work on your own.</blockquote>
<<speech "case" "Case">>Yeah~<</speech>>
<blockquote>You [[match their pace.|DinnerNTS3-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs43.webm" "500px">>
<<speech "case" "Case">>Damn, you're good.<</speech>>
<<speech "gf" "Jane">>Well, I have... experience.<</speech>>
<blockquote>She said winking at you as both are getting up to their position.</blockquote>
<<speech "mc" "$name">>E-Experience...?<</speech>>
<<speech "gf" "Jane">>I was a normal city girl before I met you.<</speech>>
<blockquote>She smirked.</blockquote>
<<speech "mc" "$name">>A-Ah...<</speech>>
<blockquote>The fantasy of her past enters your mind but as the two is facing each other, Jane turns to you instead.</blockquote>
<<speech "gf" "Jane">>$name...?<</speech>>
<blockquote>You look at the two of them, Case's huge cock is close to her pussy already, just waiting for your word.</blockquote>
<<speech "mc" "$name">>G-Go on.<</speech>>
<blockquote>Which you [[immediately gave.|DinnerNTS3-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs44.webm" "500px">>
<<speech "gf" "Jane">>F-Fuuuucccckkkkk~<</speech>>
<blockquote>Despite his huge size, it slides in extremely easily.</blockquote>
<<speech "case" "Case">>Mmm~<</speech>>
<blockquote>Case only moaned, letting his cock do all [[the talking.|DinnerNTS3-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs45.webm" "500px">>
<blockquote>Amidst the pleasure, Jane raise her head towards you.</blockquote>
<<speech "gf" "Jane">>H-How is it, baby?<</speech>>
<blockquote>But you don't even need to answer as she can clearly see how hard you're touching yourself.</blockquote>
<<speech "gf" "Jane">>He's so good, baby~<</speech>>
<<speech "mc" "$name">>Y-Yeah?<</speech>>
<<speech "gf" "Jane">>S-So fucking big~<</speech>>
<<speech "mc" "$name">>[[M-Mmm...|DinnerNTS3-9]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs46.webm" "500px">>
<blockquote>The sound she's making is foreign to you, not because she finds you unpleasurable but because his cock gave her some new sensation.</blockquote>
<<speech "gf" "Jane">>A-Ahhhhhnnn~<</speech>>
<blockquote>Great new sensation.</blockquote>
<<speech "case" "Case">>Fucking hell, I'm the luckiest fucker on the planet right now.<</speech>>
<<speech "gf" "Jane">>And I'm the second.<</speech>>
<blockquote>Watching them surely makes put you in [[that category as well.|DinnerNTS3-10]]</blockquote>
</div>
</div>
<div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs48.webm" "500px">>
<blockquote>They changed position but their intensity stayed the same.</blockquote>
<<speech "gf" "Jane">>Ahhh~<</speech>>
<blockquote>Again she turns to you.</blockquote>
<<speech "gf" "Jane">>Jerk it, baby. Faster, harder~<</speech>>
<blockquote>Her words sent shockwave to your dick, and following what she said, you goes faster.</blockquote>
<<speech "mc" "$name">>[[Haa... haa...|DinnerNTS3-11]]<</speech>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs49.webm" "500px">>
<blockquote>Case speeds up, signaling that he's about to cum.</blockquote>
<<speech "case" "Case">>Ngh~ W-Well?<</speech>>
<blockquote>He said to no one in particular, but Jane got the message.</blockquote>
<<speech "gf" "Jane">>H-He's close, baby~<</speech>>
<<speech "mc" "$name">>M-Me too...<</speech>>
<<speech "gf" "Jane">>B-Babe~ i-it's my safe day, right?<</speech>>
<blockquote>Your heart beats wildly but your dick somehow gets even harder.</blockquote>
<<speech "mc" "$name">>Y-Yes...<</speech>>
<<speech "gf" "Jane">>S-So?<</speech>>
<blockquote>At that, you speeds up your hand movement.</blockquote>
<<speech "mc" "$name">>Y-Yes...<</speech>>
<blockquote>And give them the [[green light.|DinnerNTS3-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs50.webm" "500px">>
<<speech "case" "Case">>NGH!!!<</speech>>
<blockquote>Case planted his sperm deep inside her pussy.</blockquote>
<<speech "gf" "Jane">>A-Ahhh~<</speech>>
<blockquote>Then suddenly...</blockquote>
<<vid "Images/other/cums2.webm" "500px">>
<blockquote>You spiral into your [[own orgasm.|DinnerNTS3-13]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<set $third_finalstate to "NTS">>
<blockquote class="location">Your connection grew</blockquote>
<<img "Images/gf/gf18.webp" "600px">><</img>>
<<speech "gf" "Jane">>$name...<</speech>>
<blockquote>Her voice breaks you out of your clarity, she's putting her ass up, with his cum seeping off her pussy.</blockquote>
<<speech "gf" "Jane">>On the floor? If you'd say something I'll give you more than your own hand.<</speech>>
<blockquote>In your stupor you forgot that you're in this together.</blockquote>
<<speech "mc" "$name">>A-Ahh... well, sorry.<</speech>>
<<speech "case" "Case">>Don't sweat it brother.<</speech>>
<blockquote>Case suddenly speaks up, his hand on her ass.</blockquote>
<<speech "case" "Case">>The night is still young.<</speech>>
<<speech "gf" "Jane">>Maybe, but it might take all night for him to get back up.<</speech>>
<blockquote>You don't know how to feel about that but she's correct.</blockquote>
<<speech "case" "Case">>All night? Well, that's interesting.<</speech>>
<<speech "gf" "Jane">>What is?<</speech>>
<blockquote>He suddenly caressed her naked skin, giving you light shiver.</blockquote>
<<speech "case" "Case">>Cause I could last all night.<</speech>>
<blockquote>[[Your cock twitched.|TBC3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<set $third_finalstate to "Horny">>
<blockquote class="location">She will remember this</blockquote>
<blockquote>Jane is sitting on the edge of the bed, silently, alone.</blockquote>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>She watched you going from breathing heavily, to settling down, and until you snore lightly.</blockquote>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>Softly, her hand went across her skin, shivering, as she remembers a touch.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>Then with a shaky eye she looks at your sleeping figure...</blockquote>
<<speech "gf" "Jane">>Ngh...<</speech>>
<blockquote>Jane grunt in frustration, laying back down on the bed, her heart beating relentlessly.</blockquote>
<<img "Images/gf/gf16.webp" "400px">><</img>>
<<speech "gf" "Jane">>...fuck.<</speech>>
<blockquote>She swore and closed her eyes, hoping sleep will [[take her away.|TBC3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<blockquote>Jane is sitting on the edge of the bed, silently, alone.</blockquote>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>She watched you going from breathing heavily, to settling down, and until you snore lightly.</blockquote>
<<speech "gf" "Jane">>.................................<</speech>>
<blockquote>Softly, her hand went across her skin, shivering, as she remembers a touch.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>Then with a shaky eye she looks at your sleeping figure...</blockquote>
<<if $second_cheatinterest is "True">>
<blockquote>And stands up.</blockquote>
<<speech "gf" "Jane">>.........................................<</speech>>
<blockquote>Stumbling [[out of the room.|DinnerSlow3-2]]</blockquote>
<<elseif $third_fall is "Froze" and $third_caseneutral3 is "Defeat">>
<blockquote>And stands up.</blockquote>
<<speech "gf" "Jane">>.........................................<</speech>>
<blockquote>Stumbling [[out of the room.|DinnerSlow3-2]]</blockquote>
<<else>>
<<set $third_finalstate to "Horny">>
<blockquote class="location">She will remember this</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>Jane softly breath, laying back down on the bed, her heart beating relentlessly.</blockquote>
<<img "Images/gf/gf16.webp" "400px">><</img>>
<<speech "gf" "Jane">>...fuck.<</speech>>
<blockquote>She swore and closed her eyes, hoping sleep will [[take her away.|TBC3-1]]</blockquote>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<img "Images/inc/az2/interiordark.webp" "400px">><</img>>
<<speech "gf" "Jane">>H-Haa...<</speech>>
<blockquote>Her footsteps ring through the dark.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>There is no sound, no light, no witnesses.</blockquote>
<<speech "gf" "Jane">>............................<</speech>>
<blockquote>Softly she walks to the stairs, her painful ankle carrying the way.</blockquote>
<<speech "gf" "Jane">>Haa...<</speech>>
<blockquote>She never looked back.</blockquote>
<<speech "gf" "Jane">>Ngh...<</speech>>
<blockquote>But the pain stopped her. The stairs proving too much to handle.</blockquote>
<<speech "gf" "Jane">>S-Shit...<</speech>>
<blockquote>Her eyes wanders through the dark, to the sky through the open curtain, to your car that is sitting silently in the yard, and finally to the bedroom door.</blockquote>
<<speech "gf" "Jane">>N-Ngh...<</speech>>
<blockquote>But before regret could seep in, something interrupted her.</blockquote>
<<speech "case" "Case">>Hey.<</speech>>
<blockquote>The man, standing on the stairs, with his arms stretched.</blockquote>
<<speech "case" "Case">>Need any help?<</speech>>
<blockquote>He asked kindly.</blockquote>
<<speech "gf" "Jane">>...Yes.<</speech>>
<blockquote>[[She answered.|DinnerSlow3-3]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<img "Images/inc/clock.webp" "300px">><</img>>
<blockquote>.........................................</blockquote>
<blockquote>..................</blockquote>
<blockquote>[[...|DinnerSlow3-4]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<speech "mc" "$name">>M-Mmm...<</speech>>
<blockquote>You stirs awake.</blockquote>
<<speech "mc" "$name">>Haa...<</speech>>
<blockquote>Reaching forward to reach something. pillow, a familiar doll, or Jane.</blockquote>
<<speech "mc" "$name">>Mmm?<</speech>>
<blockquote>But none can be found. Just then you remembered that you're not home.</blockquote>
<<speech "mc" "$name">>O-Oh... mm?<</speech>>
<blockquote>You rise from the bed, looking left and right, looking for someone, somewhere.</blockquote>
<<speech "mc" "$name">>Jane?<</speech>>
<blockquote>But she is [[nowhere to be found.|DinnerSlow3-5]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<speech "mc" "$name">>Jane?<</speech>>
<blockquote>She's nowhere to be found, your first thought was the toilet.</blockquote>
<<speech "mc" "$name">>She'll hurt that leg even more...<</speech>>
<blockquote>Not wanting her to go back alone, you got on your feet.</blockquote>
<<speech "mc" "$name">>She should stop being so considerate...<</speech>>
<blockquote>[[And walks out.|DinnerSlow3-6]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<img "Images/inc/az2/interiordark.webp" "400px">><</img>>
<<speech "mc" "$name">>Mmm...?<</speech>>
<blockquote>Your footsteps ring through the dark.</blockquote>
<<speech "mc" "$name">>........................<</speech>>
<blockquote>There is no sound, no light, no one in sight.</blockquote>
<<speech "mc" "$name">>Jane?<</speech>>
<blockquote>Softly you walk to the bathroom door, not wanting to disturb the other inhabitant.</blockquote>
<<speech "mc" "$name">>Mmm...?<</speech>>
<blockquote>But there was no sound to be heard.</blockquote>
<<speech "mc" "$name">>Jane...?<</speech>>
<blockquote>Your motion stopped, wondering where she might be.</blockquote>
<<speech "mc" "$name">>...........................<</speech>>
<blockquote>Your eyes wanders through the dark, to the sky through the open curtain, to your car that is sitting silently in the yard, and finally to the bedroom door.</blockquote>
<<speech "mc" "$name">>In the kitchen...?<</speech>>
<blockquote>But before you could investigate, something interrupted you.</blockquote>
<<speech "gf" "Jane">>Mmhhh~<</speech>>
<blockquote>A voice, from up the stairs, carried softly by the silence.</blockquote>
<<speech "gf" "Jane">>H-Harder...<</speech>>
<blockquote>The voice beckons.</blockquote>
<<speech "mc" "$name">>...J-Jane?<</speech>>
<blockquote>[[You follow the sound.|DinnerSlow3-7]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<blockquote>Your legs carried you upstairs, it weakens each steps you take.</blockquote>
<<speech "mc" "$name">>H-Haa...<</speech>>
<blockquote>The moaning grows even more intense as you continue on your way.</blockquote>
<<speech "mc" "$name">>N-Ngh...<</speech>>
<blockquote>Your heart beats fast, to the point of hurting your head.</blockquote>
<<speech "gf" "Jane">>Ahhhnnnn~<</speech>>
<blockquote>Your ascent to the peak was accompanied by her moan.</blockquote>
<<speech "mc" "$name">>S-Shit...<</speech>>
<blockquote>You can see light coming from the first door on the right, and the door is slightly opened.</blockquote>
<<speech "mc" "$name">>Haa... haa... haa...<</speech>>
<blockquote>Quietly, you [[looked inside.|DinnerSlow3-8]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs47.webm" "500px">>
<blockquote>Your heart dropped.</blockquote>
<<speech "gf" "Jane">>A-Ahhnnn...<</speech>>
<<speech "case" "Case">>Now, you're really want to wake him up.<</speech>>
<blockquote>There she is, under him. He shuts her up by kissing her deeply.</blockquote>
<<speech "mc" "$name">>................................<</speech>>
<blockquote>You're standing by the door, undetected, [[stunned.|DinnerSlow3-9]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs48.webm" "500px">>
<blockquote>They continue on and on.</blockquote>
<<speech "gf" "Jane">>N-Nghh... s-so fucking big...<</speech>>
<blockquote>She's moving her hips, receiving his cock like there's no tomorrow.</blockquote>
<<speech "case" "Case">>Your leg is all fine then?<</speech>>
<<speech "gf" "Jane">>S-Shut up and fuck me.<</speech>>
<blockquote>They're going [[harder.|DinnerSlow3-10]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs49.webm" "500px">>
<blockquote>In the haze, Jane stretched her leg too far and it made her wince.</blockquote>
<<speech "case" "Case">>We-<</speech>>
<<speech "gf" "Jane">>I-I don't give a shit, you could break it if you want, just give me that fucking cock.<</speech>>
<<speech "case" "Case">>Ohohohooo~<</speech>>
<blockquote>Your eyes is wide open as you see him moving faster and faster.</blockquote>
<<speech "gf" "Jane">>H-Haaa... s-shit!<</speech>>
<<speech "case" "Case">>I'm cummin'<</speech>>
<blockquote>Suddenly, she wrap her legs around him. A gesture that sent you [[into panic.|DinnerSlow3-11]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<vid "Images/gf/gfs50.webm" "500px">>
<<speech "case" "Case">>F-Fuck!<</speech>>
<blockquote>But it's too late as the deed has already been done.</blockquote>
<<speech "gf" "Jane">>NGH!!!<</speech>>
<blockquote>Jane came too, welcoming his load into her pussy.</blockquote>
<<speech "mc" "$name">>................................<</speech>>
<blockquote>They stood in that position for a while, enjoying their afterglow. After five or so minutes, Case breaks the silence.</blockquote>
<<speech "case" "Case">>Round three?<</speech>>
<blockquote>Jane looks willing, she even grinds his dick that is still lodged within her. But sense quickly came to her.</blockquote>
<<speech "gf" "Jane">>N-No... h-he's a light sleeper...<</speech>>
<blockquote>Sensing the atmosphere, you pull back.</blockquote>
<<speech "mc" "$name">>......................................<</speech>>
<blockquote>And continues downstairs, back to [[the bed.|DinnerSlow3-12]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<set $third_finalstate to "Cheat">>
<blockquote class="location">There is no going back</blockquote>
<<img "Images/inc/az2/casebed.webp" "400px">><</img>>
<blockquote>You lay your head in that comfortable pillow, with the scenes still playing over and over again inside your mind.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>You tried to close your eyes, but again, behind your eyelids is that same scene on repeat.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>But then you can hear light footsteps coming from outside.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>The door slowly opens.</blockquote>
<<speech "gf" "Jane">>...................................<</speech>>
<blockquote>Behind the eyelids you can only see the scenes.</blockquote>
<<speech "mc" "$name">>.....................................<</speech>>
<blockquote>Suddenly, you can feel a warm hand gently caressing your skin.</blockquote>
<<speech "gf" "Jane">>.........................................<</speech>>
<blockquote>But there was no words, not from you, not from her.</blockquote>
<<speech "mc" "$name">>......................................<</speech>>
<blockquote>The touch goes on for another ten or so minutes, until it suddenly stops and you feel a sudden weight on the other side of the bed.</blockquote>
<<img "Images/gf/gf16.webp" "400px">><</img>>
<<speech "gf" "Jane">>Good night...<</speech>>
<blockquote>She softly whispered. Marking the end of the day, and the [[new chapter of your relationship.|TBC3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-holbrookstreet">
<div class="overlay"></div>
<blockquote>He pointed to another dinosaur, this time a statue with a woman statue inside.</blockquote>
<<img "Images/inc/az2/dinosaur2.webp" "500px">><</img>>
<<speech "gf" "Jane">>Will you save me if I'm making that face?<</speech>>
<<speech "mc" "$name">>You can't, so I'll you with your normal face.<</speech>>
<<speech "gf" "Jane">>Oh, how sweet.<</speech>>
<blockquote>You drove in search of a good place to eat but something came on your mind.</blockquote>
<<speech "mc" "$name">>Case, you can continue on without us, you know. We're gonna grab some early lunch and then visit the Petrified Forest.<</speech>>
<<speech "case" "Case">>Oh, I'm not in a hurry. And to be honest, I haven't had breakfast as well, so let me show you to the best restaurant in town.<</speech>>
<blockquote>Seeing he's not too keen on leaving, you let him [[lead the way.|HolbrookEnter3-2]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-steakpark">
<div class="overlay"></div>
<<if $owndinosaur is "Yes">>
<blockquote class="location">You bought a dinosaur hat</blockquote>
<<speech "npcgroup" "Clerk">>Thanks for the purchase! Let me pack it up for you.<</speech>>
<<speech "mc" "$name">>No need.<</speech>>
<blockquote>Is your answer as you put on the hat.</blockquote>
<<set $dinosaurhead to "on">>
<<speech "dino" "$name">>I'll carry it with my head.<</speech>>
<blockquote>A gasp ringed all over the store, but only a split seconds later, it's replaced by the sound of a camera. A camera, only one.</blockquote>
<<speech "gf" "Jane">>Ooooooohhhhh~<</speech>>
<blockquote>From her.</blockquote>
<<speech "dino" "$name">>Let's go.<</speech>>
<blockquote>You proudly went out with [[your new hat.|SteakPark3a]]</blockquote>
<<else>>
<<speech "npcgroup" "Clerk">>Ahh, that's a shame.<</speech>>
<<speech "gf" "Jane">>Heeeeeeeeeeeeeeee~<</speech>>
<blockquote>She let out a huge whine seeing as you're unwilling to buy it.</blockquote>
<<speech "npcgroup" "Clerk">>Anyway, please come back if you [[changed your mind.|SteakPark3a]]<</speech>>
<</if>>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<div class="overlay"></div>
<<img "Images/gf/gf18.webp" "600px">><</img>>
<blockquote class="location">There is no going back</blockquote>
<blockquote>She turns to you, with her ass up, and his cum freely flowing from her pussy.</blockquote>
<<speech "gf" "Jane">>I'll see you tomorrow, love.<</speech>>
<<speech "mc" "$name">>B-But-<</speech>>
<<speech "gf" "Jane">>But what? Aren't you satisfied already?<</speech>>
<blockquote>She pointed to your flaccid dick.</blockquote>
<<speech "gf" "Jane">>Go, shoo. We'll be very busy.<</speech>>
<blockquote>Lifelessly, you stood up, looking at the two smirking couple as you walk to the door.</blockquote>
<<speech "gf" "Jane">>And please get enough sleep, cause I know, I won't get any.<</speech>>
<blockquote>With those final words you step out, you feel the coldness of the door handle as you [[closed the door.|TBC3-1]]</blockquote>
</div>
</div><div id="main-screen">
<div class="location-casebed">
<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>Thanks for playing as always, originally I planned to make an oblivious route (where the MC doesn't know that Jane is cheating) but I realized just how complicated such a route be, just because how much it'll diverge the narrative, especially in the future chapters. But if there's a huge demand for that route, I'll create that one in this chapter as a small update as a priority.</blockquote>
<blockquote>As always, if you want to support me in developing the game then consider subscribing to my <a href="https://www.patreon.com/AnonDux1/">Patreon</a> or <a href="https://anondux.fanbox.cc/">FANBOX</a>, you'll get the early-access, other bonus content, and also, connected to this game, the handy variable switcher to easily get other endings. Thank you all, I'll see you later.</blockquote>
<blockquote>[[Click here to replay Chapter 3.|CH3Begin3-1]] And as I said directly above, the variable switcher like the one in the last chapter is now subscribers-only benefit, so please consider supporting me in my <a href="https://www.patreon.com/AnonDux1/">Patreon</a>, thank you!</blockquote>
</div>
</div><div id="main-screen">
<div class="location-highway1">
<div class="overlay"></div>
<<speech "case" "Case">>Miami, huh? I've been to Miami before, around the beach area.<</speech>>
<<speech "mc" "$name">>Oh? You do? Vacation?<</speech>>
<blockquote>But he laughed when you said vacation.</blockquote>
<<speech "case" "Case">>No, no, for work. Building beach villas near the coast, hey, maybe you'll stay in one of them.<</speech>>
<<speech "mc" "$name">>Heh, nah, not with my salary.<</speech>>
<blockquote>You shared a laugh with everyone else.</blockquote>
<<speech "gf" "Jane">>But, I couldn't have guessed that you're one for manual labor.<</speech>>
<<speech "case" "Case">>Oh? Did my devilish good looks tricked you, Jane?<</speech>>
<<speech "gf" "Jane">>Maybe, but it's more your... mannerism.<</speech>>
<blockquote>He didn't answer, he only smirked while giving Jane a rakish wink.</blockquote>
<<speech "case" "Case">>Mmm? What else have you gleaned about little old me?<</speech>>
<<speech "gf" "Jane">>O-Oh, uh, s-s-sorry.<</speech>>
<blockquote>He then laughed openly, which made Jane [[blush beet red.|CaseIntro3-3]] Despite her secret from earlier, Case managed to taps her inquisitive mind.</blockquote>
</div>
</div><div id="main-screen">
<div class="location-caseint">
<div class="overlay"></div>
<<speech "mc" "$name">>So, you live here all by yourself?<</speech>>
<blockquote>You started the conversation as Case sits down on one of the chair.</blockquote>
<<speech "case" "Case">>Yup, officially.<</speech>>
<<speech "gf" "Jane">>Officially?<</speech>>
<<speech "case" "Case">>I mean my parents gave it to me but I rarely even stay here. So, unofficially, only dust, bugs, and dirt lives here.<</speech>>
<<speech "mc" "$name">>Aahhh...<</speech>>
<<speech "case" "Case">>Let me guess, you thought that I'm living with nine girls?<</speech>>
<blockquote>He got you.</blockquote>
<<speech "case" "Case">>Heh, not nine, man, seven at most.<</speech>>
<<speech "gf" "Jane">>W-What?<</speech>>
<<speech "case" "Case">>Ha! Just kidding, it's five.<</speech>>
<<speech "mc" "$name">>...................................<</speech>>
<blockquote>You're wondering when the joke [[started or ended.|CaseHouse3-1]]</blockquote>
</div>
</div>