JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<<include $profile>><<ifpassagehas>><<if Object.keys($inventory).length > 0>><<include "inventory">><</if>><</ifpassagehas>><<if $profile == "player-profile">><<include "player-guide">><</if>> <div style="text-align: left; line-height:1.2; white-space: normal;"><<glow "0.5px yellow" "8px orange">>Volume<</glow>></div><input type="range" id="globalVideoVolume" min="0" max="1" step="0.01" value="1" style="width: 100%;"> <<include "plug">> <<backend>> [[player-profile]] <<script>> (function () { const slider = document.getElementById("globalVideoVolume"); function updateSliderFill(slider) { const percent = (slider.value - slider.min) / (slider.max - slider.min); slider.style.setProperty('--fill', `${percent * 100}%`); } // Restore previously saved volume const savedVolume = State.variables.videoVolume ?? 1; slider.value = savedVolume; updateSliderFill(slider); slider.addEventListener("input", function (e) { const volume = parseFloat(e.target.value); State.variables.videoVolume = volume; updateSliderFill(slider); // Apply to all videos document.querySelectorAll("video").forEach(video => { video.volume = volume; }); }); })(); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <img src="img/title-screen.png" style="max-width: 80%;"> <<regButton "intro1" "Start Game">><</regButton>> </div>
<<backend>> <<set $daystate to getDayState($hour)>> <<set $daycolor to getDayColor($hour, 0)>> <<set $dayglow to getDayColor($hour, 1)>> <<set $daycolor to "0.5px " + $daycolor>> <<set $dayglow to "8px " + $dayglow>> <<set $displaytime = ($hour > 12 ? ($hour - 12) : $hour) + ":" + ($minute < 10 ? "0" + $minute : $minute) + " " + ($hour >= 12 ? "PM" : "AM") + " (" + $daystate + ")">> <</backend>> <div id="story-caption" class="story-caption"><img id="title-image" src="img/StreetHero-01.png" alt="Game Title" style="width: 120%; max-width: 200px;"> <h1 style="font-size: 16px;">The Snow Flower and the Spring Sunshine Version 0.6a</h1> <h1 style="font-size: 20px;">Day: <<glow>><<print $day>><</glow>> <h1 style="font-size: 20px;">Time: <<glow $daycolor $dayglow>><<print $displaytime>><</glow>></h1><<if $hidenav == 0>><div class="button-row"><<ifpassagehas>><<tskip 0 15 "+15m">><<tskip 0 30 "+30m">><<tskip 1 0 "+1h">><</ifpassagehas>></div><</if>><<include "player-values">><<if $hidenav == 0>> <<imgButton "quicknav" "img/neon-buttons/nav.png">> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "res-area" "img/neon-buttons/residential-area.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "characters" "img/neon-buttons/characters.jpg">> <</if>><<if $inbattle == 1>><<include "battle-rules">><</if>><<backend>> <<set $haru.maxlove = 150>> <<set $emi.maxlove = 120>> <<set $akane.maxlove = 120>> <<set $shiori.maxlove = 120>> <<set $rio.maxlove = 120>> <<set $shizu.maxlove = 120>> <<set $yuki.maxlove = 120>> <<set $miku.maxlove = 120>> <<set $nirei.maxlove = 120>> <<set $anzu.maxlove = 100>> <<set $anzu.love = 100>> <<set $marika.maxlove = 120>> <<set $erika.maxlove = 120>> <<if (($hour >= 17 && $minute >= 30) && $hour < 19) && $dayIndex % 7 < 6 && $dayIndex % 7 > 0>> <<if $hour >= 19 || $dayIndex % 7 == 6 || $dayIndex % 7 == 0>> <<set $haru.scc = 0>> <</if>><</if>> <<set _trackPassages = ["alley", "business-area", "home", "bedroom", "school", "classroom", "track", "council-room", "rooftop", "park", "hospital", "hosp-lobby", "konbini", "konbini-int", "miku-room"]>> <<if _trackPassages.includes(passage())>> <<set $currentPassage = passage()>> <</if>> <</backend>>
<<set $days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>> <<set $player = { name: "Shin", classIntro: 0, orgasm: 0, money: 500, rank: 100, quest: 1, rep: 0 }>> <<set $inventory = {}>> <<set $stats = { level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, exp: 0, points: 15, }>> <<set $videoVolume = 1>> <<set $tekijime = { alley: 16, bisarea: 18, resarea: 20, park: 22 }>> <<set $mugging = 0>> <<set $sick = 1>> <<set $tempStats = JSON.parse(JSON.stringify($stats))>> <<set $location to "Intro">> <<set $dayIndex = 0>> <<set $hour = 7>> <<set $minute = 0>> <<set $haru = { love: 0, quest: 1, chat: 0, stormoff: 0, visit: 0, discomfort: 0, scc: 0}>> <<set $akane= { love: 0, quest: 1, chat: 0, checktoday: 0}>> <<set $shiori= { love: 0, quest: 1, chat: 0}>> <<set $emi= { love: 0, quest: 1, chat: 0}>> <<set $rio= { love: 0, quest: 1, chat: 0}>> <<set $shizu= { love: 0, quest: 1, chat: 0, q1: 0}>> <<set $yuki= { love: 0, quest: 1, chat: 0, spending: 0, think: 0}>> <<set $miku= { love: 0, quest: 1, chat: 0, follow: 0}>> <<set $nirei = {love: 0, quest: 1, chat: 0}>> <<set $anzu= { love: 0, quest: 1, chat: 0}>> <<set $marika= { love: 0, quest: 1, chat: 0}>> <<set $erika= { love: 0, quest: 1, chat: 0, day: 0, rape: false}>> <<set $profile to "player-profile">> <<set $day = $days[$dayIndex]>> <<set $daystate = getDayState($hour)>> <<set $location to "Intro">> <<set $hidenav to 1>> <<set $discomfort to 0>> <<set $inbattle = 0>> <<set $hospintro to "hosp-intro">> <<set $riomeet = 0>> <<set $enemy = { level: 1, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>>
<<backend>> <<set $shioridialog = "...">> <<if $shiori.quest > 4>><<set $shioridialog = "Hi, $player.name!">><</if>> <</backend>><div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shiori/shiori-class.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>$shioridialog <</dialog>> <div class="button-row"> <<if $nirei.quest == 2>><<regButton "nirei2-1" "Talk to her about Nirei">><</regButton>><</if>> <<if $shiori.quest == 2>><<regButton "shiori2-1" "You recognize her">><</regButton>><</if>> <<regButton "classroom" "Nevermind">><</regButton>> </div> </div> <<set $profile to "shiori-profile">>
<<backend>> <<set $tekwar to "Fight " + ($tekijime.alley == 32 ? "Oreni" : "Level " + $tekijime.alley + " Tekijime Student")>> <</backend>><div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>It smells like piss. <</dialog>> <div class="button-row"><<if $miku.follow == 3 && $miku.quest == 1 && $hour >= 23 && $minute < 30>><<regButton "miku1-alley" "The cute girl notices you">><</regButton>><</if>><<if $daystate == "Night" && $mugging == 0>><<regButton "mugging1" "You hear a woman scream">><</regButton>><</if>> <<if $player.quest == 3 && $tekijime.alley <= 32>><<regButton "tekalley-crud" $tekwar>><</regButton>><</if>></div> <div class="button-row"> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "home" "img/neon-buttons/home.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "res-area" "img/neon-buttons/residential-area.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> </div> </div> <<if false>> <</if>> <<set $location to "Alley">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <<set $inbattle = 0>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I'm in my bedroom. <</dialog>> <div class="button-row"> <<if $shiori.quest >= 10 && $daystate == "Night" && $shiori.chat < 5>> <<regButton "shiori-cyber1" "Shiori is calling">><</regButton>><</if>> <<if $shizu.quest >= 3 && $hour < 13 && ($day == "Saturday" || $day == "Sunday") >><<if $hour < 10>><<regButton "shizu-shop" "Call Shizu">><</regButton>><<else>><<regButton "shizu-lunch" "Call Shizu">><</regButton>><</if>> <</if>><<if $nirei.quest == 6 && $shiori.quest >= 10 && $daystate == "Night" && ($day != "Saturday" && $day != "Sunday") && $player.quest >= 5>><<regButton "nirei5-1" "You left your jacket at Nirei's place">><</regButton>><</if>> <<if $emi.quest >= 5 && $hour < 21 && $emi.chat < 5>> <<regButton "emi-call-bed" "Call Emi">><</regButton>> <</if>><<if $shiori.quest >=5 && ($day == "Saturday" || $day == "Sunday") && $hour < 12>><<regButton "shiori5-1" "Shiori is calling">><</regButton>><</if>> <<regButton "sleep" "Sleep">><</regButton>> <<regButton "character-stats" "Manage Stats">><</regButton>> </div> <div class="button-row"> <<imgButton "corridor" "img/neon-buttons/corridor.png">> <<imgButton "home" "img/neon-buttons/frontyard.jpg">> <<imgButton "living" "img/neon-buttons/living.png">> <<imgButton "dining" "img/neon-buttons/dining.png">> <<imgButton "kitchen" "img/neon-buttons/kitchen.png">> </div> </div> <<backend>> <<set $location to "Bedroom">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <</backend>> <br><br>
<div class="bg bedroom"></div> <div class="content-panel"> <h1 style="font-weight: 500;"><<glow "0.25px white" "2px white" 24>>Character Stats<</glow>></h1> <img src="img/avatars/you-01.png" style="max-width: 40%;"> <h1 style="font-size: 20px;"><<glow "0.5px cyan" "8px cyan">>Sawada <</glow>><<textbox "$player.name" $player.name>></h1><h1><<glow "0.65px yellow" "10px red">>Level <<print $stats.level>><</glow>></h1><div style="width:60%; margin: 0 auto;"><<glow "0.65px cyan" "10px cyan">>exp: <<print $stats.exp>> / <<print getReq($stats.level)>><</glow>> <div style="width: 60%; line-height:1.1; margin: 0 auto;"> <h1><<glow "0.5px yellow" "8px orange">>Stats<</glow>></h1> <<backend>> <<set $originalStats = JSON.parse(JSON.stringify($stats))>> <<set $tempStats = JSON.parse(JSON.stringify($stats))>> <</backend>> <div style="display: flex;"> <div style="width: 60%; text-align: left;"><h1><<glow "0.5px red" "8px red">><span style="color: #f55;">Strength:</span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px red" "8px red" "str">>-<</stat>> </h1></div> <div style="width: 20%"><h1><<glow "0.5px red" "8px red">><span id="stat-str" style="color: #f55;"><<print $tempStats.str>></span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px red" "8px red" "str">>+<</stat>> </h1></div> </div> <div style="display: flex;"> <div style="width: 60%; text-align: left;"><h1><<glow "0.5px cyan" "8px cyan">>Intelligence:<</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px cyan" "8px cyan" "int">>-<</stat>> </h1></div> <div style="width: 20%"><h1><<glow "0.5px cyan" "8px cyan">><span id="stat-int"><<print $tempStats.int>></span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px cyan" "8px cyan" "int">>+<</stat>> </h1></div> </div> <div style="display: flex;"> <div style="width: 60%; text-align: left;"><h1><<glow "0.5px lime" "8px green">><span style="color: #cfc;">Agility:</span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px lime" "8px green" "agi">>-<</stat>> </h1></div> <div style="width: 20%"><h1><<glow "0.5px lime" "8px green">><span id="stat-agi"><<print $tempStats.agi>></span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px lime" "8px green" "agi">>+<</stat>> </h1></div> </div> <div style="display: flex;"><div style="width: 90%; text-align: right;"><h1><<glow "0.5px yellow" "8px yellow">>Stat Points:<</glow>></h1></div> <div style="width: 10%"><h1><<glow "0.5px yellow" "8px yellow">><span id="stat-points"><<print $tempStats.points>></span><</glow>></h1></div> </div> <<regButton "stat-crud" "Done">><</regButton>> </div> <div style="text-align: left; line-height:1.1; width: 90%; margin: 0 auto; background-color: rgba(0, 0, 0, .8); padding: 0px 20px 20px 20px; outline: 1px solid white;"> <h1><<glow "0.5px yellow" "8px orange">>Stat Guide<</glow>></h1><h1>The best weapon is one's body. Training <<glow "0.5px red" "8px red">><span style="color: #f55;">strength</span><</glow>> will turn your body into the ultimate weapon, increasing your <<glow "0.5px red" "8px red" 16>><span style="color: #f55;">damage</span><</glow>> and <<glow "0.5px red" "8px red" 16>><span style="color: #f55;">health</span><</glow>>.</h1><h1>A sharp mind will allow you to see through your enemies and most importantly, yourself. Improving your <<glow "0.5px cyan" "8px cyan">>intelligence<</glow>> will increase your <<glow "0.5px cyan" "8px cyan" 16>>Crit Rate<</glow>> and <<glow "0.5px cyan" "8px cyan" 16>>experience<</glow>> taken from battles.</h1><h1>Learning how to move efficiently is the key to athleticism. Train your <<glow "0.5px lime" "8px green">><span style="color: #cfc;">agility</span><</glow>> to increase your <<glow "0.5px lime" "8px green" 16>><span style="color: #cfc;">overall speed</span><</glow>> and <<glow "0.5px lime" "8px green" 16>><span style="color: #cfc;">energy</span><</glow>>. </h1></div> <<backend>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <h1><<glow "0.65px yellow" "10px orangered" 25>>GUIDES<</glow>></h1><div class="button-row id-row"> <<guideButton "you">> <<guideButton "akane">> <<guideButton "anzu">> <<guideButton "emi">> <<guideButton "erika">> <<guideButton "haru">> <<guideButton "marika">> <<guideButton "miku">> <<guideButton "nirei">> <<guideButton "rio">> <<guideButton "shiori">> <<guideButton "shizu">> <<guideButton "yuki">> </div><h1><<glow "0.5px cyan" "8px cyan" 25>>CHARACTERS<</glow>></h1><<dialog "You">>I'm the son of a gangster who slept with the rival gang boss' daughter so I had to move in with my Uncle to help our clan build strength for the upcoming war. <</dialog>> <<dialog "Azuki">>I'm the daughter of Yamaguchi Takeshi. <</dialog>> <<dialog "OldBoss">>I'm known as the ultimate gangster. I lead the Yamaguchi Clan. <</dialog>> <<dialog "Dad">>I'm $player.name's father and the leader of the Sawada Clan. <</dialog>> <<dialog "Uncle">>I'm the younger brother of Sawada Isao. I lead a branch of the Sawada Clan and I have taken in my nephew, Sawada $player.name, who is currently being targeted by the Yamaguchi Clan. <</dialog>> <<dialog "Haru">>I'm the class representative. Studying is important to me! I'm the first person you meet at school. <</dialog>> <<dialog "Emi">>I'm a classmate who likes strong guys. Maybe I'll notice you when you grow some muscle. <</dialog>> <<dialog "Akane">>I'm the personal doctor for the Sawada Clan. I am indebted to Sawada Isao's late wife. As thanks, I will take care of her son... <</dialog>> <<dialog "Anzu">>I am your childhood friend from Shibuya. <</dialog>> <<dialog "Erika">>I am Marika's daughter, your cousin. <</dialog>> <<dialog "Miku">>I'm your neighbor. I typically buy food at the Convenience Store late at night. Maybe you can meet me there? <</dialog>> <<dialog "Rio">>I'm your classmate! I'll warn you about a certain classmate. Don't forget to thank me after you deal with it, okay? <</dialog>> <<dialog "Shiori">>I am your classmate. I work as a model, and I get harrassed by boys all the time. <</dialog>> <<dialog "Marika">>I am your paternal aunt. <</dialog>> <<dialog "Nirei">>I am Shiori's sister. I hate that I'm often compared to her. <</dialog>> <<dialog "Shizu">>I'm your teacher. My dream is to change the Delinquent School, Aoba High, into a respectable school. I won't let you turn into a thug! <</dialog>> <<dialog "Yuki">>I work at the Convenience Store. Don't talk to me while I work... Unless... <</dialog>> <<dialog "Kyogaku">>I am Shizu-sensei's student. I am the strongest ranker in Aoba. <</dialog>> <<dialog "Kuroki">>I am Sawada Clan's plant in Aoba. I created the ranking system. <</dialog>> <<backend>> <</backend>> <<regButton $currentPassage "Back">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Characters">> <<set $profile to "player-profile">>
<<set $player.classInto = 1>> <div class="bg classroom"></div> <div class="content-panel"> <img src="img/misc/class-intro.jpg" style="max-width: 80%;"> <<dialog "Shizu">>Class! We have a new student. $player.name, introduce yourself. <</dialog>> <<dialog "You">>Good morning. My name is Sawada $player.name. I recently moved here from Shibuya. Please take care of me. <</dialog>> <<dialog "Shizu">>You heard him. Help him adjust, okay? Miss class rep, assist him, okay? <</dialog>> <hr> You instantly feel a collective hostility from a lot of people. <hr> <<dialog "You">><i>*Whoa. I'm already making enemies.*</i> <</dialog>> <<dialog "Haru" "student">>Yes, ma'am! <</dialog>> <<dialog "Shizu">>Great! $player.name, you can take the seat next to Miss Haru. <</dialog>> <hr> You feel the hostility grow stronger. <hr> <<dialog "You">><i>*Jeez...*</i> Yes, ma'am. <</dialog>> <<regButton "classroom" "You sit next to the class rep">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Classroom">> <<set $player.classIntro to 1>>
<div class="bg classroom"></div> <div class="content-panel"><<if $dayIndex % 7 < 6 && $dayIndex % 7 > 0>><<include "class-head">> <div class="button-row"> <<if $player.quest >= 5 && $anzu.quest == 1 && $dayIndex % 7 < 6 && $dayIndex % 7 > 0 && $hour < 12>><<regButton "anzu1-1" "There's a new transfer student">><</regButton>><</if>> <<if $miku.quest == 10 && $hour == 11 && $dayIndex % 7 < 6 && $dayIndex % 7 > 0>><<regButton "miku11-1" "Miku's watch sends you a notification">><</regButton>><</if>> <<if $player.quest >= 4 && $hour == 7 && $shizu.quest == 2>><<regButton "shizu3-1" "Pull Shizu to the side">><</regButton>><</if>> <<if $emi.quest >= 5 && $hour == 17>><<regButton "emi4-7" "Wait until you're alone with Emi">><</regButton>><</if>> <<if ($hour == 17 || ($hour == 18 && $minute <= 30)) && $haru.quest >= 3 && $haru.scc == 0>> <<if $haru.quest == 8 && $yuki.quest >= 8>> <<regButton "haru8-1" "Haru is waiting for you">><</regButton>> <<else>> <<regButton "haru-afterclass" "Haru is waiting for you">><</regButton>> <</if>> <</if>><<if $hour == 17 && $minute < 45 && $player.rank <= 95 && $haru.quest >= 6>><<regButton "shizu-class-crud" "Shizu-sensei wants to talk">><</regButton>><</if>><<if $hour == 12 && $shiori.quest == 4>><<regButton "shiori4-1" "Have lunch with Haru">><</regButton>><</if>> <<include "class-study">><<regButton "school" "Leave">><</regButton>></div> <<else>> <<dialog "You">>No classes today. <</dialog>><<set $profile to "player-profile">> <<regButton "school" "Leave">><</regButton>> <</if>><<include "class-icons">> </div> <<backend>> updateright(); [[haru8-1]] <</backend>> <<set $location to "Classroom">> <<set $hidenav to 0>>
<<backend>><<set $emichat = "emi-chat"+$emi.quest>><</backend>> <div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-class.mp4" type="video/mp4"> </video> <<if $emi.quest == 1>> <<dialog "Emi" "student">>What do you want? <</dialog>> <<elseif $emi.quest == 3 || $emi.quest == 4>> <<dialog "Emi" "student">>... <</dialog>> <<elseif $emi.quest >= 5>> <<dialog "Emi" "student">>Hi, $player.name. <</dialog>> <<else>> <<dialog "Emi" "student">>Hey, nerd. <</dialog>> <</if>> <div class="button-row"> <<if $emi.quest == 4 && $player.rank <= 85 && $hour > 10 && $hour < 13>><<regButton "emi4-1" "Emi is being bullied">><</regButton>><</if>> <<if $emi.quest == 1>> <<if $stats.str < 10>> <<regButton "emi-annoyed" "Chat">><</regButton>> <<else >> <<regButton "emi1-1" "Emi notices you">><</regButton>> <</if>> <<elseif $emi.chat < 5>> <<regButton $emichat "Chat">><</regButton>> <</if>> <<regButton "classroom" "Nevermind">><</regButton>> </div> </div> <<set $profile to "emi-profile">>
<div class="bg classroom"></div> <div class="content-panel"> You focus in class. <hr> <img id="title-image" src="img/misc/study.jpg" style="width: 45%;"> <div class="button-row"> <<regButton "classroom" "Class Dismissed">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<set $hour = 17>> <<set $minute = 0>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Let's study. <</dialog>> <<dialog "You">>That's what we're here for. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-bedroom.mp4" type="video/mp4"> </video> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <div class="button-row"> <<regButton "haru3-study" "Study">><</regButton>> <<regButton "haru3-flirt" "Flirt">><</regButton>> <<if $haru.love >= 30>> <<regButton "haru3-skinship" "Skinship">><</regButton>><</if>> <<if $haru.love >= 40>> <<regButton "haru3-grope" "Grope">><</regButton>><</if>> <<if $haru.love >= 70>> <<regButton "haru3-finger1" "Finger her">><</regButton>><</if>> <<if $haru.love >= 100>> <<regButton "haru3-1" "Sex">><</regButton>><</if>> </div> </div> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hey. Haru? <</dialog>> <<dialog "Haru" "student">>Yeah? <</dialog>> <<dialog "You">>I'm glad you're the class rep. <</dialog>> <<dialog "Haru" "student">><i>*ahem*</i> Focus in class. <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru-chat.mp4" type="video/mp4"> </video> <hr> She blushes... <<if $haru.love <= getCond($haru.quest)>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <</if>> <div class="button-row"> <<regButton "haru-class" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<if $haru.love <= getCond($haru.quest)>> <<set $haru.love = ($haru.love + 1)>> <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $haru.chat = $haru.chat + 1>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hey. Haru? <</dialog>> <<dialog "Haru" "student">>Hmm? <</dialog>> <<dialog "You">>You're writing with a pen, right? <</dialog>> <<dialog "Haru" "student">>Huh? Yeah, this is a pen. What did you think it was? <</dialog>> <<dialog "You">>I just wanted to confirm. <</dialog>> <<dialog "Haru" "student">><i>*scoffs*</i> That this is is a pen? <</dialog>> <<dialog "You">>What? No. That you voice is prettier too. It really is. <</dialog>> <<dialog "Haru" "student">>Wh-what? Just focus in class, idiot! <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru-chat.mp4" type="video/mp4"> </video> <hr> She blushes... <<if $haru.love <= getCond($haru.quest)>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <</if>> <div class="button-row"> <<regButton "haru-class" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<if $haru.love <= getCond($haru.quest)>> <<set $haru.love = ($haru.love + 1)>> <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $haru.chat = $haru.chat + 1>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hey. Haru? <</dialog>> <<dialog "Haru" "student">>Hey. <</dialog>> <<dialog "You">>I need some help. <</dialog>> <<dialog "Haru" "student">>What do you need? <</dialog>> <<dialog "You">>The view in my room is... well... not great. <</dialog>> <<dialog "Haru" "student">>Okay? Do you need some help picking a new design? <</dialog>> <<dialog "You">>Oh. No. I just think it would be prettier to look at if you were there. <</dialog>> <<dialog "Haru" "student">>Wha- Honestly! <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru-chat.mp4" type="video/mp4"> </video> <hr> She blushes... <<if $haru.love <= getCond($haru.quest)>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <</if>> <div class="button-row"> <<regButton "haru-class" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<if $haru.love <= getCond($haru.quest)>> <<set $haru.love = ($haru.love + 1)>> <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $haru.chat = $haru.chat + 1>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>What the... Hey, Haru! <</dialog>> <<dialog "Haru" "student">>H-huh? <</dialog>> <<dialog "You">>Wait. Wait. Look at me for a bit, there's something up with your face. <</dialog>> <<dialog "Haru" "student">>W-What is it? Do I have something on my face? <</dialog>> <<dialog "You">>What did you do? <</dialog>> <<dialog "Haru" "student">>H-huh!? What is it? <</dialog>> <<dialog "You">>You look extra cute today. <</dialog>> <<dialog "Haru" "student">>Y-you! Don't talk to me. <</dialog>> <hr> She blushes... <<if $haru.love <= getCond($haru.quest)>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <</if>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru-chat.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru-class" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<if $haru.love <= getCond($haru.quest)>> <<set $haru.love = ($haru.love + 1)>> <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $haru.chat = $haru.chat + 1>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru-class.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>I'm trying to focus. <</dialog>> <div class="button-row"> <<if $haru.chat < 5>> <<if $haru.love == 0>> <<set $chat = "haru-chat0">><<else>> <<set $chat = "haru-chat"+clamp(Math.floor(($haru.love - (Math.pow(random(0, $haru.love), 2) / $haru.love)) / 10), 3)>><</if>> <<if $player.quest >= 5 && $haru.quest == 6>> <<regButton "haru6-1" "Chat">><</regButton>> <<else>> <<regButton $chat "Chat">><</regButton>> <</if>><</if>> <<if $haru.quest == 1 && $haru.love >= 10>> <<regButton "haru1-1" "Haru looks worried">><</regButton>> <</if>> <<regButton "classroom" "Nevermind">><</regButton>> </div> </div> <<set $profile to "haru-profile">> <<if false>> /* connected passages */ [[haru6-1]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru" "student">>Woah! This is your house? <</dialog>> <<dialog "You">>My uncle's. I live in Shibuya, remember? <</dialog>> <<dialog "Haru" "student">>Your uncle's house is nice. <</dialog>> <<dialog "You">>Really? Wanna live here with me? <</dialog>> <<dialog "Haru" "student">>Sh-shut up! <</dialog>> <<dialog "Uncle">>You shouldn't tease a lady like that, $player.name. <</dialog>> <<dialog "You">>Uncle! This is Haru, my girlfriend. <</dialog>> <<dialog "Haru" "student">>Wh-what!? <</dialog>> <<dialog "You">>Haha! She's my classmate. Haru, this is my uncle. <</dialog>> <<dialog "Uncle">>Nice to meet you, Haru. Thanks for taking care of my nephew. You can call me Uncle Hideo, if you'd like. <</dialog>> <<dialog "Haru" "student">>N-nice too meet you too... <</dialog>> <<dialog "You">>Welp. We're off to study! <</dialog>> <<dialog "Uncle">>Hah. Good one. Have fun, you too! <</dialog>> <<dialog "Haru" "student">><i>*blushes*</i> <</dialog>> <h1>You're about to play a mini game. If you let her <<glow "0.5px red" "8px red">>annoyance<</glow>> reach 100%, she will leave. Don't worry, though! Actually studying will reduce her annoyance and as you increase your relationship, her tolerance for annoyance increases too! Also, she can't stay past 7:00pm. If you fail and she leaves, approach her tomorrow after class to try again. Goodluck.</h1> <div class="button-row"> <<regButton "haru-bedroom" "You go to your room">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Home">> <<set $haru.visit to 1>>
<<backend>><<set $relper = Math.ceil(($haru.love/$haru.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px lime" "8px cyan" 24>>Character Profile<</glow>></h1> <img src="img/avatars/haru-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px lime" "8px cyan">>Suzuki Haru<</glow>></h1> <<if $haru.love > $haru.maxlove>><<set $haru.love to $haru.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>> <<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $haru.love+" / "+$haru.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.2;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Keep chatting with her to raise your relationship. <<if $haru.love >= 10 || $haru.quest >= 2>>2. She looks bothered in class, maybe you can help her out?<</if>> <<if $haru.quest >= 2>>3. Keep raising your relationship.<</if>> <<if ($haru.love >= 20 && $haru.quest >= 2) || $haru.quest >= 3>>4. You can find her at the rooftop.<</if>> <<if $haru.quest >= 3>>5. See her after class. Keep studying at your place until something happens. <</if>> <<if $haru.quest >= 4>>6. You can now find her in the Council Room after 5:30PM if you did not bring her home. Raise your relationship with her.<</if>> <<if ($haru.quest >= 4 && $haru.love >= 150) || $haru.quest >= 5>>7. Study with her in the Council Room.<</if>> <<if $haru.quest >= 5>>8. Raise your intelligence.<</if>> <<if ($haru.quest >= 5 && $stats.int >= 30) || $haru.quest >= 6>>9. Study with her in the Council Room again.<</if>> <<if $haru.quest >= 6>>10. Continue player quest until you defeat Gokuro. <<if $player.quest >= 5>>11. Approach her at school and chat.<</if>><</if>> <<if $haru.quest >= 7>>12. Finish Yuki's 11th quest. <<if $yuki.quest >= 9>>13. She'll be waiting for you after class the next day.<</if>><</if>> <<if $haru.quest >= 9>>14. Find Yuki. <<if $yuki.quest >= 11>>15. Save her.<</if>><</if>> <<if $haru.quest >= 10>>16. That's it for this version.<</if>> </h1> <a href="https://safriscoffi.com/streethero/guide/haru.php" class="button download" target="_blank" style="color: #5f9; text-shadow: 0 0 5px lime, 0 0 10px cyan;">More detailed guide!</a> </div>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof.mp4" type="video/mp4"> </video> <<if $haru.love >= 20 && $haru.quest == 2>> <<if $haru.stormoff == 0>> <<dialog "You">><i>*Hm? What's she doing here?*</i> <</dialog>> <<else>> <<dialog "You">><i>*She's here again.*</i> <</dialog>> <</if>><</if>> <div class="button-row"> <<if $haru.stormoff == 0>> <<regButton "haru2-1a" "Approach her">><</regButton>> <<else>> <<regButton "haru2-1b" "Approach her">><</regButton>> <</if>> <<regButton "rooftop" "Leave her alone">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru2-1a]][[haru2-1b]] <</if>> <<set $profile to "haru-profile">>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Are you serious? <</dialog>> <<dialog "Haru" "student">>Yep! Aren't you grateful? <</dialog>> <<dialog "You">><i>*What the hell?*</i><br>Wow... You're pretty Arrogant, huh? <</dialog>> <<dialog "Haru" "student">>W-what? No... I didn't- <</dialog>> <<dialog "You">>I'm doing fine. I don't need pity. <</dialog>> <<dialog "Haru" "student">>I-I'm sorry... <</dialog>> <<dialog "You">>Yeah, whatever. <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof4b.mp4" type="video/mp4"> </video> <hr> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Relationship -3<</glow>></h1> <div class="button-row"> <<regButton "school" "Storm off">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $haru.stormoff = 1>> <<set $haru.love = ($haru.love - 3)>> <<set $hidenav to 0>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru" "student">>Sure! <</dialog>> <div class="button-row"> <<regButton "haru-visitcrud" "Leave">><</regButton>> <<if $haru.quest >= 4 && $haru <= 6>><<regButton "haru-decline2" "Council Room">><</regButton>><</if>> </div> </div> <<set $profile to "haru-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru1/haru1-1.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Umm... <</dialog>> <<dialog "You">>Hey, are you okay? <</dialog>> <<dialog "Haru" "student">>It's not here... <</dialog>> <<dialog "You">>What's not there? <</dialog>> <<dialog "Haru" "student">>My book... <</dialog>> <div class="button-row"> <<regButton "haru1-2" "Offer mine">><</regButton>> <<regButton "classroom" "Not my problem">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru1-2]] <</if>> <<set $hidenav to 1>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru1/haru1-2.mp4" type="video/mp4"> </video> <<dialog "You">>You can use mine. Here. <</dialog>> <<dialog "Haru" "student">>What? No, the teacher will scold you. <</dialog>> <<dialog "You">>Come on. Look at me. I'm used to scolding. I'll be fine. <</dialog>> <<dialog "Haru" "student">>But... <</dialog>> <<dialog "You">>Shh. The teacher is here. <</dialog>> <<dialog "Haru" "student">>Umm... <</dialog>> <div class="button-row"> <<regButton "haru1-3" "You get scolded">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru1-3]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>Open your books to page 46. <</dialog>> <hr> Everyone opens their books as Haru awkwardly peeks at you <hr> <<dialog "Shizu">>$player.name, where's your book? <</dialog>> <<dialog "You">>I don't really believe in books, miss. I think I can learn better if I listen to your pretty voice. <</dialog>> <<dialog "Shizu">>Wha- Th-This kid! <i>*ehem*</i> H-haru! Share your book with $player.name. <</dialog>> <<dialog "Haru" "student">>Y-yes, ma'am! <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru1/haru1-3.mp4" type="video/mp4"> </video> <<dialog "You">>See? I handled that well, didn't I? <</dialog>> <<dialog "Haru" "student">>Pfft. Flirting with Miss Shizu... <</dialog>> <<dialog "You">>Hmm? Jealous, are we? <</dialog>> <<dialog "Haru" "student">>Yeah, right. Here let's share. <</dialog>> <<dialog "You">>For the record, I think you're prettier than her voice. <</dialog>> <<dialog "Haru" "student">>Wha- Th-that was corny! Whatever! <</dialog>> <<dialog "Shizu">>Quiet, please! <</dialog>> <div class="button-row"> <<regButton "haru1-4" "You share a book">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru1-4]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <hr> After a while... <hr> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru1/haru1-4.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Hey... Sorry for getting you in trouble... and thank you, $player.name. <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Haru's love +5<</glow>></h1> <div class="button-row"> <<regButton "haru-class" "You're welcome">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $haru.quest = 2>> <<set $haru.love = ($haru.love + 5)>> <<backend>> <<script>> incrementTime(0, 30); <</script>> <</backend>> <<set $hidenav to 0>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof2.mp4" type="video/mp4"> </video> <<dialog "You">>Miss Class Rep! Why are you here? You waiting for me or something? <</dialog>> <<dialog "Haru" "student">>Yes. You go here a lot... I think? <</dialog>> <<dialog "You">><i>*I didn't expect that.*</i><br>Yeah, I do. What's up? <</dialog>> <<dialog "Haru" "student">>Um... <</dialog>> <div class="button-row"> <<regButton "haru2-2a" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru2-2a]] <</if>> <<set $hidenav to 1>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof.mp4" type="video/mp4"> </video> <<dialog "You">>You're here again. <</dialog>> <<dialog "Haru" "student">> <<print $player.name.charAt(0)>>-<<print $player.name>>! <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Haru" "student">>I'm sorry. I didn't mean to insult you earlier. <</dialog>> <div class="button-row"> <<regButton "haru2-2b" "Apology accepted.">><</regButton>> <<regButton "haru2-2c" "Yeah, whatever.">><</regButton>> </div> </div> <<set $hidenav to 1>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof3.mp4" type="video/mp4"> </video> <<dialog "You">>Come on, tell me. <</dialog>> <<dialog "Haru" "student">>L-look. Umm. You see... <</dialog>> <<dialog "You">><i>*Heh. Is she going to confess?*</i><br>Take your time. <</dialog>> <<dialog "Haru" "student">>Uhh... Right! I worry about you. You're kind of bad at studying, and Miss Shizu did tell me to look after you... also you lent me your book once. So... I'd be willing to give you some tutoring. <</dialog>> <div class="button-row"> <<regButton "haru2-3" "Agree">><</regButton>> <<regButton "haru-storm-off" "Get mad">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru2-3]] [[haru-storm-off]] <</if>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof4a.mp4" type="video/mp4"> </video> <<dialog "You">>Apology accepted. I'm sorry too. For storming off like that... <</dialog>> <<dialog "Haru" "student">>No... it's okay. I said some awful things... <</dialog>> <<dialog "You">>You were just looking out for me. <</dialog>> <<dialog "Haru" "student">>Umm. No. Honestly... You're not a bad student... <</dialog>> <<dialog "You">>I'm not? Then why did you say those things? <</dialog>> <<dialog "Haru" "student">>Uhh... Well... I just wanted to get to know you better. So, I thought it would be nice if we spent some time together... <</dialog>> <<dialog "You">>Oh? You should have just said so! We can just hang out. <</dialog>> <<dialog "Haru" "student">>What? N-no way! Imagine what would people say? A student should just study! <</dialog>> <div class="button-row"> <<regButton "haru2-3" "You know">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Yeah, whatever. <</dialog>> <<dialog "Haru" "student">>... <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof4b.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> <hr> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Relationship -3<</glow>></h1> </div> <<set $haru.love = ($haru.love - 3)>> <<set $hidenav to 0>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru2/haru-roof4a.mp4" type="video/mp4"> </video> <<dialog "You">><i>*This girl, seriously...*</i><br>Actually, you know what? I'm struggling with history... I just can't seem to remember specific events right. <</dialog>> <<dialog "Haru" "student">>Hm? History? Oh! Maybe because you're treating it as boring information. You should just treat it like gossip or reading manga. The world IS interesting after all. <</dialog>> <<dialog "You">>Whoa! You're not just pretty. You're wise too. Do you want to study at my place after class? <</dialog>> <<dialog "Haru" "student">>A-at your place? Well... O-okay. <i>*blushes*</i> <</dialog>> <<dialog "You">>Great! I'll see you then. <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Haru's love +5<</glow>></h1> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $haru.quest = 3>> <<set $haru.love = ($haru.love + 5)>> <<backend>> <<script>> incrementTime(0, 30); <</script>> <</backend>> <<set $hidenav to 0>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Touch me. <</dialog>> <<dialog "Haru" "student">>O-okay. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-hj1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-2" "Take it out">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-2]] <</if>> <<set $hidenav to 1>> <<set $discomfort = 0>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Sit up so I can stare at your pretty face while I fuck you. <</dialog>> <<dialog "Haru" "student">>Ah~❤ You're so vulgar! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-lotus1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-11" "Look closer">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-11]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ah~❤ Wh-what? <</dialog>> <<dialog "You">>I told you I want to stare at your pretty face. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-lotus2.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Sh-shut up! Ah~❤ <</dialog>> <div class="button-row"> <<regButton "haru3-12" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-12]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Get ready! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-lotus3.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ah~❤ Nooo! You're speeding up again! Aaah~❤ $player.name! <</dialog>> <div class="button-row"> <<regButton "haru3-7" "Lay her down">><</regButton>> <<regButton "haru3-13" "Cowgirl">><</regButton>> <<regButton "haru3-16" "Reverse Cowgirl">><</regButton>> <<regButton "haru3-18" "Bend her over">><</regButton>> <<if $orgasm <= 0>><<regButton "haru3-22" "I'm reaching my limit">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-13]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ah~❤ Lie down. You're too rough. Let me get on top. <</dialog>> <<dialog "You">>Ooh~ Taking charge. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-cow1.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ah~❤ D-does it feel good, $player.name? <</dialog>> <<dialog "You">>It feels great, Haru. <</dialog>> <div class="button-row"> <<regButton "haru3-14" "Come closer">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-14]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-cow2.mp4" type="video/mp4"> </video> <<dialog "You">>You look even prettier when you bounce. <</dialog>> <<dialog "Haru" "student">>Ah~❤ Shut up... <</dialog>> <div class="button-row"> <<regButton "haru3-15" "Take charge">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-15]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-cow3.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ah~❤ Wait! I said I was taking chaaaaahh~❤ <</dialog>> <div class="button-row"> <<regButton "haru3-7" "Lay her down">><</regButton>> <<regButton "haru3-10" "Sit her up">><</regButton>> <<regButton "haru3-16" "Reverse Cowgirl">><</regButton>> <<regButton "haru3-18" "Bend her over">><</regButton>> <<regButton "haru3-22" "I'm reaching my limit">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-16]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I want to see your ass bounce. <</dialog>> <<dialog "Haru" "student">>Ah~❤ O-okay~❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rcow1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-17" "Spread her cheeks open">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-17]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rcow2.mp4" type="video/mp4"> </video> <<dialog "You">>Your asshole is so perfect, too. <</dialog>> <<dialog "Haru" "student">>Ah~❤ Hey! That's- Ah~❤ offlimits! <</dialog>> <div class="button-row"> <<regButton "haru3-7" "Lay her down">><</regButton>> <<regButton "haru3-10" "Sit her up">><</regButton>> <<regButton "haru3-13" "Cowgirl">><</regButton>> <<regButton "haru3-18" "Bend her over">><</regButton>> <<if $orgasm <= 0>><<regButton "haru3-22" "I'm reaching my limit">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-18]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Bend over. <</dialog>> <<dialog "Haru" "student">>Ah~❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-bend.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-19" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-19]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ahhhh~❤ It feels deeper~❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-doggy1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-20" "Look at her face">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-20]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Stroke it <</dialog>> <<dialog "Haru" "student">>... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-hj2.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-3" "Lick it">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-3]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I want to see your pretty face again. <</dialog>> <<dialog "Haru" "student">>Ah~❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-doggy2.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-21" "Look at her tits">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-21]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Let me see your tits again. <</dialog>> <<dialog "Haru" "student">>Ah~❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-doggy3.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-7" "Lay her down">><</regButton>> <<regButton "haru3-10" "Sit her up">><</regButton>> <<regButton "haru3-13" "Cowgirl">><</regButton>> <<regButton "haru3-16" "Reverse Cowgirl">><</regButton>> <<if $orgasm <= 0>><<regButton "haru3-22" "I'm reaching my limit">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-22]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Lie down. <</dialog>> <<dialog "Haru" "student">>Ah~❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-final.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-23" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-23]] <</if>> <<set $orgasm = 0>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I'm cumming! <</dialog>> <<dialog "Haru" "student">>Ahhh~❤ Pleaaase~❤ Outsiiide!! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-cum.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <<set $haru.love = $haru.love + 5>> <div class="button-row"> <<regButton "haru3-24" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-24]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-end.mp4" type="video/mp4"> </video> <<dialog "You">>That... Haahh. That felt great, Haru. <</dialog>> <<dialog "Haru" "student">>You! You said... we were just... studying~❤ <</dialog>> <hr> Haru falls asleep. You cuddle with her until she wakes up. <hr> <<dialog "Haru" "student">>Th-the time! Why didn't you wake me up!? <</dialog>> <<dialog "You">>My bad. You were sleeping so peacefully, and you looked too pretty to disturb. <</dialog>> <<dialog "Haru" "student">>Y-you! Whatever. I gotta go. <</dialog>> <<dialog "You">>I'll walk you home. <</dialog>> <div class="button-row"> <<regButton "sleep" "You walk her home then fall asleep">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<if $haru.quest == 3>><<set $haru.quest = 4>><</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>It tastes weird... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-bj1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-4" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-4]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">><i>*gkk*</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-bj2.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-5" "Lick it again">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-5]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">><i>*slurp*</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-bj3.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-6" "Lay her down">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-6]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">><i>*slurp*</i> <</dialog>> <<dialog "You">>Lie down... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-mis1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru3-7" "Penetrate">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-7]] <</if>> <<set $orgasm = 5>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ah~ It's inside ❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-mis2.mp4" type="video/mp4"> </video> <<dialog "You">>Haru! You're so wet! <</dialog>> <div class="button-row"> <<regButton "haru3-8" "Speed up">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-8]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I'm going to speed up. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-mis3.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ah~❤ Wa- Ah~❤ ait! Slow Ah~❤ down~❤ <</dialog>> <<dialog "You">>Sorry, your pussy feels too good. <</dialog>> <div class="button-row"> <<regButton "haru3-9" "Fondle her breasts">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-9]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Your boobs look great when they bounce, but they feel better in my hands. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-mis4.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ah~❤ <</dialog>> <div class="button-row"> <<regButton "haru3-10" "Sit her up">><</regButton>> <<regButton "haru3-13" "Cowgirl">><</regButton>> <<regButton "haru3-16" "Reverse Cowgirl">><</regButton>> <<regButton "haru3-18" "Bend her over">><</regButton>> <<if $orgasm <= 0>><<regButton "haru3-22" "I'm reaching my limit">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-10]] <</if>> <<set $orgasm = $orgasm - 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Turn around <</dialog>> <<dialog "Haru" "student">>Why? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-ass1.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-ass2" "Grab her ass">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-ass2]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Your ass is so round. <</dialog>> <<dialog "Haru" "student">>Shut up... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-ass2.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-ass3" "Grab with both hands">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-ass3]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>They're so firm <</dialog>> <<dialog "Haru" "student">>R-really? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-ass3.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-ass4" "Reach inside her panties">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-ass4]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ahh~ <</dialog>> <<dialog "You">>So soft too <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-ass3.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-rub1" "Touch her pussy">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-rub1]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>I thought we were here to study! <</dialog>> <<dialog "You">>Huh? Wait, I'm sorry... <</dialog>> <<dialog "Haru" "student">>Jerk. <</dialog>> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Relationship -5<</glow>></h1> <div class="button-row"> <<regButton "haru3-leave" "She takes her stuff">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-leave]] <</if>> <<set $haru.love = $haru.love - 5>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>You don't need this anymore. <</dialog>> <<dialog "Haru" "student">>Huh? Wait! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-removepanties.mp4" type="video/mp4"> </video> <<set $discomfort = $discomfort + 5>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +5<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-finger2" "Put a finger in">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-finger2]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Hnngg~❤ <</dialog>> <<dialog "You">>You're already wet <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-finger1.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-finger3" "Harder">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-finger3]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ahh~❤ I-it feels good ❤ <</dialog>> <<dialog "You">>I'm going to make you feel even better. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-finger2.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-finger4" "Rub her clit">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-finger4]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ahh~❤ I'm losing my mind ❤ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-finger3.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I'm not getting anything. I'm too distracted... <</dialog>> <<dialog "Haru" "student">>Huh? What's wrong? <</dialog>> <<dialog "You">>You're too pretty. <</dialog>> <<dialog "Haru" "student">>Psh. Stop it and focus! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-flirt.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 1>> <<set $discomfort = $discomfort + 10>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +10<</glow>></h1> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">><i>Scoots closer</i> <</dialog>> <<dialog "Haru" "student">>Umm. <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru3/haru-bedroom.mp4" type="video/mp4"> </video> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <div class="button-row"> <<regButton "haru3-gropeboob" "Grope her">><</regButton>> <<regButton "haru3-ass1" "Grope her ass">><</regButton>> <<regButton "haru-bedroom" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-gropeboob]] [[haru3-ass1]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>You're so hot <</dialog>> <<dialog "Haru" "student">>I-it's embarrassing... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-grope1.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-gropeboob2" "Go further">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-gropeboob2]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>It's okay. <</dialog>> <<dialog "Haru" "student">>But... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-grope2.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-showtits" "Unbutton her shirt">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-showtits]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Come here. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-kiss.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-disturbed]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Look at the time! <</dialog>> <<dialog "You">>Huh? It's still early though... <</dialog>> <div class="button-row"> <<regButton "haru3-leave" "She takes her stuff">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[haru3-leave]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>I should go. <</dialog>> <<dialog "You">>W-wait! <</dialog>> <div class="button-row"> <<regButton "bedroom" "She leaves">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Bedroom">> <<set $discomfort = 0>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I appreciate you spending time with me. <</dialog>> <<dialog "Haru" "student">>I... appreciate you too... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-headpat.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 2>> <<set $discomfort = $discomfort + 8>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +2<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +8<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ah! That's my... <</dialog>> <<dialog "You">>It's okay. Trust me. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rub1.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-rub2" "Rub her pussy">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-rub2]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>S-stop moving your finger <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rub2.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-rub3" "Rub her clit">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-rub3]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Nooo! It feels weird! <</dialog>> <<dialog "You">>But does it feel good? <</dialog>> <<dialog "Haru" "student">>I... I don't know... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rub3.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-rub4" "Flip her over">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-rub4]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Spread your legs <</dialog>> <<dialog "Haru" "student">>O-okay... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rub4.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-rub5" "Pull on her panties">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-rub5]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Your bush is so pretty too <</dialog>> <<dialog "Haru" "student">>Stop it! Don't say that, it's embarrassing. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-rub5.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Haru... <</dialog>> <<dialog "Haru" "student">>W-what? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-shoulder.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 2>> <<set $discomfort = $discomfort + 8>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +2<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +8<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I wanna see your bra. <</dialog>> <<dialog "Haru" "student">>Wh-what? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-tits.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-tits1" "Poke her boob">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-tits1]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Hey, Haru. <</dialog>> <<dialog "Haru" "student">>Hmm? <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru3/haru-bedroom.mp4" type="video/mp4"> </video> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <div class="button-row"> <<regButton "haru3-shoulder" "Brush shoulder">><</regButton>> <<regButton "haru3-pat" "Pat her head">><</regButton>> <<if $haru.love > 34>><<regButton "haru3-kiss" "Kiss her">><</regButton>><</if>> <<regButton "haru-bedroom" "Nevermind">><</regButton>> </div> </div> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru">>Do you understand? <</dialog>> <<dialog "You">>Uhh... <</dialog>> <<dialog "Haru" "student">><i>*chuckles*</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-study.mp4" type="video/mp4"> </video> <<set $discomfort = $discomfort - 25>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #0f6" "8px #0f6" "18">>Annoyance -25<</glow>></h1> <<if $discomfort < 0>><<set $discomfort = 0>><</if>> <<backend>> <<script>> incrementTime(0, 20); <</script>> <</backend>> <div class="button-row"> <<if $hour < 19>><<regButton "haru-bedroom" "Continue">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>You have a cute bra <</dialog>> <<dialog "Haru" "student">>S-stop looking! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-tits1.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-tits2" "Reveal a nipple">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-tits2]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>N-no! Not there... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-tits2.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-tits3" "Take her boobs out">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-tits3]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>You have beautiful boobs <</dialog>> <<dialog "Haru" "student">>Stop looking at them! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-tits3.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-tits4" "Play with her nipples">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-tits4]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Ah~ They're sensitive... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-tits4.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<regButton "haru3-tits5" "Fondle her boobs">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[haru3-tits5]] <</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>You have beautiful boobs <</dialog>> <<dialog "Haru" "student">>Stop looking at them! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru3/haru-tits5.mp4" type="video/mp4"> </video> <<set $haru.love = $haru.love + 3>> <<set $discomfort = $discomfort + 6>> <<set $discomfortPer = clamp(Math.floor(($discomfort/$haru.love) * 100),100)>> <<bar $discomfortPer>><</bar>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>><br><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Annoyance +6<</glow>></h1> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>> <div class="button-row"> <<if $discomfort/$haru.love >= 1>> <<regButton "haru3-disturbed" "She looks bothered">><</regButton>> <<elseif $hour < 19>><<regButton "haru-bedroom" "Back off">><</regButton>> <<else>><<regButton "haru3-late" "Continue">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<if $hour < 20>> <<dialog "You">>Hey, Uncle. <</dialog>> <<dialog "Uncle">>What's up, kid? <</dialog>> <<else>><<dialog "You">>I'm home~ <</dialog>> <</if>><div class="button-row"> <<if $yuki.quest == 10 && $miku.quest >= 11 && $hour == 17>><<regButton "yuki9-1" "Ask about Yuki">><</regButton>><</if>> <<if $hour < 20 && $player.quest == 4>><<regButton "main4-1" "Deal with Gokuro">><</regButton>><</if>> <<if $hour < 20 && $yuki.quest >= 5 && $player.quest == 1>><<regButton "main1-1" "Your uncle has something to tell you">><</regButton>><</if>><<if $miku.follow == 4 && $miku.quest == 1 && $hour >= 23 && $minute < 30>><<regButton "miku1-home" "The cute girl confronts you">><</regButton>> <</if>></div> <div class="button-row"> <<if $miku.quest >= 3>><<imgButton "miku-room" "img/neon-buttons/miku-room.jpg">><</if>> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "res-area" "img/neon-buttons/residential-area.jpg">> </div> </div> <<backend>> [[yuki9-1]] <<set $location to "Home">> <<set $profile to "player-profile">> <</backend>>
<<bg "hospital" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I've sent a lot of dumbasses here. <</dialog>> <div class="button-row"> <<imgButton $hospintro "img/neon-buttons/hosp-lobby.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> </div> </div> <<set $location to "Hospital">> <<set $profile to "player-profile">> <<set $hidenav = 0>>
<div class="bg jap-room"></div> <div class="content-panel"> <<dialog "Azuki">>Ah~! It feels so good~! <</dialog>> <<dialog "You">>Keep it down! Didn't you say your dad was coming home!? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/azuki/azuki-intro.mp4" type="video/mp4"> </video> <<regButton "intro2" "Someone enters the room">><</regButton>> </div> <<if false>> /* connected passages */ [[intro2]] <</if>>
<div class="bg jap-room"></div> <div class="content-panel"> Azuki's Dad catches the both of you in the act. <hr> <video controls width="640" height="360" autoplay loop> <source src="vids/azuki/azuki-caught.mp4" type="video/mp4"> </video> <<dialog "OldBoss">>Wha- AZUKI!? WHAT IS HAPPENING? <</dialog>> <<dialog "Azuki">>D-Dad! I can explain! <</dialog>> <<dialog "You">><i>*Shit! Is that...*</i> <</dialog>> <<dialog "OldBoss">>You! You're Sawada <<textbox "$player.name" Shin>>! <</dialog>> <<dialog "You">><i>*Fuck! He knows me! This guy... He's...*</i> <</dialog>> <<dialog "OldBoss">>I guess the Sawada Clan is finally declaring war on the Yamaguchi Clan, huh? Has your old man gone senile!? <</dialog>> <<dialog "You">>Mr. Yamaguchi! I'm sorry, I had no idea... <</dialog>> <<dialog "Azuki">>YOU! You're a gangster!? You told me you work in IT! <</dialog>> <<dialog "You">><i>*THIS. BITCH.*</i> No! Wait, Azuki-chan! I really am- <</dialog>> <<dialog "OldBoss">>YOU LIED TO MY DAUGHTER? THIS MEANS WAR, YOU LITTLE SHIT! TELL THIS TO YOUR OLD MAN. I'M GOING TO DESTROY THE SAWADA CLAN <</dialog>> <<dialog "You">>No! Wait- <</dialog>> <hr> Yamaguchi Takeshi, known as the Ultimate Gangster and your father, Sawada Isao's greatest rival, approaches you and knocks you out with a single punch. <hr> <video controls width="640" height="360" autoplay loop muted> <source src="vids/azuki/azuki-punch.mp4" type="video/mp4"> </video> <hr> You fall to the ground, seeing stars, as you lose consciousness. <<regButton "intro3" "Wake Up">><</regButton>> </div> <<if false>> /* connected passages */ [[intro3]] <</if>>
<<set $hour = 16>> <div class="bg alley"></div> <div class="content-panel"> You wake up with a splitting headache and a swollen jaw. <hr> <img src="img/misc/wake-streets.png" style="max-width: 80%;"> <<dialog "You">>T-That old fucker... I need to tell my dad! <</dialog>> <hr> You rush back home to warn your dad about the upcoming war. <hr> <<dialog "Dad">>HAHAHA! I can't believe you fucked that geezer's kid. I'm proud of you, son. <</dialog>> <<dialog "You">>Dad! He's about to wage war on us! <</dialog>> <<dialog "Dad">>Hmmm. That is a problem. <</dialog>> <<dialog "You">>I'm sorry. I really didn't know. That guy... he knocked me out with one punch. He's strong. <</dialog>> <<dialog "Dad">>Your old man's not weak, son. That Takeshi and I... We've been beating the shit out of each other since middle school and we're currently on a tie. My kid fucking his kid... Now that's worth a billion wins. <</dialog>> <<dialog "You">>I can fight too. <</dialog>> <<dialog "Dad">>No, $player.name. That geezer let you live to send a message. He'll kill you the next time he sees you. Instead, I'm going to send you to your uncle. You'll study there. You can help your uncle expand his territory too. If we manage to conquer Kumine... It will end the war. <</dialog>> <hr> Your father immediately arranges for you to move to Kumine. <<regButton "intro4" "You arrive at your uncle's house">><</regButton>> </div> <<if false>> /* connected passages */ [[intro4]] <</if>>
<<set $hour = 20>> <<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "You">><i>*So this is Uncle's house*</i> <</dialog>> <<dialog "Uncle">>$player.name! There's my nephew! Welcome to Kumine. <</dialog>> <<dialog "You">>Uncle! It's been a while. <</dialog>> <<dialog "Uncle">>I heard you had sex with that gorilla's daughter. That was sick, kid. <</dialog>> <<dialog "You">><i>*Sigh*</i> Yeah. And, now we're at war. <</dialog>> <<dialog "Uncle">>Ah that's fine. Bro Isao will handle it. All you gotta do for now is hide out here. I've enrolled you at Aoba High <</dialog>> <img src="img/locations/campus.jpg" style="max-width: 80%;"> <strong>Aoba High</strong> <<dialog "Uncle">>It's near the Park so you'll find it easily. <</dialog>> <img src="img/locations/park.jpg" style="max-width: 80%;"> <strong>Park</strong> <<dialog "Uncle">>It's also near the Business Area. <</dialog>> <img src="img/locations/business-area.jpg" style="max-width: 80%;"> <strong>Business Area</strong> <<dialog "Uncle">>There's a Convenience Store there. <</dialog>> <img src="img/locations/konbini.jpg" style="max-width: 80%;"> <strong>Convenience Store</strong> <<dialog "Uncle">>And a Hospital. <</dialog>> <img src="img/locations/hospital.jpg" style="max-width: 80%;"> <strong>Hospital</strong> <<dialog "Uncle">>Taking over this territory ain't easy, kid. We'll be visiting that place a lot. I'll show you to your room so you can rest. School starts tomorrow. <</dialog>> <<dialog "You">>Thanks, Uncle. <</dialog>> <<regButton "sleep" "Go to sleep">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[sleep]] <</if>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I could use a drink. <</dialog>> <div class="button-row"><<if $hour == 23 && $minute < 15 && $yuki.quest == 6>><<regButton "yuki6-1" "Yuki is here">><</regButton>><</if>><<if $hour == 23 && $minute < 15 && $yuki.love >= 10 && $yuki.quest == 1>><<regButton "yuki1-1" "Ask Yuki out">><</regButton>><</if>><<if $miku.follow == 1 && $miku.quest == 1 && $hour >= 23 && $minute < 30>><<regButton "miku-follow" "The cute girl is here">><</regButton>> <</if>><<if $miku.quest >= 2 && $hour >= 23 && $minute < 30>> <<regButton "miku2-konbini" "Miku is here">><</regButton>> <</if>> </div> <div class="button-row"> <<imgButton "konbini-int" "img/neon-buttons/kon-enter.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "player-profile">> <<set $hidenav = 0>>
<<backend>> <<set $tekwar to "Fight " + ($tekijime.park == 38 ? "Akashi" : "Level " + $tekijime.park + " Tekijime Student")>> <</backend>><<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Ah. The battlefield. <</dialog>> <div class="button-row"> <<if $yuki.quest == 2 && $yuki.love >= 20 && $hour >= 23>><<regButton "yuki2-1" "Yuki is getting harrassed!">><</regButton>><</if>> <<if $emi.quest == 3 && $hour >= 17 && $hour < 19>><<regButton "emi3-1" "Izaki and Emi are here">><</regButton>> <</if>><<if $hour >= 22>> <<regButton "park-late" "Pick a fight 20⚡">><</regButton>><<elseif $stats.ep >= 20>><<regButton "parkbattle-crud" "Pick a fight 20⚡">><</regButton>> <<else>><<regButton "park-tired" "Pick a fight 20⚡">><</regButton>> <</if>> <<if $miku.follow == 2 && $miku.quest == 1 && $hour >= 23 && $minute < 30>><<regButton "miku-follow" "The cute girl is walking through the park">><</regButton>><</if>> <<if $player.quest == 3 && $tekijime.park <= 38>><<regButton "tekpark-crud" $tekwar>><</regButton>><</if>> </div> <div class="button-row"> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> <<imgButton "school" "img/neon-buttons/school.jpg">> </div> </div> <<backend>> <<set $location to "Park">> <<set $eid to "ranker"+random(1,6)>> <<set $ename = "Park Delinquent">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $tempStats.maxhp = 100 + (($tempStats.level - 1) * 5) + ($tempStats.str * 2)>> <<set $tempStats.maxep = 100 + (($tempStats.level - 1) * 5) + ($tempStats.agi * 2)>> <<set $stats.maxhp = 100 + (($stats.level - 1) * 5) + ($stats.str * 2)>> <<set $stats.maxep = 100 + (($stats.level - 1) * 5) + ($stats.agi * 2)>> <</backend>> <div style="white-space: nowrap; display: inline; line-height: 0;"> <h1 style="font-weight: 500;"><<glow "0.5px cyan" "8px cyan" 24>>Character Profile<</glow>></h1> <img src="img/avatars/you-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow>>Sawada <<print $player.name>><</glow>></h1> <h1><<glow "0.65px yellow" "10px orangered">>Level <<print $stats.level>><</glow>></h1> <<if $emi.quest >= 4>><h1 style="font-size: 18px;"><<glow>>Combat Rank <<print $player.rank>><</glow>></h1><</if>> <h1><<glow "0.5px yellow" "8px orange">>Stats<</glow>></h1> <div style="display: flex; justify-content: center;"> <div style="width: 30%; text-align: center;"><h1><<glow "0.5px darkred" "8px darkred" 18>><span style="color: #f55;">Strength:</span><</glow>></h1></div> <div style="width: 30%"><h1><<glow "0.5px darkred" "8px darkred" 18>><span style="color: #f55;"><<print $stats.str>><<if $stats.str < $tempStats.str>><<print ' +'+($tempStats.str-$stats.str)>><</if>></span><</glow>></h1></div> </div> <div style="display: flex; justify-content: center;"> <div style="width: 30%; text-align: center;"><h1><<glow "0.5px cyan" "8px cyan" 18>><span style="color: #fff;">Intelligence:</span><</glow>></h1></div> <div style="width: 30%"><h1><<glow "0.5px cyan" "8px cyan" 18>><span style="color: #fff;"><<print $stats.int>><<if $stats.int < $tempStats.int>><<print ' +'+($tempStats.int-$stats.int)>><</if>></span><</glow>></h1></div> </div> <div style="display: flex; justify-content: center;"> <div style="width: 30%; text-align: center;"><h1><<glow "0.5px lime" "8px green" 18>><span style="color: #cfc;">Agility:</span><</glow>></h1></div> <div style="width: 30%"><h1><<glow "0.5px lime" "8px green" 18>><span style="color: #cfc;"><<print $stats.agi>><<if $stats.agi < $tempStats.agi>><<print ' +'+($tempStats.agi-$stats.agi)>><</if>></span><</glow>></h1></div> </div> <<if $tempStats.points > 0>><h1><<glow "0.5px yellow" "8px orange" 16>>You have <<print $tempStats.points>> unspent points.<</glow>></h1><</if>> </div>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/rio/rio-class.mp4" type="video/mp4"> </video> <<if $riomeet == 0 && $rio.quest == 1>><<dialog "Rio" "student">>Hmm? You're like... new. I'm totally expecting a lot of you, okay? <</dialog>><<elseif $rio.quest != 1 && $riomeet == 0>><<dialog "Rio" "student">>Hey there~ <</dialog>><<else>><<dialog "Rio" "student">>Saturday! Like, don't forget! <</dialog>><</if>> <div class="button-row"> <<if $rio.quest >= 2 && $riomeet == 0>><<regButton "rio-plan" "Meet on Saturday">><</regButton>><</if>> <<if $emi.quest >= 4 && $rio.quest == 1>><<regButton "rio1-1" "Thank her">><</regButton>><</if>> <<regButton "classroom" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio1-1]] <</if>> <<set $profile to "rio-profile">>
<<backend>><<set $rankCh = Math.max(101 - ($stats.level * 2), 20)>> <<set $chtext = "Challenge Rank "+$rankCh>> <</backend>><<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Ah. Solitude. <</dialog>> <div class="button-row"> <<if $haru.quest == 2 && $haru.love >= 20>> <<regButton "haru-roof" "Haru's here">><</regButton>> <</if>><<if $player.quest < 4>> <<if $emi.quest >= 4 && $hour < 18>> <<regButton "rank-start" "Rank Battle">><</regButton>> <<if $player.rank > $rankCh && $player.rank > 20 >> <<regButton "rank-skip" $chtext>><</regButton>><</if>> <</if>><</if>> <<regButton "school" "Leave">><</regButton>> </div> </div> <<set $location to "Rooftop">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <<set $inbattle = 0>> <<if $player.rank <= 1>><<set $player.rank = 1>><</if>>
<<backend>> <<set $rewxp = 5 + Math.round($stats.agi * random(5,30) * 0.1)>> <<set $stats.ep = $stats.ep - 50>> <</backend>><<bg "trackfield" $hour>><</bg>> <div class="content-panel"> You run. <hr> <img id="title-image" src="img/misc/run-track.jpg" style="width: 45%;"> <div style="width: 60%; margin: 0 auto;"><h1><<glow "0.4px lime" "8px cyan" "18">>You gain +<<print $rewxp>> exp.<</glow>> (EXP gained increases with agility.)</h1><div><<exp $rewxp>><</exp>></div> <div class="button-row"> <<regButton "track" "Rest">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <style> #ui-bar-history { display: none; } </style> <<script>>incrementTime(0, 15); <</script>> updateRight(); <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Aoba High. <</dialog>> <div class="button-row"> <<if $emi.quest == 2 && $emi.love >=20>> <<regButton "emi2-1" "Someone is waiting for you">><</regButton>> <</if>><<if $player.quest == 2 && ($dayIndex % 7 < 6 && $dayIndex % 7 > 0) && $hour < 17 && $shizu.quest >= 2>><<regButton "main2-1" "There's a commotion">><</regButton>><</if>><<if $hour >= 12 && $hour < 16 && $shizu.quest >= 2 && ($dayIndex % 7 < 6 && $dayIndex % 7 > 0)>><<regButton "shizu-cut" "Cut Class">><</regButton>><</if>> </div> <div class="button-row"> <<if $player.classIntro == 0 && $dayIndex % 7 < 6 && $dayIndex % 7 > 0>> <<imgButton "class-intro" "img/neon-buttons/classroom.jpg">> <<else>> <<imgButton "classroom" "img/neon-buttons/classroom.jpg">> <</if>> <<imgButton "faculty" "img/neon-buttons/faculty.jpg">> <<imgButton "council-room" "img/neon-buttons/council-room.jpg">> <<imgButton "track" "img/neon-buttons/trackfield.jpg">> <<imgButton "rooftop" "img/neon-buttons/rooftop.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> </div> </div> <<backend>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <</backend>>
<<include "sleep-crud">> <div class="bg bedroom"></div> <div class="content-panel"> You doze off. <hr> <img id="title-image" src="img/misc/sleep.jpg" style="width: 45%;"><<if $nirei.quest >= 6 && $day == "Sunday">><h1>Nirei pays you $60 for rent.</h1><</if>> <<regButton "bedroom" "Wake Up">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Bedroom">> <<if $nirei.quest >= 6 && $day == "Sunday">><<set $player.money = $player.money + 60>><</if>>
<div class="bg alley"></div> <div class="content-panel"> <div class="button-row"> <<regButton "sleep" "Sleep">><</regButton>> </div> </div> <<backend>> <<set $location to "Alley">> <<set $profile to "player-profile">> [[inventory]][[player-guide]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> You study for a little bit. <hr> <img id="title-image" src="img/misc/study.jpg" style="width: 45%;"> <div class="button-row"> <<regButton "classroom" "An hour later...">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<script>> incrementTime(1, 0); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> You pay attention to the class... <hr> <img id="title-image" src="img/misc/study.jpg" style="width: 45%;"> <div class="button-row"> <<regButton "classroom" "Lunch!">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<set $hour = 12>> <<set $minute = 0>> <</backend>>
<<bg "trackfield" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>It's so hot. <</dialog>> <div class="button-row"> <<if $stats.ep >= 50>><<regButton "run-track" "Run 50⚡">><</regButton>> <<else>><<regButton "run-tired" "Run 50⚡">><</regButton>><</if>> <<regButton "school" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[run-track]] [[run-tired]] <</if>> <<set $location to "Track Field">> <<set $profile to "player-profile">>
<<if $hidenav == 0>> <<glow "0.5px yellow" "8px orange">>Try my other game!<</glow>> <<gifClick "misc/lotfpromo">> <</if>> <div class="button-row" style=" width: 80%; justify-content: space-around;"><<subscribe "discord" "https://discord.gg/HtF4hctjzZ">><<subscribe "patreon" "https://www.patreon.com/Safriscoffi">><<subscribe "gank" "https://ganknow.com/safriscoffi">></div> <h1>If you like the game, please consider supporting us on Patreon or Gank! In return, gain access to builds earlier than the public release. There are a few perks too depending on your tier. If you can't afford it, joining the Discord is good enough! You might even win a temporary free subscription upgrade! Regardless, thank you for playing!</h1>
<<backend>><<set $relper = Math.ceil(($emi.love/$emi.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px yellow" "8px yellow" 24>>Character Profile<</glow>></h1> <img src="img/avatars/emi-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px yellow" "8px yellow">>Yamane Emi<</glow>></h1> <<if $emi.love > 100>><<set $emi.maxlove to 100>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>> <<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $emi.love+" / "+$emi.maxlove>><</glow>></h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Emi hates weak guys. <<if $emi.quest >= 2>>2. You can now chat with Emi. Raise your relationship.<</if>> <<if $emi.love >= 20 || $emi.quest >= 3>>3. Someone has business with you at school.<</if>> <<if $emi.quest >= 3>>4. Fight Izaki at the Park after school.<</if>> <<if $emi.quest >= 4>>5. Reach at least Rank 85 in the Combat Rankings.<</if>> <<if $emi.quest >= 4 && $player.rank <= 85>>6. Check up on her around lunch.<</if>> <<if $emi.quest >= 5>>7. You can now call her. Increase your relationship with her to unlock her call function in interesting places. 8. That's it for this version.<</if>> <<if $emi.quest >= 5>> <<glow "0.5px yellow" "8px orange">>Call Locations:<</glow>> 1. Bedroom at night. <<if $emi.love >= 30>>2. Business Area in the Evening. 3. That's it for this version.<</if>> Note: If you talk to her for more than 5 times, you won't be able to call her anymore for the day. <</if>> </h1> </div>
<<backend>><<set $relper = Math.ceil(($shizu.love/$shizu.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #F45C43" "8px #EB3349" 24 "#FFCCAA">>Character Profile<</glow>></h1> <img src="img/avatars/shizu-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px #F45C43" "8px #EB3349" 20 "#FFCCAA">>Noguchi Shizu<</glow>></h1> <<if $shizu.love > $shizu.maxlove>><<set $shizu.love to $shizu.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $shizu.love+" / "+$shizu.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Improve your grades. Maybe the Class Representative can help? <<if $haru.quest >= 6>>2. Reach at least Rank 95 in the Combat Rankings.<</if>> <<if $player.rank <= 95 && $haru.quest >= 6>>3. She will approach you after class before 5:45PM.<</if>> <<if $shizu.q1 > 0>>4. Hear about the other strongest fighters of the school from her.<</if>> <<if $shizu.q1 >= 4>>5. Reach at least Rank 85.<</if>> <<if $shizu.q1 >= 4 && $player.rank <= 85>>6. Let her approach you again after class.<</if>> <<if $shizu.q1 >= 5>>7. Keep hanging out with her and raising your relationship until something happens.<</if>> <<if $shizu.quest >= 2>>8. You can now have sex with her after class. 9. Progress $player.name's story.<</if>> <<if $player.quest >= 4>>10. Talk to her at 7am in the morning.<</if>> <<if $shizu.quest >= 3>>11. That's it for this version.<</if>> </h1> <<if $shizu.quest >= 2>> <h1><<glow "0.5px yellow" "8px orange">>Extras<</glow>> 1. Faculty Room at lunch. 2. Cut classes between 12PM and 4PM <<if $shizu.quest >= 3>>3. Call her on weekends before 1PM (Preferrably before 10AM)<</if>> </h1> <</if>> </div>
<<backend>><<set $relper = Math.ceil(($shiori.love/$shiori.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #FF1760" "8px #BE003B" 24 "pink">>Character Profile<</glow>></h1> <img src="img/avatars/shiori-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px red" "8px darkred" 20 "#f55">>Kanna Shiori<</glow>></h1> <<if $shiori.love > $shiori.maxlove>><<set $shiori.love to $shiori.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $shiori.love+" / "+$shiori.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Walk around the business area in the evening. <<if $shiori.quest > 1>>2. Talk to her at school.<</if>> <<if $shiori.quest > 2>>3. Yep, she hates men. Reach rank 80 and walk around in the business area again on a weekend.<</if>> <<if $shiori.quest > 3>>4. Have lunch with Haru in class.<</if>> <<if $shiori.quest > 4>>5. Wait for her to contact you in your bedroom in the weekends before noon.<</if>> <<if $shiori.quest > 5>>6. Keep escorting her on weekends.<</if>> <<if ($shiori.quest > 5 && $shiori.love >= 40) || $shiori.quest > 6>>7. Escort her again, but answer her call at 11:45 AM.<</if>> <<if $shiori.quest > 6>>8. Raise your relationship.<</if>> <<if ($shiori.quest > 6 && $shiori.love >= 55) || $shiori.quest > 7>>9. Escort her again, but don't be late this time.<</if>> <<if $shiori.quest > 7>>10. Help Nirei move and settle in. <<if $nirei.quest >= 6>>11. Escort her again.<</if>><</if>> <<if $shiori.quest >= 9>>12. Escort Shiori again... This is the last time, I promise.<</if>> <<if $shiori.quest >= 10>>13. That's it for this version.<</if>> </h1><<if $shiori.quest > 6>> <h1><<glow "0.5px yellow" "8px orange">>Extras<</glow>> 1. You can have breakfast with her at her place at 7AM. (Residential Area) <<if $nirei.quest >= 9>>2. Sleep over between 9PM and 11PM. 3. Morning Sex. (Wake up in her bed) 4. Cosplay Sex at her place between 5PM and 8PM (Koala Outfit) 5. Call her at night.<</if>> </h1> <</if>> </div>
<<backend>><<set $relper = Math.ceil(($rio.love/$rio.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #833ab4" "8px #fd1d1d" 24 "#fcb045">>Character Profile<</glow>></h1> <img src="img/avatars/rio-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px #FF1760" "8px #BE003B" 20 "pink">>Higuchi Rio<</glow>></h1> <<if $rio.love > $rio.maxlove>><<set $rio.love to $rio.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $rio.love+" / "+$rio.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. She'll approach you soon. <<if $emi.quest >= 4>>2. Thank her for warning you.<</if>> <<if $rio.quest >= 2>>3. Have a fun date! Don't cheap out!<</if>> <<if $rio.quest >= 3>>4. That's it for this version.<</if>> </h1> </div>
<<bg "trackfield" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'm too tired for this... <</dialog>> <div class="button-row"> <<regButton "track" "Back">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "player-profile">>
<<backend>> <<set $tempStats.maxhp = 100 + (($tempStats.level - 1) * 5) + ($tempStats.str * 2)>> <<set $tempStats.maxep = 100 + (($tempStats.level - 1) * 5) + ($tempStats.agi * 2)>> <<set $tempStats.hp = $tempStats.maxhp - ($stats.maxhp - $stats.hp)>> <<set $tempStats.ep = $tempStats.maxep - ($stats.maxep - $stats.ep)>> <<set $stats to clone($tempStats)>> <<goto "bedroom">> <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename $battlesetting>>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> <<action "Flee">><</action>> </div> </div> <<backend>> <<set $dmgres = "">> <<set $location to "Park">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = $location.toLowerCase()>> <<set $enemy = { level: Math.max(1, $stats.level + random(-3, 5)), hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $pspeech = "Bring it on.">> <<set $espeech = "I'll fuck you up.">> <<goto "battle-crud2">> <</backend>>
<<set $battlefield = $battlesetting+"-battle">> <<set $podds = random(0,60)>> <<set $kodds = random(0,100-$podds) + $podds>> <<set $inbattle = 1>> <<set $espeech = $espeech>> <<set $oddsText = "<br><br><br><span><strong>Next Move: "+$podds+"% Punch | "+($kodds-$podds)+"% Kick | "+(100-$kodds)+"% Grab</strong></span>">> <<goto $battlefield>> <<backend>>[[Reroll Odds]]<</backend>>
<<backend>> <<set $eaction = random(0, 100)>> <<set $damage = 10 + random(-3, 3)>> <<if $eaction < $podds>> <!--punch--> <<if $stats.agi > $enemy.agi>> <<set $damage = Math.ceil($damage + ($damage * $stats.str * 0.1) + ($damage * $stats.level * 0.5))>> <<set $target = "enemy">> <<set $commentary = "You counter the enemy's punch with your own. It">> <<else>> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $target = "player">> <<set $commentary = "The enemy counters your punch with his own. It ">> <</if>> <<elseif $eaction < $kodds>> <!--enemy wins--> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $target = "player">> <<set $commentary = "The enemy's kick blows through your punch. It">> <<else>> <!--player wins--> <<set $damage = Math.ceil($damage + ($damage * $stats.str * 0.1) + ($damage * $stats.level * 0.5))>> <<set $target = "enemy">> <<set $commentary = "The enemy tried to grab you, but your punch is quicker. It">> <</if>> <<goto "process-damage">> <</backend>>
<<backend>> <<set $eaction = random(0, 100)>> <<set $damage = 10 + random(-3, 3)>> <<if $eaction < $podds>> <!--player wins--> <<set $damage = Math.ceil($damage + ($damage * $stats.str * 0.1) + ($damage * $stats.level * 0.5))>> <<set $target = "enemy">> <<set $commentary = "Your kick blows through the enemy's jab. It">> <<elseif $eaction < $kodds>> <!--kick--> <<if $stats.str > $enemy.str>> <<set $damage = Math.ceil($damage + ($damage * $stats.str * 0.1) + ($damage * $stats.level * 0.5))>> <<set $target = "enemy">> <<set $commentary = "Your kick overpowers the enemy's kick. It">> <<else>> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $target = "player">> <<set $commentary = "The enemy's kick overpowers your kick. It">> <</if>> <<else>> <!--grab-- enemy wins> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $target = "player">> <<set $commentary = "The enemy grabbed your leg. He unleashes a headbutt that">> <</if>> <<goto "process-damage">> <</backend>>
<<backend>> <<set $eaction = random(0, 100)>> <<set $damage = 10 + random(-3, 3)>> <<if $eaction < $podds>> <!--punch enemy wins--> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $target = "player">> <<set $commentary = "The enemy's punch was quicker than your grab. It">> <<elseif $eaction < $kodds>> <!--kick player wins--> <<set $damage = Math.ceil($damage + ($damage * $stats.str * 0.1) + ($damage * $stats.level * 0.5))>> <<set $target = "enemy">> <<set $commentary = "You grabbed the enemy's kick and unleashed a headbutt that">> <<else>> <!--grab--> <<if $stats.int > $enemy.int>> <<set $damage = Math.ceil($damage + ($damage * $stats.str * 0.1) + ($damage * $stats.level * 0.5))>> <<set $target = "enemy">> <<set $commentary = "The enemy tries to grab you but you grab them first. You unleash a headbutt that">> <<else>> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $target = "player">> <<set $commentary = "You try to grab the enemy but he grabs you first. He unleashes a headbutt that">> <</if>> <</if>> <<goto "process-damage">> <</backend>>
<<if (($stats.agi+1) / ($enemy.agi+1)) * random(0,100) > 70>> <<set $commentary = "Got away safely...">> <<set $dmgres = $battlesetting+"-flee">> <<goto $dmgres>> <<else>> <<set $damage = 10 + random(-3, 3)>> <<set $damage = Math.ceil($damage + ($damage * $enemy.str * 0.1) + ($damage * $enemy.level * 0.5))>> <<set $damage = Math.round($damage * 0.35)>> <<set $target = "player">> <<set $commentary = "The enemy catches you and slams you to the ground dealing "+$damage+" damage.">> <<set $dmgres = "-battle">> <<set $stats.hp = $stats.hp - $damage>> <<if $stats.hp <= 0>> <<set $stats.hp = 0>> <<set $dmgres = "-lose">> <</if>> <<set $battlestart = false>> <<set $dmgres = "park"+$dmgres>> <<goto $dmgres>><</if>>
<<set $podds = random(0,60)>> <<set $kodds = random(0,100-$podds) + $podds>> <<if $target == "player">> <<set $odds = (($enemy.agi + $enemy.int) / ($stats.agi + 1)) * random(0, 100)>> <<set $target = "you">> <<else>> <<set $odds = (($stats.agi + $stats.int ) / ($enemy.agi + 1)) * random(0, 100)>> <<set $target = "the enemy">> <</if>> <<set $goodspeech = "">> <<set $badspeech = "">> <<if $odds > 75>> <<set $goodspeech = either("...", "Heh.", "You survived that? Impressive.", "Try harder.", "Oof. That had too have hurt.")>> <<set $badspeech = either("Ugk! Fuck.", "Fuck!", "Sh-shit... I almost passed out", "Th-that... kinda hurt.")>> <<set $damage = $damage * 1.25>> <<set $damage = Math.round($damage)>> <<set $commentary = $commentary + " lands critically, dealing " + $damage + " damage.">> <<elseif $odds > 30>> <<set $goodspeech = either("...", "Heh.", "Entertain me more!", "I'm gonna knock the daylights out of you.")>> <<set $badspeech = either("Ouf.", "Fuck!", "Shit.", "God fucking dammit.", "Lucky shot.")>> <<set $damage = Math.round($damage)>> <<set $commentary = $commentary + " hits "+$target+", dealing " + $damage + " damage.">> <<elseif $odds > 10>> <<set $goodspeech = either("That would have knocked your ass out.", "You got lucky.", "Nice reflex, dumbass. You almost dodged it.")>> <<set $badspeech = either("Huh.", "Th-that was close...", "Did a mosquito bite me?")>> <<set $damage = $damage * 0.5>> <<set $damage = Math.round($damage)>> <<set $commentary = $commentary + " grazes "+$target+", dealing " + $damage + " damage.">> <<else >> <<set $goodspeech = either("Shit.", "Damn.", "Stop squirming around like a little bug", "You're quick. Like a rat.", "Stay fucking still.")>> <<set $badspeech = either("Are you even trying to hit me?", "Too slow.", "Haha! Keep trying, bitch.")>> <<set $damage = 0>> <<set $acc = "miss">> <<set $commentary = $commentary + " missed.">> <</if>> <<set $dmgres = "-battle">> <<if $target == "you">> <<set $pspeech = $badspeech>> <<set $espeech = $goodspeech>> <<set $damage = Math.round($damage * 0.5)>> <<set $stats.hp = $stats.hp - $damage>> <<if $stats.hp <= 0>> <<set $stats.hp = 0>> <<set $dmgres = "-lose">> <</if>> <<else>> <<set $espeech = $badspeech>> <<set $pspeech = $goodspeech>> <<set $enemy.hp = $enemy.hp - $damage>> <<if $enemy.hp <= 0>> <<set $enemy.hp = 0>> <<set $dmgres = "-win">> <</if>> <</if>> <<script>> incrementTime(0, 5); <</script>> <<set $battlestart = false>> <<set $dmgres = $battlesetting+$dmgres>> <<set $oddsText = "<br><br><br><span><strong>Next Move: "+$podds+"% Punch | "+($kodds-$podds)+"% Kick | "+(100-$kodds)+"% Grab</strong></span>">> <<goto $dmgres>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> Park Delinquent gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "You">>The park is the best place to fight. <</dialog>> <div class="button-row"> <<regButton "park" "Leave">><</regButton>> </div> </div> <<backend>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<backend>><<set $rewmoney = $enemy.level * (random(0,2)+random(2,4))>> <<set $player.money = Math.max($player.money - $rewmoney, 0)>> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> You get knocked out. You lose $<<print $rewmoney>>. <<enemy $eid "Park Delinquent" "park" "left">>Never show your face here again.<</enemy>> <div class="button-row"> <<regButton "park-wake" "Wake up">><</regButton>> </div> </div> <<backend>> [[park-wake]] <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> <<enemy $eid "Park Delinquent" "park" "left">>Come back here, coward!<</enemy>> <div class="button-row"> <<regButton "alley" "Alley">><</regButton>> </div> </div> <<backend>> <<set $inbattle = 0>> <<set $hidenav to 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<h1><<glow "0.5px yellow" "8px orange">>Information<</glow>> <h1>Ever played rock, paper, scissors? </h1><h1><<glow "0.5px orange" "8px orangered">><span style="color: orange;">Punches</span><</glow>> are fast attacks that can outspeed <<glow "0.5px cyan" "8px cyan">><span style="color: lime;">grabs</span><</glow>> but <<glow "0.5px red" "8px red">><span style="color: orangered;">kicks</span><</glow>> have better reach. If both of you throw a punch, the one with better <<glow "0.5px lime" "8px green">><span style="color: yellow;">agility</span><</glow>> wins.</h1><h1><<glow "0.5px red" "8px red">><span style="color: orangered;">Kicks</span><</glow>> have better reach than <<glow "0.5px orange" "8px orangered">><span style="color: orange;">punches</span><</glow>> but can be easily caught by <<glow "0.5px cyan" "8px cyan">><span style="color: lime;">grabs</span><</glow>>. The one with greater <<glow "0.5px red" "8px red">><span style="color: red;">strength</span><</glow>> can unleash a more powerful kick.</h1><h1><<glow "0.5px cyan" "8px cyan">><span style="color: lime;">Grabs</span><</glow>> can catch <<glow "0.5px red" "8px red">><span style="color: orangered;">kicks</span><</glow>> but are slower than <<glow "0.5px orange" "8px orangered">><span style="color: orange;">punches</span><</glow>>. If both of you grab each other, the one with the higher <<glow "0.5px cyan" "8px cyan">><span style="color: white;">intelligence</span><</glow>> can execute the technique better.</h1><h1>If the attack is a <<glow "0.5px orchid" "8px fuchsia">><span style="color: violet;">miss</span><</glow>>, no damage is inflicted. If it's a <<glow "0.5px blueviolet" "8px darkmagenta">><span style="color: magenta;">graze</span><</glow>>, half the damage is inflicted. A <<glow "0.5px dodgerblue" "8px royalblue">><span style="color: deepskyblue;">hit</span><</glow>> will inflict 100% and a <<glow "0.5px cyan" "8px dodgerblue">><span style="color: powderblue;">crit</span><</glow>> will do 125%.</h1><h1>You get some <<glow "0.5px limegreen" "8px green">><span style="color: lime;">money</span><</glow>> and <<glow "0.5px lime" "8px yellowgreen">><span style="color: white;">experience</span><</glow>> if you win, and lose money if you lose. You can try to flee to avoid losing cash, but if your escape fails, the enemy gets a free attack. The probability of escape increases with <<glow "0.5px lime" "8px green">><span style="color: yellow;">agility</span><</glow>>.</h1>
<div class="bg alley"></div> <div class="content-panel"> You wake up in the alley with a splitting headache and a swollen jaw. <hr> <img src="img/misc/wake-streets.png" style="max-width: 80%;"> <<dialog "You">>Fuck... They just dumped me here. <</dialog>> <<regButton "alley" "Alley">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $hidenav to 0>> <<script>> incrementTime(1, 0); <</script>> <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'm too tired for this shit. <</dialog>> <div class="button-row"> <<regButton "park" "Continue">><</regButton>> </div> </div>
<div class="bg hospital-int"></div> <div class="content-panel"> <<dialog "You">>It smells like disinfectant. <</dialog>> <div class="button-row"> <<if $player.money >= 25>><<regButton "heal" "Heal 💵25">><</regButton>><<else>><<regButton "noheal" "Heal 💵25">><</regButton>><</if>> <<regButton "hospital" "Leave">><</regButton>> </div> <<imgButton "akane-office" "img/avatar-buttons/akane-01.png" "avatar-button">> </div> <<if false>> /* connected passages */ [[heal]] [[noheal]][[akane-office]] <</if>> <<set $location to "Hospital">> <<set $profile to "player-profile">>
<div class="bg hospital-int"></div> <div class="content-panel"> <<dialog "Akane">>Oh! An Aoba High student! <</dialog>> <<dialog "You">><i>*Woah. She's pretty cute.*</i> <</dialog>> <hr> She walks over to you. <hr> <<dialog "Akane">>Sawada $player.name. You must be Hideo's nephew! <</dialog>> <<dialog "You">><i>*She knows my uncle.*</i> Yes, that's me. I'm sorry, he never told me about you. <</dialog>> <<dialog "Akane">>Oh! How rude of me. My name is Akane. Yoshioka Akane. I used to be the personal doctor of Sir Isao. Now, I personally take care of your uncle. <</dialog>> <<dialog "You">>Oh? So you know about our business, then? <</dialog>> <<dialog "Akane">>W-what? I can't believe Sir Isao even got his own son involved in his business. <</dialog>> <<dialog "You">><i>*Shit! Does she hate gangsters?*</i> <</dialog>> <<dialog "Akane">>How noble ~❤ <</dialog>> <<dialog "You">><i>*What*</i> <</dialog>> <<dialog "Akane">>Hideo has already informed me that you'd be living here. If you ever get injured due to your activities, come visit me. I won't let a member of the Sawada family wait in line! <</dialog>> <<dialog "You">>Thanks, doc! <</dialog>> <<dialog "Akane">>And, don't worry! I won't charge you. You'd only have to pay for medicine. <</dialog>> <<dialog "You">>That's already a great help. Thank you! <</dialog>> <<regButton "hosp-lobby" "Continue">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Hospital">> <<set $hospintro to "hosp-lobby">>
<div class="bg hospital-int"></div> <div class="content-panel"> <<dialog "Akane" "student">>Welcome to the hospital room. We heal you back to perfect health? Shall I heal you? <</dialog>> <<dialog "You">>Well... Yeah. Please. <</dialog>> <<dialog "Akane">>I'll take a look at your wounds for a few seconds? <</dialog>> <<dialog "You">>Woah. Just a few seconds? <</dialog>> <hr> After a few seconds... <hr> <<dialog "Akane">>Thank you for waiting! You are now fighting fit! We hope to see you again! <</dialog>> <<dialog "You">>That's a weird thing to say in a hospital, but thanks Nurse Joy. Haha. <</dialog>> <<dialog "Akane">>What? No, it's me! Akane! And I'm a doctor! <</dialog>> <<regButton "hosp-lobby" "Leave">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Hospital">> <<set $player.money = $player.money - 25>> <<set $stats.hp = $stats.maxhp>>
<div class="bg hospital-int"></div> <div class="content-panel"> <<dialog "You">>I can't afford it. <</dialog>> <<regButton "hosp-lobby" "Leave">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Hospital">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-annoyed.mp4" type="video/mp4"> </video> <<dialog "Emi" "student">>Leave me alone, nerd. <</dialog>> <<dialog "You">><i>*The fuck is her problem?*</i> <</dialog>> <div class="button-row"> <<regButton "emi-class" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi1/emi1-1.mp4" type="video/mp4"> </video> <<dialog "Emi" "student">>Hey, nerd. Were you fighting again today? <</dialog>> <<dialog "You">>Why am I still a nerd? <</dialog>> <<dialog "Emi" "student">>Well, you still have that ridiculous haircut. <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Emi's love +1<</glow>></h1> <div class="button-row"> <<regButton "emi-class" "Whatever">><</regButton>> </div> </div> <<if false>> [[emi1-2]] /* connected passages */ <</if>> <<backend>> <<set $emi.love = ($emi.love + 1)>> <<set $emi.chat = $emi.chat + 1>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi1/emi1-1.mp4" type="video/mp4"> </video> <<dialog "Emi" "student">>Hey, nerd... Your hand... <</dialog>> <<dialog "You">>You keep calling me a nerd. <</dialog>> <<dialog "Emi" "student">>Well, that's because... <</dialog>> <div class="button-row"> <<regButton "emi1-battlecrud" "Someone barges in">><</regButton>> </div> </div> <<if false>> [[emi1-battlecrud]] /* connected passages */ <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<enemy "yellow" "Delinquent" "classroom" "left">>Sawada $player.name! This is payback for my boys, motherfucker!<</enemy>> <<dialog "Emi" "student">>H-huh? <</dialog>> <<dialog "You">>Oh? Did your girlfriends tell on me? <</dialog>> <<enemy "yellow" "Delinquent" "classroom" "left">>I'll kill you.<</enemy>> <div class="button-row"> <<regButton "battle-crud2" "Fight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi1-battlecrud]] <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "emi1">> <<set $enemy = { level: 5, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to 8>> <<set $enemy.agi to 8>> <<set $enemy.int to 8>> <<set $enemy.maxhp to 150>> <<set $enemy.hp to 150>> <<set $profile = "player-profile">> <<set $pspeech = "Miss Shizu will get mad if she catches me fighting. I'm gonna have to make this quick.">> <<set $espeech = "You think you're tough because you beat a couple guys?">> <<goto "emi1-2">> [[emi1-battle]][[emi1-win]][[emi1-lose]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy "yellow" "Delinquent" "classroom">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> <<set $dmgres = "">> <<set $location to "Classroom">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $profile = "emi-profile">> <</backend>> <div class="bg classroom"></div> <div class="content-panel"> <<print $commentary>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi1/emi1-2.mp4" type="video/mp4"> </video> <<dialog "You">>Shit. You made me break the door. Leave before Miss Shizu comes. <</dialog>> <<enemy "yellow" "Delinquent" "classroom" "left">>O-okay...<</enemy>> You get <<print 100>> exp. <div><<exp 100>><</exp>></div> <div class="button-row"> <<regButton "emi1-3" "Continue">><</regButton>> </div> </div> <<backend>> [[emi1-3]] <<set $hidenav to 0>> <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried talking to Emi. Try beating up some punks in the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <video controls width="640" height="360" autoplay loop muted> <source src="vids/misc/eunsora.mp4" type="video/mp4"> </video> Her name as a BJ was Eunsora but she quit. She did a face reveal kinda recently as Son Ye Eun. Have fun. <div class="button-row"> <<regButton "emi-class" "Continue">><</regButton>> </div> </div> <<backend>> [[emi1-3]] <<set $stats.hp = $stats.maxhp>> <<set $stats.ep = $stats.maxep>> <<set $hidenav to 0>> <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Emi" "student">>So that's why your knuckles were red. You've been fighting. <</dialog>> <<dialog "You">>You got a problem with that? <</dialog>> <<dialog "Emi" "student">>Nope. I like strong guys. <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Emi's love +5<</glow>></h1> <div class="button-row"> <<regButton "emi-class" "Continue">><</regButton>> </div> </div> <<if false>> [[emi1-2]] /* connected passages */ <</if>> <<backend>> <<set $emi.love = ($emi.love + 5)>> <<set $hidenav to 0>> <<set $emi.quest = 2>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi2/emi2-1.mp4" type="video/mp4"> </video> <<enemy "izaki-01" "Izaki Shun" "classroom" "left" "avatars">>You Sawada $player.name?<</enemy>> <<dialog "You">>Nope, not me. <</dialog>> <<enemy "izaki-01" "Izaki Shun" "classroom" "left" "avatars">>Nah, you definitely are.<</enemy>> <<dialog "You">>Why'd you ask me if you're not gonna believe me? <</dialog>> <div class="button-row"> <<regButton "emi2-2" "He grabs your collar">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi2-2]] <<set $hidenav to 1>> <</if>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi2/emi2-2.mp4" type="video/mp4"> </video> <<enemy "izaki-01" "Izaki Shun" "classroom" "left" "avatars">>Look. Yamane Emi is my woman. Meet me at the park after school. You're dead if you don't show up.<</enemy>> <<dialog "You">>... <</dialog>> <hr> He lets you go and walks away. <div class="button-row"> <<regButton "emi2-3" "Someone else approches you">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi2-3]] <</if>> <<set $hidenav to 1>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "Rio">>Damn. Looks like Emi-chan got you too, huh? <</dialog>> <<dialog "You">>What do you mean? <</dialog>> <<dialog "Rio">>Like, you see, Emi-chan was like bullied in middle school so she started dating strong guys. She had totally awesome boobs too so it wasn't hard. <</dialog>> <<dialog "You">>What does that have to do with me? <</dialog>> <<dialog "Rio">>Umm. Izaki Shun, that guy just now, is like rank 24 in the entire school, but his rank is not going up because you know... The seniors are way stronger and Emi feels threatened about it since people aren't like as scared of Izaki as the seniors. <</dialog>> <<dialog "You">>So she lures guys so that they'd have to fight Izaki. Izaki gets to show off his strength and Emi feels a little safer. <</dialog>> <<dialog "Rio">>Bingo. Emi saw that you were like pretty strong so she's using you to boost Izaki's uhm scary factor. <</dialog>> <<dialog "You">>What ranking are you talking about anyway? <</dialog>> <<dialog "Rio">>Right, you just transferred here. Uhh. Like, the boys in this school are ranked in terms of fighting strength. You can totally challenge other students to increase your rank. It's a clever way for the "Big Four" to not get challengers like... daily. <</dialog>> <<dialog "You">>What? big F- You know what? Nevermind. Thank you for telling me, Rio. <</dialog>> <<dialog "Rio">>Well, you're like pretty cute so, I had to let you know. Be careful with Izaki. He's like, still totally strong. See you around, $player.name. <</dialog>> <div class="button-row"> <<regButton "school" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-chat3]] <</if>> <<set $emi.quest = 3>> <<set $hidenav to 0>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-annoyed.mp4" type="video/mp4"> </video> <<dialog "You">>Guess who I met? <</dialog>> <<dialog "Emi" "student">>... <</dialog>> <div class="button-row"> <<regButton "emi-class" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "emi3">> <<set $enemy = { level: 10, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to 15>> <<set $enemy.agi to 15>> <<set $enemy.int to 15>> <<set $enemy.maxhp to 200>> <<set $enemy.hp to 200>> <<set $profile = "player-profile">> <<set $pspeech = "Watch me, Emi-chan~">> <<set $espeech = "How dare you touch my girlfriend.">> <<goto "battle-crud2">> [[emi3-battle]] <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Aww. Are you guys on a date? I don't want to be a third wheel. <</dialog>> <<enemy "izaki-01" "Izaki Shun" "park" "left" "avatars">>This motherfucker.<</enemy>> <<dialog "Emi">>Sorry about this, nerd. <</dialog>> <div class="button-row"> <<regButton "emi3-battlecrud" "Fight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi2-3]] <</if>> <<set $hidenav to 1>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy "izaki-01" "Izaki Shun" "park" "right" "avatars">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[emi3-win]][[emi3-lose]] <<set $dmgres = "">> <<set $location to "Park">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $profile = "emi-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<print $commentary>>. Izaki drops. <<dialog "Emi">>S-stop! <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi3/emi3-win.mp4" type="video/mp4"> </video> <<dialog "You">>You were talking big. This all you got? <</dialog>> <<enemy "izaki-01" "Izaki Shun" "classroom" "left" "avatars">>I... I'm... Sorry. I was just... trying to... pro... tect... her.<</enemy>> <div><<exp 500>><</exp>></div> <div class="button-row"> <<regButton "emi3-2" "Continue">><</regButton>> </div> </div> <<backend>> [[emi3-2]] <<set $profile to "emi-profile">> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you challenged Izaki. Try beating up some punks in the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <video controls width="640" height="360" autoplay loop muted> <source src="vids/misc/anaimiya.mp4" type="video/mp4"> </video> Her name's Anaimiya or NaimiNaimi. Her X (formerly Twitter) profile is wild. Check it out. <div class="button-row"> <<regButton "park" "Continue">><</regButton>> </div> </div> <<backend>> <<set $stats.hp = $stats.maxhp>> <<set $stats.ep = $stats.maxep>> <<set $hidenav to 0>> <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Not as nerdy as you thought, huh? <</dialog>> <<dialog "Emi">>Y-you're not going to hit a girl, are you? <</dialog>> <<dialog "You">>Do I have to? You'll get bullied again anyways. <</dialog>> <<dialog "Emi">>H-how... <</dialog>> <<dialog "You">>You know... I'm planning to raise my rank. I'm so much stronger than Izaki. Does this make me Rank 24 now? <</dialog>> <<dialog "Emi">>That's not how it works... There's no official witness so this match is invalid. You'd have to start fighting from scratch... <</dialog>> <<dialog "You">>I don't think I'd have any trouble climbing ranks if the 24th is this weak. I can probably... replace Izaki-kun. <</dialog>> <<dialog "Emi">>What's the catch? <</dialog>> <<dialog "You">>I wonder... What was the catch with Izaki? Did you spread your legs for him? <</dialog>> <<dialog "Emi">>Y-you! Izaki is a gentleman! We haven't even kissed! <</dialog>> <<dialog "You">>Hah. Really? Poor guy. I'm not a gentleman though. <</dialog>> <<dialog "Emi">>Wh-what do you mean? <</dialog>> <<dialog "You">>Come with me. <</dialog>> <div class="button-row"> <<regButton "emi3-3" "Take her home">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-3]] <</if>> <<set $hidenav to 1>> <<set $inbattle = 0>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-3.mp4" type="video/mp4"> </video> <<dialog "Emi">>Why did you bring me here? <</dialog>> <<dialog "You">>You know why. <</dialog>> <div class="button-row"> <<regButton "emi3-4" "Pull up her shirt">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-4]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-4.mp4" type="video/mp4"> </video> <<dialog "Emi">>Ah. So that's it. You'll rape me. <</dialog>> <<dialog "You">>Rape? That's pretty harsh. Do you want my protection or not? Should I stop? <</dialog>> <<dialog "Emi">>Whatever. Just make it quick. <</dialog>> <<dialog "You">>After you accused me of rape, you expect me to do you a favor? You're funny. <</dialog>> <<dialog "Emi">>Just get it over with. <</dialog>> <<dialog "You">>Maybe if you beg. <</dialog>> <div class="button-row"> <<regButton "emi3-5" "She begs">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-5]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-5.mp4" type="video/mp4"> </video> <<dialog "Emi">>Okay. I'm sooo very sorry for what I said. Please use my body. <</dialog>> <<dialog "You">>You're lucky you're hot. <</dialog>> <div class="button-row"> <<regButton "emi3-6" "Rip her stockings">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-6]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-6.mp4" type="video/mp4"> </video> <<dialog "Emi">>What the hell! Take it easy! <</dialog>> <<dialog "You">>You know what, you're right! Why should I make you feel good? You should be making ME feel good. <</dialog>> <div class="button-row"> <<regButton "emi3-7" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-7]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-7.mp4" type="video/mp4"> </video> <<dialog "Emi">>You are gross. <</dialog>> <<dialog "You">>Hey, you're the one sucking my dick. <</dialog>> <<dialog "Emi">>Stop forcing my head, you fucking asshole. <</dialog>> <div class="button-row"> <<regButton "emi3-8" "Keep fucking her mouth">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-8]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-8.mp4" type="video/mp4"> </video> <<dialog "You">>You know what? Sit straight so you can suck me off better. <</dialog>> <<dialog "Emi">>F-fuck you. <</dialog>> <div class="button-row"> <<regButton "emi3-9" "Fuck her tits">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-9]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-9.mp4" type="video/mp4"> </video> <<dialog "You">>Did you know that these tits are what I first noticed about you? <</dialog>> <<dialog "Emi">>You're a pig. This must be the happiest you've been, huh? You disgust me. <</dialog>> <div class="button-row"> <<regButton "emi3-10" "Fuck her mouth again">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-10]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-10.mp4" type="video/mp4"> </video> <<dialog "You">>But your mouth feels great too! <</dialog>> <<dialog "Emi">>Mmphhh! <</dialog>> <div class="button-row"> <<regButton "emi3-11" "I can't pick">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-11]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-11.mp4" type="video/mp4"> </video> <<dialog "You">>Ahhh! I can't choose which is better! <</dialog>> <<dialog "Emi">>My poor breasts. Hnggkk! <</dialog>> <div class="button-row"> <<regButton "emi3-12" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-12]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Spread your legs. <</dialog>> <<dialog "Emi">>W-wait! Please don't do th-ahhhhh! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-12.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "emi3-13" "She keeps yapping">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-13]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-13.mp4" type="video/mp4"> </video> <<dialog "Emi">>Shouldn't you thank me for letting you fuck this body? Huh? Go on, say it. Thank you, Emi, for letting this nerd have sex. <</dialog>> <<dialog "You">>You're still noisy. <</dialog>> <div class="button-row"> <<regButton "emi3-14" "She kicks you">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-14]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-14.mp4" type="video/mp4"> </video> <<dialog "Emi">>Fuck you! This should be enough, right? Get the fuck away from me! <</dialog>> <<dialog "You">>Ow. That hurt, bitch. Come here. <</dialog>> <div class="button-row"> <<regButton "emi3-15" "You force her on top">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-15]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-15.mp4" type="video/mp4"> </video> <<dialog "You">>You're lucky your huge tits prevented me from kicking you back. <</dialog>> <<dialog "Emi">>Haha! You looked ridiculous. You flew back. You really are a nerd. Poor nerd. <</dialog>> <div class="button-row"> <<regButton "emi3-16" "You lay her down">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-16]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-16.mp4" type="video/mp4"> </video> <<dialog "You">>You suck as a cowgirl. This is way better. <</dialog>> <<dialog "Emi">>You really are disgusting. <</dialog>> <div class="button-row"> <<regButton "emi3-17" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-17]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-18.mp4" type="video/mp4"> </video> <<dialog "You">>That felt great, Emi! <</dialog>> <<dialog "Emi">>Fuck you. <</dialog>> <div class="button-row"> <<regButton "emi3-19" "Make her clean your dick">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-19]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-19.mp4" type="video/mp4"> </video> <<dialog "You">>Clean it. <</dialog>> <<dialog "Emi">>Hngmmp! <</dialog>> <div class="button-row"> <<regButton "emi3-20" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-20]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-20.mp4" type="video/mp4"> </video> <<dialog "Emi">>Do your part of the deal. Climb the rankings and make sure nobody touches me. <</dialog>> <<dialog "You">>Here. I'll even write you a contract. Happy? <</dialog>> <<dialog "Emi">>I hate you. <</dialog>> <hr> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Relationship -5<</glow>></h1> <div class="button-row"> <<regButton "sleep" "Sleep">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<set $location to "Bedroom">> <<set $emi.love = $emi.love - 5>> <<set $emi.quest = 4>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi3/emi3-17.mp4" type="video/mp4"> </video> <<dialog "You">>I'm close! <</dialog>> <<dialog "Emi">>... <</dialog>> <div class="button-row"> <<regButton "emi3-18" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi3-18]] <</if>> <<backend>> <</backend>> <<set $location to "Bedroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-annoyed.mp4" type="video/mp4"> </video> <<dialog "You">>Hey, Emi-chan~ <</dialog>> <<dialog "Emi" "student">>... <</dialog>> <<dialog "You">>How cold~ <</dialog>> <div class="button-row"> <<regButton "emi-class" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-chat5]] <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg council-room"></div> <div class="content-panel"> <<if $haru.scc == 1>> <<dialog "You">>Haru's here. <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru4/haru4-1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "haru-scc" "Sit with Haru">><</regButton>> <<regButton "school" "Leave">><</regButton>> </div> <<else>> <<dialog "You">>There's no one here. <</dialog>> <div class="button-row id-row"> <<regButton "school" "Leave">><</regButton>> </div> <</if>> </div> <<set $location to "Council Room">> <<set $profile to "player-profile">>
<<backend>><<if $haru.scc == 0>><<goto "council-room">><</if>><</backend>><div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru5/haru5-1.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>What subjects are you struggling with? <</dialog>> <div class="button-row"> <<if $haru.quest == 4 && $haru.love >= 150>> <<regButton "haru4-1" "Haru has a proposition">><</regButton>> <</if>> <<if $haru.quest == 5 && $stats.int >= 30>> <<regButton "haru5-1" "You show her your grades">><</regButton>> <</if>> <<if $haru.quest >= 6>> <<regButton "haru5-2" "Sex">><</regButton>> <</if>> <<regButton "haru-scc-chat" "Chat">><</regButton>> <<regButton "council-room" "Nevermind">><</regButton>> </div> </div> <<set $profile to "haru-profile">> <<if false>> /* connected passages */ <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru" "student">>Actually, I can't. I have to finish up some stuff in the Council Room. Sorry. <</dialog>> <<dialog "You">>Aww. <</dialog>> <div class="button-row"> <<regButton "classroom" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <</backend>> <<set $profile to "haru-profile">> <<set $haru.scc = 1>>
<<backend>> <<if random(0,1000) >= 500 || $haru.quest <= 3 || $haru.quest >= 7>> <<goto "haru-visit">> <<else>> <<goto "haru-decline">> <</if>> <<set $profile to "haru-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Actually, let's study at the Council Room. <</dialog>> <<dialog "Haru" "student">>O-oh... Okay... <</dialog>> <div class="button-row"> <<regButton "haru-scc" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <</backend>> <<set $profile to "haru-profile">> <<set $haru.scc = 1>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru5/haru5-1.mp4" type="video/mp4"> </video> <<dialog "You">>You're not just cute, you're smart too. <</dialog>> <<dialog "Haru" "student">>Jeez. Focus will you? <</dialog>> <hr> She blushes... <<if $haru.love < 150 && $haru.chat < 5>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <</if>> <div class="button-row"> <<regButton "haru-scc" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<if $haru.love < 150 && $haru.chat < 5>> <<set $haru.love = ($haru.love + 1)>> <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $haru.chat = $haru.chat + 1>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru5/haru5-1.mp4" type="video/mp4"> </video> <<dialog "You">>Damn. Another failed quiz. We've been studying diligently though. <</dialog>> <<dialog "Haru" "student">>That's because you're always distracted! You're either zoning out or molesting me. Hmph. <</dialog>> <<dialog "You">>Molesting?? That's harsh, Haru! I think some physical touch will ease this insult. <</dialog>> <<dialog "Haru" "student">>Stop joking around, $player.name. This is serious. <</dialog>> <<dialog "You">>I just can't find the motivation for it. <</dialog>> <<dialog "Haru" "student">>Tell you what. Let's make a deal. If you show me a test paper with good grades. I'll give you a reward. <</dialog>> <<dialog "You">>What kind of reward? <</dialog>> <<dialog "Haru" "student">>I can't tell you that, but it will be exciting. <</dialog>> <<dialog "You">>You really know how to motivate a man. <</dialog>> <div class="button-row"> <<regButton "haru-scc" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $haru.quest = 5>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/haru/haru5/haru5-1.mp4" type="video/mp4"> </video> <<dialog "You">>Guess who aced the finals. <</dialog>> <<dialog "Haru" "student">>W-wow. You actually did it. <</dialog>> <<dialog "You">>Are you proud of me? <</dialog>> <<dialog "Haru" "student">>Of course. So proud that I'm going to give you your reward right here, right now. <</dialog>> <div class="button-row"> <<regButton "haru5-2" "She kisses you">><</regButton>> </div> </div> <<if false>> [[haru5-2]] /* connected passages */ <</if>> <<set $hidenav to 1>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-2.mp4" type="video/mp4"> </video> <<dialog "You">>Ooh. You're getting bold. <</dialog>> <<dialog "Haru" "student">>I told you it would be exciting for you~ <</dialog>> <div class="button-row"> <<regButton "haru5-3" "Use tongue">><</regButton>> </div> </div> <<if false>> [[haru5-3]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-3.mp4" type="video/mp4"> </video> <<dialog "You">>Your tongue tastes good. <</dialog>> <<dialog "Haru" "student">>Slurp~ <</dialog>> <div class="button-row"> <<regButton "haru5-4" "Take her coat off">><</regButton>> </div> </div> <<if false>> [[haru5-4]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-4.mp4" type="video/mp4"> </video> <<dialog "You">>It's hot in here. Let me take that off for you. <</dialog>> <<dialog "Haru" "student">>Pervert~ <</dialog>> <div class="button-row"> <<regButton "haru5-5" "Fondle her breasts">><</regButton>> </div> </div> <<if false>> [[haru5-5]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-5.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Noo! You're molesting me again~ I should scream for help. <</dialog>> <<dialog "You">>Oh, I'll make you scream later. <</dialog>> <div class="button-row"> <<regButton "haru5-6" "Unbutton her blouse">><</regButton>> </div> </div> <<if false>> [[haru5-6]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-6.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Actually, it's a little cold. <</dialog>> <<dialog "You">>Okay, I'll just unbutton it. I'll make you sweat later anyway. <</dialog>> <div class="button-row"> <<regButton "haru5-7" "Fondle her breasts">><</regButton>> </div> </div> <<if false>> [[haru5-7]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-7.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>You like my boobs that much? <</dialog>> <<dialog "You">>Yeah, I can't wait to see them. <</dialog>> <div class="button-row"> <<regButton "haru5-8" "Take them out">><</regButton>> </div> </div> <<if false>> [[haru5-8]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-8.mp4" type="video/mp4"> </video> <<dialog "You">>Your nipples are hard~ <</dialog>> <<dialog "Haru" "student">>I told you it's cold! <</dialog>> <div class="button-row"> <<regButton "haru5-9" "Play with her nipples">><</regButton>> </div> </div> <<if false>> [[haru5-9]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-9.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahh~ <</dialog>> <<dialog "You">>Hehe. Are you sensitive because of the cold too? <</dialog>> <<dialog "Haru" "student">>Shut up. <</dialog>> <div class="button-row"> <<regButton "haru5-10" "Bend her over">><</regButton>> </div> </div> <<if false>> [[haru5-10]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-10.mp4" type="video/mp4"> </video> <<dialog "You">>Bend over. <</dialog>> <<dialog "Haru" "student">>Okay~ <</dialog>> <div class="button-row"> <<regButton "haru5-11" "Grope her ass">><</regButton>> </div> </div> <<if false>> [[haru5-11]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-11.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>That feels great~ My ass has been sore lately. <</dialog>> <<dialog "You">>That's because you're always sitting down. <</dialog>> <div class="button-row"> <<regButton "haru5-12" "Spread her cheeks">><</regButton>> </div> </div> <<if false>> [[haru5-12]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-12.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>This is getting embarrassing... <</dialog>> <<dialog "You">>Ass like this is nothing to be embarrassed about. <</dialog>> <div class="button-row"> <<regButton "haru5-13" "Pull down her panties">><</regButton>> </div> </div> <<if false>> [[haru5-13]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-13.mp4" type="video/mp4"> </video> <<dialog "You">>You're already wet. <</dialog>> <<dialog "Haru" "student">>It's your fault! <</dialog>> <div class="button-row"> <<regButton "haru5-14" "Spread her pussy">><</regButton>> </div> </div> <<if false>> [[haru5-14]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-14.mp4" type="video/mp4"> </video> <<dialog "You">>There's my favorite hole. <</dialog>> <<dialog "Haru" "student">>Ahh~ You're so crude! <</dialog>> <div class="button-row"> <<regButton "haru5-15" "Finger her">><</regButton>> </div> </div> <<if false>> [[haru5-15]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-15.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahh~ <</dialog>> <<dialog "You">>You're so warm inside. <</dialog>> <div class="button-row"> <<regButton "haru5-16" "Make her sit and spread her legs">><</regButton>> </div> </div> <<if false>> [[haru5-16]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-16.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahh~ This is embarrassing... <</dialog>> <<dialog "You">>Why? I just wanna see your face while you moan. <</dialog>> <<dialog "Haru" "student">>Ahh~ That's why! <</dialog>> <div class="button-row"> <<regButton "haru5-17" "Pull down your pants">><</regButton>> </div> </div> <<if false>> [[haru5-17]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-17.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>I'll make you feel good too. <</dialog>> <<dialog "You">>Yes, please. <</dialog>> <div class="button-row"> <<regButton "haru5-18" "Handjob">><</regButton>> </div> </div> <<if false>> [[haru5-18]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-18.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>You're so hard. <</dialog>> <<dialog "You">>It's because of your soft parts. <</dialog>> <div class="button-row"> <<regButton "haru5-19" "Lickjob">><</regButton>> </div> </div> <<if false>> [[haru5-19]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-19.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Slurp~ Mmm. <</dialog>> <<dialog "You">>Like a popsicle. <</dialog>> <div class="button-row"> <<regButton "haru5-20" "Blowjob">><</regButton>> </div> </div> <<if false>> [[haru5-20]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-20.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ggkk. Ggkk. <</dialog>> <<dialog "You">>I love that sound~ <</dialog>> <div class="button-row"> <<regButton "haru5-21" "Cowgirl">><</regButton>> <<regButton "haru5-26" "Reverse Cowgirl">><</regButton>> <<regButton "haru5-30" "Doggy">><</regButton>> <<regButton "haru5-34" "Missionary">><</regButton>> </div> </div> <<if false>> [[haru5-21]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-21.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhhhh~ It's in. <</dialog>> <<dialog "You">>It sure is. <</dialog>> <div class="button-row"> <<regButton "haru5-22" "Keep going">><</regButton>> </div> </div> <<if false>> [[haru5-22]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-22.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhhhh~ Ahhhhh~ Ahhhhh~ <</dialog>> <<dialog "You">>Yeah! Harder! <</dialog>> <div class="button-row"> <<regButton "haru5-23" "Harder">><</regButton>> </div> </div> <<if false>> [[haru5-23]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-23.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhhhh~ Ahhhhh~ Ahhhhh~ <</dialog>> <<dialog "You">>I wanna see it. <</dialog>> <div class="button-row"> <<regButton "haru5-24" "Lean her back">><</regButton>> </div> </div> <<if false>> [[haru5-24]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-24.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhhhh~ C-can you see? <</dialog>> <<dialog "You">>Yes, your pussy is so cute. <</dialog>> <div class="button-row"> <<regButton "haru5-25" "Closer">><</regButton>> </div> </div> <<if false>> [[haru5-25]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-25.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhh~ Not too close~ Ahhh~ It's embarrassing~ <</dialog>> <div class="button-row"> <<regButton "haru5-21" "Cowgirl">><</regButton>> <<regButton "haru5-26" "Reverse Cowgirl">><</regButton>> <<regButton "haru5-30" "Doggy">><</regButton>> <<regButton "haru5-34" "Missionary">><</regButton>> </div> </div> <<if false>> [[haru5-26]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <<dialog "You">>Turn around. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-26.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "haru5-27" "Make her bounce">><</regButton>> </div> </div> <<if false>> [[haru5-27]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-27.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhh~ <</dialog>> <<dialog "You">>Harder! <</dialog>> <div class="button-row"> <<regButton "haru5-28" "Harder">><</regButton>> </div> </div> <<if false>> [[haru5-28]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-28.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahhh~ Ahh~ Ahhh~ <</dialog>> <<dialog "You">>Holy shit, Haru! <</dialog>> <div class="button-row"> <<regButton "haru5-29" "Grab her ankles">><</regButton>> </div> </div> <<if false>> [[haru5-29]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-29.mp4" type="video/mp4"> </video> <<dialog "You">>That made me need to hold on. You've turned into a real nasty slut. <</dialog>> <<dialog "Haru" "student">>Ahhh~ D-don't say thaat~ <</dialog>> <div class="button-row"> <<regButton "haru5-21" "Cowgirl">><</regButton>> <<regButton "haru5-26" "Reverse Cowgirl">><</regButton>> <<regButton "haru5-30" "Doggy">><</regButton>> <<regButton "haru5-34" "Missionary">><</regButton>> </div> </div> <<if false>> [[haru5-30]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-30.mp4" type="video/mp4"> </video> <<dialog "You">>Let me take over. I can't let you outdo me. <</dialog>> <<dialog "Haru" "student">>How competitive~ <</dialog>> <div class="button-row"> <<regButton "haru5-31" "Fuck her">><</regButton>> </div> </div> <<if false>> [[haru5-31]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-31.mp4" type="video/mp4"> </video> <<dialog "You">>Ahh~ This feels right. <</dialog>> <<dialog "Haru" "student">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "haru5-32" "Look at her asshole">><</regButton>> </div> </div> <<if false>> [[haru5-32]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-32.mp4" type="video/mp4"> </video> <<dialog "You">>What a pretty little asshole. <</dialog>> <<dialog "Haru" "student">>Ahhh~ Don't you dare! <</dialog>> <div class="button-row"> <<regButton "haru5-33" "Fuck her harder">><</regButton>> </div> </div> <<if false>> [[haru5-33]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-33.mp4" type="video/mp4"> </video> <<dialog "You">>You're so fucking tight! <</dialog>> <<dialog "Haru" "student">>Ahhh~ I want to look at you... <</dialog>> <div class="button-row"> <<regButton "haru5-21" "Cowgirl">><</regButton>> <<regButton "haru5-26" "Reverse Cowgirl">><</regButton>> <<regButton "haru5-30" "Doggy">><</regButton>> <<regButton "haru5-34" "Missionary">><</regButton>> </div> </div> <<if false>> [[haru5-34]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-34.mp4" type="video/mp4"> </video> <<dialog "You">>Alright. <</dialog>> <<dialog "Haru" "student">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "haru5-35" "Missionary">><</regButton>> </div> </div> <<if false>> [[haru5-35]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-35.mp4" type="video/mp4"> </video> <<dialog "You">>Ahh~ You're so pretty. <</dialog>> <<dialog "Haru" "student">>Ahh~ You're just saying that... <</dialog>> <div class="button-row"> <<regButton "haru5-36" "Lay her down">><</regButton>> </div> </div> <<if false>> [[haru5-36]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-36.mp4" type="video/mp4"> </video> <<dialog "You">>Your boobs are perfect. <</dialog>> <<dialog "Haru" "student">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "haru5-37" "Grab her boobs">><</regButton>> </div> </div> <<if false>> [[haru5-37]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-37.mp4" type="video/mp4"> </video> <<dialog "You">>So soft~ <</dialog>> <<dialog "Haru" "student">>Ahh~ So rouugh~ <</dialog>> <div class="button-row"> <<regButton "haru5-21" "Cowgirl">><</regButton>> <<regButton "haru5-26" "Reverse Cowgirl">><</regButton>> <<regButton "haru5-30" "Doggy">><</regButton>> <<regButton "haru5-34" "Missionary">><</regButton>> <<regButton "haru5-38" "Fuck Harder">><</regButton>> </div> </div> <<if false>> [[haru5-38]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-38.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>AHHH~ That's gonna make me cuuuum~ <</dialog>> <<dialog "You">>Let's cum together! <</dialog>> <div class="button-row"> <<regButton "haru5-39" "Cum">><</regButton>> </div> </div> <<if false>> [[haru5-39]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-39.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Ahh~ That felt... amazing... <</dialog>> <<dialog "You">>Yeah, that felt great. <</dialog>> <div class="button-row"> <<regButton "haru5-40" "Make her clean you">><</regButton>> </div> </div> <<if false>> [[haru5-40]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-40.mp4" type="video/mp4"> </video> <<dialog "You">>There you go, clean me up. <</dialog>> <<dialog "Haru" "student">>Slurrp~ Mmm~ <</dialog>> <div class="button-row"> <<regButton "haru5-41" "End sex">><</regButton>> </div> </div> <<if false>> [[haru5-41]] /* connected passages */ <</if>>
<div class="bg council-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-41.mp4" type="video/mp4"> </video> <<dialog "You">>I should study more often. <</dialog>> <<dialog "Haru" "student">>You should~ <</dialog>> <div class="button-row"> <<regButton "haru5-42" "Walk her home">><</regButton>> </div> </div> <<if false>> [[haru5-42]] /* connected passages */ <</if>>
<<backend>> <<if $haru.quest == 5>><<set $haru.quest = 6>><</if>> <<set $hidenav to 0>> <<set $profile to "player-profile">> <<set $hour = 19>> <<goto "alley">> <</backend>>
<<if $haru.visit == 0>> <<goto "haru-home">> <<else>> <<goto "haru-bedroom">> <</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $hidenav to 1>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>Ahh~ I can almost feel the energy drinks calling me. <</dialog>><<if $hour >= 11 && $hour < 23>><video controls width="640" height="360" autoplay loop muted> <source src="vids/misc/konbini.mp4" type="video/mp4"> </video><</if>><<set $yflirt = "yuki-flirt">><<if $yuki.quest >= 7>><<set $yflirt = "yuki-flirtnew">><</if>><<set $yflirt += ($yuki.chat == 0 ? 0 : random(0,3))>> <div class="button-row"> <<if $yuki.quest == 8 && $hour == 18>><<regButton "yuki8-1" "Meet up with Yuki">><</regButton>><</if>> <<if $hour >= 11 && $hour < 23 && $yuki.quest != 5 && $yuki.quest != 6>> <<if $yuki.quest == 7 && $hour < 17>><<regButton "yuki7-1" "Flirt with the cashier">><</regButton>><<else>><<regButton $yflirt "Flirt with the cashier">><</regButton>><</if>><</if>> <<if $yuki.quest >= 3 && $hour >= 23 && $minute < 55 && $yuki.quest != 5 && $yuki.quest != 6>> <<if $yuki.quest == 4 && $shizu.quest >= 2>><<regButton "yuki4-1" "Use Yuki's Services">><</regButton>><<else>><<regButton "yuki-avail" "Use Yuki's Services">><</regButton>><</if>> <</if>> <<if $miku.follow == 0 && $miku.quest == 1 && $hour >= 23 && $minute < 30>> <<regButton "miku-follow" "A cute girl is buying food">><</regButton>> <</if>> <<if $erika.quest == 2>><<regButton "buy-choco" "Buy Chocolates 💵 $5">><</regButton>><</if>> <<buy "Energy Drink" 100>> <<regButton "konbini" "Leave">><</regButton>> </div> </div> <<backend>> [[yuki8-1]] <<set $location to "Convenience Store">> <<set $hidenav = 0>> <<if $hour >= 11 && $hour < 23>><<set $profile to "yuki-profile">><</if>> <</backend>>
<<backend>><<set $relper = Math.ceil(($yuki.love/$yuki.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #FF1760" "8px #BE003B" 24 "pink">>Character Profile<</glow>></h1> <img src="img/avatars/yuki-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px #FBD786" "8px #f7797d" 20 "#C6FFDD">>Obara Yuki<</glow>></h1> <<if $yuki.love > $yuki.maxlove>><<set $yuki.love to $yuki.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $yuki.love+" / "+$yuki.maxlove>><</glow>></h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. She's the cashier at the Convenience Store. <<if $yuki.love >= 10 || $yuki.quest > 1>>2. Ask her out at the end of her shift. (Between 11:00PM and 11:15PM)<</if>> <<if $yuki.quest >= 2>>3. Ouch. That was brutal, dude. I don't know, maybe try raising your relationship with her some more?<</if>> <<if ($yuki.quest >= 2 && $yuki.love >= 20) || $yuki.quest >= 3>>4. She often stops by the park before going home.<</if>> <<if $yuki.quest >= 3>>5. Avail her services at the store. You can keep unlocking more things as you spend money.<</if>> <<if $yuki.quest >= 4>>6. Progress through Shizu's story. <<if $shizu.quest >= 2>>7. Try to avail her sevices again.<</if>><</if>> <<if $yuki.quest >= 5>>8. Give her time to think.<</if>> <<if $yuki.quest >= 6>>9. Run into her after her shift in the Convenience Store. (Between 11:00PM and 11:15PM)<</if>> <<if $yuki.quest >= 7>>10. Flirt with her during her shift. (Before 5PM)<</if>> <<if $yuki.quest >= 8>>11. Come back at 6PM.<</if>> <<if $yuki.quest >= 9>>12. You will find out soon that she quit.<</if>> <<if $yuki.quest >= 10>>13. Finish Miku's 14th quest then talk to your uncle at 5PM.<</if>> <<if $yuki.quest >= 11>>14. That's it for this version.<</if>> </h1></div> <a href="https://safriscoffi.com/streethero/guide/yuki.php" class="button download" target="_blank" style="color: #FFFFBB; text-shadow: 0 0 5px #FBD786, 0 0 10px #BE003B;">More detailed guide!</a>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>All the thugs are probably asleep. <</dialog>> <div class="button-row"> <<regButton "park" "Continue">><</regButton>> </div> </div>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>Hi, Yuki. You're looking cute again today. <</dialog>> <<dialog "Yuki">>I'm working... sir... <</dialog>> <<dialog "You">>How cold~ <</dialog>> <<if $yuki.chat <= 3>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<if $yuki.chat <= 3>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<set $yuki.chat = $yuki.chat + 1>><div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>Hi again, Yuki. I want something but I couldn't find it in any shelf. Can you help me? <</dialog>> <<dialog "Yuki">>What are you looking for, sir? <</dialog>> <<dialog "You">>Your number. <</dialog>> <<dialog "Yuki">>Pft. Sadly, we're out of stock. <</dialog>> <<dialog "You">>Aww. <</dialog>> <<if $yuki.chat <= 3>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<if $yuki.chat <= 3>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<set $yuki.chat = $yuki.chat + 1>><div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>You know... You're the only reason why I visit this store. <</dialog>> <<dialog "Yuki">>And yet I am severely underpaid. <</dialog>> <<dialog "You">>That sucks. <</dialog>> <<if $yuki.chat <= 4>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<if $yuki.chat <= 4>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<set $yuki.chat = $yuki.chat + 1>><div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>I bet you're as sweet as this Slurpee. <</dialog>> <<dialog "Yuki">>Next customer, please! <</dialog>> <<dialog "You">>As cold as it too~ <</dialog>> <<if $yuki.chat <= 5>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<if $yuki.chat <= 5>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Hi, Yuki. You're just clocking out? <</dialog>> <<dialog "Yuki">>Oh... $player.name... <</dialog>> <<dialog "You">>Ooh. You know my name? <</dialog>> <<dialog "Yuki">>Well... <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row id-row"> <<regButton "yuki1-2" "Ask her out">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki1-2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<set $yuki.love = $yuki.love + 1>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>For how long should I waste time? <</dialog>> <div class="button-row"> <<regButton "waste-time-5m" "5 minutes">><</regButton>> <<regButton "waste-time-10m" "10 minutes">><</regButton>> <<regButton "waste-time-15m" "15 minutes">><</regButton>> <<regButton "waste-time-30m" "30 minutes">><</regButton>> <<regButton "waste-time-1h" "An hour">><</regButton>> <<regButton "park" "Nevermind">><</regButton>> </div> </div>
<<script>> incrementTime(0, 5); <</script>> <<goto $currentPassage>>
<<script>> incrementTime(0, 10); <</script>> <<goto $currentPassage>>
<<script>> incrementTime(0, 15); <</script>> <<goto $currentPassage>>
<<script>> incrementTime(0, 30); <</script>> <<goto $currentPassage>>
<<script>> incrementTime(1, 0); <</script>> <<goto $currentPassage>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Admit it! You're a liiiittle interested in me. <</dialog>> <<dialog "Yuki">>Pft. Yeah, right. <</dialog>> <<dialog "You">>So, why don't we get some coffee? Or tea? You know... Since its late. You get to know more about me, other than my name, and I get to stare at that beautiful face of yours the entire time. <</dialog>> <<dialog "Yuki">>Look, $player.name. I'm flattered. I think you're cute too. It's just that I'm more focused on making money right now... I don't really have time for... dating. <</dialog>> <<dialog "You">>Damn. Okay. <</dialog>> <<dialog "Yuki">>I'm really sorry. <</dialog>> <<dialog "You">>No, don't be. Can I at least walk you home? It's pretty dark. <</dialog>> <<dialog "Yuki">>Actually, I have plans after this. Thanks anyway, you're sweet. <</dialog>> <<dialog "You">><i>*Plans this late? Is she trying to avoid me?*</i> Okay. Just, take care. I'll see you around. <</dialog>> <<dialog "Yuki">>I'll see you around. <</dialog>> <div class="button-row id-row"> <<regButton "konbini" "Oof">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $yuki.quest = 2>>
<<backend>><<set $relper = Math.ceil(($miku.love/$miku.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #FF1760" "8px #BE003B" 24 "pink">>Character Profile<</glow>></h1> <img src="img/avatars/miku-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px royalblue" "8px dodgerblue" 20 "dodgerblue">>Wakaba Miku<</glow>></h1> <<if $miku.love > $miku.maxlove>><<set $miku.love to $miku.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $miku.love+" / "+$miku.maxlove>><</glow>></h1> <div style="text-align: left; line-height:1.25;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. You might find her at the Convenience Store late at night. Follow her home. <<if $miku.quest >= 2>>2. Walk her home when you can until something happens.<</if>> <<if $miku.quest >= 3>>3. She now trusts you enough to let you in her home. Nurture this relationship. You can only sleep at her place at 11PM onwards. Try to have breakfast, lunch and dinner with her too.<</if>> <<if $miku.quest >= 3 && $miku.love >= 30>>4. Try to stay up past 11PM.<</if>> <<if $miku.quest >= 4>>5. Keep increasing your relationship.<</if>> <<if $miku.quest >= 4 && $miku.love >= 60>>6. Crash on her couch.<</if>> <<if $miku.quest >= 5>>7. You now have a sexual relationship. Walk her home from the convenience store again for a morning surprise. 8. Beat Gokuro of Tekijime. <<if $player.quest >= 5 || $miku.quest >= 6>>9. Ask to get coffee. Make sure you have $12 on you.<</if>><</if>> <<if $miku.quest >= 6>>10. Visit her on a Saturday at 5PM.<</if>> <<if $miku.quest >= 7>>11. Visit her on a Monday before she goes to bed.<</if>> <<if $miku.quest >= 8>>12. Visit her on a Wednesday before she goes to bed and have Pillow Talk with her.<</if>> <<if $miku.quest >= 9>>13. Visit her on a Friday between 5PM and 6PM.<</if>> <<if $miku.quest >= 10>>14. Go to class at 11AM.<</if>> <<if $miku.quest >= 11>>15. That's it for this version.<</if>> </h1><<if $miku.quest >= 5>><h1><<glow "0.5px yellow" "8px orange">>Extras<</glow>> 1. Her place at night. </h1> <</if>> </div>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>You fuckers! <</dialog>> <hr> You kick one of the thugs in the head, immediately knocking him out. <hr> <<enemy "green2" "Thug 1" "park" "left" "enemies">>Ugkk.<</enemy>> <<enemy "green1" "Thug 2" "park" "left" "enemies">>What?<</enemy>> <<dialog "Yuki">>$player.name? <</dialog>> <<dialog "You">>Stay back, Yuki! <</dialog>> <hr> You punch the other one in the face and instantly finish him as well. <hr> <<enemy "yellow" "Thug 3" "park" "left" "enemies">>Hnngggkkk.<</enemy>> <<dialog "Yuki">>No! Wait! $player.name! <</dialog>> <<dialog "You">>Get behind me, Yuki! <</dialog>> <<enemy "green1" "Thug 2" "park" "left" "enemies">>I'll kill you!<</enemy>> <div class="button-row"> <<regButton "yuki2-battlecrud" "Fight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki2-battlecrud]] <</if>> <<set $hidenav to 1>> <<backend>> <<set $profile = "yuki-profile">> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "yuki2">> <<set $enemy = { level: 12, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to 20>> <<set $enemy.agi to 20>> <<set $enemy.int to 20>> <<set $enemy.maxhp to 220>> <<set $enemy.hp to 220>> <<set $profile = "player-profile">> <<set $pspeech = "How dare you touch Yuki!">> <<set $espeech = "What are you talking about!?">> <<goto "battle-crud2">> [[yuki2-battle]] <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy "green1" "Thug 2" "park" "right" "enemies">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[yuki2-win]][[yuki2-lose]] <<set $dmgres = "">> <<set $location to "Park">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<print $commentary>>. <<enemy "green1" "Thug 2" "park" "left" "enemies">>What did we... do... to... you...<</enemy>> <hr> Thug 2 drops. <div><<exp 750>><</exp>></div> <<dialog "You">>You're safe now, Yuki. <</dialog>> <<dialog "Yuki">>You asshole! I told you to stop! <</dialog>> <<dialog "You">>W-what!? <</dialog>> <h1><<glow "0.4px dodgerblue" "8px blue" "18">>Relationship -1<</glow>></h1> <div class="button-row"> <<regButton "yuki2-2" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki2-2]] <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>> <<set $yuki.love = $yuki.love - 1>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried to rescue Yuki. Try beating up some punks in the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <video controls width="640" height="360" autoplay loop muted> <source src="vids/misc/lets99.mp4" type="video/mp4"> </video> Her name's Lets99. Also a Korean Broadcast Jockey (KBJ). <div class="button-row"> <<regButton "park" "Continue">><</regButton>> </div> </div> <<backend>> <<set $stats.hp = $stats.maxhp>> <<set $stats.ep = $stats.maxep>> <<set $hidenav to 0>> <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>They were harrassing you. <</dialog>> <<dialog "Yuki">>Haahhh. How nosy. They were clients! <</dialog>> <<dialog "You">>Clients? <</dialog>> <<dialog "Yuki">>Yeah. They pay me to hang out with them and let them... touch me. They were refusing to pay because I drank their alcohol. They told me the bill should have been paid with that. <</dialog>> <<dialog "You">>Wait... So you have... sex for money? <</dialog>> <<dialog "Yuki">>How dare you! First you ruin my business, then you insult me?? I'm not spreading my legs for just anybody! <</dialog>> <<dialog "You">>That's a relief... <</dialog>> <<dialog "Yuki">>Relief!? You just ruined my fucking business! <</dialog>> <h1><<glow "0.4px dodgerblue" "8px blue" "18">>Relationship -1<</glow>></h1> <div class="button-row"> <<regButton "yuki2-3" "She storms off">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <</backend>> <<set $yuki.love = $yuki.love - 1>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>We-we-we-we-wait. Let me make it up to you. <</dialog>> <<dialog "Yuki">>What? Are you going to un-punch my clients?? <</dialog>> <div class="button-row"> <<regButton "yuki2-4" "Denial">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Well... <</dialog>> <<dialog "Yuki">>Maybe they're okay? <</dialog>> <<dialog "You">>N-nah... I'm pretty strong. <</dialog>> <div class="button-row"> <<regButton "yuki2-5" "Anger">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "Yuki">>This is all your fucking fault! <</dialog>> <<dialog "You">>Come on... I said I was sorry. <</dialog>> <<dialog "Yuki">>What will your sorry do? You knocked the fuck out of my clients! <</dialog>> <div class="button-row"> <<regButton "yuki2-6" "Bargaining">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I can replace them! <</dialog>> <<dialog "Yuki">>You. Fucking. Pervert. <</dialog>> <<dialog "You">>No? How about I introduce you to some rich people. They'd pay a lot! <</dialog>> <<dialog "Yuki">>You think I'm going to let just some random geezer touch me!? <</dialog>> <<dialog "You">>You were letting those guys touch you! <</dialog>> <<dialog "Yuki">>Yeah, but I knew those guys! <</dialog>> <div class="button-row"> <<regButton "yuki2-7" "Depression">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "Yuki">>How am I gonna pay my debt now? Huhuhu. <</dialog>> <<dialog "You">>U-umm... <</dialog>> <div class="button-row"> <<regButton "yuki2-8" "Acceptance">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>What can I do, then? Let me help. It was an honest mistake. You looked like you were about to be raped in my perspective. <</dialog>> <<dialog "Yuki">>Hahhh, fucking hell. That's the only reason why I haven't kicked you in the nuts yet. <</dialog>> <<dialog "You">>Tell me what I can do. Go on. <</dialog>> <<dialog "Yuki">>Fine. Every end of my shift, come visit me. Bring cash. <</dialog>> <<dialog "You">>I'm going to be your new client, then? <</dialog>> <<dialog "Yuki">>You offered, didn't you? <</dialog>> <<dialog "You">>Yes, ma'am! <</dialog>> <<dialog "Yuki">>Walk me home. <</dialog>> <div class="button-row"> <<regButton "yuki2-9" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki2-9]] <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <<set $yuki.quest = 3>> <</backend>>
<<backend>> <<set $profile = "yuki-profile">> <</backend>> <div class="bg alley"></div> <div class="content-panel"> You walk her home <hr> <<dialog "You">>Take care! <</dialog>> <<dialog "Yuki">>Tomorrow, okay? <</dialog>> <<dialog "You">>Yes, ma'am! <</dialog>> <div class="button-row"> <<regButton "sleep" "Go home and sleep">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> <<set $inbattle = 0>> <<set $yuki.quest = 3>> <</backend>>
<<backend>><<set $speper = $yuki.spending / 2500 * 100>><</backend>><div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>Let me wear a uniform so it not suspicious. Sooo, what can I get? <</dialog>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $2500">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>I can show you my tits. <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"> <<regButton "yuki3-1" "💵 25" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div><</dialog>> <<dialog "Yuki">>Wanna see my panties? <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"> <<regButton "yuki3-4" "💵 25" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div><</dialog>> <<if $yuki.spending >= 300>> <<dialog "Yuki">>I'm getting horny. Wanna finger me? <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"> <<regButton "yuki3-7" "💵 100" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div><</dialog>> <</if>> <<if $yuki.spending >= 750>> <<dialog "Yuki">>Want to stick random stuff inside me? <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"> <<regButton "yuki3-10" "💵 150" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div><</dialog>> <</if>> <<if $yuki.spending >= 1250>> <<dialog "Yuki">>Wanna fuck? <<regButton "yuki3-15" "💵 1000" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>><</dialog>> <</if>> <<if $yuki.spending >= 2500>> <<dialog "Yuki">>You wanna try this Honey Pack? <<regButton "yuki-aph1" "💵 1500" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>><</dialog>> <</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Maybe later">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 25>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 25>> <<set $yuki.spending = $yuki.spending + 25>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-1.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>Your boobs are so perky. <</dialog>> <<dialog "Yuki">><div>Should I show you more?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-2" "💵 50" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. No tits for you. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-2.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>Can I hold them? <</dialog>> <<dialog "Yuki">><div>Nah. But do you want me to pose for you?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-3" "💵 25" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. That's enough. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-3]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 25>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 25>> <<set $yuki.spending = $yuki.spending + 25>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-3.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>You're too cute. <</dialog>> <<dialog "Yuki">><div>That was fun.</div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. I had a very cute pose too. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 25>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 25>> <<set $yuki.spending = $yuki.spending + 25>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-4.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>Blue huh? <</dialog>> <<dialog "Yuki">><div>Want a peek inside?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-5" "💵 50" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. I'm wearing a cute color too. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-5]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-5.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>Your bush is neat too. <</dialog>> <<dialog "Yuki">><div>You're making me wet. Wanna see?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-6" "💵 75" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. No peeping for you! <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-6]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-6.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>You're so wet! <</dialog>> <<dialog "Yuki">><div>Told ya.</div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. The panties stay on! <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 100>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 100>> <<set $yuki.spending = $yuki.spending + 100>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-7.mp4" type="video/mp4"> </video> <<dialog "You">>Your pussy is so warm~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>Ah~ That feels good. Wanna see how I do it?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-8" "💵 50" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. Too bad. I'm sooo wet. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-8]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 150>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 150>> <<set $yuki.spending = $yuki.spending + 150>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-10.mp4" type="video/mp4"> </video> <<dialog "You">>You're actually fucking a hotdog. That's so hot. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>Ahh~ It tingles~ Should I speed it up?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-11" "💵 100" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. I was gonna put a hotdog in me. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-11]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-8.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>You look so hot. <</dialog>> <<dialog "Yuki">><div>I'll let you touch me all over for 10 seconds.</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-9" "💵 25" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. You can just imagine me doing it. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-9]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 25>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 25>> <<set $yuki.spending = $yuki.spending + 25>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-9.mp4" type="video/mp4"> </video> <<dialog "You">>You're so soft, Yuki! <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>Ahh~ You're so rough!</div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. No touching~ <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-5]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-11.mp4" type="video/mp4"> </video> <<dialog "You">>Not gonna lie, this is turning me on. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>The hotdog is kinda spicy. How about pens?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-12" "💵 50" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. I was in the zone too. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-12]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-12.mp4" type="video/mp4"> </video> <<dialog "You">>How many can you fit? <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>Depends on how much your paying. You wanna add more?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-13" "💵 50" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. The pens reach far, so they feel great. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-13]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-13.mp4" type="video/mp4"> </video> <<dialog "You">>I want that pussy. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>My pussy is still on fire. Wanna see me fill my pussy up with sake?</div> <div style="max-width: 75%; display: inline-block; margin-top: 0px; margin-bottom: 10px; vertical-align: top;"><<regButton "yuki3-14" "💵 50" "linear-gradient(-15deg, #1a3822, #2a8041)" "#2a8041, 0 0 6px green">><</regButton>></div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. I was about to shove a couple more pens in. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Nevermind">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-14]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 50>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 50>> <<set $yuki.spending = $yuki.spending + 50>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-14.mp4" type="video/mp4"> </video> <<dialog "You">>I wanna lick it all off <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Yuki">><div>Ahh~ Refreshing~</div> <</dialog>> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. Too bad. My pussy was thirsty. <</dialog>> <</if>> <div class="button-row id-row"> <<regButton "yuki-avail" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-15]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 1000>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 1000>> <<set $yuki.spending = $yuki.spending + 1000>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $1250">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1><video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-15.mp4" type="video/mp4"> </video> <<dialog "You">>Suck my dick first. <</dialog>> <<dialog "Yuki">>Th-this is my first time sucking dick. It's kinda gross. <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-16" "Keep Trying">><</regButton>> </div> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. Too bad. I wanted you inside. <</dialog>> <div class="button-row id-row"> <<regButton "yuki-avail" "Continue">><</regButton>> </div> <</if>> </div> <<if false>> /* connected passages */ [[yuki3-16]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-16.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Eughhh. <</dialog>> <<dialog "You">>Come on. That bad? <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-17" "Try to keep it in">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-17]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-17.mp4" type="video/mp4"> </video> <<dialog "You">>That's better. <</dialog>> <<dialog "Yuki">>Mmmph. <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-18" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-18]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-18.mp4" type="video/mp4"> </video> <<dialog "You">>That feels great, Yuki. <</dialog>> <<dialog "Yuki">>Mmmgk. Mmmgk. <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-19" "Bend her over">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-19]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-19.mp4" type="video/mp4"> </video> <<dialog "Yuki">>I'm done sucking. Here, stick it in. <</dialog>> <<dialog "You">>That pussy looks tight. <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-20" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-20]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-20.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahh~ <</dialog>> <<dialog "You">>I'm inside. <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-21" "Sit on me">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-21]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-21.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahh~ It feels good~ <</dialog>> <<dialog "You">>H-hey... Is your coworker watching us? <</dialog>> <<dialog "Yuki">>Yeah, don't worry- Ahh~ bout it... This has happ-ahh~ nd before~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-22" "Keep Trying">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-22]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-22.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahh~ This guy is pretty great! <</dialog>> <<dialog "You">>A-are you talking to him while fucking me? <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-23" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-23]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>You know what? Let me fuck you. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-23.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahhh~ It feels good~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-24" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-24]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-24.mp4" type="video/mp4"> </video> <<dialog "You">>Ah~ I... I came! <</dialog>> <<dialog "Yuki">>D-dude! He came! He came inside! Do we have Plan B? <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-25" "Show cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-25]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-25.mp4" type="video/mp4"> </video> <<dialog "You">>That felt amazing, Yuki. <</dialog>> <<dialog "Yuki">>You're taking responsibility, right~? <</dialog>> <div class="button-row id-row"> <<regButton "yuki3-26" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki3-26]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-26.mp4" type="video/mp4"> </video> <<dialog "You">>U-um... <</dialog>> <<dialog "Yuki">>I'm kidding! I'm on birth control. Get out of here, I'm going to get changed. See you tomorrow. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>></h1> <div class="button-row id-row"> <<regButton "konbini" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<set $yuki.love = $yuki.love + 3>> <<set $minute to 59>> <<if $yuki.quest < 4>><<set $yuki.quest = 4>><</if>>
<<set $miku.follow = $miku.follow + 1>> <<if $miku.follow == 1>> <<goto "konbini-int">> <<elseif $miku.follow == 2>> <<goto "konbini">> <<elseif $miku.follow == 3>> <<goto "park">> <<elseif $miku.follow == 4>> <<goto "alley">> <<else>> <<goto "home">> <</if>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku1/miku1.mp4" type="video/mp4"> </video> <<dialog "Miku">>... <</dialog>> <<dialog "You">>Does she think I'm following her? This is awkward... <</dialog>> <div class="button-row"> <<regButton "alley" "Look away">><</regButton>> </div> </div> <<set $miku.follow = 4>> <<if false>> /* connected passages */ [[miku1-home]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>S-stop! Back off! <</dialog>> <<dialog "You">>W-wait. This is a misunderstanding! <</dialog>> <<dialog "Miku">>Y-y-y-y-you've been following me f-f-f-from the Convenience Store! <</dialog>> <<dialog "You">>Hear me out, miss. <</dialog>> <<dialog "Miku">>Stay away or I'll scream! <</dialog>> <<dialog "You">>No, please don't! <</dialog>> <div class="button-row"> <<regButton "miku1-1" "She yells">><</regButton>> </div> </div> <<set $miku.follow = 5>> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku1-1]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>HEEEELP! <</dialog>> <<dialog "You">>SHHHHHHH. Ma'am! I really am not following you! <</dialog>> <<dialog "Miku">>I don't believe you! HEEELP! <</dialog>> <div class="button-row"> <<regButton "miku1-2" "Your uncle appears">><</regButton>> </div> </div> <<set $miku.follow = 5>> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku1-2]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>How dare you assault someone in my neighborhood! I'll murder yer ass! <</dialog>> <<dialog "You">>U-uncle! <</dialog>> <<dialog "Miku">>U-uncle? <</dialog>> <<dialog "Uncle">>$player.name? <</dialog>> <div class="button-row"> <<regButton "miku1-3" "Later...">><</regButton>> </div> </div> <<set $miku.follow = 5>> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku1-3]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>I-I'M SO SORRY! <</dialog>> <<dialog "Uncle">>HAHAHAHA! You should work on your face, $player.name. People think you're a stalker. <</dialog>> <<dialog "You">>You think that's funny? <</dialog>> <<dialog "Miku">>I'm sorry! I-I didn't know you lived next to me. <</dialog>> <<dialog "You">>N-no, miss. I should have kept my distance. That must've been scary for you. <</dialog>> <<dialog "Uncle">>That's right, Miku-chan! It's not your fault my nephew has a scary face. HAHAHAHA <</dialog>> <<dialog "You">>If you weren't my uncle, I would have punched you already <</dialog>> <<dialog "Miku">>I'm sorry again! <</dialog>> <<dialog "Uncle">>All right. All right. You should have your dinner now, Miku. Looks like you bought food. Stop going out too late, okay? <</dialog>> <<dialog "Miku">>Th-thank you. <</dialog>> <div class="button-row"> <<regButton "bedroom" "Continue">><</regButton>> </div> </div> <<set $miku.quest = 2>> <<set $minute = 59>> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>$player.name! <</dialog>> <<dialog "You">>Oh! Hi, Miku! <</dialog>> <div class="button-row"> <<regButton "miku2-park" "Walk her home">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku2-park]] <</if>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku2/miku2-park.mp4" type="video/mp4"> </video> <<dialog "You">>You're out late again! For a scaredy cat, you have no fear. <</dialog>> <<dialog "Miku">>Shut up! Mind your own business. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku2-alley" "Alley">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<if false>> /* connected passages */ [[miku2-alley]] <</if>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku2/miku2-alley.mp4" type="video/mp4"> </video> <<dialog "Miku">>Here! This is where I noticed you were following me. <</dialog>> <<dialog "You">>I remember. I felt weird when you started looking back. You walked so slow too! It was so awkward! <</dialog>> <<dialog "Miku">>You should have walked past me then! <</dialog>> <<dialog "You">>Would you have felt comfortable if I started speeding up? <</dialog>> <<dialog "Miku">><i>*Grumble*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $miku.quest >= 4 && $miku.love >= 60>><<regButton "miku5-sleepover" "You arrive home">><</regButton>><<else>><<regButton "miku2-home" "You arrive home">><</regButton>><</if>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<if false>> /* connected passages */ [[miku2-home]][[miku5-sleepover]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku2/miku2-home.mp4" type="video/mp4"> </video> <<dialog "Miku">>Hahaha! Now that I remember, you looked so panicked when I started yelling at you. <</dialog>> <<dialog "You">>Huh? You're laughing at me? <</dialog>> <<dialog "Miku">>Yes! Hahaha. I totally thought you were a stalker. <</dialog>> <<dialog "You">>That's harsh. I'm pretty sweet you know. I even started walking you home. <</dialog>> <<dialog "Miku">>Yeah, yeah. Thanks for walking me home. <i>*Blush*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $miku.quest >= 3>><<regButton "miku-sleepover" "Sleep over">><</regButton>><</if>> <<regButton "miku2-end" "Say goodbye">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<if false>> /* connected passages */ [[miku2-end]] [[miku-sleepover]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku2/miku2-end.mp4" type="video/mp4"> </video> <<dialog "Miku">>Welp. We're here. <</dialog>> <<dialog "You">>Really? Damn. I wanted to walk more with you. You know... without feeling like a creep. <</dialog>> <<dialog "Miku">>Alright. Alright. I said I was sorry. <</dialog>> <<dialog "You">>Nah, it's all good. At least, I can walk you home now. <</dialog>> <<dialog "Miku">><i>*Blush*</i> Whatever. It's late. I'm going in. Goodbye! <</dialog>> <<dialog "You">>Good night. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if ($miku.quest == 2 && $miku.love < 10) || $miku.quest >= 3>><<regButton "bedroom" "Go to your room">><</regButton>><<else>><<regButton "miku2-battlecrud" "She yelled">><</regButton>><</if>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<set $minute = 45>> <<if false>> /* connected passages */ [[miku2-1]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>$player.name! H-help! <</dialog>> <<enemy "robber" "Stalker" "miku-room" "left" "enemies">>Fuck! Who are you!?<</enemy>> <<dialog "You">>That's my line, motherfucker. <</dialog>> <div class="button-row"> <<regButton "battle-crud2" "Fight">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Room">> <<if false>> /* connected passages */ [[miku2-battlecrud]] <</if>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "miku2">> <<set $enemy = { level: 15, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to 25>> <<set $enemy.agi to 25>> <<set $enemy.int to 25>> <<set $enemy.maxhp to 225>> <<set $enemy.hp to 225>> <<set $profile = "player-profile">> <<set $pspeech = "So you're the reason why Miku-chan's a scaredy cat.">> <<set $espeech = "Why are you here!?">> <<goto "miku2-1">> [[miku2-battle]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy "robber" "Stalker" "miku-room" "right" "enemies">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> <<set $dmgres = "">> <<set $location to "Miku's Room">> <<set $profile to "player-profile">> <<set $hidenav to 1>>[[miku2-lose]][[miku2-win]] <style> #ui-bar-history { display: none; } </style> <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you walked Miku home. Try beating up some punks in the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <video controls width="640" height="360" autoplay loop muted> <source src="vids/misc/eli05021212.mp4" type="video/mp4"> </video> Her name's eli05021212. Check it out. <div class="button-row"> <<regButton "konbini" "Continue">><</regButton>> </div> </div> <<backend>> <<set $minute = 0>> <<set $hour = 23>> <<set $miku.love = $miku.love - 4>> <<set $stats.hp = $stats.maxhp>> <<set $stats.ep = $stats.maxep>> <<set $hidenav to 0>> <<set $inbattle = 0>> <</backend>>
<<backend>> <<set $profile = "miku-profile">> <</backend>> <div class="bg miku-room"></div> <div class="content-panel"> <<print $commentary>>. The stalker falls. <<dialog "Miku">>$player.name! <</dialog>> <<dialog "You">>Did you call the cops? <</dialog>> <<dialog "Miku">>N-no! I'm sorry! I was panicking! L-let me call now. <</dialog>> <<dialog "You">>Don't. This kind of thing... Authorities can't help much. All this creep did was breaking and entering. He'll be free in like two years or something. <</dialog>> <<dialog "Miku">>W-what? No way... <</dialog>> <<dialog "You">>Yep. He'll come back. Don't worry, though. I hope I don't scare you, but let me talk to my uncle... <</dialog>> <div class="button-row"> <<regButton "miku2-2" "Continue">><</regButton>> </div> </div> <<backend>> [[miku2-2]] <<set $profile to "miku-profile">> <<set $inbattle = 0>> <</backend>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> You called your uncle and dealt with the stalker... Sawada Family Style. <hr> <<dialog "Uncle">>You don't have to be worried anymore, Miku. That punk's either going to be a slave or have his organs sold in the black market. <</dialog>> <<dialog "Miku">>... <</dialog>> <<dialog "You">><i>Jeez...</i> <</dialog>> <<dialog "Uncle">>Umm... Look, Miku, I hope uncle here didn't scare you. We're indeed gangsters but we don't harm civilians! As long as the Sawada family is here, this place is safe. <</dialog>> <<dialog "Miku">>N-no... Thank you. I wasn't scared of you... I'm grateful. I'm just a bit shaken... <</dialog>> <<dialog "You">>Don't worry. I'll protect you. <</dialog>> <<dialog "Uncle">>Oooooh! How manly, nephew! That punk must've been stupid attacking Sawada $player.name's woman. Hahaha! <</dialog>> <<dialog "Miku">><<print $player.name.charAt(0)>>-<<print $player.name>>'s woman?? W-were not there yet! <i>*Blushes*</i> <</dialog>> <<dialog "You">>Haha! That's right, Uncle! Come on, read the room. We're not there YET! <</dialog>> <<dialog "Uncle">>My bad! My bad! I'll leave you two not YET lovebirds alone. <</dialog>> <<dialog "Miku">>... <i>*Blushes*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku2-3" "Uncle leaves">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Home">> <<set $miku.love = $miku.love + 5>> <<if false>> /* connected passages */ [[miku2-3]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>S-so I'm your woman, huh? <</dialog>> <<dialog "You">>You can be if you want~ <</dialog>> <<dialog "Miku">>Woooow. You're used to this, huh? <</dialog>> <<dialog "You">>Thank you! <</dialog>> <<dialog "Miku">>That's not a compliment! <</dialog>> <div class="button-row"> <<regButton "miku2-4" "Continue">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku2-4]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>Actually... I'm a little scared of going back inside... <</dialog>> <<dialog "You">>I understand. That must have been so scary. I'm glad I heard you. <</dialog>> <<dialog "Miku">>Thanks again for rescuing me... <</dialog>> <hr> Miku hesitates... <hr> <<dialog "You">>Would you feel a little better if I accompanied you inside for a bit? <</dialog>> <<dialog "Miku">>Y-yes! Please... <</dialog>> <div class="button-row"> <<regButton "miku2-5" "Go inside">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku2-5]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku2/miku2-5.mp4" type="video/mp4"> </video> <<dialog "Miku">>Here, have a drink <</dialog>> <<dialog "You">>Thanks! <</dialog>> <<dialog "Miku">>I should be the one thanking you. <</dialog>> <<dialog "You">>You already did. <</dialog>> <<dialog "Miku">>... <</dialog>> <<dialog "You">>You can talk to me. That's why I'm here. <</dialog>> <<dialog "Miku">>Hmm... My room's messy, huh? <</dialog>> <<dialog "You">>A little... <</dialog>> <<dialog "Miku">>To be honest... I've been... <</dialog>> <div class="button-row"> <<regButton "miku2-6" "Assure her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku2-6]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku2/miku2-6.mp4" type="video/mp4"> </video> <<dialog "You">>Go on, it's okay. <</dialog>> <<dialog "Miku">>Molested... a lot... <</dialog>> <<dialog "You">>By who? <</dialog>> <<dialog "Miku">>A lot of people... That's why I've been scared of going out so I end up staying here all day. <</dialog>> <<dialog "You">>Then why do you go out so late at night? <</dialog>> <<dialog "Miku">>I try to go out early! I really do... But it's scary. When people walk by, I get scared I'd be assaulted. <</dialog>> <<dialog "You">>That must suck. From now on, whenever you need to go out and you feel scared, let me know. I'll drop everything and come to you. <</dialog>> <<dialog "Miku">>You're sweet... Thank you. <</dialog>> <div class="button-row"> <<regButton "miku2-7" "It's late">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku2-7]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku2/miku2-7.mp4" type="video/mp4"> </video> <<dialog "You">>It's getting late. You should go to bed. <</dialog>> <<dialog "Miku">>W-wait... <</dialog>> <<dialog "You">>What's wrong? <</dialog>> <<dialog "Miku">>I'm scared <i>*cries*</i> <</dialog>> <<dialog "You">>H-hey! Don't cry... You'll be okay. The stalker is gone. <</dialog>> <<dialog "Miku">>I don't even know who that stalker was! Another stranger could come in again. I'm really scared. <i>*crying*</i> <</dialog>> <div class="button-row"> <<regButton "miku2-8" "Offer to sleep here">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku2-8]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku2/miku2-8.mp4" type="video/mp4"> </video> <<dialog "You">>Uhh... Oh you have a couch! <</dialog>> <<dialog "Miku">>Y-yeah. <i>*sniffle*</i> <</dialog>> <<dialog "You">>How about I crash here for a while? <</dialog>> <<dialog "Miku">>Y-you're gonna live here? <</dialog>> <<dialog "You">>Of course not, I'll just sleep on your couch! That should make you feel a little safer. <</dialog>> <<dialog "Miku">>N-no way! It's uncomfortable! <</dialog>> <<dialog "You">><i>*Yawn*</i> I'm already so sleepy. Can you bring me a blanket and a pillow? Oh, there's one here. Good night, Miku. <</dialog>> <<dialog "Miku">>Y-you're really going to sleep over?? <</dialog>> <div class="button-row"> <<regButton "miku-sleep" "Sleep">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.quest = 3>> <<if false>> /* connected passages */ [[miku-sleep]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku-sleep.mp4" type="video/mp4"> </video> You sleep on Miku's couch. <div class="button-row"> <<if $miku.quest >= 4 && $miku.love >= 60>><<regButton "miku4-1" "You feel something on top of you">><</regButton>><</if>> <<regButton "miku-wake" "Wake Up">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[miku-wake]][[miku4-1]] <</if>> <<set $profile to "miku-profile">>
<<backend>> <<set $mugging = 0>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.25), $stats.maxhp)>> <<if $akane.quest == 1>> <<if $hospintro == "hosp-lobby" && $hour == 23 && $minute >= 45>> <<set $sick = $sick + 1>> <<elseif $sick < 5>> <<set $sick = Math.max($sick - 1, 0)>> <</if>><</if>> <<set $akane.checktoday = 0>> <<if $yuki.quest == 5>><<set $yuki.think = $yuki.think + 1>> <<if $yuki.think > 3>><<set $yuki.quest = 6>> <</if>><</if>> <<if $haru.quest == 7>> <<set $haru.quest = 8>> <</if>> <<if $hour >= 7>> <<set $dayIndex = ($dayIndex + 1)>> <<set $day = $days[$dayIndex % $days.length]>> <</if>> <<set $hour = 7>> <<set $minute = 0>> <<set $hidenav to 0>> <<set $haru.chat = 0>> <<set $emi.chat = 0>> <<if $sick >= 5>> <<set $stats.ep = Mathf.min($stats.ep + ($stats.maxep/2), $stats.maxep)>> <<else>> <<set $stats.ep = $stats.maxep>> <</if>> <<set $profile to "player-profile">> <<set $haru.scc = 0>> <<set $yuki.chat = 0>> <<if $day == "Sunday" && $riomeet == 1>> <<set $riomeet = 2>> <</if>> <</backend>>
<<include "sleep-crud">> <div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake.mp4" type="video/mp4"> </video> <<dialog "You">>Good morning, Miku. <</dialog>> <<dialog "Miku">>Good morning~ <</dialog>> <<dialog "You">>I'm off! <</dialog>> <<dialog "Miku">>Take care~ I'll see you later. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +2<</glow>></h1><<if $nirei.quest >= 6 && $day == "Sunday">><h1>Nirei pays you $60 for rent.</h1><</if>> <<regButton "home" "Leave">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $miku.love = $miku.love + 2>> <<set $location to "Miku's Room">> <<set $profile to "miku-profile">> <<if $nirei.quest >= 6 && $day == "Sunday">><<set $player.money = $player.money + 60>><</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-sleepover.mp4" type="video/mp4"> </video> <<dialog "Miku">>Welp. We're here. <</dialog>> <<dialog "You">>I can't leave you alone tonight. I'm sleeping over! <</dialog>> <<dialog "Miku">>J-jeez... <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku-room" "Go inside">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<set $minute = 45>>
<<backend>> <<if $hour >= "7" && $hour <= "15">> <<set $mikustate = "miku-roomday">> <<elseif $hour >= "16" && $hour <= "18">> <<set $mikustate = "miku-visit">> <<elseif $hour >= "19" && $hour <= "22">> <<set $mikustate = "miku-roomnight">> <<else>> <<set $mikustate = "miku-night">> <</if>> <</backend>><<if $miku.quest >= 7 && ($hour < 18 && $day != "Saturday" && $day != "Sunday")>><<include "miku-hired">><<else>><<include "miku-hiki">><</if>> <<set $profile to "miku-profile">> <<set $location to "Miku's Room">> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-coffee1.mp4" type="video/mp4"> </video> <<dialog "Miku">>Before we met, I couldn't stay up in the morning because I couldn't get coffee. I've missed going on coffee runs. <</dialog>> <<dialog "You">>Well, you have me now. <</dialog>> <<dialog "Miku">><i>*Blushes*</i> <i>Thank you...</i> <</dialog>> <<dialog "You">>Hmm? <</dialog>> <<dialog "Miku">>Nothing! <</dialog>> <div class="button-row"> <<regButton "miku-coffee2" "Enter the Cafe">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Business Area">> <<if false>> /* connected passages */ [[miku-coffee2]] <</if>>
<<backend>> <<set $tekwar to "Fight " + ($tekijime.bisarea == 34 ? "Sahai" : "Level " + $tekijime.bisarea + " Tekijime Student")>> <</backend>><<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I can already feel the money leaving my pocket. <</dialog>> <div class="button-row"><<if $hour == 10 && $riomeet == 1>><<regButton "rio-date1" "Rio's here">><</regButton>><</if>><<if $emi.love >= 30 && $emi.quest >= 5 && $daystate == "Evening">><<regButton "emi-call-biz" "Call Emi">><</regButton>><</if>><<if $shiori.quest == 1 && $daystate == "Evening">><<regButton "shiori-poster" "Walk by a clothing store">><</regButton>><</if>><<if $shiori.quest == 3 && ($day == "Saturday" || $day == "Sunday") && $player.rank <= 80>><<regButton "shiori3-1" "You notice a commotion in the alley">><</regButton>><</if>><<if $player.quest == 3 && $tekijime.bisarea <= 34>><<regButton "tekbisarea-crud" $tekwar>><</regButton>><</if>></div> <div class="button-row"> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "res-area" "img/neon-buttons/residential-area.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> <<imgButton "hospital" "img/neon-buttons/hospital.jpg">> </div> </div> <<backend>> <<set $location to "Business Area">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <<set $inbattle = 0>> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-coffee2.mp4" type="video/mp4"> </video> <<dialog "Miku">>Huhu. I forgot how great Spanish Lattes were. <</dialog>> <<dialog "You">>This Mocha is great too! Want a taste? <</dialog>> <<dialog "Miku">>Sure. Thanks. <i>*sips*</i> <</dialog>> <<dialog "You">>Oh? An indirect kiss. <</dialog>> <<dialog "Miku">>Wha- That was sneaky! <</dialog>> <<dialog "You">>Let me have some of yours too. <</dialog>> <<dialog "Miku">>Hmph. <</dialog>> <<dialog "You">>H-heyy <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku-coffee3" "Leave">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<set $hour = 9>> <<if false>> /* connected passages */ [[miku-coffee3]] <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-coffee3.mp4" type="video/mp4"> </video> <<dialog "Miku">>Hooh. I haven't had coffee in a while. I'm shaking a little bit. <</dialog>> <<dialog "You">>You are? Let me see your hand. <</dialog>> <<dialog "Miku">>Am I sweaty? Are they shaking too much? <</dialog>> <<dialog "You">>Hmm. Not really. <</dialog>> <<dialog "Miku">>Okay~ <</dialog>> <<dialog "You">><i>*Woah. That worked.*</i> <</dialog>> <div class="button-row"> <<regButton "miku-room" "Continue">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-lunch1.mp4" type="video/mp4"> </video> <<dialog "Miku">>I can't believe we're going to eat at a diner. <</dialog>> <<dialog "You">>You've been craving it. Of course, we're going. <</dialog>> <<dialog "Miku">>I always get weird looks from waiters. I-it makes me anxious... <</dialog>> <<dialog "You">>Well, from now on, that's the only thing they can do. You're with me, after all. <</dialog>> <<dialog "Miku">>Psh. Ohhhh, how reliable~ <</dialog>> <div class="button-row"> <<regButton "miku-lunch2" "Enter the Diner">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Business Area">> <<if false>> /* connected passages */ [[miku-lunch2]] <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-lunch2.mp4" type="video/mp4"> </video> <<dialog "Miku">>I'm nervous... <</dialog>> <<dialog "You">>What? Why? Is someone staring at you? <</dialog>> <<dialog "Miku">>Huh? Oh. No. I kept bragging about how good the food was here, what if you don't like it? <</dialog>> <<dialog "You">>Well, I like you so it's hard for me to not like anything I do with you. <</dialog>> <<dialog "Miku">>You're being very forward now, huh? <i>*blushes*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku-lunch3" "Bill Out">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Business Area">> <<set $miku.love = $miku.love + 1>> <<set $hour = 13>> <<if false>> /* connected passages */ [[miku-lunch3]] <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-lunch3.mp4" type="video/mp4"> </video> <<dialog "Miku">>Ah~ That was great~ <</dialog>> <<dialog "You">>I need a nap, I'm so full. <</dialog>> <<dialog "Miku">>Yeah, I forgot how big the portions were. <</dialog>> <<dialog "You">>You seem to be doing fine. You didn't look anxious at all... I'm glad. <</dialog>> <<dialog "Miku">>Hmm. Well... I guess I feel safe with you. <i>*blushes*</i> <</dialog>> <<dialog "You">><i>J-jeez...</i> <</dialog>> <div class="button-row"> <<regButton "miku-room" "Continue">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Business Area">>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-dinner1.mp4" type="video/mp4"> </video> <<dialog "Miku">>Oh, hey. You like eggs? <</dialog>> <<dialog "You">>Ohhh. You can cook? <</dialog>> <<dialog "Miku">>I know I always eat convenience store food... but that's just because I struggle with groceries! <</dialog>> <<dialog "You">>Looks like you went and got groceries today, though. I'm proud of you! <</dialog>> <<dialog "Miku">>God bless self checkout~ <</dialog>> <div class="button-row"> <<regButton "miku-dinner2" "She makes your plate">><</regButton>> </div> </div> <<set $profile to "miku-profile">>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-dinner2.mp4" type="video/mp4"> </video> <<dialog "Miku">>Here you go! <</dialog>> <<dialog "You">>Wooow. Can I have some ketchup? <</dialog>> <<dialog "Miku">>Heeere~ Let me add it~ <</dialog>> <<dialog "You">><i>*tsk tsk*</i> The chef is flirting with me. <</dialog>> <<dialog "Miku">>I was told love was the most important ingredient. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku-dinner3" "You finish eating">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<set $hour = 21>> <<if false>> /* connected passages */ [[miku-dinner3]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-dinner3.mp4" type="video/mp4"> </video> <<dialog "Miku">>How was it? <</dialog>> <<dialog "You">>Delicious! You'd make a great housewife! <</dialog>> <<dialog "Miku">>H-how can you say that with a straight face!? <</dialog>> <<dialog "You">>What? You would! <</dialog>> <<dialog "Miku">>Hmph. <</dialog>> <div class="button-row"> <<regButton "miku-room" "Continue">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-1.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>mmmm</i> <</dialog>> <<dialog "You">>What's that? <</dialog>> <<dialog "Miku">><i>ahh~</i> <</dialog>> <<dialog "You">>Holy shit. <</dialog>> <div class="button-row"> <<regButton "miku3-2" "She pulls down her pajamas">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-2]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-2.mp4" type="video/mp4"> </video> <<dialog "You">>She's so sexy. <</dialog>> <div class="button-row"> <<regButton "miku3-3" "She starts rubbing her pussy">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-3]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-3.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>ahh~</i> <</dialog>> <<dialog "You">>They look so plump. <</dialog>> <div class="button-row"> <<regButton "miku3-4" "She takes out a paint brush">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-4]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-4.mp4" type="video/mp4"> </video> <<dialog "You">>I-is that... <</dialog>> <div class="button-row"> <<regButton "miku3-5" "She brushes her pussy">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-5]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-5.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>hnnggg</i> <</dialog>> <<dialog "You">>I'm getting hard. <</dialog>> <div class="button-row"> <<regButton "miku3-6" "She grabs her boob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-6]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-6.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>ahh~</i> <</dialog>> <<dialog "You">>I finally get to see those huge tits. <</dialog>> <div class="button-row"> <<regButton "miku3-7" "She takes her panties off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-7]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-7.mp4" type="video/mp4"> </video> <<dialog "You">>There it is. <</dialog>> <div class="button-row"> <<regButton "miku3-8" "She sticks the brush in her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-8]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-8.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>hnnnngggmm~</i> <</dialog>> <<dialog "You">>She's too horny to keep quiet <</dialog>> <div class="button-row"> <<regButton "miku3-9" "Stare at her tits">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-9]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-9.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>ahh~</i> <</dialog>> <<dialog "You">>Her tits are too incredible. <</dialog>> <div class="button-row"> <<regButton "miku3-10" "She cums">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-10]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-10.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>aaahhh~</i> <</dialog>> <<dialog "You">>Oh. She's cumming. <</dialog>> <div class="button-row"> <<regButton "miku3-11" "She catches her breath">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-11]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-11.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>hahh... hahh... mmm... $player.name...</i> <</dialog>> <<dialog "You">>Did I hear that right? <</dialog>> <div class="button-row"> <<regButton "miku3-12" "She sits up">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-12]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-12.mp4" type="video/mp4"> </video> <<dialog "Miku">><i>*sigh*</i> <</dialog>> <<dialog "You">>She's done. <</dialog>> <div class="button-row"> <<regButton "miku3-13" "Close the door">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku3-13]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku3/miku3-13.mp4" type="video/mp4"> </video> <<dialog "You">>Slooowly~ <</dialog>> <hr> <i>*Thud*</i> <hr> <<dialog "Miku">>H-huh? <</dialog>> <<dialog "You">>Damn. She definitely heard that. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku-sleep" "Whatever">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>> <<set $miku.love = $miku.love + 1>> <<if $miku.quest == 3>><<set $miku.quest = 4>><</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Rio" "student">>Heyyy, new student! You totally survived. That's like... so cool. <</dialog>> <<dialog "You">>Yep. Thanks to you I got to prepare properly. How can I thank you? <</dialog>> <<dialog "Rio" "student">>Already makin' a move on me, eh? That's like so hot. <</dialog>> <<dialog "You">>I just wanted to show appreciation. <</dialog>> <<dialog "Rio" "student">>Why don't you like take me out on saturday, then? <</dialog>> <h1>NOTE: You need around $500 to completely finish the date. You can decline and ask her out later or ask her out now then make enough money before saturday. If you stand her up, your relationship with her decreases.</h1> <div class="button-row"> <<regButton "rio-plan" "Deal">><</regButton>> <<regButton "rio-class" "I'll think about it">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-plan]] <</if>> <<set $profile to "rio-profile">> <<set $rio.quest = 2>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Rio" "student">>Great! How does like 10AM sound? <</dialog>> <<dialog "You">>Sure! <</dialog>> <<dialog "Rio" "student">>Awesome! I'll, like, meet you in the Business Area. See you then! <</dialog>> <<dialog "You">>See you. <</dialog>> <div class="button-row"> <<regButton "rio-class" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "rio-profile">> <<set $riomeet = 1>>
<<backend>> <<if $riomeet == 2>> <<goto "rio-stoodup">> <<else>> <<goto "rio-class">> <</if>> [[rio-stoodup]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Rio" "student">>You stood me up, you fucking asshole! <</dialog>> <<dialog "You">>Sorry. I forgot. <</dialog>> <<dialog "Rio" "student">>Fuck you! <</dialog>> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Relationship -5<</glow>></h1> <div class="button-row"> <<regButton "rio-class" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "rio-profile">> <<set $rio.love = Math.max($rio.love - 5, 0)>> <<set $riomeet = 0>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date1.mp4" type="video/mp4"> </video> <<dialog "Rio">>You're here! <</dialog>> <<dialog "You">>I'm here. <</dialog>> <div class="button-row"> <<regButton "rio-date2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-date2]] <</if>> <<set $profile to "rio-profile">> <<set $riomeet = 0>> <<set $riospending = 0>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date2.mp4" type="video/mp4"> </video> <<dialog "Rio">>What should we do? <</dialog>> <<dialog "You">>Hmm... <</dialog>> <div class="button-row">/*Straight to sex*/ <<if $player.money >= 500 && $rio.quest >= 3>> <<regButton "rio-straight" "Sex 💵500">><</regButton>> <</if>> <<if $player.money > 25>> <<regButton "rio-date3" "Baseball 💵25">><</regButton>> <<regButton "rio-date4" "Arcade 💵25">><</regButton>> <<regButton "rio-date5" "Drinks 💵25">><</regButton>> <<if $riospending >= 75>><<regButton "rio-date6" "Eat 💵25">><</regButton>><</if>> <</if>> <<regButton "rio-broke" "I can't afford anything">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-date3]][[rio-date4]][[rio-date5]][[rio-broke]][[rio-date6]][[rio-straight]] <</if>> <<set $profile to "rio-profile">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date3.mp4" type="video/mp4"> </video> <<dialog "You">>You're not very good at this. <</dialog>> <<dialog "Rio">>I'm totally good at other things~ <</dialog>> <div class="button-row"> <<regButton "rio-date2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-date2]] <</if>> <<set $profile to "rio-profile">> <<set $riospending = $riospending + 25>> <<set $player.money = $player.money - 25>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date4.mp4" type="video/mp4"> </video> <<dialog "Rio">>I'm like a great driver! Should I totally get a license? <</dialog>> <<dialog "You">>Haha! Probably not. <</dialog>> <div class="button-row"> <<regButton "rio-date2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-date2]] <</if>> <<set $profile to "rio-profile">> <<set $riospending = $riospending + 25>> <<set $player.money = $player.money - 25>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date5.mp4" type="video/mp4"> </video> <<dialog "Rio">>Are you like trying to get me drunk? How sneaky~ <</dialog>> <<dialog "You">>You can probably outdrink me. <</dialog>> <div class="button-row"> <<regButton "rio-date2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-date2]] <</if>> <<set $profile to "rio-profile">> <<set $riospending = $riospending + 25>> <<set $player.money = $player.money - 25>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Rio" "student">>Too bad~ I had something totally fun planned~ <</dialog>> <div class="button-row"> <<regButton "business-area" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date6.mp4" type="video/mp4"> </video> <<dialog "You">>Where do you want to eat? <</dialog>> <<dialog "Rio">>Let's get like take out at your place! <</dialog>> <<dialog "You">>At my place? <</dialog>> <<dialog "Rio">>You don't want to? <</dialog>> <<dialog "You">>We can order take out at my place. <</dialog>> <div class="button-row"> <<regButton "rio-eat" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-eat]] <</if>> <<set $profile to "rio-profile">> <<set $riospending = $riospending + 25>> <<set $player.money = $player.money - 25>> <<set $hour = 13>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-eat.mp4" type="video/mp4"> </video> <<dialog "Rio">>This is like totally so good! <</dialog>> <div class="button-row"> <<regButton "rio-offer" "She stops eating">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio-offer]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-offer.mp4" type="video/mp4"> </video> <<dialog "Rio">>Look. We had a pretty fun date. But like... I have something else in mind... <</dialog>> <<dialog "You">>Go on. <</dialog>> <<dialog "Rio">>I'm a sex worker. It's like, totally shocking right? <</dialog>> <<dialog "You">>It actually kind of is, but no judgement. <</dialog>> <<dialog "Rio">>I generally charge $500, but since you've spent a hundred on this date already, I can lower it down to $400. What do you say? <</dialog>> <div class="button-row"> <<if $player.money >= 400>><<regButton "rio2-pay" "Let's do this">><</regButton>><</if>> <<regButton "rio-broke" "No thanks">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-pay]] <</if>> <<set $profile to "rio-profile">> <<set $hour = 15>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-grope.mp4" type="video/mp4"> </video> <<dialog "You">>I noticed your body at school, you know. <</dialog>> <<dialog "Rio">>Mhmm~ Totally~ <</dialog>> <div class="button-row"> <<regButton "rio2-kiss" "Kiss her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-kiss]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-kiss.mp4" type="video/mp4"> </video> <<dialog "You">>You taste great. <</dialog>> <<dialog "Rio">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "rio2-finger" "Rub her pussy">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-finger]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Rio">>Touch me~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-finger.mp4" type="video/mp4"> </video> <<dialog "You">>You're pretty plump. <</dialog>> <div class="button-row"> <<regButton "rio2-finger2" "Take her panties off">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-finger2]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>You won't need this anymore. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-panty.mp4" type="video/mp4"> </video> <<dialog "Rio">>Mhmm~ <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/rio/rio2/rio2-finger2.mp4" type="video/mp4"> </video> <<dialog "You">>You're so wet. <</dialog>> <<dialog "Rio">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "rio2-cuni" "Cunnilingus">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-cuni]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Rio">>Let me taste~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-bj1.mp4" type="video/mp4"> </video> <<dialog "You">>Yeah, suck it, bitch. <</dialog>> <<dialog "Rio">><i>*Sluuurp~*</i> <</dialog>> <div class="button-row"> <<regButton "rio2-bj2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-bj2]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-cunni.mp4" type="video/mp4"> </video> <<dialog "Rio">>Mhmm~ <</dialog>> <<dialog "You">>You taste good. <</dialog>> <<dialog "Rio">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "rio2-bj1" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-bj1]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-bj2.mp4" type="video/mp4"> </video> <<dialog "You">>Yeah, keep going. <</dialog>> <<dialog "Rio">><i>*Slurp~* *Slurp~* *Slurp~*</i> <</dialog>> <div class="button-row"> <<regButton "rio2-dog1" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-dog1]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-dog1.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahh~ You're like so big~ <</dialog>> <<dialog "You">>Damn. You feel so good <</dialog>> <div class="button-row"> <<regButton "rio2-dog2" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-dog2]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-dog2.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahh~ Ahh~ Ahh~ That's it~ Right there~ <</dialog>> <<dialog "You">>I'd hit this everyday if you weren't so goddamned overpriced. <</dialog>> <div class="button-row"> <<regButton "rio2-dog3" "Keep going">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-dog3]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-dog3.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahh~ Ahh~ Faster~ <</dialog>> <<dialog "You">>You're so fucking wet, you fucking whore! <</dialog>> <div class="button-row"> <<regButton "rio2-cow1" "Cowgirl">><</regButton>> <<regButton "rio2-mis1" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-mis1]][[rio2-cow1]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-mis1.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahh~ You're really attacking it~ <</dialog>> <<dialog "You">>You're tight for a slut. <</dialog>> <<dialog "Rio">>Ahh~This pussy is premium, you know~ <</dialog>> <div class="button-row"> <<regButton "rio2-mis2" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-mis2]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-cow1.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahh~ Ahh~ <</dialog>> <<dialog "You">>That's it, ride me~ <</dialog>> <div class="button-row"> <<regButton "rio2-cow2" "She speeds up">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-cow2]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-cow2.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahhn~ Does it like... feel good? <</dialog>> <<dialog "You">>Keep working hard, slut. <</dialog>> <div class="button-row"> <<regButton "rio2-cow3" "She acts cute">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-cow3]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-cow3.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahhn~ You should totally take a picture~ I'll give you a discount~ <</dialog>> <<dialog "You">>This is already burned to my brain. <</dialog>> <div class="button-row"> <<regButton "rio2-cow4" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-cow4]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-cow4.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahh~ Are you close? <</dialog>> <<dialog "You">>Not even a little bit! Try harder, bitch! <</dialog>> <<dialog "Rio">>Ohhh~ D-don't call me thaaat~ <</dialog>> <div class="button-row"> <<regButton "rio2-cow1" "Repeat">><</regButton>> <<regButton "rio2-mis1" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-mis1]][[rio2-cow1]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-mis2.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahhhh~ Harder~ Fuck this slutty whore~ <</dialog>> <<dialog "You">>Don't provoke me, slut <</dialog>> <div class="button-row"> <<regButton "rio2-mis3" "Closer">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-mis3]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-mis3.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahhhh~ Hmmm? What are you staring at? Don't fall in love with me~ <</dialog>> <<dialog "You">>Only thing loveable about you is this pussy and those tits. <</dialog>> <<dialog "Rio">>Hnnnn~ Harsh~ <</dialog>> <div class="button-row"> <<regButton "rio2-mis1" "Repeat">><</regButton>> <<regButton "rio2-cow1" "Cowgirl">><</regButton>> <<regButton "rio2-mis4" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-mis4]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-mis4.mp4" type="video/mp4"> </video> <<dialog "Rio">>Ahhhhhh~ I'm clooose~ <</dialog>> <<dialog "You">>TAKE THIS WHORE! <</dialog>> <<dialog "Rio">>Fill me uuuup~ <</dialog>> <div class="button-row"> <<regButton "rio2-creampie" "Creampie">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-creampie]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-creampie.mp4" type="video/mp4"> </video> <<dialog "Rio">>Take responsibility, okay? <</dialog>> <<dialog "You">>Hah! Fat chance. <</dialog>> <<dialog "Rio">>Mean~ <</dialog>> <div class="button-row"> <<regButton "rio2-end" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[rio2-end]] <</if>> <<set $profile to "rio-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio2-end.mp4" type="video/mp4"> </video> <<dialog "Rio">>Let me like rest for a bit, then I'll leave~ <</dialog>> <<dialog "You">>You're lucky your body is nice to look at. <</dialog>> <<dialog "Rio">>You're like kind of an ass, huh? I like it~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>><br></h1> <div class="button-row"> <<regButton "bedroom" "She leaves">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "rio-profile">> <<set $rio.love = $rio.love + 5>> <<if $rio.quest == 2>><<set $rio.quest = 3>><</if>> <<set $hour = $hour + 3>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/rio/rio2/rio-date6.mp4" type="video/mp4"> </video> <<dialog "You">>Let's go to my place. <</dialog>> <<dialog "Rio">>Totally~ <</dialog>> <div class="button-row"> <<regButton "rio2-grope" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "rio-profile">> <<set $player.money = $player.money - 500>> <<set $hour = 13>>
<<set $player.money = $player.money - 400>> <<goto "rio2-grope">>
<<backend>> <<set $ename = "Ranker No."+($player.rank - 1)>> <<set $eid to "ranker"+((($player.rank + 2) % 6) + 1)>> <<set $espeech = either("You wanna challenge me?", "You want my spot, huh?", "Go home before I kill you.", "Don't get cocky, new kid.")>> <<if $player.rank == 16>> <<set $eid to "izaki-01">> <<set $ename = "Izaki Shun">> <<set $espeech = "We meet again. I've grown stronger since last time. I even climbed the ranks. It's payback time, bitch.">> <<elseif $player.rank == 5>> <<set $eid to "ranker7">> <<set $ename = "Akagi Toyo">> <<set $espeech = "Yo~ I am the first member of the Elite Four, Akagi. Good job making it to Rank 5. Ready to take me on?">> <<elseif $player.rank == 4>> <<set $eid to "ranker8">> <<set $ename = "Kishi Hono">> <<set $espeech = "HAHAHA! That Akagi lost, huh? I told him he should gain some muscle. Fight me next!">> <<elseif $player.rank == 3>> <<set $eid to "ranker9">> <<set $ename = "Kuroki Seiya">> <<set $espeech = "Oya~ You beat the muscle-head too. Sadly, I cannot allow you to challenge the king. He's extremely busy right now.">> <<elseif $player.rank < 3>> <<set $eid to "ranker10">> <<set $ename = "Sai Kyogaku">> <<set $espeech = "...">> <</if>> <</backend>> <<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<enemy $eid $ename "rooftop" "left">><<print $espeech>><</enemy>> <div class="button-row"> <<regButton "rank-battlecrud" "Fight">><</regButton>> <<regButton "rooftop" "Nevermind">><</regButton>> </div> </div> <<if false>> [[rank-battlecrud]] /* connected passages */ <</if>> <<set $rankCh = Math.max($player.rank - 1, 1)>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "rank">> <<set $hidenav to 1>> <<set $enemy = { level: Math.round((101 - $rankCh) / 2), hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 5 + (($enemy.level - 1) * 5)>> <<if $player.rank <= 5>><<set $statpoints = $statpoints + (25 * (6 - $player.rank))>><</if>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 5) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $pspeech = "Bring it on.">> <<set $espeech = "I'll fuck you up.">> <<if $player.rank == 16>> <<set $espeech = "You'll pay for what you did to Emi-chan.">> <<elseif $player.rank == 5>> <<set $espeech = "You think you're ready to take us on, huh?">> <<elseif $player.rank == 4>> <<set $espeech = "HAHAHA! You're lacking in muscles too! This might be boring">> <<elseif $player.rank == 3>> <<set $espeech = "Oya~ Try to last at least a few minutes.">> <<elseif $player.rank < 3>> <<set $espeech = "...">> <</if>> <<goto "battle-crud2">> [[rank-battle]] <</backend>>
<<backend>> <<if $player.rank < 3>> <<set $espeech = either("...", "Hmph", "!!!", "<i>*phew*</i>")>> <</if>> <</backend>> <<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "rooftop">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> <<set $dmgres = "">> <<set $location to "Park">> <<set $profile to "player-profile">> <<set $hidenav to 1>> [[rank-win]][[rank-lose]] <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <<if $player.rank < 3>> <<set $commentary = "Your attacks connect at the same time. You both fall.">> <</if>> <</backend>> <<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<if $player.rank < 3>> <<dialog "You">>F-fuck... <</dialog>> <<enemy $eid "Sai Kyogaku" "rooftop" "left">>U-ugh...<</enemy>><<if $player.rank == 2>> <<enemy "ranker7" "Akagi Toyo" "rooftop" "left">>K-kyogaku-san... lost?<</enemy>> <<enemy "ranker9" "Kuroki Seiya" "rooftop" "left">>F-fool! It's a draw!<</enemy>> <<enemy "ranker8" "Kishi Hono" "rooftop" "left">>HAHAHA! This $player.name person is pretty interesting. I've never seen Kyogaku not dominate in a fight before, much less not win. What happens now? <</enemy>> <<enemy "ranker9" "Kuroki Seiya" "rooftop" "left">>As vexing as it is, I've never seen Kyogaku enjoy a fight as much as he did just now with Sawada. <</enemy>> <<enemy "ranker8" "Kishi Hono" "rooftop" "left">>Yeah. It's as if he has finally found his equal. <</enemy>> <<enemy "ranker7" "Akagi Toyo" "rooftop" "left">>They can share the Number 1 spot and continue battling it out until there's a clear winner. <</enemy>> <</if>> <<else>> <<dialog "You">>Who's next!? <</dialog>> <</if>><<glow>>You are now rank <<print $rankCh>>.<</glow>> <div class="button-row"> <<regButton "rooftop" "Continue">><</regButton>> </div> </div> <<backend>> <<set $player.rank = $rankCh>> <<script>> incrementTime(1, 0); <</script>> <</backend>>
<<backend>><<set $rewmoney = $enemy.level * (random(0,2)+random(2,4))>> <<set $player.money = Math.max($player.money - $rewmoney, 0)>> <<set $espeech = "Come back when you're stronger.">> <<if $player.rank < 3>> <<set $espeech = "<i>*yawn*</i>">> <</if>> <</backend>> <<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> You get knocked out. You lose $<<print $rewmoney>>. <<enemy $eid $ename "rooftop" "left">>$espeech <</enemy>> <div class="button-row"> <<regButton "rank-wake" "Wake up">><</regButton>> </div> </div> <<backend>> [[rank-wake]] <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> You wake up in the roof alone. <hr> <<dialog "You">>Fuck... Did I really lose? <</dialog>> <<regButton "rooftop" "Roof">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $hidenav to 0>> <<script>> incrementTime(1, 0); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<enemy "idiota" "Random Bitch" "classroom" "left">>Hey~ Emi-chan~ You were so arrogant when you were dating Izaki-san. Now he's dumped you.<</enemy>> <<dialog "Emi" "student">>... <</dialog>> <<enemy "idiotb" "Random Dumbass" "classroom" "left">>Kekeke. We never touched you because of Izaki-san. That guy's scary. But now that he's dumped you, maybe we can have a taste as well kekeke~ Right boys?<</enemy>> <hr> The Random Dumbass' lackeys jeer at Emi. <hr> <<dialog "Emi" "student">>... Do you think you can get away with touching his ex? <</dialog>> <<enemy "idiota" "Random Bitch" "classroom" "left">>This bitch is still as impertinent as ever. Should I just smack you?<</enemy>> <<enemy "idiotb" "Random Dumbass" "classroom" "left">>I'm a ranker. He can't touch me without good reason since his rank is higher than mine.<</enemy>> <div class="button-row"> <<regButton "emi4-2" "Beat his ass">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-2]] <</if>> <<set $hidenav to 1>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Good to know. That means I can do this. <</dialog>> <<enemy "idiotb" "Random Dumbass" "classroom" "left">>Hah?<</enemy>> <img src="img/misc/idiotb-beat.jpg" style="max-width: 80%;"> <<enemy "idiota" "Random Bitch" "classroom" "left">>W-wha!? E-everyone? Who...<</enemy>> <<dialog "You">>Hey, bitch. I don't mind hitting girls, you know? But, I am a gentleman so I will show you mercy, but keep your hands off Emi-chan~ Understand? <</dialog>> <<enemy "idiota" "Random Bitch" "classroom" "left">>...<</enemy>> <img src="img/misc/idiota-scared.jpg" style="max-width: 60%;"> Source: Mercenary Enrollment <<dialog "You">>Eh? No answer? Are you trying to make me mad? <</dialog>> <<enemy "idiota" "Random Bitch" "classroom" "left">>Y-yes! I mean no! W-wait! I-I promise to never bother Emi.<</enemy>> <hr> The random bitch drags the random dumbass out of the classroom. You purposely did not knock the lackeys out too hard so they crawled out. <hr> <<dialog "Emi" "student">><i>*hesitates*</i> <</dialog>> <<dialog "You">><i>Hmm? Did she want to say something? Nah, she hates my guts.</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Emi's love +5<</glow>></h1> <div class="button-row"> <<regButton "emi4-3" "The class ends">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-3]] <</if>> <<set $hidenav to 1>> <<set $emi.love = ($emi.love + 5)>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-3.mp4" type="video/mp4"> </video> <<dialog "Emi">>... <</dialog>> <<dialog "You">><i>She's not going home?</i> <</dialog>> <div class="button-row"> <<regButton "emi4-4" "Approach her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-4]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">> <<set $hour = 17>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-4.mp4" type="video/mp4"> </video> <<dialog "You">>Hey. Are you okay? <</dialog>> <<dialog "Emi">>... <</dialog>> <<dialog "You">>Shouldn't you stop being mad at me now? <</dialog>> <<dialog "Emi">>Y-you... You ruined my life! After that, you even raped me, and now you're saying I shouldn't be mad!? <</dialog>> <<dialog "You">>And why again did I do that? <</dialog>> <<dialog "Emi">>I... <</dialog>> <<dialog "You">>You tried to get me beaten up for no reason. I could have died if I wasn't that strong. I just defended myself. <</dialog>> <<dialog "Emi">>That doesn't explain why you raped me, though. <</dialog>> <div class="button-row"> <<regButton "emi4-5" "Gaslight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-5]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-5.mp4" type="video/mp4"> </video> <<dialog "You">>Oh, come on. You came on to me. <</dialog>> <<dialog "Emi">>H-how!? I even told you it was rape back then! <</dialog>> <<dialog "You">>Didn't Izaki try to kill me because you started making moves on me? <</dialog>> <<dialog "Emi">>W-well... <</dialog>> <<dialog "You">>I was so mad at you that time. You seduced me then when I was starting to take interest, you reveal you have a boyfriend then ask him to get me killed. <</dialog>> <<dialog "Emi">>I... I'm sorry... <</dialog>> <div class="button-row"> <<regButton "emi4-6" "Gaslight even more">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-6]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-6.mp4" type="video/mp4"> </video> <<dialog "You">>Look. I was wrong too for forcing you then, but can you blame me for thinking you liked me? <</dialog>> <<dialog "Emi">>I... guess not... <</dialog>> <<dialog "You">>I thought you only needed Izaki to survive. But as you saw earlier, I can protect you even better than he can. <</dialog>> <<dialog "Emi">>Are you asking to be my boyfriend? <</dialog>> <<dialog "You">>... No. You've hurt me too much. I don't know if I've completely forgiven you. <</dialog>> <<dialog "Emi">>I... I'm sorry... <</dialog>> <<dialog "You">>...but I will keep protecting you. Just like I promised. <</dialog>> <<dialog "Emi">>What can I do for you to completely forgive me? <</dialog>> <<dialog "You">>You don't have to do anything. <</dialog>> <div class="button-row"> <<regButton "emi4-7" "Kiss her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-7]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-7.mp4" type="video/mp4"> </video> <<dialog "Emi">>Mm~ <</dialog>> <<dialog "You">>Your lips are so sweet. <</dialog>> <<if $emi.quest < 5>><<dialog "Emi">>W-will this help you forgive me? <</dialog>> <<dialog "You">>It does make me like you more. <</dialog>><</if>> <div class="button-row"> <<regButton "emi4-8" "Intensify">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-8]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">> <<set $profile to "emi-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-8.mp4" type="video/mp4"> </video> <<dialog "Emi">>Mmm~ <</dialog>> <<dialog "You">>You're soft in all the right places. <</dialog>> <div class="button-row"> <<regButton "emi4-9" "Suck on her boobs">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-9]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-9.mp4" type="video/mp4"> </video> <<dialog "Emi">>Ahh~ <</dialog>> <<dialog "You">>It's still unbelievable how huge your tits are. <</dialog>> <div class="button-row"> <<regButton "emi4-10" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-10]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-10.mp4" type="video/mp4"> </video> <<dialog "Emi">>Doesh it feew good? <</dialog>> <<dialog "You">>Your mouth is wet and so warm. It feels so good, Emi-chan~ <</dialog>> <div class="button-row"> <<regButton "emi4-11" "Intensify">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-11]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-11.mp4" type="video/mp4"> </video> <<dialog "Emi">>You're sho big~ <</dialog>> <<dialog "You">>We should do it now, this is getting dangerous. <</dialog>> <div class="button-row"> <<regButton "emi4-doggy0" "Penetrate">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-doggy0]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-doggy0.mp4" type="video/mp4"> </video> <<dialog "Emi">>Ahh~ It's inside~ <</dialog>> <<dialog "You">>You're so tight, Emi~ <</dialog>> <div class="button-row"> <<regButton "emi4-doggy1" "Keep going">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-doggy1]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi4/emi4-doggy1'+either("a","b")+'.mp4" type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Ah~ You're so wet~ <</dialog>> <div class="button-row"> <<regButton "emi4-doggy1" "Keep going">><</regButton>> <<regButton "emi4-doggy2" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-doggy2]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-doggy2.mp4" type="video/mp4">type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ M-my~ Voice~ Is leaking out~ <</dialog>> <<dialog "You">>Nobody will hear. <</dialog>> <div class="button-row"> <<regButton "emi4-doggy3" "Raise her leg">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-doggy3]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi4/emi4-doggy3'+either("a","b")+'.mp4" type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ It's so much deeper~ <</dialog>> <<dialog "You">>Ah~ You're so wet~ <</dialog>> <div class="button-row"> <<regButton "emi4-doggy3" "Keep going">><</regButton>> <<regButton "emi4-doggy1" "Repeat">><</regButton>> <<regButton "emi4-cow1" "Cowgirl">><</regButton>> <<regButton "emi4-mis1" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-cow1]][[emi4-mis1]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Sit on me. <</dialog>> <<vid "emi/emi4/emi4-cow" 1 3>> <<dialog "Emi">>Ahh~ A-am I heavy? <</dialog>> <<dialog "You">>You're light as a feather. <</dialog>> <div class="button-row"> <<regButton "emi4-doggy1" "Doggy">><</regButton>> <<regButton "emi4-mis1" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi4/emi4-mis1'+either("a","b")+'.mp4" type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ Does it feel good? <</dialog>> <<dialog "You">>You're so tight, Emi. <</dialog>> <div class="button-row"> <<regButton "emi4-mis1" "Keep Going">><</regButton>> <<regButton "emi4-mis2" "Watch her boobs bounce">><</regButton>> <<regButton "emi4-cow1" "Cowgirl">><</regButton>> <<regButton "emi4-doggy1" "Doggy">><</regButton>> <<regButton "emi4-hard1" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-mis2]][[emi4-hard1]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Lie down. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi4/emi4-mis2'+either("a","b")+'.mp4" type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ Does it feel good? <</dialog>> <<dialog "You">>You're so tight, Emi. <</dialog>> <div class="button-row"> <<regButton "emi4-mis2" "Keep Watching">><</regButton>> <<regButton "emi4-mis1" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-mis2]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <<vid "emi/emi4/emi4-hard" 1 2>> <<dialog "Emi">>Ahhhh~ Like that~ Keep fucking me like that~ You're making me go crazyyyyy~ <</dialog>> <<dialog "You">>I'm close, Emi-chan~ <</dialog>> <div class="button-row"> <<regButton "emi4-hard2" "Intensify">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-hard2]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-hard3.mp4" type="video/mp4">type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ I'm cummiiiing~ <</dialog>> <<dialog "You">>I'm about to cum too. <</dialog>> <div class="button-row"> <<regButton "emi4-cum" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-cum]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Argh! I'm gonna cum on those beautiful tits. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-cum.mp4" type="video/mp4">type="video/mp4">'>> </video> <<dialog "Emi">>Ahh~ S-so... $player.name... Do you now... <</dialog>> <div class="button-row"> <<regButton "emi4-end" "Interrupt her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi4-end]] <</if>> <<backend>> <</backend>> <<set $location to "Classroom">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>I hear people coming! You should get dressed! I'm going out first so it doesn't look suspicious. <</dialog>> <<dialog "Emi">>Wh-what? <</dialog>> <<dialog "You">>I'll contact you, okay? <</dialog>> <hr> You put your clothes on and rush out of the classroom. <hr> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi4/emi4-end.mp4" type="video/mp4">type="video/mp4">'>> </video> <<dialog "Emi">><i>I don't hear anything though... Jerk...</i> <</dialog>> <div class="button-row"> <<regButton "school" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <</backend>> <<set $hour = 18>> <<if $emi.quest == 4>><<set $emi.quest = 5>><</if>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Emi">>Hello? <</dialog>> <<dialog "You">>Hello~ <</dialog>> <<dialog "Emi">>$player.name? Do you need anything? <</dialog>> <<dialog "You">>Didn't I tell you I'd contact you? <</dialog>> <<dialog "Emi">>O-oh. I didn't think you'd actually call... <</dialog>> <<dialog "You">>I always keep my promises. <</dialog>> <hr> You talk for a little bit... <h1><<glow "0.4px #e60036" "8px #f00" "18">>Emi's love +1<</glow>></h1><<backend>> <<script>> incrementTime(0, 15); <</script>> <</backend>><div class="button-row"> <<regButton "bedroom" "Hang up">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "emi-profile">> <<set $emi.love = ($emi.love + 1)>> <<set $emi.chat = $emi.chat + 1>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>For how long should I waste time? <</dialog>> <div class="button-row"> <<regButton "waste-time-5m" "5 minutes">><</regButton>> <<regButton "waste-time-10m" "10 minutes">><</regButton>> <<regButton "waste-time-15m" "15 minutes">><</regButton>> <<regButton "waste-time-30m" "30 minutes">><</regButton>> <<regButton "waste-time-1h" "An hour">><</regButton>> <<regButton "bedroom" "Nevermind">><</regButton>> </div> </div> <<backend>>[[waste-time-5m]][[waste-time-10m]][[waste-time-15m]][[waste-time-30m]][[waste-time-1h]]<</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Emi">>Hello? <</dialog>> <<dialog "You">>Hello~ <</dialog>> <<dialog "Emi">>What's up? <</dialog>> <<dialog "You">>I'm at the karaoke. Wanna join? <</dialog>><<if random(0,100) > 40>> <<dialog "Emi">>Sure! <</dialog>> <<dialog "You">>See you then! <</dialog>> <<regButton "emi-k1-1" "Continue">><</regButton>><<else>> <<dialog "Emi">>I'm sorry, I can't right now. <</dialog>> <<dialog "You">>Aww. <</dialog>> <<regButton "business-area" "Hang up">><</regButton>> <</if>> </div> <<if false>> /* connected passages */ [[emi-k1-1]] <</if>> <<set $profile to "emi-profile">> <<set $emi.chat = $emi.chat + 1>>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-k1/emi-k1-1.mp4" type="video/mp4"> </video> <<dialog "Emi">>I'm here! <</dialog>> <<dialog "You">>Emi! Hi! <</dialog>> <div class="button-row"> <<regButton "emi-k1-2" "She sits down">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-2]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi1/emi1-1.mp4" type="video/mp4"> </video> <<dialog "Emi" "student">>Oh! Hi, $player.name. <</dialog>> <<dialog "You">>Ohh? Am I not nerd anymore? <</dialog>> <<dialog "Emi" "student">>G-geez... <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Emi's love +1<</glow>></h1> <div class="button-row"> <<regButton "emi-class" "You talk for a while">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <<set $emi.love = ($emi.love + 1)>> <<set $emi.chat = $emi.chat + 1>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg karaoke"></div> <div class="content-panel"> <hr> You sing for a while then eventually stop... <hr> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-k1/emi-k1-2.mp4" type="video/mp4"> </video> <<dialog "Emi">>I'm a little tired now. <</dialog>> <<dialog "You">>You wanna leave? <</dialog>> <<dialog "Emi">>N-no... We can hang out. <</dialog>> <<dialog "You">>Come here. <</dialog>> <div class="button-row"> <<regButton "emi-k1-3" "She sits on you">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-3]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/emi/emi-k1/emi-k1-3.mp4" type="video/mp4"> </video> <<dialog "Emi">>Haha. This is a little awkward... <</dialog>> <<dialog "You">>Hm? It doesn't have to be. Just enjoy it. <</dialog>> <<dialog "Emi">>It's a bit embarrassing. <</dialog>> <<dialog "You">>Why? You're beautiful. <</dialog>> <div class="button-row"> <<regButton "emi-k1-gropea" "You grab her boobs">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-gropea]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-gropea'+random(1,3)+'.mp4">'>> </video> <<dialog "Emi">>You're groping me again~ <</dialog>> <<dialog "You">>What? They're right in front of me. Only an idiot would not literally grab the opportunity. <</dialog>> <<dialog "Emi">>Are my boobs that great? <</dialog>> <<dialog "You">>They're amazing. <</dialog>> <<dialog "Emi">>I kinda hate them. They're the reason why I got bullied. <</dialog>> <<dialog "You">>No, you got bullied because they're bullies. Even if your boobs weren't as amazing as they are now, they'd still look for a reason to bully you. <</dialog>> <<dialog "Emi">>So, I'm just a victim of circumstance? That's a little sad. <</dialog>> <<dialog "You">>You got bullied. It's going to be sad no matter the cause, but you shouldn't blame yourself or your perfect boobs. <</dialog>> <<dialog "Emi">>Ehhh~ I was about to feel touched, then you had to ruin it by being a pervert~ <</dialog>> <<dialog "You">>Then I guess I should touch you even more since you don't feel it~ <</dialog>> <<dialog "Emi">>Pfft. You're a jerk. <</dialog>> <div class="button-row"> <<regButton "emi-k1-gropea" "Repeat">><</regButton>> <<regButton "emi-k1-kiss" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-kiss]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "You">>Kiss me. <</dialog>> <<dialog "Emi">>Come here~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-kiss'+random(1,3)+'.mp4">'>> </video> <div class="button-row"> <<regButton "emi-k1-kiss" "Repeat">><</regButton>> <<regButton "emi-k1-ear" "She needs to tell you something">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-ear]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "Emi">>Um... $player.name... I need to tell you something. <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Emi">>It's embarassing so let me whisper it to your ear. <</dialog>> <<dialog "You">>Haha. Sure! <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-ear'+random(1,2)+'.mp4" >'>> </video> <<dialog "You">>Ohhhh~ Th-that surprised me~ <</dialog>> <<dialog "Emi">>Mmm~ <i>*slurp*</i> <</dialog>> <div class="button-row"> <<regButton "emi-k1-ear" "Repeat">><</regButton>> <<regButton "emi-k1-undress" "Undress her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-undress]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "You">>Since you're getting bold, let me take your blouse off. <</dialog>> <<dialog "Emi">>Go ahead~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/emi/emi-k1/emi-k1-undress.mp4" type="video/mp4"> </video> <<dialog "You">>Ohhh? No bra. We're you trying to seduce me? <</dialog>> <<dialog "Emi">>N-no! I was already changing when you called me. Besides! You've been groping me for a while now and you just noticed? <</dialog>> <div class="button-row"> <<regButton "emi-k1-gropeb" "Grope her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-gropeb]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-gropeb'+random(1,2)+'.mp4">'>> </video> <<dialog "Emi">>Ahh~ Back to my boobs <</dialog>> <<dialog "You">>They really are amazing. Ever thought of being a nude model? <</dialog>> <<dialog "Emi">>A-are you crazy!? <</dialog>> <<dialog "You">>What? I think your body is amazing. Besides, there's no shame in tasteful nudes. <</dialog>> <<dialog "Emi">>W-well... <</dialog>> <<dialog "You">>You don't have to. It was just a suggestion. <</dialog>> <<dialog "Emi">>Umm... Do you really think I have what it takes? <</dialog>> <<dialog "You">>I'd pay top dollar to see you naked. <</dialog>> <<dialog "Emi">>Hmph... Pervert... <i>*blushes*</i> <</dialog>> <div class="button-row"> <<regButton "emi-k1-gropeb" "Repeat">><</regButton>> <<regButton "emi-k1-sq" "Squeeze">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-sq]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-sq'+random(1,2)+'.mp4">'>> </video> <<dialog "Emi">>Mhmm~ G-geez~ Take it easy... <</dialog>> <<dialog "You">>These are the most effective stressballs in the world... And there's 2 of them! <</dialog>> <<dialog "Emi">>That is so insulting... <</dialog>> <<dialog "You">>What? You know I meant it as a compliment. <</dialog>> <<dialog "Emi">>Haha. I know~ But to be compared to a stressball is a bit... <</dialog>> <<dialog "You">>I just meant you're relieving my stress so well. <</dialog>> <<dialog "Emi">>Sure, bud. <</dialog>> <div class="button-row"> <<regButton "emi-k1-sq2" "Keep Squeezing">><</regButton>> <<regButton "emi-k1-face1" "Bury your face in her breasts">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-sq2]][[emi-k1-face1]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-sq'+random(1,4)+'.mp4">'>> </video> <<dialog "Emi">>Mmmn~ <</dialog>> <<dialog "You">>So soft~ <</dialog>> <div class="button-row"> <<regButton "emi-k1-sq2" "Keep Squeezing">><</regButton>> <<regButton "emi-k1-face1" "Bury your face in her breasts">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-face1]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-face'+random(3,4)+'.mp4">'>> </video> <<dialog "You">>If I drowned in these tits, I'd die happy~ <</dialog>> <<dialog "Emi">>Reeeeally? Then maybe we should stop so you don't die. I still need you to protect me~ <</dialog>> <<dialog "You">>Nah, I'd be even more threatening when I die! I'd be a ghost! If I can't scare them that way, then they have no fear even if I was still alive. <</dialog>> <<dialog "Emi">>S-stooop. <</dialog>> <div class="button-row"> <<regButton "emi-k1-face1" "Repeat">><</regButton>> <<regButton "emi-k1-face2" "Make her do it">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-face2]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "You">>You do it for me. <</dialog>> <<dialog "Emi">>Did your hands finally get tired? <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-face'+random(1,2)+'.mp4">'>> </video> <<dialog "You">>This is great~ <</dialog>> <div class="button-row"> <<regButton "emi-k1-face2" "Repeat">><</regButton>> <<regButton "emi-k1-lick" "Suck on her nipples">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-lick]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "You">>Let me suck on them too~ <</dialog>> <<dialog "Emi">>Nooo~ I'm sensitiiive~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-lick'+random(1,2)+'.mp4">'>> </video> <<dialog "You">><i>*sluuurp*</i> <</dialog>> <<dialog "Emi">>Mmmmm~ <</dialog>> <div class="button-row"> <<regButton "emi-k1-lick" "Repeat">><</regButton>> <<regButton "emi-k1-rub" "Go to Third Base">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-rub]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "You">>Speaking of sensitive... <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/emi/emi-k1/emi-k1-rub'+random(1,3)+'.mp4">'>> </video> <<dialog "Emi">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "emi-k1-rub" "Keep going">><</regButton>> <<regButton "emi-k1-end" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-k1-end]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">>
<div class="bg karaoke"></div> <div class="content-panel"> <<dialog "You">>I can't take it anymore. Let's do it. <</dialog>> <<dialog "Emi">>E-eh? Right here? <</dialog>> <<dialog "You">>Yeah. <</dialog>> <<dialog "Emi">>O-okay... <</dialog>> <strong style="font-size: 30px;">*BUUUUUUUUUUUUUUUZZ!!!!!!*</strong> <<dialog "Staff">><i>*Through the speaker*</i> Time's up! Unfortunately, it's too late... We can't extend you anymore. I apologize for the inconvenience! <</dialog>> <<dialog "You">>Dammit! <</dialog>> <<dialog "Emi">>Haha! There's always next time! <</dialog>> <div class="button-row"> <<regButton "emi-biz-end" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[emi-biz-end]] <</if>> <<backend>> <</backend>> <<set $location to "Karaoke">> <<set $hour to 23>> <<set $minute to 55>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'll walk you home. <</dialog>> <<dialog "Emi">>No need. I already booked a cab. Looks like it's here! <</dialog>> <<dialog "You">>Okay. See you, Emi! <</dialog>> <<dialog "Emi">>See you! <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Emi's love +3<</glow>></h1> <div class="button-row"> <<regButton "business-area" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<backend>> <</backend>> <<set $location to "Business Area">> <<set $emi.love = ($emi.love + 3)>>
<<if $hour < 17 && $hour != 12>><<set $profile to "shizu-profile">> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu-teaching.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Good $daystate, class! <</dialog>><<elseif $hour == 12>><<dialog "You">>It's lunch break. <</dialog>><<set $profile to "player-profile">><<else>><<dialog "You">>Class is over. <</dialog>><<set $profile to "player-profile">><</if>>
<<if $hour < 17 && $dayIndex % 7 < 6 && $dayIndex % 7 > 0>><div class="button-row id-row"> <<if $hour > 7>><<imgButton "shiori-class" "img/avatar-buttons/shiori-student-01.png" "avatar-button">><</if>> <<if $player.quest >= 5 && $anzu.quest > 1>><<imgButton "anzu-class" "img/avatar-buttons/anzu-01.png" "avatar-button">><</if>> <<imgButton "emi-class" "img/avatar-buttons/emi-student-01.png" "avatar-button">> <<imgButton "haru-class" "img/avatar-buttons/haru-student-01.png" "avatar-button">> <<imgButton "rio-crud" "img/avatar-buttons/rio-student-01.png" "avatar-button">> </div><</if>>
<<if $hour < 17>> <<regButton "study" "Study">> <</regButton>><</if>> <<if $hour < 12>><<regButton "study-break" "Study until Lunch Break">><</regButton>><</if>> <<if $hour < 17>><<regButton "end-class" "Study until end of class">><</regButton>><</if>>
<<if $shizu.quest == 1>> <<if $shizu.q1== 0>> <<goto "shizu1-1a">> <<elseif $shizu.q1== 1>> <<goto "shizu1-1b">> <<elseif $shizu.q1== 2>> <<goto "shizu1-1c">> <<elseif $shizu.q1== 3>> <<goto "shizu1-1d">> <<elseif $shizu.q1== 4>> <<if $player.rank > 85>> <<goto "shizu1-1e">> <<else>> <<goto "shizu1-1f">> <</if>> <<else>> <<goto "shizu1-chat">> <</if>> <<set $profile = "shizu-profile">> [[shizu1-1a]][[shizu1-1b]][[shizu1-1c]][[shizu1-1d]][[shizu1-1e]][[shizu1-1f]] <<set $hidenav to 1>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-2.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Sawada. Can we talk for a bit? <</dialog>> <<dialog "You">>Of course, Miss Noguchi. <</dialog>> <div class="button-row"> <<regButton "shizu1-2a" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-2b]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-1.mp4" type="video/mp4"> </video> <<dialog "Shizu">>I'll tell you about another student. Kishi Hono. <</dialog>> <img src="img/enemies/ranker8.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "You">>... Alright. You have my attention. <</dialog>> <<dialog "Shizu">>He's always been huge. He's naturally athletic too. He was the Power Forward for the Aoba Basketball Team. <</dialog>> <<dialog "You">>Let me guess. He fought and ruined his basketball career. <</dialog>> <<dialog "Shizu">>Yes. He had a naturally mean look. His buzz cut and bright yellow hair didn't help, so he got into a lot of fights at school. Of course, it's all self-defense! <</dialog>> <<dialog "You">>So he fought even before joining the Combat Rankings. <</dialog>> <<dialog "Shizu">>W-well... The Combat Ranking exists for the top fighter of the school. It's how he turned the entire school into his personal guard. <</dialog>> <<dialog "You">>How so? <</dialog>> <<dialog "Shizu">>The higher your rank is. The less challenges you get. You can't skip to challenging the Rank 1 after all. If a non-ranker challenges a ranker, all the members of the Combat Rankings will attack since they see it as a disrespect to the rank they worked hard on. <</dialog>> <<dialog "You">>So this Kishi dude joined the Combat Rankings so that he doesn't get attacked in a daily basis? Isn't that a good thing? <</dialog>> <<dialog "Shizu">>Yeah. However, after he joined. He started getting violent. Even at basketball practice. He started getting more fouls. He was confronted about it... then the incident happened. <</dialog>> <<dialog "You">>What happened? <</dialog>> <<dialog "Shizu">>He almost crippled the entire Basketball Team. Aoba did not participate in the regionals that year. Kishi's dad is a shareholder of the school, so he wasn't punished. I don't want you to turn into something like that. <</dialog>> <<dialog "You">>Miss Shizu. Let me tell you something I learned as a child. Violence is a tool. Like every other tool, one must know how to properly use it. I assure you. I am capable of wielding my violence as if it's breathing. I can take care of it. <</dialog>> <<dialog "Shizu">>B-but... <</dialog>> <<dialog "You">>I'll see you tomorrow. Miss Shizu. <</dialog>> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.q1 = 2>> <<set $minute = 45>> <<if false>> /* connected passages */ [[shizu1-2a]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-1.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Your grades have improved ever since you started... uhh... dating? Miss Haru. <</dialog>> <<dialog "You">>Haha! No, ma'am, we aren't dating. We haven't talked about that, but we are indeed studying together. <</dialog>> <<dialog "Shizu">>Oh. Excuse me. <</dialog>> <<dialog "You">>It's alright, Miss Noguchi. But why are you bringing it up? <</dialog>> <<dialog "Shizu">>Well, I also noticed that you... You've been fighting in the Combat Rankings. <</dialog>> <<dialog "You">>You know about the Combat Rankings? <</dialog>> <<dialog "Shizu">>I do, and I think you should stop. You have a bright future ahead of you! You can actually learn and get good grades if you tried. <</dialog>> <<dialog "You">>L-look... Miss Noguchi. <</dialog>> <<dialog "Shizu">>Don't aspire to be like them! Akagi Toyo, one of the top 4... <</dialog>> <img src="img/enemies/ranker7.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "Shizu">>...was the unbreakable Libero of the Aoba Volleyball team, but then he joined the Combat Rankings... <</dialog>> <<dialog "You">>What happened to him? <</dialog>> <<dialog "Shizu">>He was supposed to have an athletic scholarship for when he goes to college, but then he was caught fighting... His scholarship was retracted, and his future is ruined. I don't want you to end up like that. <</dialog>> <<dialog "You">>Oh. Pfft. I thought he died or something. Don't worry about me. I'll take my leave now. <</dialog>> <<dialog "Shizu">>W-wait! <</dialog>> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.q1 = 1>> <<set $minute = 45>> <<if false>> /* connected passages */ <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-2.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Sawada. Can we talk again for a bit? <</dialog>> <<dialog "You">><i>*sigh*</i> Of course. <</dialog>> <div class="button-row"> <<regButton "shizu1-2b" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-2b]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-2.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Sawada... <</dialog>> <<dialog "You">><i>*sigh*</i> Yes, Miss Shizu. <</dialog>> <<dialog "Shizu">>Y-you're already being corrupted! You stopped calling me Miss Noguchi! <</dialog>> <<dialog "You">>It's because you keep bugging me!! <i>*sigh*</i> Fine. Who are we talking about this time? <</dialog>> <div class="button-row"> <<regButton "shizu1-2c" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-2c]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-2.mp4" type="video/mp4"> </video> <<dialog "Shizu">><i>*Smiling brightly*</i> <</dialog>> <<dialog "You">><i>*sigh*</i> Shizu-chan~ <</dialog>> <<dialog "Shizu">>Ch-chan!? Y-youu! <</dialog>> <<dialog "You">>Let's just get on with it. <</dialog>> <div class="button-row"> <<regButton "shizu1-2d" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-2d]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-3.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Sawada... <</dialog>> <<dialog "You">>Unfortunately, you've already told me everything you know~ <</dialog>> <<dialog "Shizu">>B-but! <</dialog>> <<dialog "You">>Bye, Shizu-chan~ <</dialog>> <div class="button-row"> <<regButton "classroom" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-1.mp4" type="video/mp4"> </video> <<dialog "Shizu">><i>*eherm*</i> I'll talk about the founder of the Combat Rankings. The Black Devil of Aoba, Kuroki Seiya. <</dialog>> <img src="img/enemies/ranker9.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "You">>Hoh? <</dialog>> <<dialog "Shizu">>That person... It pains me to say this as a teacher, but he's been hopeless since he came to Aoba. <</dialog>> <<dialog "You">>Hmm? <</dialog>> <<dialog "Shizu">>His father, Kuroki Senju, is a... shady... character. <</dialog>> <<dialog "You">><i>Oh? That Kuroki Senju's son is a schoolmate? This Seiya idiot should be calling me young master, then.</i> <</dialog>> <<dialog "Shizu">>Kuroki is a cruel person. He delighted in crushing the spirits of anybody that his eyes could lay upon. He even tormented my adorable student. <</dialog>> <<dialog "You">>So you have a personal vendetta against him. <</dialog>> <<dialog "Shizu">>You can say that. Kuroki is evil incarnate. He's already crippled 12 rankers. <</dialog>> <<dialog "You">>If you're trying to scare me, don't bother. It only makes me want to fight him even more. Fighting the strongest in Aoba could be interesting... <</dialog>> <<dialog "Shizu">>He's not the strongest. <</dialog>> <<dialog "You">>I thought he created the Combat Rankings. <</dialog>> <<dialog "Shizu">>He did. He created it for the strongest student in Aoba... <</dialog>> <<dialog "You">>Who's that? <</dialog>> <<dialog "Shizu">>I'll tell you if you stop fighting~ <</dialog>> <<dialog "You">>I'll see you tomorrow. Miss Shizu. <</dialog>> <<dialog "Shizu">>W-wait! <</dialog>> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.q1 = 3>> <<set $minute = 45>> <<if false>> /* connected passages */ [[shizu1-2a]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-1.mp4" type="video/mp4"> </video> <<dialog "Shizu">><i>*eherm*</i> I'll talk about the strongest student now. <</dialog>> <<dialog "You">>You caved, huh? <</dialog>> <<dialog "Shizu">>Sh-shut up! <i>*eherm*</i> Sorry... Uhm. The strongest student in Aoba is Sai... Kyogaku Sai. <</dialog>> <img src="img/enemies/ranker10.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "You">>Sai Kyo- what again? <</dialog>> <<dialog "Shizu">>Kyogaku. <</dialog>> <<dialog "You">>Haven't heard of him. <</dialog>> <<dialog "Shizu">>He doesn't come to class anymore. He often goes out to fight other schools to establish his dominance. He doesn't get suspended because Kuroki is backing him. <</dialog>> <<dialog "You">>You did mention that Kuroki created the Rankings for him. Why would he do that? <</dialog>> <<dialog "Shizu">>Honestly... Sai is my adorable student. He was bullied as a first year... by Kuroki. <</dialog>> <<dialog "You">>The strongest was bullied? <</dialog>> <<dialog "Shizu">>Yep. He came to me for help, but Kuroki's dad is too powerful. <</dialog>> <<dialog "You">><i>Pfft. The Sawada family could destroy the entire Kuroki clan after lunch and still make it home by dinner.</i> <</dialog>> <<dialog "Shizu">>The school officials ignored my petition to suspend Kuroki, so for the time being, I brought Sai to a gym so he could learn to defend himself. <</dialog>> <<dialog "You">>So, that's how he learned how to fight. <</dialog>> <<dialog "Shizu">>He was gifted. Incredibly gifted. But they kept picking on him. It all changed when Kuroki's gang tried to... rape me. <</dialog>> <<dialog "You">>Wh-what!? <</dialog>> <<dialog "Shizu">>They didn't get to! Sai stopped them. They only did it to spite Sai. They beat him up then tried to rape me in front of him. Then it happened. An indescribable rage consumed my adorable student. He turned into a monster. <</dialog>> <<dialog "You">>He crushed those goons. <</dialog>> <<dialog "Shizu">>He rushed to Kuroki, but sadly he was too tired to even pick a fight with him. <</dialog>> <<dialog "You">>Then why did Kuroki create the Combat Rankings for Kyogaku? <</dialog>> <<dialog "Shizu">>Sai defeated 43 students in one night. Kuroki saw his potential and became a fanatic. He's convinced Sai to take over Kumine. <</dialog>> <<dialog "You">>Hohh? We can't have that then~ I'm sorry, teach. I'm going to have to fight him. <</dialog>> <<dialog "Shizu">>Y-you can't! He's too strong for you... <</dialog>> <<dialog "You">>See you tomorrow, Shizu-chan~ <</dialog>> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.q1 = 4>> <<set $minute = 45>> <<if false>> /* connected passages */ <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-2.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Sawada... <</dialog>> <<dialog "You">><i>*sigh*</i> Shizu-chan, you don't have to worry about me. I'm strong, you know? <</dialog>> <<dialog "Shizu">>I know. You're climbing ranks faster than Kishi Hono did. <</dialog>> <<dialog "You">>See? It's even starting to bore me. So no need to worry about me at all! Bye~ <</dialog>> <div class="button-row"> <<regButton "shizu1-2f" "She stops you">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-2f]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-3.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Wait! If you're getting bored of it, why are you still climbing? <</dialog>> <<dialog "You">>Well. It's because I promised. Yamane Emi is being bullied, you know? Like how you couldn't protect Sai, I can't protect Emi without exerting violence. <</dialog>> <<dialog "Shizu">>But that doesn't require climbing ranks anymore. You're already a ranker. Higher ranked rankers can't pick a fight with you without proper cause, and if weaker rankers mess with Emi-chan, then there's your cause. <</dialog>> <<dialog "You">>I need to raise my rank. If I stay in the 80's, I'd get challengers more often. <</dialog>> <<dialog "Shizu">>But isn't that better for you? Since climbing is boring to you now. Maybe it would be interesting if you got challengers? <</dialog>> <<dialog "You">>Fighting Kyogaku would be more interesting than flies, Shizu-chan~ <</dialog>> <<dialog "Shizu">>U-uhmm... <</dialog>> <<dialog "You">>Welp. Good talk, Shizu-chan~ <</dialog>> <div class="button-row"> <<regButton "shizu1-3f" "She has an idea">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-3f]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-1.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Wait! Hear me out! <</dialog>> <<dialog "You">>Hmm? <</dialog>> <<dialog "Shizu">>What if you hang out with me instead? <</dialog>> <<dialog "You">>You think hanging out with a teacher would be more fun than fighting the strongest? <</dialog>> <<dialog "Shizu">>Well. I am pretty cute. <</dialog>> <<dialog "You">>That you are. <</dialog>> <<dialog "Shizu">>S-so... I bet it would be more interesting to hang out with me than with other boys, no? <</dialog>> <<dialog "You">>Fuck. You make a very compelling argument. <</dialog>> <<dialog "Shizu">>Hey! Don't swear! <</dialog>> <<dialog "You">>Oh, fuck. My bad. <i>Well, she is pretty hot. And she's right, I don't have to climb ranks to protect Emi. I should humor her for a while.</i> <</dialog>> <<dialog "Shizu">>So? What do you say? <</dialog>> <<dialog "You">>Fine, but I'm still going to climb when we're not hanging out. <</dialog>> <div class="button-row"> <<regButton "shizu1-chat" "You hang out">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-chat]] <</if>> <<set $shizu.q1 = 5>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <<print '<source src="vids/shizu/shizu1/shizu1-'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><<print either("Some of the teachers don't take me seriously...", "The PE Teacher keeps on staring at my breasts, it's uncomfortable.", "Some students still try to harass me, but Sai's people still protect me from time to time. I'm still terrified, though.", "I joined this school because I believed I could change it. I couldn't even keep one of them on the right path.")>> <</dialog>> <<dialog "You">><<print either("Damn.","That's crazy.","That sucks...","What!?")>> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $shizu.quest >= 2>><<regButton "shizu1-gropex" "Sex">><</regButton>><</if>> <<if $shizu.love >= 5 && $shizu.quest >= 1>><<regButton "shizu1-flirt" "Flirt">><</regButton>><</if>> <<regButton "shizu1-crud" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.love = $shizu.love + 1>> <<if false>> /* connected passages */ [[shizu1-crud]] [[shizu1-flirt]] <</if>> <<set $hidenav to 1>>
<<set $hour = 19>> <<set $minute = 30>> <<goto "school">>
<<backend>><<set $shizu.love = $shizu.love + 1>><</backend>> <div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>See? Isn't this more fun? <</dialog>> <<dialog "You">>Of course it is. It's like we're on a date. <</dialog>> <<dialog "Shizu">>A d-d-d-d-date?? Geez... It's too early, kid! <</dialog>> <<dialog "You">>So it's going to happen, then? <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-flirt.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $shizu.love >= 10>><<regButton "shizu1-grope-check" "You're getting bored">><</regButton>><</if>> <<regButton "shizu1-crud" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-grope-check]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <<print '<source src="vids/shizu/shizu1/shizu1-'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>*yawn*</i> <</dialog>> <<dialog "Shizu">>A-are you bored? <</dialog>> <<dialog "You">>Kind of. I think I need some exercise. <</dialog>> <<dialog "Shizu">>W-wait! Uhmmm... What else can we do for you to not get bored? <</dialog>> <<dialog "You">>Hmmm... Well... <</dialog>> <<dialog "Shizu">>Well? <</dialog>> <<dialog "You">>Nah... It's inappropriate. <</dialog>> <<dialog "Shizu">>Wh-what? F-fine, tell me what it is. <</dialog>> <<dialog "You">>I've been staring at your chest the whole time. If you let me touch them, I might stay. <</dialog>> <<dialog "Shizu">>Y-you! I'm your teacher! <</dialog>> <<dialog "You">>I know. Which is why I told you it was inappropriate. Don't worry, I didn't expect you to actually let me do it. Which is why I'm leaving. See you tomorrow, Shizu-chan~ <</dialog>> <<dialog "Shizu">>W-wait! <</dialog>> <h1>NOTE: Her response is by chance. The odds for a positive response increases with your relationship. For an 80% chance of a positive response, you'd need at least <<glow>>16 relationship points<</glow>>. If you get a negative response, you lose 1 relationship point. Good luck!</h1> <div class="button-row"> <<if ($shizu.love / 25) * random(25, 100) >= 50>><<regButton "shizu1-grope" "She hesitates...">><</regButton>><<else>><<regButton "shizu-decline-crud" "She hesitates...">><</regButton>><</if>> <<regButton "shizu1-crud" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-grope]][[shizu1-decline]] <</if>>
<<backend>><<set $shizu.love = $shizu.love + 1>><</backend>> <div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>Fine. Come here. <</dialog>> <<dialog "You">>Seriously? <</dialog>> <<dialog "Shizu">>Seriously. <</dialog>> <<dialog "You">>Awesome. <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-grope.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "You">>They're so soft~ <</dialog>> <<dialog "Shizu">>Mmm... <</dialog>> <h1>NOTE: For an 80% chance of a positive response, you'd need at least <<glow>>24 relationship points<</glow>>. Good luck!</h1> <div class="button-row"> <<if ($shizu.love / 39) * random(25, 100) > 50>><<regButton "shizu1-kiss" "Kiss her">><</regButton>><<else>><<regButton "shizu-decline-crud" "Kiss her">><</regButton>><</if>> <<regButton "shizu1-end" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-kiss]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>I'm sorry. I just can't do it... <</dialog>> <<dialog "You">>I thought so... It's okay, Shizu-sensei. I'll hang out with you again tomorrow~ <</dialog>> <<dialog "Shizu">>... <</dialog>> <h1><<glow "0.4px #7c00ff" "8px #9f44ff" "18">>Relationship -1<</glow>></h1> <div class="button-row"> <<regButton "shizu1-crud" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.love = $shizu.love - 1>> <<if false>> /* connected passages */[[shizu-decline-crud]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <<print '<source src="vids/shizu/shizu1/shizu1-'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Oh! I didn't even notice the time. We should go. <</dialog>> <div class="button-row"> <<regButton "school" "Leave">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $hour = 19>> <<set $minute = 30>> <<if false>> /* connected passages */ [[shizu1-crud]] [[shizu1-flirt]] <</if>>
<<backend>><<set $shizu.love = $shizu.love + 1>><</backend>> <div class="bg classroom"></div> <div class="content-panel"> You lean forward for a kiss... <hr> <<dialog "Shizu">>W-wait... <</dialog>> <hr> You kiss her. <hr> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-kiss'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <h1>NOTE: For an 80% chance of a positive response, you'd need at least <<glow>>30 relationship points<</glow>>. Good luck!</h1> <div class="button-row"> <<if ($shizu.love / 48) * random(25, 100) > 50>><<regButton "shizu1-undress" "Have Sex">><</regButton>><<else>><<regButton "shizu-decline-crud" "Have Sex">><</regButton>><</if>> <<regButton "shizu1-end" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-undress]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Take your blouse off. <</dialog>> <<dialog "Shizu">>O-okay... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu1/shizu1-flash.mp4" type="video/mp4"> </video> <<dialog "You">>You're huge~ <</dialog>> <<dialog "Shizu">>I-it's embarrassing... <</dialog>> <div class="button-row"> <<regButton "shizu1-tits" "Fondle her boobs">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-tits]][[shizu1-gropex]] <</if>>
<<goto "shizu1-decline">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-tits'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>So soft~ <</dialog>> <<dialog "Shizu">>N-not too rough~ <</dialog>> <div class="button-row"> <<regButton "shizu1-tits" "Keep squeezing">><</regButton>> <<regButton "shizu1-face" "Bury your face in her boob">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-face]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu1/shizu1-face1.mp4" type="video/mp4"> </video> <<dialog "You">>Mmmphh~ <</dialog>> <<dialog "Shizu">>C-can you even breathe? <</dialog>> <div class="button-row"> <<regButton "shizu1-hj" "Handjob">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-hj]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu1/shizu1-grope.mp4" type="video/mp4"> </video> <<dialog "You">>They're so soft~ <</dialog>> <<dialog "Shizu">>Mmm... <</dialog>> <div class="button-row"> <<regButton "shizu1-kissx" "Kiss">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-kissx]] <</if>> <<set $hidenav to 1>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-kiss'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Your lips are so sweet. <</dialog>> <div class="button-row"> <<regButton "shizu1-kissx" "Keep kissing">><</regButton>> <<regButton "shizu1-undress" "Undress her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-undress]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-hj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Your hands are so soft too~ <</dialog>> <<dialog "Shizu">>Y-you're so hard... <</dialog>> <div class="button-row"> <<regButton "shizu1-hj" "Keep stroking">><</regButton>> <<regButton "shizu1-lick" "Make her lick it">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-lick]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Lick it. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-lick'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ That feels great, Shizu-chan~ <</dialog>> <<dialog "Shizu">><i>*lick*</i> <</dialog>> <div class="button-row"> <<regButton "shizu1-lick" "Keep licking">><</regButton>> <<regButton "shizu1-bj" "Blowjob">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-bj]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-bj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ That's it~ Your mouth is so warm. <</dialog>> <<dialog "Shizu">>Doesh ith feew gooth? <</dialog>> <div class="button-row"> <<regButton "shizu1-bj" "Keep sucking">><</regButton>> <<regButton "shizu1-deep" "Intensify">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-deep]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-deep'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Keep going, Shizu~ <</dialog>> <<dialog "Shizu">><i>*gkkk gwkkk gkkk hgkk*</i> <</dialog>> <div class="button-row"> <<regButton "shizu1-deep" "Keep sucking">><</regButton>> <<regButton "shizu1-titjob" "Make her use her tits">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-titjob]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-tj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Your boobs are perfectly sandwiching my dick. <</dialog>> <<dialog "Shizu">>Mmm~ I've always known I have amazing boobs~ <</dialog>> <div class="button-row"> <<regButton "shizu1-titjob" "Keep going">><</regButton>> <<regButton "shizu1-pussy" "Spread her legs">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-pussy]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Sit on top of the desk and spread your legs. <</dialog>> <<dialog "Shizu">>N-nooo! It's embarassing~ <</dialog>> <<dialog "You">>Just do it, Shizu-chan~ <</dialog>> <hr> You lift her to the desk and spread her legs. <hr> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu1/shizu1-pussy.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "shizu1-cun" "Lick her pussy">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-cun]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-cun'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>*slurp*</i> Your pussy <i>*slurp*</i> is sweet~ <i>*slurp*</i> <</dialog>> <<dialog "Shizu">>Ahhhh~ It feels gooood~ <</dialog>> <div class="button-row"> <<regButton "shizu1-cun" "Keep licking">><</regButton>> <<regButton "shizu1-mis" "Fuck her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-mis]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-mis'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Mmmm~ I can't believe you're fucking me~ This is so wrong~ <</dialog>> <<dialog "You">>But does it feel good? <</dialog>> <<dialog "Shizu">>Ahh~ It feels goood~ <</dialog>> <div class="button-row"> <<regButton "shizu1-mis" "Repeat">><</regButton>> <<regButton "shizu1-cow" "Cowgirl">><</regButton>> <<regButton "shizu1-dog" "Doggy">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-cow]][[shizu1-dog]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-cow-a'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>That's it. Up and down~ <</dialog>> <<dialog "Shizu">>Ahh~ I'll show you~ That this is~ Way better than~ Fightiiiiiing~ <</dialog>> <div class="button-row"> <<regButton "shizu1-cow" "Repeat">><</regButton>> <<regButton "shizu1-cow2" "Harder">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-cow2]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-dog'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahhhh~ It's so much deeper~ <</dialog>> <<dialog "You">>Your pussy is so tight! <</dialog>> <div class="button-row"> <<regButton "shizu1-dog" "Repeat">><</regButton>> <<regButton "shizu1-mis" "Missionary">><</regButton>> <<regButton "shizu1-cow" "Cowgirl">><</regButton>> <<regButton "shizu1-cum" "I'm close">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-cum]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>That's it, keep bouncing~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shizu1/shizu1-cow-b'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahhhh~ I can't~ Stop~ <</dialog>> <div class="button-row"> <<regButton "shizu1-cow2" "Repeat">><</regButton>> <<regButton "shizu1-mis" "Missionary">><</regButton>> <<regButton "shizu1-dog" "Doggy">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-cow2]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>I'm about to cum~ <</dialog>> <<dialog "Shizu">>Y-you can cum inside... I'm on birth control... <</dialog>> <<dialog "You">>You're amazing~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu1/shizu1-cum.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "shizu1-creampie" "Her pussy is filled">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-creampie]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu1/shizu1-creampie.mp4" type="video/mp4"> </video> <<dialog "You">>Your pussy is awesome~ <</dialog>> <<dialog "Shizu">>Ahh~ You really filled me up~ <</dialog>> <div class="button-row"> <<regButton "shizu1-endsex" "End">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<if false>> /* connected passages */ [[shizu1-endsex]] <</if>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu1/shizu1-end.mp4" type="video/mp4"> </video> <<dialog "Shizu">>I can't believe I just did that... <</dialog>> <<dialog "You">>That was great~ <</dialog>> <<dialog "Shizu">>Listen. Nobody can know about this, alright? <</dialog>> <<dialog "You">>Of course! <</dialog>> <<dialog "Shizu">>Not bored anymore huh? <</dialog>> <<dialog "You">>My favorite kind of exercise. <</dialog>> <<dialog "Shizu">>Crap. I hear the janitor coming. Let's leave! You go ahead first so it's not suspicious. I'll see you in class, okay? <</dialog>> <<dialog "You">>Take care, okay? <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>></h1> <div class="button-row"> <<regButton "shizu1-crud" "Leave">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<set $shizu.quest = Math.max($shizu.quest, 2)>> <<if false>> /* connected passages */ <</if>> <<set $shizu.love = $shizu.love + 3>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Mnn. Wh-wha? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku4/miku4-1.mp4" type="video/mp4"> </video> <<dialog "You">>J-jesus! <</dialog>> <<dialog "Miku">>Shhh. Relax. <</dialog>> <<dialog "You">>Holy shit. Th-that scared me. <</dialog>> <div class="button-row"> <<regButton "miku4-hj" "Handjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-hj]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-hj'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ This is a pleasant surprise. <</dialog>> <<dialog "Miku">>I know you've been watching me... You've done a lot, so I'm giving you a reward. <</dialog>> <<dialog "You">>Ohh? Are you sure it's not because you're not satisfied with that thin brush anymore? <</dialog>> <<dialog "Miku">><i>Urkk... *blushes*</i> <</dialog>> <div class="button-row"> <<regButton "miku4-hj" "Keep stroking">><</regButton>> <<regButton "miku4-bj" "Blowjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-bj]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Nom~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-bj'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ Your mouth is so warm~ <</dialog>> <<dialog "Miku">><i>*Ggkk*</i> You tashte goohd~ <i>*Slurp*</i> <</dialog>> <div class="button-row"> <<regButton "miku4-bj" "Keep sucking">><</regButton>> <<regButton "miku4-grind" "She grinds on you">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-grind]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku4/miku4-grind1.mp4" type="video/mp4"> </video> <<dialog "Miku">>Mmm~ Should I put it in? <</dialog>> <<dialog "You">>Ahh~ I can't take it anymore~ <</dialog>> <div class="button-row"> <<regButton "miku4-cowa" "Continue">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-cowa]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Ahh~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-cowa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>It's in~ <</dialog>> <<dialog "You">>Finally~ <</dialog>> <div class="button-row"> <<regButton "miku4-cowa" "Repeat">><</regButton>> <<regButton "miku4-undress" "Undress">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-undress]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Take your shirt off~ <</dialog>> <<dialog "Miku">>Sure~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku4/miku4-undress.mp4" type="video/mp4"> </video> <<dialog "You">>They're much better up close~ <</dialog>> <<dialog "Miku">>So you were peeping. How naughty~ <</dialog>> <div class="button-row"> <<regButton "miku4-grope" "Grope her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-grope]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>They're soft too. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku4/miku4-grope.mp4" type="video/mp4"> </video> <<dialog "Miku">>I hate it when I get stared at because of my boobs, but I don't mind it with you~ <</dialog>> <div class="button-row"> <<regButton "miku4-kiss" "Kiss her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-kiss]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>I... I think I'm catching feelings for you... <</dialog>> <<dialog "You">>You just think so? Come here. I'll make it clear. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-kissa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Mm~ <</dialog>> <div class="button-row"> <<regButton "miku4-kiss" "Keep kissing">><</regButton>> <<regButton "miku4-cowb" "Fuck her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-cowb]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Ride me. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-cowb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Ahhh~ I've been thinking about this every night~ It feels way better than my hands~ <</dialog>> <div class="button-row"> <<regButton "miku4-cowb" "Keep riding">><</regButton>> <<regButton "miku4-mis" "Missionary">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-mis]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-mis'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Make me yours~ <</dialog>> <div class="button-row"> <<regButton "miku4-mis" "Keep fucking">><</regButton>> <<regButton "miku4-cowb" "Cowgirl">><</regButton>> <<regButton "miku4-cum" "Cum">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-cum]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>I'm cumming~ <</dialog>> <<dialog "Miku">>N-not inside! Cum on my boobs! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku4/miku4-cum.mp4" type="video/mp4"> </video> <<dialog "You">>Ahh~ That felt amazing, Miku. <</dialog>> <<dialog "Miku">>It was amazing for me too. <</dialog>> <div class="button-row"> <<regButton "miku4-end" "End">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-end]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku4/miku4-end'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Your cum is so sticky, hehe. <</dialog>> <div class="button-row"> <<regButton "miku4-sleep" "Sleep">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku4-sleep]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>I'm tired... Will you sleep with me? <</dialog>> <<dialog "You">>Of course. Let's cuddle. Good night, Miku. <</dialog>> <<dialog "Miku">>Good night. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku4/miku4-sleep.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "miku-ohayo" "Wake Up">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.quest = 5>> <<if false>> /* connected passages */ [[miku-ohayo]] <</if>>
<<include "sleep-crud">> <div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-ohayo.mp4" type="video/mp4"> </video> <<dialog "You">>Good morning, Miku. <</dialog>> <<dialog "Miku">>Good morning~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>></h1><<if $nirei.quest >= 6 && $day == "Sunday">><h1>Nirei pays you $60 for rent.</h1><</if>> <<regButton "miku-room" "Continue">><</regButton>> </div> <<if false>> /* connected passages */ <</if>> <<set $miku.love = $miku.love + 3>> <<set $location to "Miku's Room">> <<set $profile to "miku-profile">> <<if $nirei.quest >= 6 && $day == "Sunday">><<set $player.money = $player.money + 60>><</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-sleepover.mp4" type="video/mp4"> </video> <<dialog "Miku">>Ahh~ Home. You coming in? <</dialog>> <<dialog "You">>Of course. Let's eat then go to bed. <</dialog>> <<dialog "Miku">>Okay~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "miku5-wake0" "Sleep together">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $miku.love = $miku.love + 1>> <<set $minute = 45>> <<if false>> /* connected passages */ [[miku-room]][[miku5-wake0]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake0.mp4" type="video/mp4"> </video> <<dialog "Miku">><<print either("I have crumbs all over my face.", "This junk food is making me fat.", "Oh crap. I ate all of the cookies.", "I'm starting to look like a crazy person because of all the energy drink I drink.")>> <</dialog>> <<dialog "You">>Really? I didn't even notice. I'm just staring at you because you look so pretty. <</dialog>> <<dialog "Miku">><i>*Blushes*</i> You need to pay attention to me more, you know? <</dialog>> <<dialog "You">>There really is no right answer haha <</dialog>> <<dialog "Miku">>You're lucky I like you~ <</dialog>> <div class="button-row"> <<regButton "miku5-wake1" "Sleep">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake1]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Hurry uuup! I'm so sleepy~ <</dialog>> <<dialog "You">>I'm coming. I'm coming. I just turned off the lights. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake1.mp4" type="video/mp4"> </video> <<dialog "Miku">>Come here and snuggle with me. I'm afraid of the dark. <</dialog>> <<dialog "You">>Should I turn a lamp on? <</dialog>> <<dialog "Miku">>Nooo~ Sleeping in the dark is much more comfortable. <</dialog>> <<dialog "You">>I thought you were scared? <</dialog>> <<dialog "Miku">>I have my knight in shining armor under the blankets with me. I feel pretty safe~ <</dialog>> <div class="button-row"> <<regButton "miku5-wake2" "Wake Up">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake2]] <</if>>
<<include "sleep-crud">> <div class="bg miku-room"></div> <div class="content-panel"> Miku's alarm rings. <hr> <<dialog "Miku">>$player.name... Wake up. <</dialog>> <<dialog "You">>Mmmm. Five more minutes... zzzzz <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake2.mp4" type="video/mp4"> </video> <<dialog "Miku">>You'll be late! <</dialog>> <div class="button-row"> <<regButton "miku5-wake3" "Snooze">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake3]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Heyy... Wake up. You'll be late. <</dialog>> <<dialog "You">>Zzzz... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake3.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "miku5-wake-kiss" "She kisses you">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-kiss]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Heyy. <</dialog>> <<dialog "You">>Zzzz... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-kiss1.mp4" type="video/mp4"> </video> <<dialog "Miku">>Heyy. <</dialog>> <<dialog "You">>Mmm... <</dialog>> <div class="button-row"> <<regButton "miku5-wake-rub" "She rubs your crotch">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-rub]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Hmmm? I'm up~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-rub1.mp4" type="video/mp4"> </video> <<dialog "Miku">>You both are~ <</dialog>> <<dialog "You">>Th-that's normal for guys! <</dialog>> <<dialog "Miku">>Ohh? Maybe I should help you out then. <</dialog>> <div class="button-row"> <<regButton "miku5-wake-hj" "Handjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-hj]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku-wake/miku-wake-bj'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Mmph~ <i>*slurp*</i> <</dialog>> <<dialog "You">>Ahh~ That feels good, Miku. <</dialog>> <div class="button-row"> <<regButton "miku5-wake-bj" "Keep sucking">><</regButton>> <<regButton "miku5-wake-cun" "Cunnilingus">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-cun]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Ahh~ I'm getting horny too. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku-wake/miku-wake-cuna'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>A blowjob AND breakfast in bed. You're the best~ <</dialog>> <<dialog "Miku">>Ahhh~ K-keep licking~ <</dialog>> <div class="button-row"> <<regButton "miku5-wake-cun" "Keep licking">><</regButton>> <<regButton "miku5-wake-undress" "She takes her shirt off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-undress]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>You're really hard~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku-wake/miku-wake-hj'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>That's because I was dreaming about you~ <</dialog>> <<dialog "Miku">>Pfft <</dialog>> <div class="button-row"> <<regButton "miku5-wake-hj" "Keep going">><</regButton>> <<regButton "miku5-wake-bj" "Blowjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-bj]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Take your shirt off. <</dialog>> <video controls width="640" height="360" autoplay> <source src="vids/miku/miku-wake/miku-wake-cunb1.mp4" type="video/mp4"> </video> <<dialog "You">>Your body is... like... it's perfect. <</dialog>> <<dialog "Miku">>Mmmmn~ Keep licking~ <</dialog>> <video controls width="640" height="360" autoplay loop muted> <source src="vids/miku/miku-wake/miku-wake-cunb2.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "miku5-wake-panty" "She takes her underwear off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-panty]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Let's do it. <</dialog>> <<dialog "You">>Fuck yeah. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-panty1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "miku5-wake-cow1" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-cow1]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/miku-wake/miku-wake-cow'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ You're so hard~ <</dialog>> <<dialog "You">>O-ohh shit... <</dialog>> <div class="button-row"> <<regButton "miku5-wake-cow1" "Keep fucking">><</regButton>> <<regButton "miku5-wake-kiss2" "She kisses you">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-kiss2]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-cowkiss.mp4" type="video/mp4"> </video> <<dialog "Miku">>Mm~ You taste good too~ <</dialog>> <<dialog "You">>Ah fuck... I came. <</dialog>> <<dialog "Miku">>Already?? <</dialog>> <<dialog "You">>I-it's because it's early and I had morning wood. It's a guy thing, I swear! <</dialog>> <<dialog "Miku">>Let's do it again. <</dialog>> <div class="button-row"> <<regButton "miku5-wake-end1" "Your alarm rings again">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-end1]] <</if>> <<set $hour = 8>> <<set $minute = 30>>
<div class="bg miku-room"></div> <div class="content-panel"> <strong style="font-size: 30px;">*BUUUUUUUUUUUUUUUZZ!!!!!!*</strong> <<dialog "You">>Oh shit! What time is it!? I have an exam today!! <</dialog>> <<dialog "Miku">>Wh-what? But I didn't cum yet!!! <</dialog>> <<dialog "You">>I'm sorry, Miku. I really have to go to class. I'll make it up to you, okay? <</dialog>> <<dialog "Miku">>Please? Just one more... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-onemore.mp4" type="video/mp4"> </video> <<dialog "You">>I'm sorry... <</dialog>> <div class="button-row"> <<regButton "miku5-wake-end2" "She sulks">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-end2]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Hmph. I won't forgive you. <</dialog>> <<dialog "You">>Wh-what? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-end.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "miku5-wake-end3" "Continue">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku5-wake-end3]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>I'm kidding. You better make up for this, okay? <</dialog>> <<dialog "You">>Of course! If I didn't have exams, I'd ditch school entirely. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-wake/miku-wake-end2.mp4" type="video/mp4"> </video> <<dialog "Miku">>Just go to class already! <</dialog>> <<dialog "You">>I'll see you later, okay? <</dialog>><<if $nirei.quest >= 6 && $day == "Sunday">><h1>Nirei pays you $60 for rent.</h1><</if>> <div class="button-row"> <<regButton "classroom" "Go to class">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>> <<if $nirei.quest >= 6 && $day == "Sunday">><<set $player.money = $player.money + 60>><</if>>
<<backend>><<set $relper = Math.ceil(($akane.love/$akane.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #FF1760" "8px #BE003B" 24 "pink">>Character Profile<</glow>></h1> <img src="img/avatars/akane-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px springgreen" "8px teal" 20 "lightgreen">>Yoshioka Akane<</glow>></h1><<if $akane.love > $akane.maxlove>><<set $akane.love to $akane.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $akane.love+" / "+$akane.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Meet her at the hospital. <<if $hospintro == "hosp-lobby">>2. Staying up too late five times in a row could get you sick. If you're sick, you can only replenish half of your energy when you sleep.<</if>> <<if $sick >= 5 || $akane.quest > 1>>3. Get checked by Akane.<</if>> <<if $akane.quest > 1>>4. That was hot. See her again tomorrow.<</if>> <<if $akane.quest > 2>>5. You had sex. Visit again tomorrow. 6. That's it for this version.<</if>> </h1> </div>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/office.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>What can I do for you? <</dialog>> <div class="button-row"> <<if ($sick >= 5 || $akane.quest > 2) && $akane.checktoday == 0>><<regButton "check-up-crud" "Get a Check Up">><</regButton>><</if>> <<buy "Akane's Tonic" 100>> <<regButton "hosp-lobby" "Nevermind">><</regButton>> </div> </div> <<set $profile to "akane-profile">>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "You">>Umm... Do I really have to be naked for this? <</dialog>> <<dialog "Akane" "student">>Hm? Have you never had a physical? <</dialog>> <<dialog "You">>W-well... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/check-up.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Hmm. It looks like you're sleep deprived. <</dialog>> <<dialog "You">>But I sleep before 12 midnight. I know that's still late, but other kids have way crazier sleep schedules than this. <</dialog>> <<dialog "Akane" "student">>But you're not an ordinary person. You get injured a lot and it seems like you've been in a lot of stress lately. <</dialog>> <<dialog "You">>Well... I did cause my dad a problem back at home and I guess it's been weighing on me. <</dialog>> <<dialog "Akane" "student">>Is that why you transferred to Aoba? <</dialog>> <<dialog "You">>Yeah. <</dialog>> <<dialog "Akane" "student">>I see. I'm not a psychologist, but I do have a remedy for your problem. Although, it's not very professional. Would you like me to give you this treatment? <</dialog>> <<dialog "You">>Sure. I trust you. <</dialog>> <<dialog "Akane" "student">>W-wow... You're not scared at all. <</dialog>> <<dialog "You">>You know my dad. I'm like him. We have no fear. So, do what you have to do, doctor. You're the expert. <</dialog>> <<dialog "Akane" "student">>You've never changed. <</dialog>> <div class="button-row"> <<regButton "akane1-glove" "She gloves up">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-glove]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/glove.mp4" type="video/mp4"> </video> <<dialog "You">>Wait, we've already met? <</dialog>> <<dialog "Akane" "student">>You probably don't remember it, but I was a scholar that your mom supported through medical school. Because of her, I was able to get a bachelor's degree when I was 17. <</dialog>> <<dialog "You">>What? That means you entered college when you were 13. <</dialog>> <<dialog "Akane" "student">>Yep! Your mom had me take a placement test when I was in middle school. I got my middle and high school diploma at the same time. <</dialog>> <<dialog "You">>You're a genius! No wonder you looked way too young! <</dialog>> <<dialog "Akane" "student">>Thank you~ <</dialog>> <div class="button-row"> <<regButton "akane1-syringe" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-syringe]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>After I got my college diploma, Miss Yuzuri threw a party at your place. <</dialog>> <<dialog "You">>Oh. So that's how you know me. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/syringe.mp4" type="video/mp4"> </video> <<dialog "You">>H-holy crap that syringe is huge. <</dialog>> <<dialog "Akane" "student">>You said you had no fear. <</dialog>> <<dialog "You">>I guess I'm all talk. <</dialog>> <<dialog "Akane" "student">>Anyways... <</dialog>> <<dialog "You">>You're just going to ignore me? <</dialog>> <<dialog "Akane" "student">>That same day, your house was attacked by gang members. It was scary, but you took me and ran out of the place. <</dialog>> <<dialog "You">>Seriously, that syringe is scary. <</dialog>> <<dialog "Akane" "student">>You were only 13 back then! You were 4 years younger than me, yet you were unbelievably calm. <</dialog>> <div class="button-row"> <<regButton "akane1-lube" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-lube]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "You">>Woah. Why are you pointing that to my dick?? <</dialog>> <<dialog "Akane" "student">>Relax~ It's lube. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/lube.mp4" type="video/mp4"> </video> <<dialog "You">>Oh... Lube. Okay. That actually feels ni-- Wait, lube!? <</dialog>> <div class="button-row"> <<regButton "akane1-unbutton" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-unbutton]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/unbutton.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Sir Isao and his men fought the gangster while you grabbed me and ran to the backyard. <</dialog>> <<dialog "You">>What is happening? <</dialog>> <<dialog "Akane" "student">>Some gangsters were waiting by the alley we cut into and we were trapped. You told me to hide behind the dumpster! I should have been the one protecting you back then, you were four years younger than me. <</dialog>> <div class="button-row"> <<regButton "akane1-ugood" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-ugood]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "You">>Ah! Aka-chan! I remember it now! My mom used to call you Aka-chan. <</dialog>> <<dialog "Akane" "student">>Hehe~ I'm glad you remember. You were so cool back then. You protected me from four grown adults while you were just 13 years old. You knocked all of them unconscious. <</dialog>> <<dialog "You">>I'm sorry. You had to go through that because of us. <</dialog>> <<dialog "Akane" "student">>You know what the worst part was? You came back for me all bloody. Then you said the most infuriating thing ever. <</dialog>> <img src="img/misc/u-good.jpg" style="max-width: 80%;"> <div class="button-row"> <<regButton "akane1-boobs" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-boobs]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "You">>That's the worst part? Is it because I was bloody? <</dialog>> <<dialog "Akane" "student">>I'm a doctor, $player.name. I was annoyed because you looked like a knight. <</dialog>> <<dialog "You">>I did? <</dialog>> <<dialog "Akane" "student">>That was when I developed a little crush. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/boobs.mp4" type="video/mp4"> </video> <<dialog "You">>Holy shit. <</dialog>> <div class="button-row"> <<regButton "akane1-hj1" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-hj1]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Now, it's my turn to help you. I can't let my hero be stressed, can I? <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane1/hj1'+either('a', 'b')+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Oh fuck. I can feel the stress leaving my body. <</dialog>> <<dialog "Akane" "student">>Good~ <</dialog>> <div class="button-row"> <<regButton "akane1-hj1" "Keep Stroking">><</regButton>> <<regButton "akane1-hj2" "Intensify">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-hj2]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane1/hj2'+either('a', 'b')+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Why does this feel so good? Too good! <</dialog>> <<dialog "Akane" "student">>I became a doctor so I can help you in times like these. I know the human body very well~ <</dialog>> <div class="button-row"> <<regButton "akane1-hj2" "Keep Stroking">><</regButton>> <<regButton "akane1-tj" "Titjob">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-tj]] <</if>>
<<backend>> <<if $akane.quest == 1>> <<goto "check-up1">> <<elseif $akane.quest >= 2>> <<goto "check-up2">> <</if>> [[check-up1]] [[check-up2]] <</backend>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Does it feel good? <</dialog>> <<dialog "You">>Ahh~ Y-yes. <</dialog>> <<dialog "Akane" "student">>How about this? <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane1/tj'+either('1', '2')+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ It's too much! I'm about too... <</dialog>> <div class="button-row"> <<regButton "akane1-tj" "Keep going">><</regButton>> <<regButton "akane1-cum" "Cum">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-cum]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/cum.mp4" type="video/mp4"> </video> <<dialog "You">>Arrghhh! <</dialog>> <<dialog "Akane" "student">>You came. <</dialog>> <<dialog "You">>Th-that was... amazing... <</dialog>> <<dialog "Akane" "student">>You should come back tomorrow. You're still not completely recovered. <</dialog>> <<dialog "You">>Y-yes... <</dialog>> <div class="button-row"> <<regButton "akane1-bj" "Continue">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-bj]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>I'll clean you up. Here's something to look forward too~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/bj.mp4" type="video/mp4"> </video> <<dialog "You">>Hnnggg! Ahh~ <</dialog>> <div class="button-row"> <<regButton "akane1-end" "End">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ [[akane1-end]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane1/end.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>You can go~ I'll see you tomorrow <</dialog>> <<dialog "You">>Yes ma'am... <i>*Holy shit. That was crazy.*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <div class="button-row"> <<regButton "hosp-lobby" "Leave">><</regButton>> </div> </div> <<set $profile to "akane-profile">> <<if false>> /* connected passages */ <</if>> <<set $akane.checktoday = 1>> <<set $akane.quest = 2>> <<set $akane.love = $akane.love + 3>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/intro1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>It looks like you're all better now. <</dialog>> <<dialog "You">>I am? <</dialog>> <<dialog "Akane" "student">>Hehe~ You are. <</dialog>> <<dialog "You">>I don't know, doc. I still feel a little stressed out. <</dialog>> <<dialog "Akane" "student">>Oh you do? Maybe if you start calling me Akane instead of doc, I'll make you feel better~ <</dialog>> <<dialog "You">>Make me feel better, Akane. <</dialog>> <<dialog "Akane" "student">>How obedient~ <</dialog>> <div class="button-row"> <<regButton "akane2-lube" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-lube]] <</if>> <<set $sick = 0>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/intro2.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Let's get you lubed up. <</dialog>> <<dialog "You">>Phew~ This syringe is less intimidating. <</dialog>> <div class="button-row"> <<regButton "akane2-boobs" "She takes her boobs out">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-boobs]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Your dick is already hard~ Let me make it even harder. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/boobs.mp4" type="video/mp4"> </video> <<dialog "You">>You have gorgeous tits, Akane. <</dialog>> <<dialog "Akane" "student">>Thanks~ <</dialog>> <div class="button-row"> <<regButton "akane2-nip" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-nip]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/nip'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>Ahh~ Your dick feels good on my nipples. <</dialog>> <<dialog "You">>Damn. They's not just pretty to look at. They feel great too. <</dialog>> <div class="button-row"> <<regButton "akane2-nip" "Repeat">><</regButton>> <<regButton "akane2-tj" "Titjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-tj]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/tja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>It will feel better sandwiched in between the two~ <</dialog>> <<dialog "You">>F-fuck. I won't cum from this alone this time... <</dialog>> <div class="button-row"> <<regButton "akane2-tj" "Repeat">><</regButton>> <<regButton "akane2-bja" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-bja]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/hj1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Your dick is too big~ <</dialog>> <<dialog "You">>Hehe. My bad. <</dialog>> <div class="button-row"> <<regButton "akane2-hj2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-hj2]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/bja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Sh-shit! A-are you a wizard or something? <</dialog>> <<dialog "Akane" "student">><i>*slurp*</i> Doesh it feew that goot? <i>*slurp*</i> <</dialog>> <div class="button-row"> <<regButton "akane2-bja" "Repeat">><</regButton>> <<regButton "akane2-hj1" "Handjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-hj1]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/hj2.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>It's not fair that you're the only one feeling good~ I'm pretty stressed out too, you know? <</dialog>> <<dialog "You">>Come here then. <</dialog>> <div class="button-row"> <<regButton "akane2-rub" "Rub her pussy">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-rub]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/rub.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Mmm~ It's good but it's not enough. <</dialog>> <div class="button-row"> <<regButton "akane2-finger" "Finger her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-finger]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/finger.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahh~ That's it, put it in~ <</dialog>> <<dialog "You">>You're already wet~ <</dialog>> <<dialog "Akane" "student">>Mmm~ Make me even wetter~ <</dialog>> <div class="button-row"> <<regButton "akane2-cun1" "Cunnilingus">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-cun1]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/cun1.mp4" type="video/mp4"> </video> <<dialog "You">><i>*slurp*</i> <</dialog>> <<dialog "Akane" "student">>Ahhhhh~ That's it~ Keep licking~ <</dialog>> <div class="button-row"> <<regButton "akane2-penetrate1" "Let her ride you">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-penetrate1]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>I can't take it anymore! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/penetrate1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ It's in~ It felt wrong to lust after you back then, but you're really grown now~ <</dialog>> <<dialog "You">>Shit! You're so tight~ <</dialog>> <<if $akane.quest < 3>><<dialog "Akane" "student">>Of course, I am. I took care of my pussy for you~ <</dialog>> <<dialog "You">>A-are you a virgin!? <</dialog>> <<dialog "Akane" "student">>Take responsibility, okay? <</dialog>><</if>> <div class="button-row"> <<regButton "akane2-cowa" "She starts to move">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-cowa]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/cowa1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ Slowly~ <</dialog>> <<dialog "You">>Fuck! It still feels way too good slow. <</dialog>> <div class="button-row"> <<regButton "akane2-cowb" "Intensify">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-cowb]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>Ahhh~ O-oh my god! It feels so goood~ <</dialog>> <<dialog "You">>Ohh~ That's it! Keep going! <</dialog>> <div class="button-row"> <<regButton "akane2-cowb" "Keep going">><</regButton>> <<regButton "akane2-cowc" "Lean back">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-cowc]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "You">>Lean back so I can see your body better~ <</dialog>> <<dialog "Akane" "student">>Ahhh~ O-okayyy~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/cowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>Ahhhhh~ I think I'm about to cuuuum~ <</dialog>> <<dialog "You">>Sh-shit... Me too... <</dialog>> <<dialog "Akane" "student">>Come inside me~ <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Akane" "student">>Yessss~ Fill me uuuup~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "akane2-cowc" "Keep going">><</regButton>> <<regButton "akane2-cum1" "Creampie">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-cum1]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/cum1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ I feel so full~ <</dialog>> <<dialog "You">>That felt amazing~ <</dialog>> <div class="button-row"> <<if $akane.quest > 2>><<regButton "akane2-bjb" "Make it hard again">><</regButton>><</if>> <<regButton "akane2-end2" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-end2]][[akane2-bjb]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Let me clean you up. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/end2.mp4" type="video/mp4"> </video> <<dialog "You">>Ahh~ You're amazing, Akane. <</dialog>> <div class="button-row"> <<regButton "akane2-end3" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-end3]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Let's do it again~ <</dialog>> <<dialog "You">>You're insatiable~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/bjb1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>You got me addicted~ <</dialog>> <<dialog "You">>Luckily, I have great stamina. <</dialog>> <div class="button-row"> <<regButton "akane2-penetrate2" "Reverse Cowgirl">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-penetrate2]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/end3.mp4" type="video/mp4"> </video> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <<dialog "Akane" "student">>I'll fix myself up and get back to work. <</dialog>> <<dialog "You">>Oh. Okay. <</dialog>> <<dialog "Akane" "student">>Come see me again, okay? <</dialog>> <<dialog "You">>You don't even have to ask~ <</dialog>> <div class="button-row"> <<regButton "hosp-lobby" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $akane.checktoday = 1>> <<if $akane.quest == 2>><<set $akane.quest = 3>><</if>> <<set $akane.love = $akane.love + 5>> <<backend>> <<script>> incrementTime(1, 0); <</script>> <</backend>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "You">>I wanna see your ass this time. <</dialog>> <<dialog "Akane" "student">>Okay~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/penetrate2.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ It's so big~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowa" "She starts to move">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-rcowa]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/rcowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>Ahhh~ Your cum is a great lubricant~ <</dialog>> <<dialog "You">>That and you're slippery wet~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowa" "Keep going">><</regButton>> <<regButton "akane2-rcowb" "Make her squat">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-rcowb]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/rcowb1.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ It's so much deeper~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowa" "Repeat">><</regButton>> <<regButton "akane2-doga" "Doggy">><</regButton>> <<regButton "akane2-misa" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-doga]][[akane2-misa]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>Ahhh~ Your cum is a great lubricant~ <</dialog>> <<dialog "You">>That and you're slippery wet~ <</dialog>> <div class="button-row"> <<regButton "akane2-doga" "Keep going">><</regButton>> <<regButton "akane2-dogb" "Faster">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-dogb]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>You look so beautiful, Akane. <</dialog>> <<dialog "Akane" "student">>Ahhh~ We're like a married couple~ <</dialog>> <div class="button-row"> <<regButton "akane2-misa" "Keep going">><</regButton>> <<regButton "akane2-misb" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-misb]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/dogb.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ It feels so good, $player.name~ <</dialog>> <div class="button-row"> <<regButton "akane2-doga" "Repeat">><</regButton>> <<regButton "akane2-rcowa" "Reverse Cowgirl">><</regButton>> <<regButton "akane2-misa" "Missionary">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/akane/akane2/misb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Akane" "student">>Ahhh~ That's it~ Fuuuck~ Take meeee~ <</dialog>> <<dialog "You">>Ahh~ I can't stop~ I might get addicted too~ <</dialog>> <div class="button-row"> <<regButton "akane2-misa" "Slow down">><</regButton>> <<regButton "akane2-misb" "Keep going">><</regButton>> <<regButton "akane2-rcowa" "Reverse Cowgirl">><</regButton>> <<regButton "akane2-doga" "Doggy">><</regButton>> <<regButton "akane2-cum2" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-cum2]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/cum2.mp4" type="video/mp4"> </video> <<dialog "Akane" "student">>Ahhh~ You came inside me twice... Now you really will have to take responsibility~ <</dialog>> <<dialog "You">>Wh-what!? <</dialog>> <<dialog "Akane" "student">>Take care of me~ <</dialog>> <div class="button-row"> <<regButton "akane2-end1" "She puts her coat back on">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[akane2-end1]] <</if>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Mmm~ Where's my coat? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/akane/akane2/end1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "akane2-end2" "She cleans you up">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/shiori-poster.jpg" style="max-width: 60%;"> <<dialog "You">>Hm? She looks familiar... <</dialog>> <div class="button-row"> <<regButton "business-area" "Shrug">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $shiori.quest = 2>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>... <</dialog>> <<dialog "Shiori" "student">>... <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Shiori" "student">>... <</dialog>> <<dialog "You">>AHH! You! I saw you on a poster in a clothing store! <</dialog>> <<dialog "Shiori" "student">>... <</dialog>> <<dialog "You">>So... Are you like a model or something? <</dialog>> <<dialog "Shiori" "student">>Can you not talk to me? <</dialog>> <img src="img/misc/shiori-angry.jpg" style="max-width: 60%;"> <<dialog "You">>Wha? I'm sorry. Did I offend you? <</dialog>> <<dialog "Shiori" "student">>Look. Leave me alone. <</dialog>> <<dialog "You">>Jeez. Aight. <i>What a bitch...</i> <</dialog>> <div class="button-row"> <<regButton "classroom" "Leave her alone">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "shiori-profile">> <<set $shiori.quest = 3>>
<div class="bg alley"></div> <div class="content-panel"> <<enemy "ranker4" "Creep 1" "alley" "left" "enemies">>Aren't you Kanashi? The model? <</enemy>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>Ohh~ It really is her! Why don't you keep us company at the karaoke? <</enemy>> <<dialog "Shiori">>P-please leave me alone... I have a boyfriend... <</dialog>> <<enemy "ranker4" "Creep 1" "alley" "left" "enemies">>Ehhh? Are you saying we're harrassing you? We just wanted you to come drink with us. Why do you have to bring up your boyfriend? <</enemy>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>This stuck up bitch is insulting us! Just because you're a model, you think you're all that? <</enemy>> <<dialog "Shiori">>N-no! <</dialog>> <<enemy "ranker4" "Creep 1" "alley" "left" "enemies">>Just come with us, bitch! <</enemy>> <<dialog "Shiori">>P-please... <</dialog>> <div class="button-row"> <<regButton "shiori3-2" "Intervene">><</regButton>> </div> </div> <<set $profile to "shiori-profile">> <<if false>> /* connected passages */ [[shiori3-2]] <</if>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>Babe! Did you wait long? <</dialog>> <<enemy "ranker4" "Creep 1" "alley" "left" "enemies">>Hah? <</enemy>> <<dialog "Shiori">>H-huh? <</dialog>> <<dialog "You">>Who the fuck are you? Are you hassling my girlfriend? <</dialog>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>Look at this little shit... You wanna get beaten up? <</enemy>> <<dialog "You">>What the fuck did you just say? <</dialog>> <<enemy "ranker4" "Creep 1" "alley" "left" "enemies">>Come here, fucker. <</enemy>> <img src="img/misc/shiori-creep.jpg" style="max-width: 60%;"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>></h1> <<enemy "ranker4" "Creep 1" "alley" "left" "enemies">>Ack... <</enemy>> <<dialog "You">>Idiot. You okay, babe? <</dialog>> <<dialog "Shiori">>Y-yes... <</dialog>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>F-fuck... <</enemy>> <div class="button-row"> <<regButton "shiori3-3" "Some other idiots enter the alley">><</regButton>> </div> </div> <<set $profile to "shiori-profile">> <<set $shiori.love = $shiori.love + 3>> <<if false>> /* connected passages */ [[shiori3-3]] <</if>>
<div class="bg alley"></div> <div class="content-panel"> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>Heyyy~ We've been looking for you... <</enemy>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>L-leader! HAHA! You're fucked now, you bastard. Reinforcements have arrived! <</enemy>> <<enemy "ranker1" "Creep 3" "alley" "left" "enemies">>Ehhh? Why is he knocked out? Did this fucker do this? <</enemy>> <<enemy "ranker3" "Creep 4" "alley" "left" "enemies">>Kekeke~ Was he protecting his girlfriend or something? <</enemy>> <<dialog "Shiori">>O-oh no... <</dialog>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>Hahhh? Someone beat up one of our guys? Who the fuck is it? <</enemy>> <div class="button-row"> <<regButton "shiori3-4" "Intimidate">><</regButton>> </div> </div> <<set $profile to "shiori-profile">> <<if false>> /* connected passages */ [[shiori3-4]] <</if>>
<div class="bg alley"></div> <div class="content-panel"> <img src="img/misc/shiori-creep2.jpg" style="max-width: 40%;"> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">><i>Sh-shit... It's S-sawada $player.name!</i> <</enemy>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>HAHAHA! You're fucked, bitch. Then we're going to take your bitch. <</enemy>> <<enemy "ranker1" "Creep 3" "alley" "left" "enemies">>Pfft~ Poor little bastard. Your gf looks pretty too~ We're going to have fun later, miss. <</enemy>> <<dialog "Shiori">>N-no... <</dialog>> <<enemy "ranker3" "Creep 4" "alley" "left" "enemies">>Kekeke~ I'm excited. We're going to ra- <</enemy>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>SHUT THE FUCK UP! <</enemy>> <<enemy "ranker3" "Creep 4" "alley" "left" "enemies">>Wh-what? <</enemy>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>Sawada $player.name. These guys didn't know. <</enemy>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">><i>F-fuck... That's Sawada?</i> <</enemy>> <<dialog "You">>Babe, what do you think? <</dialog>> <<dialog "Shiori">>U-um... <</dialog>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>Hehe~ Come on, miss. It was just a harmless prank. You understand, right? Honestly, Sawada. Your girlfriend is a bombshell! You should- <</enemy>> <div class="button-row"> <<regButton "shiori3-5" "Interrupt">><</regButton>> </div> </div> <<set $profile to "shiori-profile">> <<if false>> /* connected passages */ [[shiori3-5]] <</if>>
<div class="bg alley"></div> <div class="content-panel"> <img src="img/misc/shiori-creep3.jpg" style="max-width: 60%;"> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">><i>*Huff* *Huff* *Huff*</i> <</enemy>> <<enemy "ranker5" "Creep 2" "alley" "left" "enemies">>B-boss... <</enemy>> <<enemy "ranker1" "Creep 3" "alley" "left" "enemies">>... <</enemy>> <<enemy "ranker3" "Creep 4" "alley" "left" "enemies">>... <</enemy>> <div class="button-row"> <<regButton "shiori3-6" "Threaten">><</regButton>> </div> </div> <<set $profile to "shiori-profile">> <<if false>> /* connected passages */ [[shiori3-6]] <</if>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>Are you kidding me? You're getting buddy-buddy with my girlfriend? Do you wanna die? <</dialog>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>N-no... I'm sorry... <</enemy>> <<enemy "ranker3" "Creep 4" "alley" "left" "enemies">><i>B-boss is the strongest in our school... He beat him just like that? Is there another monster in Aoba? Sai Kyogaku was bad enough...</i> <</enemy>> <<dialog "You">>Does it hurt? <</dialog>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">>Y-yes... <</enemy>> <<dialog "You">>Imagine how I'd react if something worse happens to her. My girlfriend frequents this place, and I reaaally hope nobody bothers her. If I hear that even a strand of her hair was touched, even without proof, I'll assume you did it. And when I find you, I'll break your legs. Understand? <</dialog>> <<enemy "creep-leader" "Creep Leader" "alley" "left" "enemies">><i>That's ridiculous. We're basically her bodyguards now.</i> I-I understand... <</enemy>> <<dialog "You">>Let's go, babe. <</dialog>> <<dialog "Shiori">>O-okay... <</dialog>> <div class="button-row"> <<regButton "shiori3-7" "Go to a cafe">><</regButton>> </div> </div> <<set $profile to "shiori-profile">> <<if false>> /* connected passages */ [[shiori3-7]] <</if>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Here. Coffee. <</dialog>> <<dialog "Shiori">>... <</dialog>> <<dialog "You">>Are you okay? That was dangerous. <</dialog>> <<dialog "Shiori">>...Yeah. <i>H-he's going to ask for something in return. H-he won't harrass me, will he?</i> <</dialog>> <img src="img/misc/shiori-drinking.jpg" style="max-width: 20%;"> <<dialog "You">>Geez. You're shaking. Those fucking bastards. <</dialog>> <<dialog "Shiori">>... <</dialog>> <<dialog "You">><i>*sigh*</i> Still ignoring me, huh? I don't know what I did that offended you. I thought it was because I said out loud that you were a model, but I can't be the only person who has seen your posters. Those assholes should leave you alone now since I threatened them. Still, take care. Bye. <</dialog>> <<dialog "Shiori">>What? W-wait! Are you not going to ask for a reward? <</dialog>> <<dialog "You">>Pfft. What kind of person do you think I am? <</dialog>> <<dialog "Shiori">>W-well... <</dialog>> <<dialog "You">>They were right. You are pretty stuck up. Well, I don't want anything from you. I saved you because you were in trouble. <</dialog>> <<dialog "Shiori">>I-I... I thought you wanted to get closer to me? <</dialog>> <<dialog "You">>Why would I want that? You haven't even thanked me for saving you yet. <</dialog>> <<dialog "Shiori">>A-ah. Th-thank you... <</dialog>> <<dialog "You">>Great. That's all I wanted. Bye. <</dialog>> <<dialog "Shiori">>... <</dialog>> <div class="button-row"> <<regButton "business-area" "Leave her alone">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "shiori-profile">> <<set $shiori.quest = 4>> <<backend>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru5/haru5-1.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>Here, have mandarins. Why wouldn't you get a drink? <</dialog>> <<dialog "You">>Haru~ Don't you know? These mandarins have orange juice in them. If you think about it, it's a chewable drink. <</dialog>> <<dialog "Haru" "student">>Pfft. Hahaha. Just eat your mandarins. <</dialog>> <hr> Shiori approaches you with a can of energy drink. <h1><<glow "0.4px #ffff50" "8px #fffc00" "18">>Energy replenished.<</glow>></h1> <hr> <<dialog "Shiori" "student">>Hi, Haru-san. Can I talk to $player.name for a moment? <</dialog>> <<dialog "Haru" "student">><i>*Sh-shiori? Isn't she a model? What's her relationship with $player.name?*</i> U-um... O-okay. <</dialog>> <<dialog "You">>Haru... <</dialog>> <<dialog "Haru" "student">>It's fine, $player.name... It seems important. I'll come over to your place later, okay? <</dialog>> <<dialog "Shiori" "student">><i>*Sh-she's coming over to his place?*</i> <</dialog>> <<dialog "You">>Sounds great. I'll see you later! <</dialog>> <div class="button-row"> <<regButton "shiori4-2a" "Read the plot">><</regButton>> <<regButton "shiori4-2b" "I don't care about the plot">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-2a]][[shiori4-2b]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/2.mp4" type="video/mp4"> </video> <<dialog "You">>What's up? <</dialog>> <<dialog "Shiori" "student">>Um... I just wanted to apologize to you. For how I acted... <</dialog>> <<dialog "You">>Oh. You were pretty shaken up so it's understandable. To be honest, I lost my cool back there too. I'm sorry. <</dialog>> <<dialog "Shiori" "student">>No! Not just that... I ignored you when you spoke to me before. <</dialog>> <<dialog "You">>Haha. Yeah, that did happen. <</dialog>> <<dialog "Shiori" "student">>I can explain! <</dialog>> <<dialog "You">>Y-you really don't have to. <</dialog>> <<dialog "Shiori" "student">>No, I want to. <</dialog>> <<dialog "You">><i>*sigh*</i> Alright. I'll hear you out. <</dialog>> <<dialog "Shiori" "student">>As you found out, I'm a model. I wasn't being condescending or anything when I was cold towards you. Actually, models are usually self-conscious about how they look. Me included. <</dialog>> <<dialog "You">>Really? <</dialog>> <<dialog "Shiori" "student">>Our looks are literally our livelihood. We constantly think we're ugly when we fail auditions or just get scrutinized by random people we don't even know. It's exhausting. <</dialog>> <<dialog "You">>Then why did you act that way? <</dialog>> <<dialog "Shiori" "student">>Well... As you've also seen, I get harassed too. Every guy who found out about my job either started stalking me or date me to brag about dating a model... <</dialog>> <<dialog "You">>That sucks... <</dialog>> <<dialog "Shiori" "student">>It made me develop a general mistrust of men... But... I shouldn't have judged you based on other people's actions. I'm sorry... <</dialog>> <<dialog "You">>Hmm... You like ice cream? <</dialog>> <<dialog "Shiori" "student">>Eh? <</dialog>> <div class="button-row"> <<regButton "shiori4-3a" "Get ice cream">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-3a]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/3.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>It's good. <</dialog>> <<dialog "You">>Right? <</dialog>> <<dialog "Shiori" "student">>So... Are we good? <</dialog>> <<dialog "You">>You know. I can sort of sympathize with you. <</dialog>> <<dialog "Shiori" "student">>You can? <</dialog>> <<dialog "You">>You saw what happened when I threatened those guys. I'm a little famous too, you know. <</dialog>> <<dialog "Shiori" "student">>Oh that's right! The leader recognized you. <</dialog>> <<dialog "You">>I've only been here for less than a month. I'm not proud of it but I get into fights a lot. I'm strong after all. <</dialog>> <<dialog "Shiori" "student">>Yeah... I saw. I was so scared that you'd get beaten up then I would get assaulted too but you protected me. <</dialog>> <<dialog "You">>I am capable of violence, which brings more violence to me. It's annoying. But it's how I protect myself and everyone around me. That's why I like that I'm strong. <</dialog>> <<dialog "Shiori" "student">>I see. <</dialog>> <<dialog "You">>That's also why I don't want you to hate your job. Yeah, it comes with annoying guys who swarm around you, but part of your job is to learn to adapt. Don't be meek. Confront them. You could have yelled back then too. <</dialog>> <div class="button-row"> <<regButton "shiori4-4a" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-4a]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/4.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>... If I yelled, I'd get accused of insulting them. <</dialog>> <<dialog "You">>They were literally preventing you from leaving that alley. Don't be afraid to call them out. <</dialog>> <<dialog "Shiori" "student">>... <</dialog>> <<dialog "You">>Also, don't confuse boundaries with having unbreakable walls up. That's how you become lonely. <</dialog>> <<dialog "Shiori" "student">>It's not that easy to socialize. I've been betrayed countless times. <</dialog>> <<dialog "You">>Well, you're famous. Of course you'd attract unwanted attention. You gotta find your own people, not settle with dumbasses who approach you. Look at me! I get into fights yet I am friends with the Class Representative. <</dialog>> <<dialog "Shiori" "student">>H-haru-san? Yeah... She usually doesn't socialize too. <</dialog>> <<dialog "You">>She's an ice queen like you. <</dialog>> <<dialog "Shiori" "student">>A-are you two... like... you know... <</dialog>> <<dialog "You">>Dating? Nah, we're just friends. <</dialog>> <<dialog "Shiori" "student">>R-really? That's great. <</dialog>> <<dialog "You">>Huh? Why? <</dialog>> <<dialog "Shiori" "student">>W-w-w-w-well... Uhm... That's it! I wanted to ask you to pretend to be my boyfriend on weekends when I go to work. If you were dating Haru-san, you'd probably refuse. Haha. I'll even pay you! <</dialog>> <<dialog "You">>Pfft. Hahahaha! Here, save my number then contact me when you need to go to work. I'm free on weekends anyway. <</dialog>> <<dialog "Shiori" "student">>R-really? <i>*O-oh no... I blurted it out. I don't have the money to pay him.*</i> H-how much do you charge? <</dialog>> <<dialog "You">>HAHAHAHA! You don't have to pay me. <</dialog>> <<dialog "Shizu">>Good afternoon, class! Go back to your seats, please. <</dialog>> <<dialog "You">>Class is starting. I'll see you later okay? <</dialog>> <<dialog "Shiori" "student">>O-okay! <</dialog>> <div class="button-row"> <<regButton "shiori4-5" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-5]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/5.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>I think... I finally have a friend.</i> <</dialog>> <<dialog "Haru">>Hey... Uhm... So what did you talk about? <</dialog>> <<dialog "You">>We had a misunderstanding when we bumped into each other last weekend. She wanted to apologize. <</dialog>> <<dialog "Haru">>Ohhh! So that's what it was. Thank goodness. <</dialog>> <<dialog "You">>Ohh? Is Miss Class Rep jealous? <</dialog>> <<dialog "Haru">>Wh-what? N-no! I just know that you're a perv and maybe she's mad at you because you molested her too! <</dialog>> <<dialog "You">>That's harsh, Haru... <</dialog>> <<dialog "Haru">>Hmph! <</dialog>> <<dialog "Shiori" "student">><i>He's awfully close to the class representative... Why does that make me... sad?</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +10<</glow>></h1> <div class="button-row"> <<regButton "classroom" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $profile to "shiori-profile">> <<set $shiori.love = $shiori.love + 10>> <<set $shiori.quest = 5>> <<set $hour = 13>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/2.mp4" type="video/mp4"> </video> <<dialog "You">>What's up? <</dialog>> <<dialog "Shiori" "student">>Um... I just wanted to apologize to you. For how I acted... <</dialog>> <<dialog "You">>Oh. You were pretty shaken up so it's understandable. To be honest, I lost my cool back there too. I'm sorry. <</dialog>> <<dialog "Shiori" "student">>For what happened before too. I'm sorry. I get harassed by guys a lot just because I'm a model. <</dialog>> <<dialog "You">>That sucks... <</dialog>> <<dialog "Shiori" "student">>It made me develop a general mistrust of men... But... I shouldn't have judged you based on other people's actions. I'm sorry... <</dialog>> <<dialog "You">>Hmm... You like ice cream? <</dialog>> <<dialog "Shiori" "student">>Eh? <</dialog>> <div class="button-row"> <<regButton "shiori4-3b" "Get ice cream">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-3b]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/3.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>It's good. <</dialog>> <<dialog "You">>Right? <</dialog>> <<dialog "Shiori" "student">>So... Are we good? <</dialog>> <<dialog "You">>You know. I can sort of sympathize with you. <</dialog>> <<dialog "Shiori" "student">>You can? <</dialog>> <<dialog "You">>You saw what happened when I threatened those guys. I'm a little famous too, you know. <</dialog>> <<dialog "Shiori" "student">>Oh that's right! The leader recognized you. <</dialog>> <<dialog "You">>I am capable of violence, which brings more violence to me. It's annoying. But it's how I protect myself and everyone around me. That's why I like that I'm strong. <</dialog>> <<dialog "Shiori" "student">>I see. <</dialog>> <div class="button-row"> <<regButton "shiori4-4b" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-4b]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori4/4.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>Uhm... I want you to pretend to be my boyfriend on weekends when I go to work. I'll even pay you! <</dialog>> <<dialog "You">>Sure. I'm free on weekends anyway. <</dialog>> <<dialog "Shiori" "student">>R-really? H-how much do you charge? <</dialog>> <<dialog "You">>You don't have to pay me. <</dialog>> <<dialog "Shizu">>Good afternoon, class! Go back to your seats, please. <</dialog>> <<dialog "You">>I'll see you later okay? <</dialog>> <<dialog "Shiori" "student">>O-okay! <</dialog>> <div class="button-row"> <<regButton "shiori4-5" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori4-5]] <</if>> <<set $profile to "shiori-profile">>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Hello? <</dialog>> <<dialog "Shiori">>Hello! I have a shoot today. Can you come? <</dialog>> <<dialog "You">>I'll be there. <</dialog>> <<dialog "Shiori">>Great! See you! <</dialog>> <div class="button-row"> <<if $nirei.quest == 6>><<regButton "shiori6a-end4" "Skip to end">><</regButton>><</if>> <<regButton "shiori5-crud" "Meet her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shiori5-2]][[shiori5-crud]][[shiori6-1]] <</if>> <<set $profile to "shiori-profile">> <<set $hidenav = 1>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/meet1.mp4" type="video/mp4"> </video> <<dialog "You">>Hey! Have you been waiting long? <</dialog>> <<dialog "Shiori">>Heeey! Nope. We have time. <</dialog>> <<dialog "You">>Cool! Wanna grab a bite? <</dialog>> <<dialog "Shiori">>Sure! <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shiori5-3" "Walk">><</regButton>> </div> </div> <<if false>> [[shiori5-3]] <</if>> <<set $location to "Business Area">> <<set $shiori.love = $shiori.love + 1>> <<set $hour = 12>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk1.mp4" type="video/mp4"> </video> <<dialog "You">>Woah... Guys do stare at you in the street. I feel like a secret agent protecting a client. <</dialog>> <<dialog "Shiori">>See? Now you know why I asked you to come with me. It's scary, you know? <</dialog>> <<dialog "You">>Yeah... <</dialog>> <div class="button-row"> <<if $nirei.quest == 6>><<regButton "shiori6a-end4" "Skip to end">><</regButton>><</if>> <<regButton "shiori5-4" "Have lunch">><</regButton>> </div> </div> <<if false>> [[shiori5-4]] <</if>> <<set $location to "Business Area">> <<backend>> <<set $profile to "shiori-profile">> <<script>> incrementTime(0, 10); <</script>> <</backend>> <<set $hidenav = 1>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/eat1.mp4" type="video/mp4"> </video> <<dialog "You">>That looks good. I'm starving... <</dialog>> <<dialog "Shiori">>Let's dig in~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shiori5-5" "Leave">><</regButton>> </div> </div> <<if false>> [[shiori5-5]] <</if>> <<set $location to "Cafe">> <<set $shiori.love = $shiori.love + 1>> <<backend>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk1.mp4" type="video/mp4"> </video> <<dialog "You">>I'm stuffed~ <</dialog>> <<dialog "Shiori">>Me too~ <</dialog>> <<dialog "You">>Is that okay? You're going to a photoshoot. <</dialog>> <<dialog "Shiori">>C-crap... I didn't think about that. Usually I just snack in the studio. <</dialog>> <<dialog "You">>You don't get lunch? <</dialog>> <<dialog "Shiori">>N-no... I'm worried I'd get recognized. Sometimes the studio has catering. Sometimes we just order food. Most of the time, I just snack... <</dialog>> <div class="button-row"> <<regButton "shiori5-6" "You arrive at the studio">><</regButton>> </div> </div> <<if false>> [[shiori5-6]] <</if>> <<set $location to "Business Area">> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/ready.mp4" type="video/mp4"> </video> <<dialog "You">>Is it okay for me to be here? <</dialog>> <<dialog "Shiori">>Yeah, why not? You're just watching. I'm more worried you'd get bored. <</dialog>> <<dialog "You">>I get to look at you the whole day. How would that be boring? <</dialog>> <<dialog "Shiori">>G-geez... That's embarrassing... <</dialog>> <<dialog "You">>Ooh. If you blush, Miss Make Up Artist wouldn't have to put any on you~ <</dialog>> <<dialog "Shiori">>Pfft~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $shiori.quest > 5 && $shiori.love >= 55>><<regButton "shiori6a-1" "Continue">><</regButton>><<else>><<regButton "shiori5-7" "Continue">><</regButton>><</if>> </div> </div> <<if false>> [[shiori5-7]][[shiori6a-1]] <</if>> <<set $location to "Studio">> <<set $shiori.love = $shiori.love + 1>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shoot1/'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Wow... She's like a different person. What a pro. <</dialog>> <hr> They finish up. <hr> <<dialog "Shiori">>Heyy~ Did you wait too long? <</dialog>> <<dialog "You">>Nahh. I had fun watching. You looked great! <</dialog>> <<dialog "Shiori">>Thank you... <</dialog>> <<dialog "You">>Let's go. I'll walk you home. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shiori5-8" "Leave">><</regButton>> </div> </div> <<if false>> [[shiori5-8]] <</if>> <<set $location to "Studio">> <<set $shiori.love = $shiori.love + 1>> <<backend>> <<script>> incrementTime(3, 0); <</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk2.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I'm tired~ <</dialog>> <<dialog "You">>Good work today! <</dialog>> <<dialog "Shiori">>I had fun walking around in public today though~ I wasn't anxious the entire time! <</dialog>> <<dialog "You">>Yeah. That was a great date~ <</dialog>> <<dialog "Shiori">>Wh-what? Date? <</dialog>> <<dialog "You">>O-oh. Damn. That was insensitive of me. I was just teasing you. I'm sorry. <</dialog>> <<dialog "Shiori">>Ah. N-no... You don't need to apologize. <i>*It wasn't insensitive though...*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $shiori.quest >= 7>><<regButton "shiori6a-end4" "You arrive at her place">><</regButton>><<else>> <<regButton "shiori5-9" "You arrive at her place">><</regButton>> <</if>> </div> </div> <<if false>> [[shiori5-9]] <</if>> <<set $location to "Business Area">> <<set $shiori.love = $shiori.love + 1>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk3.mp4" type="video/mp4"> </video> <<dialog "Shiori">>We're here! <</dialog>> <<dialog "You">>Oh. We're here... <</dialog>> <<dialog "Shiori">>Thanks again for escorting me. <</dialog>> <<dialog "You">>Sure. Let me know when your next shoot is! <</dialog>> <<dialog "Shiori">>I will. Bye, $player.name. I look forward to our next date~ <</dialog>> <<dialog "You">>H-huh? <</dialog>> <<dialog "Shiori">>Payback~ <i>*blushes*</i> <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Residential Area">> <<set $shiori.love = $shiori.love + 1>> <<if $shiori.quest == 5>><<set $shiori.quest = 6>><</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<backend>> <<set $tekwar to "Fight " + ($tekijime.resarea == 36 ? "Kichiro" : "Level " + $tekijime.resarea + " Tekijime Student")>> <</backend>><<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>It's so quiet here. <</dialog>> <div class="button-row"><<if $shiori.quest >= 6 && $daystate == "Morning" && $nirei.quest == 1>><<regButton "nirei1-1" "Is that Shiori?">><</regButton>><</if>><<if $player.quest == 3 && $tekijime.resarea <= 36>><<regButton "tekresarea-crud" $tekwar>><</regButton>><</if>></div> <div class="button-row"> <<imgButton "home" "img/neon-buttons/home.jpg">> <<if $miku.quest >= 3>><<imgButton "miku-room" "img/neon-buttons/miku-room.jpg">><</if>><<if $shiori.quest > 6>><<imgButton "shiori-home" "img/neon-buttons/shiori-home.jpg">><</if>> <<if $haru.quest >= 9 && false>><<imgButton "haru-house" "img/neon-buttons/haru-home.png">><</if>> <<if $nirei.quest >= 5 && $nirei.quest != 6>><<imgButton "nirei-home" "img/neon-buttons/nirei-home.jpg">><</if>> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> </div> </div> <<backend>> <<set $location to "Business Area">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <<set $inbattle = 0>> [[haru-house]] <</backend>>
<<if $shiori.quest > 5 && $hour == 11 && $minute >= 45>> <<goto "shiori6-1">> <<else>> <<goto "shiori5-2">> <</if>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/meet1.mp4" type="video/mp4"> </video> <<dialog "You">>Hey! I'm so sorry I'm late. <</dialog>> <<dialog "Shiori">>Hey... You don't look okay. <</dialog>> <<dialog "You">>I'm okay... I just didn't get enough sleep. Did you eat yet? <</dialog>> <<dialog "Shiori">>Not yet... <</dialog>> <<dialog "You">>Aww, man. I'm sorry. <</dialog>> <<dialog "Shiori">>It's okay, but we should go. I'm going to be late. <</dialog>> <<regButton "shiori6-2" "Walk">><</regButton>> </div> </div> <<if false>> [[shiori6-2]] <</if>> <<set $location to "Business Area">> <<set $hour = 12>> <<set $minute = 45>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk1.mp4" type="video/mp4"> </video> <<dialog "You">>We're here. Go on ahead. I'll go get you lunch. <</dialog>> <<dialog "Shiori">>Heyy, no. You don't have to... <</dialog>> <<dialog "You">>No. Let me take care of you. <</dialog>> <<dialog "Shiori">><i>*blushes*</i> O-okay... <</dialog>> <<dialog "You">>I'll be quick. Go ahead. You'll be late. <</dialog>> <div class="button-row"> <<regButton "shiori6-3" "Get Lunch">><</regButton>> </div> </div> <<if false>> [[shiori6-3]] <</if>> <<set $location to "Business Area">> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/ready.mp4" type="video/mp4"> </video> <<dialog "You">>Hey, I'm back. Here's your lunch. I got youuuu... A greek salad because you like olives... Miso Soup to warm your stomach... Poached Salmon for protein aaand bottled water. I got light dishes since you're doing a photoshoot. Enjoy~ <</dialog>> <<dialog "Shiori">>W-wow... You really thought this through, huh? <</dialog>> <<dialog "You">>I told you I'd take care of you. <</dialog>> <<dialog "Shiori">><i>*blushes*</i> Wait. Where's your food? <</dialog>> <<dialog "You">>Actually... If you don't mind. Can I nap? My eyes are so heavy. <</dialog>> <<dialog "Shiori">>Sure... I'll wake you up when we're done. <</dialog>> <<dialog "You">>Thanks, Shiori. <</dialog>> <<dialog "Shiori">><i>I should be the one thanking you.</i> <</dialog>> <<dialog "You">>What was that? <</dialog>> <<dialog "Shiori">>Nothing! Go nap. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shiori6-4" "Nap">><</regButton>> </div> </div> <<if false>> [[shiori6-4]] <</if>> <<set $location to "Studio">> <<set $shiori.love = $shiori.love + 1>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg studio"></div> <div class="content-panel"> <h1>They finish up</h1> <hr> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro1.mp4" type="video/mp4"> </video> <<dialog "You">>Ugh... For how long was I out? <</dialog>> <<dialog "Shiori">>You slept for 6 hours. <</dialog>> <<dialog "You">>Oh... Shiori... You look beautiful. <</dialog>> <<dialog "Shiori">><i>*blushes*</i> Thank you. <</dialog>> <<dialog "You">>Where's the crew? <</dialog>> <<dialog "Shiori">>They all left. <</dialog>> <<dialog "You">>Aw, man. Why didn't you wake me up? <</dialog>> <<dialog "Shiori">>You were sleeping so soundly~ <</dialog>> <<dialog "You">>Damn... I'm sorry. <</dialog>> <<dialog "Shiori">>It's fine. You think my kimono is beautiful? Come take a picture! I won't charge you~ <</dialog>> <div class="button-row"> <<regButton "shiori6-5" "Okay">><</regButton>> </div> </div> <<if false>> [[shiori6-5]] <</if>> <<set $location to "Studio">> <<backend>> <<script>> incrementTime(6, 0); <</script>> <</backend>>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro2.mp4" type="video/mp4"> </video> <<dialog "You">>Damn. You look so elegant. <</dialog>> <<dialog "Shiori">>Really? I think this kimono is sexy though. <</dialog>> <<dialog "You">>Oh, because it's only half. <</dialog>> <<dialog "Shiori">>No, because of this. <</dialog>> <div class="button-row"> <<regButton "shiori6-6" "She shows off her leg">><</regButton>> </div> </div> <<if false>> [[shiori6-6]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro3.mp4" type="video/mp4"> </video> <<dialog "Shiori">>Isn't this slit sexy? <</dialog>> <<dialog "You">>Y-yeah... <</dialog>> <div class="button-row"> <<regButton "shiori6-7" "She sits down">><</regButton>> </div> </div> <<if false>> [[shiori6-7]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro4.mp4" type="video/mp4"> </video> <<dialog "Shiori">>Don't stare too much~ <</dialog>> <<dialog "You">>Oh. Sorry... <</dialog>> <div class="button-row"> <<regButton "shiori6-8" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6-8]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro5.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I need to tell you something. <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Shiori">>I'm angry at myself... A little at you. <</dialog>> <<dialog "You">>Wh-why is that? <</dialog>> <div class="button-row"> <<regButton "shiori6-9" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6-9]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro6.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I finally found an actual friend but then you ruined it by actually being so sweet. <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Shiori">>You escort me with nothing in return. You wait patiently for me. You still show up even though you barely have any sleep. You even know the food I like while making sure it doesn't interfere with my work. You're the perfect boyfriend. <</dialog>> <<dialog "You">>Uhm... Thanks? <</dialog>> <div class="button-row"> <<regButton "shiori6-10" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6-10]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/intro7.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I'm mad at myself because... I finally found someone who's not trying to get in my pants, but then I find myself wanting to get in theirs. <</dialog>> <<dialog "You">>Sh-shiori... <</dialog>> <<dialog "Shiori">>I'm mad at you for making me feel this way. I'm even annoyed that you seem so close to Haru-san. <</dialog>> <<dialog "You">>Are you sure about this, Shiori? <</dialog>> <<dialog "Shiori">>I've never been so sure in my entire life. I will make you take responsibility. <</dialog>> <div class="button-row"> <<regButton "shiori6-bja" "Blowjob">><</regButton>> </div> </div> <<if false>> [[shiori6-bja]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/bja'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Damn... I never thought this would ever happen. <</dialog>> <<dialog "Shiori">>Hwhy? Do you noth hike me? <</dialog>> <<dialog "You">>Of course I do. <</dialog>> <<dialog "Shiori">>Then there'sh no ploblem! <</dialog>> <div class="button-row"> <<regButton "shiori6-bja" "Keep sucking">><</regButton>> <<regButton "shiori6-bjb" "Intensify">><</regButton>> </div> </div> <<if false>> [[shiori6-bjb]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/bjb'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ Why are you so good at this? <</dialog>> <<dialog "Shiori">><i>*Gggkk* *Gggkk* *Gggk*</i> I've thoughth abvout ith foe a hwhile~ I thid my reshearch <</dialog>> <<dialog "You">>O-oh my god! It feels even better when you speak~ <</dialog>> <div class="button-row"> <<regButton "shiori6-bjb" "Keep sucking hard">><</regButton>> <<regButton "shiori6-makeout" "Make out">><</regButton>> </div> </div> <<if false>> [[shiori6-makeout]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/makeout.mp4" type="video/mp4"> </video> <<dialog "You">>Mm~ Your lips are so sweet. <</dialog>> <<dialog "Shiori">>Mmmm~ I can't believe I'm kissing you~ <</dialog>> <div class="button-row"> <<regButton "shiori6-bjc" "Blowjob">><</regButton>> </div> </div> <<if false>> [[shiori6-bjc]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/bjc'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>*Gggkk* *slurp* *Gggkk* *Gggk*</i> <</dialog>> <<dialog "You">>Ahh~ Y-your mouth is so warm~ How are you moving your tongue like thaaaaahh~ <</dialog>> <div class="button-row"> <<regButton "shiori6-bjc" "Keep sucking">><</regButton>> <<regButton "shiori6-balls" "Lick balls">><</regButton>> </div> </div> <<if false>> [[shiori6-balls]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "Shiori">>They told me not to neglect this too~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/balls'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ohhhhhh~ I have chills~ Wh-who told you that? Ahhh~ <</dialog>> <<dialog "Shiori">><i>*slurp* *slurp* *slurp*</i> <</dialog>> <div class="button-row"> <<regButton "shiori6-balls" "Keep licking">><</regButton>> <<regButton "shiori6-deep" "Deepthroat">><</regButton>> </div> </div> <<if false>> [[shiori6-deep]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "Shiori">><i>*INHAAALE*</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/deep'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Aaaahhhhhh~ I'm reaching the back of your fucking throat~ <</dialog>> <<dialog "Shiori">><i>*HHGGKK*</i> <</dialog>> <div class="button-row"> <<regButton "shiori6-deep" "Keep going">><</regButton>> <<regButton "shiori6-undress" "Cowgirl">><</regButton>> </div> </div> <<if false>> [[shiori6-undress]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "Shiori">>I can't take it anymore! I need you inside me~ I want you to be my first~ <</dialog>> <<dialog "You">>Are you su-Ahhhhh~ You're already so fucking wet, Shiori! <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/undress.mp4" type="video/mp4"> </video> <<dialog "Shiori">>AHHHH~ Th-this... It feels goood~ <</dialog>> <div class="button-row"> <<regButton "shiori6-cowa" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6-cowa]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/cowa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ Ahh~ <</dialog>> <<dialog "Shiori">>Ahhhh~ I think... Ahhhhh~ I love you~ <</dialog>> <div class="button-row"> <<regButton "shiori6-cowa" "Keep going">><</regButton>> <<regButton "shiori6-cowb" "She cums">><</regButton>> </div> </div> <<if false>> [[shiori6-cowb]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/cowb.mp4" type="video/mp4"> </video> <<dialog "Shiori">>S-something's happening. Ahhhhhh~ <</dialog>> <<dialog "You">>Are you cumming?? <</dialog>> <<dialog "Shiori">>Hnnggggggg~ Th-that felt amazing, $player.name. I want to keep going!! <</dialog>> <div class="button-row"> <<regButton "shiori6-cowa" "Cowgirl again">><</regButton>> <<regButton "shiori6-side" "Side Cowgirl">><</regButton>> <<regButton "shiori6-reva" "Reverse Cowgirl">><</regButton>> <<regButton "shiori6-misa" "Missionary">><</regButton>> </div> </div> <<if false>> [[shiori6-side]][[shiori6-reva]][[shiori6-misa]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/side'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">>Ahh~ Ahh~ I wanna experience your dick in every angle~ Ahhhh~ <</dialog>> <<dialog "You">>Shiori... You have lost your innocence~ <</dialog>> <<dialog "Shiori">>Ohhhh~ It's your fauuult!! <</dialog>> <div class="button-row"> <<regButton "shiori6-side" "Keep going">><</regButton>> <<regButton "shiori6-reva" "Reverse Cowgirl">><</regButton>> <<regButton "shiori6-misa" "Missionary">><</regButton>> <<regButton "shiori6-cowa" "Cowgirl">><</regButton>> </div> </div> <<if false>> [[shiori6-reva]][[shiori6-misa]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/reva'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">>Ahh~ Ahh~ <</dialog>> <<dialog "You">>Even your ass is perfect~ <</dialog>> <<dialog "Shiori">>Ahhhhh~ I feel something coming agaiiiin~ <</dialog>> <div class="button-row"> <<regButton "shiori6-reva" "Keep going">><</regButton>> <<regButton "shiori6-revb" "She cums">><</regButton>> </div> </div> <<if false>> [[shiori6-revb]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "You">>You've been doing all the work. Lie down.~ <</dialog>> <<dialog "Shiori">>Ahn~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/misa.mp4" type="video/mp4"> </video> <<dialog "Shiori">>Ahh~ Ahh~ Ahh~ <</dialog>> <div class="button-row"> <<regButton "shiori6-misb" "Faster">><</regButton>> </div> </div> <<if false>> [[shiori6-misb]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "Shiori">>Hnnnnngggggg~ I'm... gonna... lose my mind~ Ahhhhhh~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/revb.mp4" type="video/mp4"> </video> <<dialog "You">>Holy shit, you're cumming so hard. <</dialog>> <<dialog "Shiori">>I... I want more~ <</dialog>> <div class="button-row"> <<regButton "shiori6-misa" "Missionary">><</regButton>> <<regButton "shiori6-reva" "Reverse Cowgirl">><</regButton>> <<regButton "shiori6-side" "Side Cowgirl">><</regButton>> <<regButton "shiori6-cowa" "Cowgirl">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "You">>I'm speeding up. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6/misb'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">>AHHHH~ AHHHH~ AHHHHHH~ I came agaaaain~ I love youuuu~ <</dialog>> <div class="button-row"> <<regButton "shiori6-misb" "Keep going">><</regButton>> <<regButton "shiori6-hard" "Fuck Harder">><</regButton>> </div><div class="button-row"> <<regButton "shiori6-reva" "Reverse Cowgirl">><</regButton>> <<regButton "shiori6-side" "Side">><</regButton>> <<regButton "shiori6-cowa" "Cowgirl">><</regButton>> </div> </div> <<if false>> [[shiori6-hard]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/hard.mp4" type="video/mp4"> </video> <<dialog "Shiori">>AAAHHHHH~ S-slow down a biiit~ I'm going crazyyyy~ <</dialog>> <<dialog "You">>I'm cumming, Shiori! <</dialog>> <<dialog "Shiori">> Cum for meeee~ <</dialog>> <div class="button-row"> <<regButton "shiori6-cum" "Cum">><</regButton>> </div> </div> <<if false>> [[shiori6-cum]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/cum.mp4" type="video/mp4"> </video> <<dialog "You">>Ahhh~ Right on your pretty face~ <</dialog>> <<dialog "Shiori">>Ahhh~ Th-that... was amazing... <</dialog>> <div class="button-row"> <<regButton "shiori6-clean" "Clean">><</regButton>> </div> </div> <<if false>> [[shiori6-clean]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/clean.mp4" type="video/mp4"> </video> <<dialog "You">>Clean it up for me. <</dialog>> <<dialog "Shiori">>Okay~ <i>*nom*</i> <</dialog>> <div class="button-row"> <<regButton "shiori6-end" "End">><</regButton>> </div> </div> <<if false>> [[shiori6-end]] <</if>> <<set $location to "Studio">>
<<backend>> <<set $passargs = {passage: "res-area", text: "Take her home"}>> <<if $shiori.quest == 6>> <<set $shiori.quest = 7>> <<set $passargs = {passage: "shiori6-end2", text: "End"}>> <</if>> <</backend>><div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6/end.mp4" type="video/mp4"> </video> <<dialog "Shiori">>Thank you. It felt really good~ <</dialog>> <<dialog "You">>It felt good for me too~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>></h1> <div class="button-row"> <<regButton $passargs.passage $passargs.text>><</regButton>> </div> </div> <<if false>> [[shiori6-end2]] <</if>> <<set $location to "Studio">> <<set $shiori.love = $shiori.love + 3>>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "Shiori">>Hey, $player.name? <</dialog>> <<dialog "You">>Yeah? <</dialog>> <<dialog "Shiori">>What are we now? <</dialog>> <<dialog "You">>I... don't know. <</dialog>> <<dialog "Shiori">>I meant what I said earlier. I love you. <</dialog>> <<dialog "You">>I... don't know if I'm there yet. But I do like you a lot. <</dialog>> <<dialog "Shiori">>... Why do you not love me? <</dialog>> <<dialog "You">>I think I supressed it. You have a deep seated trauma after all. It felt like I'd be betraying your trust if I developed any sort of feelings for you. <</dialog>> <<dialog "Shiori">>I understand. <</dialog>> <<dialog "You">>I can get there, though. Like I said, I do like you a lot. How can I not? <</dialog>> <<dialog "Shiori">>I... want you to develop feelings for me before we make our relationship official. I will wait for you, okay? <</dialog>> <<dialog "You">>Thank you. <</dialog>> <<dialog "Shiori">>Would it be okay if we continued seeing each other like this? I don't think I can let sex go now that I have experienced it, and I don't think I want to do it with anyone else but you. <</dialog>> <<dialog "You">>Of course, we can. <</dialog>> <<dialog "Shiori">>Hmph. Pervert~ <</dialog>> <<dialog "You">>Guilty as charged~ <</dialog>> <<dialog "Shiori">>Hehe. Take me home~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +7<</glow>></h1> <div class="button-row"> <<regButton "res-area" "Take her home">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Studio">> <<if $shiori.quest == 6>><<set $shiori.quest = 7>><</if>> <<backend>> <<script>> incrementTime(2, 0); <</script>> <</backend>> <<set $shiori.love = $shiori.love + 7>>
<<backend>> <<set $tempStats.maxhp = 100 + (($tempStats.level - 1) * 5) + ($tempStats.str * 2)>> <<set $tempStats.maxep = 100 + (($tempStats.level - 1) * 5) + ($tempStats.agi * 2)>> <<set $stats.maxhp = 100 + (($stats.level - 1) * 5) + ($stats.str * 2)>> <<set $stats.maxep = 100 + (($stats.level - 1) * 5) + ($stats.agi * 2)>> <</backend>><div style="white-space: nowrap; line-height:.8;"> <h1><<glow "0.5px yellow" "8px orange" 24>>Stats<</glow>> <<if $sick >= 5 && $akane.quest == 1>><<glow "0.5px pink" "8px magenta" 18>> You are sick.<</glow>><</if>> <<glow "0.5px lime" "8px green" 18>><span style="color: #cfc;">Money: $<<print $player.money>></span><</glow>> <div style="display: flex; "> <div style="width: 50%; text-align: center;"><h1><<glow "0.5px red" "8px red">><span style="color: red;">Health:</span><</glow>></h1></div> <div style="width: 50%"><h1><<glow "0.5px red" "8px red">><span style="color: red;"><<print $stats.hp>> / <<print $stats.maxhp>><<if $stats.maxhp < $tempStats.maxhp>><<print ' +'+($tempStats.maxhp-$stats.maxhp)>><</if>></span><</glow>></h1></div> </div><div style="display: flex;"> <div style="width: 50%; text-align: center;"><h1><<glow "0.5px white" "8px yellow">>Energy:<</glow>></h1></div> <div style="width: 50%"><h1><<glow "0.5px white" "8px yellow">><span><<print $stats.ep>> / <<print $stats.maxep>><<if $stats.maxep < $tempStats.maxep>><<print ' +'+($tempStats.maxep-$stats.maxep)>><</if>></span><</glow>></h1></div></div></h1><<backend>><<set $repper = $player.rep>><</backend>> <h1><<glow "0.65px cyan" "10px dodgerblue">>Reputation: <</glow>> <<bar $repper "Reputation">><</bar>><<glow "0.65px cyan" "10px dodgerblue" "16">><<print $player.rep+" / 100">><</glow>></h1>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shoot1/'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Wow... She's like a different person. What a pro. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<dialog "Photographer">>Okay, Shiori. You can take a short break then come back with the other bikini. <</dialog>> <<dialog "Shiori">>Okay~ <</dialog>> <div class="button-row"> <<regButton "shiori6a-2" "Sneak into the dressing room">><</regButton>> </div> </div> <<if false>> [[shiori6a-2]] <</if>> <<set $location to "Studio">> <<set $shiori.love = $shiori.love + 1>>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/intro1.mp4" type="video/mp4"> </video> <<dialog "You">>Heyyy! Shiori! <</dialog>> <<dialog "Shiori">>$player.name? Why are you here? <</dialog>> <<dialog "You">>Shhhhh... <</dialog>> <div class="button-row"> <<regButton "shiori6a-3" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6a-3]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "You">>You looked so beautiful back there, I want to see you up close. <</dialog>> <<dialog "Shiori">>G-geez... You're just saying that~ <</dialog>> <<dialog "You">>No way. Let me see~ <</dialog>> <<dialog "Shiori">>Ehh? W-wait... <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/intro2.mp4" type="video/mp4"> </video> <<dialog "You">>Damn <</dialog>> <div class="button-row"> <<regButton "shiori6a-4" "Kiss her">><</regButton>> </div> </div> <<if false>> [[shiori6a-4]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <<dialog "You">>I'm so lucky to have you... <</dialog>> <<dialog "Shiori">>Y-you really mean it? <</dialog>> <<dialog "You">>Of course. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/kiss1.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "shiori6a-5" "Undress her">><</regButton>> </div> </div> <<if false>> [[shiori6a-5]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/undress.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I see where this is going~ <</dialog>> <<dialog "You">>I'm glad we're in agreement <</dialog>> <div class="button-row"> <<regButton "shiori6a-6" "Grope her">><</regButton>> </div> </div> <<if false>> [[shiori6a-6]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/grope'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">>We cant~ I need to go back soon~ <</dialog>> <<dialog "You">>I can't help it. You're too beautiful. <</dialog>> <<dialog "Shiori">>How about a blowjob instead? <</dialog>> <div class="button-row"> <<regButton "shiori6a-6" "Keep groping">><</regButton>> <<regButton "shiori6a-7" "Blowjob">><</regButton>> </div> </div> <<if false>> [[shiori6a-7]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/bja'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>That feels good~ <</dialog>> <<dialog "Shiori">>Mm <i>*Ggk*</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-7" "Keep sucking">><</regButton>> <<regButton "shiori6a-8" "I wanna see your ass">><</regButton>> </div> </div> <<if false>> [[shiori6a-8]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/bjb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>*Ggk*</i> Awe you <i>*Ggk*</i> ngonnhuh cgumf shoonh? <</dialog>> <<dialog "You">>Not even close... Let's just do it. it will be quicker. <</dialog>> <<dialog "Shiori">><i>*Ggk* *Ggk* *Slurp*</i> ...Fine. <</dialog>> <<dialog "You">>Sweet~ <</dialog>> <div class="button-row"> <<regButton "shiori6a-8" "Repeat">><</regButton>> <<regButton "shiori6a-9" "Fuck her">><</regButton>> </div> </div> <<if false>> [[shiori6a-9]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/mir'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ This is... Ahhhh~ so risky...</i> <</dialog>> <<dialog "You">><i>Isn't it exciting?</i> <</dialog>> <<dialog "Shiori">><i>Hngggg~ Maybe a little~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-9" "Keep going">><</regButton>> <<regButton "shiori6a-10" "Desk Doggy">><</regButton>> <<regButton "shiori6a-11" "Chair Missionary">><</regButton>> </div> </div> <<if false>> [[shiori6a-10]][[shiori6a-11]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/desk'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ We'll get caught... Ahhhh~</i> <</dialog>> <<dialog "You">><i>We might~</i> <</dialog>> <<dialog "Shiori">><i>Ahhhh~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-10" "Keep going">><</regButton>> <<regButton "shiori6a-11" "Chair Missionary">><</regButton>> <<regButton "shiori6a-9" "Mirror Doggy">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/mis'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ Are you close? Ahhhh~</i> <</dialog>> <<dialog "You">><i>I'm... getting there~</i> <</dialog>> <<dialog "Shiori">><i>Ahhhh~ Hurryyyy~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-11" "Keep going">><</regButton>> <<regButton "shiori6a-knock" "Continue">><</regButton>> <<regButton "shiori6a-10" "Desk Doggy">><</regButton>> <<regButton "shiori6a-9" "Mirror Doggy">><</regButton>> </div> </div> <<if false>> [[shiori6a-knock]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <strong style="font-size: 30px;">*KNOCK* *KNOCK* *KNOCK*</strong> <<dialog "Photographer">>Shiori? You alright in there? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/knock1.mp4" type="video/mp4"> </video> <<dialog "You">><i>Shit!</i> <</dialog>> <<dialog "Shiori">><i>Fuck! Hide!</i> Yes! I'm fine! Just cleaning up my uhh... make up! I'll be right out! <</dialog>> <div class="button-row"> <<regButton "shiori6a-closet" "Fuck her again">><</regButton>> </div> </div> <<if false>> [[shiori6a-closet]][[shiori6a-desk]][[shiori6a-chair]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/hide'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ Hurry up~ That was scaryyy~</i> <</dialog>> <<dialog "You">><i>I'm close~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-closet" "Keep going">><</regButton>> <<regButton "shiori6a-kiss" "Kiss her">><</regButton>> <<regButton "shiori6a-desk" "Desk Doggy">><</regButton>> <<regButton "shiori6a-mirror" "Mirror Doggy">><</regButton>> </div> </div> <<if false>> [[shiori6a-kiss]][[shiori6a-mirror]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/desk'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ I wanna yell~ Ahhhh~</i> <</dialog>> <<dialog "You">><i>That would be hot.</i> <</dialog>> <<dialog "Shiori">><i>Shut ahhhhhh~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-desk" "Keep going">><</regButton>> <<regButton "shiori6a-hard" "Harder">><</regButton>> <<regButton "shiori6a-chair" "Chair Missionary">><</regButton>> <<regButton "shiori6a-closet" "Hide">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/mis'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ Why are we here agaainnn~</i> <</dialog>> <<dialog "You">><i>I wanna look at you while I fuck you~ You're so beautiful~</i> <</dialog>> <<dialog "Shiori">><i>Ahhhh~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-chair" "Keep going">><</regButton>> <<regButton "shiori6a-desk" "Desk Doggy">><</regButton>> <<regButton "shiori6a-closet" "Hide">><</regButton>> </div> </div> <<if false>> [[shiori6a-hard]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/kiss2.mp4" type="video/mp4"> </video> <<dialog "Shiori">><i>Mmmm~ I love you~</i> <</dialog>> <<dialog "You">><i>Your lips are so sweet~</i> <</dialog>> <<dialog "Shiori">><i>...</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-closet" "Keep going">><</regButton>> <<regButton "shiori6a-desk" "Desk Doggy">><</regButton>> <<regButton "shiori6a-mirror" "Mirror Doggy">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/hard1.mp4" type="video/mp4"> </video> <<dialog "Shiori">><i>Ahhh~ Are you clooose?</i> <</dialog>> <<dialog "You">><i>I'm cumming!</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-cum" "Cum">><</regButton>> </div> </div> <<if false>> [[shiori6a-cum]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/cum.mp4" type="video/mp4"> </video> <<dialog "Shiori">><i>Ahhh~ That was so scary!</i> <</dialog>> <<dialog "You">><i>That was so hot!</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-end1" "Let's do it again!">><</regButton>> </div> </div> <<if false>> [[shiori6a-end1]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/end1.mp4" type="video/mp4"> </video> <<dialog "Shiori">><i>Are you crazy???</i> <</dialog>> <<dialog "You">><i>Crazy about you~</i> <</dialog>> <<dialog "Shiori">><i>*Blushes* Th-that was corny! I gotta get back to work!</i> <</dialog>> <<dialog "You">><i>Aww~ Okay, I'll see you later!</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-end2" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6a-end2]] <</if>> <<set $location to "Studio">>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shiori6a/end2.mp4" type="video/mp4"> </video> <<dialog "Photographer">>Shiori? Are you ready yet? <</dialog>> <<dialog "Shiori">>Yes~ Coming! <</dialog>> <div class="button-row"> <<regButton "shiori6a-end3" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori6a-end3]] <</if>> <<set $location to "Studio">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> They wrap up and you go home. <hr> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk2.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I'm tired~ <</dialog>> <<dialog "You">>Good work today! <</dialog>> <<dialog "Shiori">>I had fun walking around in public again today though~ I wasn't anxious the entire time! <</dialog>> <<dialog "You">>Yeah. That was a great date~ <</dialog>> <<dialog "Shiori">>I thought the sex was supposed to be after the date though! <</dialog>> <<dialog "You">>You were so pretty! Can you blame me? <</dialog>> <<dialog "Shiori">>Hmph! <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shiori6a-end4" "You arrive at her place">><</regButton>> </div> </div> <<if false>> [[shiori6a-end4]] <</if>> <<set $location to "Business Area">> <<set $shiori.love = $shiori.love + 1>> <<backend>> <<script>> incrementTime(1, 30); <</script>> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/shoot1/walk3.mp4" type="video/mp4"> </video> <<dialog "Shiori">>We're here! <</dialog>> <<dialog "You">>Aww~ I wanted to walk with you more! <</dialog>> <<dialog "Shiori">>I do too! But I need to have dinner with my sister. <</dialog>> <<dialog "You">>Ughh. I hate that that's a valid reason. <</dialog>> <<dialog "Shiori">>Pfft~ Thanks again for today! It was a great date~ <</dialog>> <<dialog "You">>Enjoy your dinner, Shiori! <</dialog>> <<dialog "Shiori">>I will~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<if $nirei.quest == 6>><<if $shiori.quest < 9>><<regButton "shiori7-1" "She stops you">><</regButton>><<else>><<regButton "shiori8-1" "She stops you">><</regButton>><</if>><<else>> <<regButton "res-area" "Leave">><</regButton>><</if>> </div> </div> <<if false>> <</if>> <<set $location to "Residential Area">> <<set $shiori.love = $shiori.love + 1>> <<if $hour < 12>><<set $hour = 18>><</if>> <<if $shiori.quest < 8>><<set $shiori.quest = 8>><</if>> <<backend>> <<script>> incrementTime(0, 10); <</script>> [[shiori7-1]][[shiori8-1]] <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 1500>><<backend>> <<set $yuki.love = $yuki.love + 1>> <<set $player.money = $player.money - 1500>> <<set $yuki.spending = $yuki.spending + 1500>> <<set $speper = $yuki.spending / 2500 * 100>> <</backend>> <h1><<glow "0.65px limegreen" "10px lime">>Money: <<print "$"+$player.money>><</glow>></h1><h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending+" / $2500">><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "You">>Honey pack? <</dialog>> <<dialog "Yuki">>You don't know what a honey pack is? <</dialog>> <<dialog "You">>Nope. <</dialog>> <<dialog "Yuki">>It's a performance enhancer for sex. <</dialog>> <<dialog "You">>Hah. Like I need something like that. <</dialog>> <<dialog "Yuki">>Uh huh. Come with me to the back. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/intro1.mp4" type="video/mp4"> </video> <div class="button-row id-row"> <<regButton "yuki-aph2" "Try it">><</regButton>> </div> <<else>> <h1><<glow "0.65px limegreen" "10px lime">>Money Spent: <<print "$"+$yuki.spending>><</glow>><<bar $speper.toFixed(2) "Spending">><</bar>></h1> <<dialog "Yuki">>Looks like you're broke. Too bad. It's pretty powerful too. <</dialog>> <div class="button-row id-row"> <<regButton "yuki-avail" "Continue">><</regButton>> </div> <</if>> </div> <<if false>> /* connected passages */ [[yuki-aph2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/intro2.mp4" type="video/mp4"> </video> <<dialog "You">>We're going to do it in front of this guy? <</dialog>> <<dialog "Yuki">>Like I said, It's fine. He's used to it. He's my muscle. <</dialog>> <<dialog "You">><i>I could knock him out with one punch though.</i> <</dialog>> <<dialog "Yuki">>What was that? <</dialog>> <<dialog "You">>Nothing. Let me try the honey pack. <</dialog>> <div class="button-row id-row"> <<regButton "yuki-aph3" "Drink it all">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-aph3]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "Yuki">>Wait! We're both supposed to take half!! <</dialog>> <<dialog "You">>Wh-wha? <</dialog>> <<dialog "Yuki">>You just drank two doses... <</dialog>> <<dialog "You">>I... I feel weird... <</dialog>> <<dialog "Yuki">>Crap. Why are you looking at me like that? <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/kissa.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Mmmmmpppphhh!!! <</dialog>> <div class="button-row id-row"> <<regButton "yuki-aph4" "Pounce on her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-aph4]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/attack1.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Calm down! Calm down! <</dialog>> <<dialog "You">>Y-yuki! I feel so hot!! <</dialog>> <<dialog "Yuki">>Sh-shit! <</dialog>> <div class="button-row id-row"> <<regButton "yuki-aph5" "Suck on her tits">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-aph5]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/attack2.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahh~ Why did you drink all of it???? <</dialog>> <<dialog "You">>Mmm! <i>*Slurp*</i> <</dialog>> <<dialog "Yuki">>Ahhh~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-kiss" "Kiss her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-kiss]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/kissb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Mmmm~ <</dialog>> <<dialog "You">>Yuki~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-kiss" "Keep kissing">><</regButton>> <<regButton "yuki-asph-bja" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-bja]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/bja'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Suck me off!! <</dialog>> <<dialog "Yuki">>Hnngggkkk~ Ggkk~ Ggkk~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-bja" "Keep going">><</regButton>> <<regButton "yuki-asph-bjb" "Intensify">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-bjb]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/bjb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Waaaii--gggkkk Ggkkk <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-bjb" "Keep going">><</regButton>> <<regButton "yuki-asph-rub" "Rub her pussy">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-rub]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/rub.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahhhh~ Wait! Ahhhhhhh~ <</dialog>> <<dialog "You">>Your panties are already soaking~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-cun" "Eat her out">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-cun]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/cun.mp4" type="video/mp4"> </video> <<dialog "You">>Ahhh~ I want a taste~ <</dialog>> <<dialog "Yuki">>Ahhhhhhh~ Th-that feels good~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-fin" "Make her squirt">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-fin]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/finger.mp4" type="video/mp4"> </video> <<dialog "Yuki">>AHHHHHH~ <</dialog>> <<dialog "You">>It's like a fountain! <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-misa" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-misa]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/misa'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>AHHH~ AHHH~ You're really~ AHHHH~ going at it~ <</dialog>> <<dialog "You">>It's so tiiiight~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-misa" "Keep going">><</regButton>> <<regButton "yuki-asph-prone" "Pronebone">><</regButton>> <<regButton "yuki-asph-carry" "Carry">><</regButton>> <<regButton "yuki-asph-cabinet" "Doggy against the cabinet">><</regButton>> <<regButton "yuki-asph-doggy" "Standing Doggy">><</regButton>> <<regButton "yuki-asph-misb" "Missionary on the table">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-prone]][[yuki-asph-cabinet]][[yuki-asph-carry]][[yuki-asph-doggy]][[yuki-asph-misb]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/prone'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Ahhhhh~ I think I'm about toooooo~ <</dialog>> <<dialog "You">>Cum for me, Yuki!! <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-prone" "Keep going">><</regButton>> <<regButton "yuki-asph-prone-cum" "Make her cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-prone-cum]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/cabinet'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Waiiiiit~ Ahhhhh~ You're too rough~ <</dialog>> <<dialog "You">>I'm gonna make you cum~ <</dialog>> <<dialog "Yuki">>I-I... Feel it~ Ahhhh~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-cabinet" "Keep going">><</regButton>> <<regButton "yuki-asph-cabinet-cum" "Make her cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-cabinet-cum]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/carry'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Ahhhhh~ Holy crap~ Ahhhhh~ You're so strong~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-carry" "Keep going">><</regButton>> <<regButton "yuki-asph-cabinet" "Doggy against the cabinet">><</regButton>> <<regButton "yuki-asph-doggy" "Standing Doggy">><</regButton>> <<regButton "yuki-asph-misb" "Missionary on the table">><</regButton>> <<regButton "yuki-asph-misa" "Missionary on the floor">><</regButton>> <<regButton "yuki-asph-prone" "Pronebone">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/doga1.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahhh~ You're shaking meee~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-doggy2" "Harder">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-doggy2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/misb'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Ahhhhh~ Fuck it, keep going~ Use me~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-misb" "Keep going">><</regButton>> <<regButton "yuki-asph-hard" "Harder">><</regButton>> <<regButton "yuki-asph-misa" "Missionary on the floor">><</regButton>> <<regButton "yuki-asph-prone" "Pronebone">><</regButton>> <<regButton "yuki-asph-carry" "Carry">><</regButton>> <<regButton "yuki-asph-cabinet" "Doggy against the cabinet">><</regButton>> <<regButton "yuki-asph-doggy" "Standing Doggy">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-hard]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/prone-cum.mp4" type="video/mp4"> </video> <<dialog "Yuki">>HNNGGGGG~ AHHHHHHH~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-prone" "One more time">><</regButton>> <<regButton "yuki-asph-carry" "Carry">><</regButton>> <<regButton "yuki-asph-cabinet" "Doggy against the cabinet">><</regButton>> <<regButton "yuki-asph-doggy" "Standing Doggy">><</regButton>> <<regButton "yuki-asph-misb" "Missionary on the table">><</regButton>> <<regButton "yuki-asph-misa" "Missionary on the floor">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/cabinet-cum.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahhhhhh~ That was awesome~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-cabinet" "One more time">><</regButton>> <<regButton "yuki-asph-doggy" "Standing Doggy">><</regButton>> <<regButton "yuki-asph-misb" "Missionary on the table">><</regButton>> <<regButton "yuki-asph-misa" "Missionary on the floor">><</regButton>> <<regButton "yuki-asph-prone" "Pronebone">><</regButton>> <<regButton "yuki-asph-carry" "Carry">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/dogb'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Fuuuuuck~ I think I'm about to cum agaaain~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-doggy2" "Keep going">><</regButton>> <<regButton "yuki-asph-doggy-cum" "Make her cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-doggy-cum]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/dog-cum.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Hngggg~ Ahhhh~ My legs can't take it~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-doggy" "One more time">><</regButton>> <<regButton "yuki-asph-misb" "Missionary on the table">><</regButton>> <<regButton "yuki-asph-misa" "Missionary on the floor">><</regButton>> <<regButton "yuki-asph-prone" "Pronebone">><</regButton>> <<regButton "yuki-asph-carry" "Carry">><</regButton>> <<regButton "yuki-asph-cabinet" "Doggy against the cabinet">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>I'm speeding up. <</dialog>> <<dialog "Yuki">>You mean this isn't fast yet? How are you so-- <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/aph/hard'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>AHHHHHH!!! WAAAIT~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-hard" "Keep fucking">><</regButton>> <<regButton "yuki-asph-cum" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-cum]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>I'M COMIIING~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/cum.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Hmmmmmppfff! Not in the mouth~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-end" "Postnut clarity hits you">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-end]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/aph/end.mp4" type="video/mp4"> </video> <<dialog "You">>F-fuck... Yuki... I'm sorry... I just couldn't... <</dialog>> <<dialog "Yuki">>Hahahaha! That was great! You were like a wild animal~ <</dialog>> <<dialog "You">>I'm really sorry... <</dialog>> <<dialog "Yuki">>Don't worry about it. I should have warned you about the honey pack properly. <</dialog>> <div class="button-row id-row"> <<regButton "yuki-asph-end2" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki-asph-end2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki3/yuki3-26.mp4" type="video/mp4"> </video> <<dialog "You">>Hey, Yuki? I wann say sorry again... <</dialog>> <<dialog "Yuki">>Stop that~ I enjoyed it~ You paid for it anyways. Thanks again for the patronage~ Now get out of here. I'm changing. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +3<</glow>></h1> <div class="button-row id-row"> <<regButton "konbini" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<set $yuki.love = $yuki.love + 3>> <<set $minute to 59>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>Huh... Where's Yuki? <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-2" "You see her outside">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-2]] <</if>> <<set $hidenav = 1>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Hey, Yuki! Why are you out here? <</dialog>> <<dialog "Yuki">>Oh... $player.name... I... have an appointment. <</dialog>> <img src="img/misc/yuki-sad.jpg" style="max-width: 40%;"> <<dialog "You">>Hey. Are you okay? <</dialog>> <<dialog "Yuki">>Yeah. I gotta go. <</dialog>> <<dialog "You">><i>Is she taking customers outside again?</i> <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-3" "Secretly follow her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-3]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">><i>I'll wear glasses so she doesn't notice me... Huh? Who's that baldie?</i> <</dialog>> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>Ah~ You bitch. You made me wait a while. <</enemy>> <<dialog "Yuki">>You said within the day. It's not midnight yet. What do you want? I've already paid you. <</dialog>> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>Yeah, but you paid late. That's a 50% increase in interest. <</enemy>> <<dialog "Yuki">>What are you talking about? The due date was yesterday and I paid yesterday. <</dialog>> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>Clearly, you don't know how this business works~ Did you not see the sign out front? Business hours start at 7am til 8am. You paid at 10am. You. Were. Late. <</enemy>> <<dialog "Yuki">>Wh-what? <</dialog>> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>Kekeke~ I have people staying at your place. You can't escape~ <</enemy>> <<dialog "Yuki">>B-but... <</dialog>> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>But, I'm a nice guy~ I can put you to work so you can pay~ Come with me. <</enemy>> <<dialog "Yuki">>... <</dialog>> <img src="img/misc/yuki-loan1.jpg" style="max-width: 50%;"> <<dialog "You">>... <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-4" "Intervene">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-4]] <</if>> <<set $location to "Alley">> <<set $profile to "yuki-profile">>
<div class="bg alley"></div> <div class="content-panel"> <img src="img/misc/yuki-loan2.jpg" style="max-width: 60%;"> <<dialog "You">>I heard everything. <</dialog>> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>Hah? Is this bitch your girlfriend or something? You poor bastard. If you let go, maybe I'll sell you with her kekeke~ <</enemy>> <<dialog "Yuki">>S-sell me? <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-5" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-5]] <</if>> <<set $location to "Alley">> <<set $profile to "yuki-profile">>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "Yuki">>H-hey... $player.name. Let him go. You don't want to get involved. <</dialog>> <<dialog "You">>... <</dialog>> <img src="img/misc/yuki-loan3.jpg" style="max-width: 60%;"> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>Listen to your bitch, kid. <</enemy>> <<dialog "You">>Call her a bitch one more time. <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-6" "Choose Violence">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-6]] <</if>> <<set $location to "Alley">> <<set $profile to "yuki-profile">>
<div class="bg alley"></div> <div class="content-panel"> <<enemy "loanshark" "Loan Shark" "alley" "left" "enemies">>She's a b-- <</enemy>> <img src="img/misc/yuki-loan4.jpg" style="max-width: 60%;"> <<dialog "Yuki">>Wh-what!? <</dialog>> <<dialog "You">>Fucker. <</dialog>> <<dialog "Yuki">>Let's get out of here!! <</dialog>> <img src="img/misc/yuki-loan5.jpg" style="max-width: 60%;"> <div class="button-row id-row"> <<regButton "yuki4-7" "Convenience Store">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-7]] <</if>> <<set $location to "Alley">> <<set $profile to "yuki-profile">>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "Yuki">>Why??? Why. Why. Why do you always resort to beating people up? <</dialog>> <<dialog "You">>He was going to sell you, Yuki. <</dialog>> <<dialog "Yuki">>That's... Fine. I'm grateful. But you don't know what you're getting into. They're gang affiliated... <</dialog>> <<dialog "You">>Believe me. I do. Do you have a place to stay? <</dialog>> <<dialog "Yuki">>I'll stay in the convenience store. They can't touch me in here. Which is why we met up in the alley. <</dialog>> <<dialog "You">>Why can't they? <</dialog>> <<dialog "Yuki">>This store is protected by the Guardian of Kumine. Sawada Hideo. He's a gangster too, but he's a good person. That loan shark does not want to start a gang war just to take me. <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-8" "Laugh">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-8]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Pfft. HAHAHA! Yeah, I know Sawada Hideo. <</dialog>> <<dialog "Yuki">>Why are you laughing? <</dialog>> <<dialog "You">>No reason. I'm gonna go, but I'll come back. Hold on to my jacket for me. <</dialog>> <<dialog "Yuki">>Huh? Why? Huh... Is this your full name embroidered? Sa wa da $player.name. I didn't know your full name until now... ...Wait. Sawada? HUH!? Are you... <</dialog>> <<dialog "You">>I'll be back. <</dialog>> <<dialog "Yuki">>Wait!!! Are you his son or something!? Waaaait! <i>Did I... start a gang war?</i> <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-9" "Go to your uncle">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-9]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Hey, Uncle. <</dialog>> <<dialog "Uncle">>What's up, kid? <</dialog>> <<dialog "You">>I just came to let you know. I'm about to start a war. <</dialog>> <<dialog "Uncle">>Huh? With who? <</dialog>> <<dialog "You">>No idea. A bunch of loan sharks. They touched my girl. You can't stop me. I just came to let you know that I'm about to cause you a lot of headache. <</dialog>> <<dialog "Uncle">>Hah! I'll come with you. I don't like loan sharks anyway. Big Bro Isao doesn't like taking advantage of poor people. We were poor once after all~ <</dialog>> <<dialog "You">>You don't have to, you know? I can crush them alone. <</dialog>> <<dialog "Uncle">>I don't doubt you, but let me get a warm up before the headache comes. Besides, you don't even know where they're at. <</dialog>> <<dialog "You">>Ugk... Suit yourself. <</dialog>> <<dialog "Uncle">>Heh. Like father like son~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-10" "Go Shark Hunting">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-10]] <</if>> <<set $location to "Home">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Wow, there's a lot of people. <</dialog>> <<dialog "Uncle">>That looks like the Yamaguchi clan. Did you attack one of them? They look like they're looking for you. <</dialog>> <<dialog "You">>Err... <</dialog>> <<dialog "Uncle">>As impatient as always. <</dialog>> <<dialog "You">>Let's just break through. <</dialog>> <<dialog "Uncle">>After you~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki4-11" "Break through">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-11]] <</if>> <<set $location to "Business Area">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/yuki-raid1.jpg" style="max-width: 60%;"> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>Wh-what? <</enemy>> <div class="button-row id-row"> <<regButton "yuki4-12" "Threaten the Loan Shark">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-12]] <</if>> <<set $location to "Business Area">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>S-sawada! Do you think the Yamaguchi clan will let you go? <</enemy>> <<dialog "Uncle">>Didn't you know? We're already at war because this kid was thinking with his dick. <</dialog>> <<dialog "You">>... <</dialog>> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>Th-the brat from earlier!! <</enemy>> <<dialog "Uncle">>Why'd you have to pick a fight with Big Bro Isao's kid, idiot? <</dialog>> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>Th-that Sawada Isao? I didn't know! <</enemy>> <img src="img/misc/yuki-raid2.jpg" style="max-width: 60%;"> <div class="button-row id-row"> <<regButton "yuki4-13" "Make him write up a contract">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-13]] <</if>> <<set $location to "Business Area">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Write the contract right here. Call Yuki to let her know. <</dialog>> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>Okay! Okay! <</enemy>> <img src="img/misc/yuki-raid3.jpg" style="max-width: 60%;"> <<dialog "You">>Give me the phone, baldie. <</dialog>> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">><i>B-baldie's a little harsh...</i> <</enemy>> <<dialog "Yuki">>Hello? <</dialog>> <<dialog "You">>Hey! I'll come by in a bit to give you your contract~ <</dialog>> <<dialog "Yuki">>O-okay... <</dialog>> <<dialog "You">>Uncle. Can I leave the rest to you? <</dialog>> <<dialog "Uncle">>Sure~ This baldie is pretty fat though~ I don't think I can sell his organs for much. Tsk. <</dialog>> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>B-but! I did what you asked! I let the girl go! <</enemy>> <<dialog "Uncle">>Ehhh? Did I ask you for anything? That was my nephew~ I'm not $player.name, you know~ <</dialog>> <<enemy "loanshark" "Loan Shark" "business-area-night" "left" "enemies">>Hiiik~ NOOOOOO!!! <</enemy>> <div class="button-row id-row"> <<regButton "yuki4-14" "Go to Yuki">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki4-14]] <</if>> <<set $location to "Business Area">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>Hey. Here's your contract. Your debt is cleared. <</dialog>> <<dialog "Yuki">>Th-thank you. <</dialog>> <<dialog "You">>You don't look too happy. <</dialog>> <<dialog "Yuki">>You... you were a gangster? <</dialog>> <<dialog "You">>... Is that a problem? <</dialog>> <<dialog "Yuki">>Gangsters made my life a living hell, you know!? <</dialog>> <<dialog "You">>That's not me, though. <</dialog>> <<dialog "Yuki">>I'm thankful for you. I really am. It's just that... I'm scared. I worked so hard just to get away from them. I don't know if I wanna involve myself with one. <</dialog>> <<dialog "You">>Yuki... I'm not like them. You know me. <</dialog>> <<dialog "Yuki">>That's just it! I know you! Every time you've helped me, you resorted to violence. Even your shoes right now has blood. <</dialog>> <<dialog "You">>That's... <</dialog>> <<dialog "Yuki">>I need time to think. Please leave... <</dialog>> <<dialog "You">>Yuki... <</dialog>> <div class="button-row id-row"> <<regButton "konbini" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $minute = 59>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<set $yuki.quest = 5>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Y-yuki... <</dialog>> <<dialog "Yuki">>... <</dialog>> <<dialog "You">>I was just passing by... <</dialog>> <<dialog "Yuki">>I miss you. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Yuki">>I'm sorry I was scared of you. I realized that you were just protecting me... You must think I'm an ungrateful bitch. <</dialog>> <<dialog "You">>No. I understand. I grew up in a gang, so I know how scary our world can be. You had the right reaction. <</dialog>> <<dialog "Yuki">>It is scary. I'm scared. Even now. But you know, I was scared because I didn't think someone would stand up to those scary thugs. You're the only one who did. Now, I'm more scared that I can't pay you back. <</dialog>> <<dialog "You">>I didn't do it for you to pay me back. I just wanted to keep you safe. <</dialog>> <<dialog "Yuki">>... Come with me. <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-2" "Follow her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<set $yuki.quest = 7>> <<set $hidenav = 1>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "Yuki">>Do you think I'm cute? <</dialog>> <<dialog "You">>Of course. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/intro1.mp4" type="video/mp4"> </video> <<dialog "You">>That was pretty fucking cute. <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-3" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-3]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/intro2.mp4" type="video/mp4"> </video> <<dialog "Yuki">>You've been paying for sex all this time, so I'm going to add a little fan service this time to make it more special~ <</dialog>> <<dialog "You">>I feel special already. <</dialog>> <<dialog "Yuki">>Wear the uniform again. We'll be here all night so we could get caught~ <</dialog>> <<dialog "You">>Damn. <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-hj" "Handjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-hj]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/hj'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Let's get you hard first~ <</dialog>> <<dialog "You">>I'm practically bursting though... <</dialog>> <<dialog "Yuki">>How impatient~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-hj" "Keep Stroking">><</regButton>> <<regButton "yuki6-bj" "Blowjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-bj]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/bj'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Hnngmmp. I hove zhe hasthe of your hick~ <</dialog>> <<dialog "You">>What? Ahhh~ Don't talk when your mouth is full, Yuki. <</dialog>> <<dialog "Yuki">>Ogkay~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-bj" "Keep Sucking">><</regButton>> <<regButton "yuki6-dog" "Fuck her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-dog]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/dog'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Mmmmm~ <</dialog>> <<dialog "You">>Ahhh~ That feels good. <</dialog>> <<dialog "Yuki">>Mmm~ Why are you being so gentle? Ahhh~ <</dialog>> <<dialog "You">>Ahhh~ W-well... You don't like violence. Ahhh~ <</dialog>> <<dialog "Yuki">>... <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-dog" "Keep Fucking">><</regButton>> <<regButton "yuki6-bored" "She gets bored">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-bored]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "Yuki">><i>*yawn*</i> You're being docile right now. Let me read some porn mags to keep myself wet~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/misa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>💢💢💢 <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-bored" "Keep the Pace">><</regButton>> <<regButton "yuki6-mis" "Fuck her hard">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-mis]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/misb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Ahhhhh~ There you gooooo~ <</dialog>> <<dialog "You">>I'm gonna make you cum. <</dialog>> <<dialog "Yuki">>AHHHHH~ I'm comiiiiing~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-mis" "Keep Going">><</regButton>> <<regButton "yuki6-mis-cum" "Make Her Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-mis-cum]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/mis-cum.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahhhhhh!! That... felt amazing... <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Yuki">>Awww. Are you mad? You were being so gentle! I had to teach you a lesson. Fistfights and sex are different! <</dialog>> <<dialog "You">>... Hmph. <</dialog>> <<dialog "Yuki">>Hahaha! Lie down. Let me make it up to you. <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-cow" "Cowgirl">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-cow]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/cow'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Ahhhhh~ Ahhhh~ Does it feel good? <</dialog>> <<dialog "You">>Ahhh~ I guess I'm not as upset now~ Ahhhh~ <</dialog>> <<dialog "Yuki">>Ahhh~ I'll keep going then~ Ahhhh~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-cow" "Keep Going">><</regButton>> <<regButton "yuki6-rcow" "Reverse Cowgirl">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-rcow]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/yuki/yuki6/rcow'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Yuki">>Ahhhhh~ Do you like~ Ahhh~ Seeing my ass bounce? <</dialog>> <<dialog "You">>Ahhh~ Your ass is so perfectly round, Yuki! <</dialog>> <<dialog "Yuki">>Ahhh~ That ass is all yours~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-rcow" "Keep Going">><</regButton>> <<regButton "yuki6-cow" "Cowgirl">><</regButton>> <<regButton "yuki6-cum" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-cum]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "Yuki">>Ahhhhhh!! A-are you close? <</dialog>> <<dialog "You">>I'm about to cum! <</dialog>> <<dialog "Yuki">>M-me too! Ahhhh~ Let's cum together~ <</dialog>> <<dialog "You">>Ahhhhh~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/cum.mp4" type="video/mp4"> </video> <div class="button-row id-row"> <<regButton "yuki6-cream" "Watch the cum drip">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-cream]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/creampie.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Ahh~ You came a lot. <</dialog>> <<dialog "You">>That was awesome. <</dialog>> <div class="button-row id-row"> <<regButton "yuki6-end1" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-end1]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/end1.mp4" type="video/mp4"> </video> <<dialog "Yuki">>Are you ready to go all night? <</dialog>> <<dialog "You">>You're awesome. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +8<</glow>></h1> <div class="button-row id-row"> <<regButton "yuki6-end2" "You fuck her all night">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[yuki6-end2]] <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<set $yuki.love = $yuki.love + 8>>
<<include "sleep-crud">> <div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/yuki/yuki6/end2.mp4" type="video/mp4"> </video> <<dialog "You">>Hey, Yuki... I have to go to class. It's already 9AM. <</dialog>> <<dialog "Yuki">>Hnnnggg... Go... Too... Tired... <</dialog>> <div class="button-row id-row"> <<regButton "konbini" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<set $hour = 9>> <<set $yuki.quest = 7>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/kiss.mp4" type="video/mp4"> </video> <<dialog "You">>Mmm~ Your lips taste like strawberries~ <</dialog>> <<dialog "Miku">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-undress" "She takes off her sweater">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-undress]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/undress.mp4" type="video/mp4"> </video> <<dialog "You">>Your bra is cute. <</dialog>> <<dialog "Miku">>Hehe. I figured this was gonna happen, so I prepared. <</dialog>> <div class="button-row"> <<regButton "miku-ngt-brakiss" "Kiss">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-brakiss]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/bra-kiss.mp4" type="video/mp4"> </video> <<dialog "You">>You're a good kisser. <</dialog>> <<dialog "Miku">>I had a good teacher~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-tits" "Take her bra off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-tits]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/tits.mp4" type="video/mp4"> </video> <<dialog "You">>Ah~ Looking at them still gives me butterflies~ <</dialog>> <<dialog "Miku">>Pfft~ That's because you're a pervert. <</dialog>> <div class="button-row"> <<regButton "miku-ngt-titskiss" "Kiss">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-titskiss]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/tits-kiss'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Mmm~ You're breasts are as as soft as your lips. <</dialog>> <<dialog "Miku">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-titskiss" "Keep kissing">><</regButton>> <<regButton "miku-ngt-suck" "Suck on her tits">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-suck]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/tits-suck'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>They taste good too. <</dialog>> <<dialog "Miku">>Ahhh~ My nipples are sensitive~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-bed" "Move to her bed">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-bed]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Let's move this to the bedroom~ <</dialog>> <<dialog "You">>Yes, ma'am~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/bed.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "miku-ngt-finger" "Finger">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-finger]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/finger'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Already wet~ <</dialog>> <<dialog "Miku">>Ahhh~ That's because you kept touching me earlier~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-finger" "Keep fingering her">><</regButton>> <<regButton "miku-ngt-bj" "Blowjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-bj]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Suck me off. <</dialog>> <<dialog "Miku">>Thanks for the meal~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/bj'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahhhh~ You're getting too good at sucking dick. <</dialog>> <<dialog "Miku">>Gkkk.. Heyyygkk... Hat'sh rood! <i>*Slurp*</i> <</dialog>> <div class="button-row"> <<regButton "miku-ngt-bj" "Keep sucking">><</regButton>> <<regButton "miku-ngt-cow" "Fuck her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-cow]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/cow'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahhhh~ This is my favorite seat~ <</dialog>> <<dialog "You">>Uh oh... You're turning into a pervert too~ <</dialog>> <<dialog "Miku">>Ahhhh~ Ahhh~ That's~ Your~ Fauuult~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-cow" "Keep fucking">><</regButton>> <<regButton "miku-ngt-dog" "Doggy">><</regButton>> <<regButton "miku-ngt-mis" "Missionary">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-dog]][[miku-ngt-mis]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/doga'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Your ass is so soft, Miku~ <</dialog>> <<dialog "Miku">>Ahhh~ Ahhh~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-dog" "Keep fucking">><</regButton>> <<regButton "miku-ngt-dog2" "Grab her tits">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-dog2]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/mis'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ It feels so good, Miku! <</dialog>> <<dialog "Miku">>Ahhh~ Ahhh~ $player.name... K-kiss me~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-cum1" "Harder">><</regButton>> <<regButton "miku-ngt-mis" "Keep fucking">><</regButton>> <<regButton "miku-ngt-miskiss" "Kiss her">><</regButton>> <<regButton "miku-ngt-dog" "Doggy">><</regButton>> <<regButton "miku-ngt-cow" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-miskiss]][[miku-ngt-cum1]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/night/dogb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Your tits are still softer. <</dialog>> <<dialog "Miku">>Ahhh~ My poor boobs~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-dog2" "Keep fucking">><</regButton>> <<regButton "miku-ngt-mis" "Missionary">><</regButton>> <<regButton "miku-ngt-cow" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/mis-kiss.mp4" type="video/mp4"> </video> <<dialog "Miku">>Mmmm~ I love you~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-mis" "Stop Kissing">><</regButton>> <<regButton "miku-ngt-miskiss" "Keep Kissing">><</regButton>> <<regButton "miku-ngt-dog" "Doggy">><</regButton>> <<regButton "miku-ngt-cow" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/cum1.mp4" type="video/mp4"> </video> <<dialog "You">>Ahhhhhh~ I'm close~ <</dialog>> <<dialog "Miku">>Ahhh~ Do it~ Cum for me~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-cum2" "Cum">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ [[miku-ngt-miskiss]][[miku-ngt-cum2]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/cum2.mp4" type="video/mp4"> </video> <<dialog "You">>That... Haahhh... Felt amazing~ <</dialog>> <<dialog "Miku">>Hehe~ It felt great for me too~ <</dialog>> <div class="button-row"> <<regButton "miku-ngt-end" "End">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */[[miku-ngt-end]] <</if>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/night/end.mp4" type="video/mp4"> </video> <<dialog "Miku">>It's pretty late now~ <</dialog>> <div class="button-row"> <<regButton "miku4-sleep" "Sleep with her">><</regButton>> <<regButton "home" "I have stuff to do">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<if false>> /* connected passages */ <</if>>
<div class="bg faculty"></div> <div class="content-panel"><<if $dayIndex % 7 < 6 && $dayIndex % 7 > 0>><<if $hour == 12>><video controls width="640" height="360" autoplay loop muted> <source src="vids/shizu/shizu-faculty.mp4" type="video/mp4"> </video><</if>> <<dialog "You">>I've been called to a lot of faculty rooms in my day. <</dialog>> <div class="button-row"> <<if $hour == 12 && $shizu.quest >= 2>><<if $tekijime.alley >=40 && $tekijime.bisarea >= 40 && $tekijime.resarea >= 40 && $tekijime.park >= 40 && $player.rank == 1 && $player.quest == 3>><<regButton "main3-1" "Shizu wants to talk">><</regButton>><</if>><<regButton "shizu-faculty" "Approch Shizu">><</regButton>><</if>><<regButton "school" "Leave">><</regButton>></div> <<else>> <<dialog "You">>No classes today. <</dialog>><<set $profile to "player-profile">> <<regButton "school" "Leave">><</regButton>> <</if>> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty]][[main3-1]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "player-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu-faculty2.mp4" type="video/mp4"> </video> <<dialog "You">>Hi, ma'am! <</dialog>> <<dialog "Shizu">>Yes? How can I help you? <</dialog>> <div class="button-row"> <<if $shizu.quest >= 2>><<regButton "shizu-faculty1-1" "Have sex">><</regButton>><</if>><<regButton "faculty" "Nevermind">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-1]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<<backend>><<set $relper = Math.ceil(($nirei.love/$nirei.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px #FF1760" "8px #BE003B" 24 "pink">>Character Profile<</glow>></h1> <img src="img/avatars/nirei-01.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px crimson" "8px #ed1943" 20 "#ed1943">>Kanna Nirei<</glow>></h1><<if $nirei.love > $nirei.maxlove>><<set $nirei.love to $nirei.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>><<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $nirei.love+" / "+$nirei.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.1;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Progress Shiori's story. <<if $shiori.quest >= 6>>2. Meet her at the Residential Area in the morning.<</if>> <<if $nirei.quest >= 2>>3. Talk to Shiori in class.<</if>> <<if $nirei.quest >= 3>>4. Have breakfast with Shiori.<</if>> <<if $nirei.quest >= 4>>5. Visit Shiori before 5pm and help Nirei move.<</if>> <<if $nirei.quest >= 5>>6. Help her unpack.<</if>> <<if $nirei.quest >= 6>>7. Damn. You were dumped. Maybe Shiori will give you comfort.<</if>> <<if $shiori.quest >= 9>>8. Escort Shiori again... This is the last time, I promise.<</if>> <<if $shiori.quest >= 10>>9. Win the Tekijime War.<</if>> <<if $player.quest >= 5 && $shiori.quest >= 10>>10. Go to your bedroom at night on a weekday.<</if>> <<if $nirei.quest >= 7>>11. That's it for this version.<</if>> </h1> <<if $nirei.quest >= 7>><h1><<glow "0.5px yellow" "8px orange">>Extras<</glow>> 1. Weekend Date (Her place on weekends before 5PM) 2. Good Night Blowjob (Her place 9PM onwards) 3. Good Morning Sex (Wake up at her place) 4. Meeting her friends (Her place on weekdays between 5PM and 7PM) 5. Fun in the bath (Her place at 8PM) </h1> <</if>> </div>
<div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>Hi, Yuki. You're looking cute again today. <</dialog>> <<dialog "Yuki">>I'm working right now... but say more later~ <</dialog>> <<dialog "You">>I'll see you later then. <</dialog>> <<if $yuki.chat <= 3>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<if $yuki.chat <= 3>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<set $yuki.chat = $yuki.chat + 1>><div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>Hi again, Yuki. I want something but I couldn't find it in any shelf. Can you help me? <</dialog>> <<dialog "Yuki">>What are you looking for? <</dialog>> <<dialog "You">>A kiss on the cheek. <</dialog>> <<dialog "Yuki">>Pft. Sadly, we're out of stock. You can come by later though~ <</dialog>> <<dialog "You">>Aww. <</dialog>> <<if $yuki.chat <= 3>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<if $yuki.chat <= 3>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<set $yuki.chat = $yuki.chat + 1>><div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>You know... You're the only reason why I visit this store. <</dialog>> <<dialog "Yuki">>And yet I am severely underpaid. <</dialog>> <<dialog "You">>That sucks. <</dialog>> <<if $yuki.chat <= 4>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<if $yuki.chat <= 4>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<set $yuki.chat = $yuki.chat + 1>><div class="bg konbini-int"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop muted> <source src="vids/yuki/yuki-konbini.mp4" type="video/mp4"> </video> <<dialog "You">>I bet you're as sweet as this Slurpee. <</dialog>> <<dialog "Yuki">>You've already had a taste, though~ <</dialog>> <<dialog "You">>I guess I'm forgetful. Maybe I should have a taste again. <</dialog>> <<dialog "Yuki">>Maybe if you come by later~ <</dialog>> <<if $yuki.chat <= 5>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">><<if $yuki.chat <= 5>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<backend>> <<script>> incrementTime(0, 5); <</script>> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/nirei-intro.jpg" style="width: 35%;"> <<dialog "You">>Shiori? You look different today. Did you do something to... uhh... your hair? <</dialog>> <<dialog "Nirei">>Ugh. Look, I'm flattered you think I'm a model, but I'm not her. Do we really look that much ali-- Wait a minute! Shiori? How did you know Kanashi's real name?? Are you a stalker!? <</dialog>> <<dialog "You">>Huh? Oh! No no no no no. I'm an Aoba High student. See? The uniform! I'm sorry, you kind of look like Shiori. <</dialog>> <<dialog "Nirei">>Tsk. Well, I'm not her. You can leave. I'm busy. <</dialog>> <div class="button-row"> <<regButton "nirei1-2" "Apologize">><</regButton>> </div> </div> <<if false>> [[nirei1-2]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>W-wait. Are you Shiori's sister? I really am sorry for being rude. <</dialog>> <<dialog "Nirei">>Yeah, I am. My bad for snapping at you. It's just annoying when I get approached. I'm not even a model but I still get the hassle that comes with it. <</dialog>> <<dialog "You">>I see how that can be annoying. Actually, I'm a friend of hers. My name is $player.name. She hasn't talked about you before. May I know your name? <</dialog>> <<dialog "Nirei">>Shiori really made a friend? A guy on top of that. Come to think of it, she did mention a $player.name saving her from thugs. <</dialog>> <<dialog "You">>Yeah, I'm new in town and we recently got acquainted. Really, though. i'm sorry. It would make me feel bad that I upset my friend's sister. <</dialog>> <<dialog "Nirei">>... The name's Nirei. I'm sorry too. I didn't know you were Shiori's friend. Thank you for saving my sister. <</dialog>> <div class="button-row"> <<regButton "nirei1-3" "Make it up to her">><</regButton>> </div> </div> <<if false>> [[nirei1-3]] <</if>> <<set $location to "Residential Area">>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Nice to meet you, Nirei... <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "You">>-san. Haha. I'm sorry again for upsetting you. <</dialog>> <<dialog "Nirei">>It's fine. I'm used to people saying we look alike. <</dialog>> <<dialog "You">>Well, you are siblings but, I don't think you look too much alike. People say I look like my dad too. <</dialog>> <<dialog "Nirei">>Really? <</dialog>> <<dialog "You">>Yes. It's upsetting to me too! Do you know how old my old man is?? <</dialog>> <<dialog "Nirei">>No, not that. You really think we don't look... identical? <</dialog>> <<dialog "You">>Oh. Yeah. That's why I asked you if you did something different to your hair. I recognized that you were related, but she has never shown me what you looked like so I thought she did something to look different. <</dialog>> <div class="button-row"> <<regButton "nirei1-4" "She hesitates">><</regButton>> </div> </div> <<if false>> [[nirei1-4]] <</if>> <<set $location to "Residential Area">>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Besides, there's this innocence in her face. Like she's a delicate flower or something. <</dialog>> <<dialog "Nirei">>Ohhhh? Are you saying I don't have an innocent face? <</dialog>> <<dialog "You">>Yep. <</dialog>> <<dialog "Nirei">><i>Th-this rude brat!</i> <</dialog>> <<dialog "You">>You're more like a cool beauty. Totally a different vibe~ <</dialog>> <<dialog "Nirei">>O-oh! I thought you were calling me ugly for a second there. <</dialog>> <<dialog "You">>Wh-what? That would have been so rude. <</dialog>> <<dialog "Nirei">>It was. <</dialog>> <<dialog "You">>My bad. By the way, are you the one moving into that house? I see a lot of boxes. <</dialog>> <<dialog "Nirei">>Actually, I'm moving out. <</dialog>> <div class="button-row"> <<regButton "nirei1-5" "Ask why">><</regButton>> </div> </div> <<if false>> [[nirei1-5]] <</if>> <<set $location to "Residential Area">>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Why? This neighborhood is pretty nice. <</dialog>> <<dialog "Nirei">>That's the point. It's too nice. I'm a college student. I can't afford it. I'm moving in with Shiori. It hurts my pride as her big sister, but what can I do. <</dialog>> <<dialog "You">>It wouldn't be bad to live with your sister, you know? <</dialog>> <<dialog "Nirei">>Yeah, but as the older one, I should be the one providing for her, you know? Why am I even telling you this? I just met you. <</dialog>> <<dialog "You">>I'm charismatic like that. How do you think I managed to befriend your ice queen of a sister? <</dialog>> <<dialog "Nirei">>Heh. Pretty confident, are we? <</dialog>> <div class="button-row"> <<regButton "nirei1-6" "Offer help">><</regButton>> </div> </div> <<if false>> [[nirei1-6]] <</if>> <<set $location to "Residential Area">>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>This might be overstepping, but I have a proposition for you. <</dialog>> <<dialog "Nirei">>I've already told you way too much about me anyway. What the hell, right? What's your proposition? <</dialog>> <<dialog "You">>I actually live with my uncle, but I do have a studio apartment that's just accumulating dust. <i>So I have a place to hide out to in case the Yamaguchi clan finds me.</i> How much rent can you afford? <</dialog>> <<dialog "Nirei">>Are you asking to be my landlord? <</dialog>> <<dialog "You">>Why not? It's near here, it's big enough. It's well-ventilated, and I'm not going to hassle you in payments. I'm not even going to ask for a deposit. <</dialog>> <<dialog "Nirei">>Why are you helping me? We just met. <</dialog>> <<dialog "You">>I don't like feeling apologetic. It's to make up for my terrible first impression. Besides! I have a soft spot for beautiful women. <</dialog>> <<dialog "Nirei">>Are you just doing this to flirt with me? <</dialog>> <<dialog "You">>... Is it working? <</dialog>> <<dialog "Nirei">>Nope. <</dialog>> <<dialog "You">>That's what I thought too! Haha! I'm not trying to flirt. <</dialog>> <<dialog "Nirei">>Thanks for the offer, but it just seems like charity. <</dialog>> <div class="button-row"> <<regButton "nirei1-7" "Convince her">><</regButton>> </div> </div> <<if false>> [[nirei1-7]] <</if>> <<set $location to "Residential Area">>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>It's not. I'm looking for a tenant anyway since nobody is using the room. I have to clean it every week, and it's just a hassle. <</dialog>> <<dialog "Nirei">>I don't know... I already contacted a moving company. <</dialog>> <<dialog "You">>How about this. Cancel the movers for now then come visit the apartment with me. Regardless of what you decide, I'll move your things for you. <</dialog>> <<dialog "Nirei">><i>Having to leech off of my little sister is embarrassing...</i> Fine. On one condition. Have Shiori convince me. We've just met, so I can't trust you, can I? <</dialog>> <<dialog "You">>That's easy~ <</dialog>> <<dialog "Nirei">>I have to continue packing. It was nice meeting you. I'll contact you after Shiori talks to me. <</dialog>> <<dialog "You">>Sure~ See you later, Nirei-san! <</dialog>> <<dialog "Nirei">>See you. <</dialog>> <div class="button-row"> <<regButton "res-area" "Continue">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Residential Area">> <<set $nirei.quest = 2>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>Kid. We need to talk. <</dialog>> <<dialog "You">>You sound serious. What's wrong? <</dialog>> <<dialog "Uncle">>Remember the loan sharks we demolished last time? <</dialog>> <<dialog "You">>Did something happen? <</dialog>> <<dialog "Uncle">>I got information from that baldie. The Yamaguchi clan knows you're here. <</dialog>> <<dialog "You">>... I can take them. <</dialog>> <<dialog "Uncle">>Calm down, kid. They probably won't touch you. As you know, Kumine isn't conquered by any gang yet. The reason is the schools around here. <</dialog>> <div class="button-row"> <<regButton "main1-2" "How so?">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main1-2]] <</if>> <<set $profile = "player-profile">>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>Well, the students are tough, and they don't join gangs. <</dialog>> <<dialog "You">>Huh? <</dialog>> <<dialog "Uncle">>You've been in a lot of fights here, but have you ever had a cop interrupt your fights? <</dialog>> <<dialog "You">>Come to think of it, I haven't seen a single cop. <</dialog>> <<dialog "Uncle">>That's because delinquents here don't fear gangsters. They act as guardians of their own territory. They're minors so they're not afraid of using excessive force, while we gangsters have to be careful not to accidentally kill them. <</dialog>> <<dialog "You">>Violence among students became generally accepted so the city lets them go wild. <</dialog>> <<dialog "Uncle">>Bingo. We have planted some of our own members in schools, but the only school we managed to conquer was your school, Aoba. Although, our mole, Seiya-kun apparently is not the figure head. <</dialog>> <div class="button-row"> <<regButton "main1-3" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main1-3]] <</if>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>So would you like me to conquer Aoba? <</dialog>> <<dialog "Uncle">>Not yet. Aoba is our ally right now, you don't want to weaken them. You should set your sights on Tekijime High. That's a Yamaguchi controlled school. I can't help because of the restriction, but you're different. You're a student. <</dialog>> <<dialog "You">>Tekijime, huh? <</dialog>> <<dialog "Uncle">>Yamaguchi is preparing to take over the schools too. Crime has been up. They're aiming to tire the students out. You should watch out too. Take care of Yuki-chan. <</dialog>> <<dialog "You">>I'll keep an eye out. <</dialog>> <<dialog "Uncle">>Since the Yamaguchi clan know about you, Tekijime will probably start messing with you. You think you can take them? <</dialog>> <<dialog "You">>I'll crush them. <</dialog>> <div class="button-row"> <<regButton "home" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $player.quest = 2>>
<h1><<glow>>Inventory<</glow>> <<for _item range Object.keys($inventory)>><<if $inventory[_item] > 0>><span style="display: inline-block; width: 60%;"><<print _item>> : <<print $inventory[_item]>>x</span><span style="display: inline-block; width: 40%;"><<use _item>></span><</if>><</for>> </h1> <label> <input type="checkbox" style="transform: scale(1.5); margin-right: 5px;" id="mute-alerts" onchange="SugarCube.State.variables.muteAlerts = this.checked">Mute Purchase Alert </label> <<backend>> <script> // Ensure the checkbox reflects the value of muteAlerts when the page reloads. document.getElementById("mute-alerts").checked = SugarCube.State.variables.muteAlerts; </script> <</backend>>
<div style="text-align: left; line-height:1.2; white-space: normal;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Unlock the Combat Rankings. (Emi's Route) <<if $emi.quest >= 4>>2. Progress through Yuki's story.<</if>> <<if $yuki.quest >= 5>>3. Talk to your uncle at home when he's there.<</if>> <<if $player.quest >= 2>>4. Go to School.<</if>> <<if $player.quest >= 3>>5. Defeat Oreni (Alley), Sahai (Business Area), Kichiro (Residential Area) and Akashi (Park).<</if>> <<if $tekijime.alley >=40 && $tekijime.bisarea >= 40 && $tekijime.resarea >= 40 && $tekijime.park >= 40>>6. Reach Rank 1 in Combat Rankings. <<if $player.rank == 1>>7. Talk to Shizu-sensei in the Faculty Room.<</if>><</if>> <<if $player.quest >= 4>>8. Talk to your uncle.<</if>> <<if $player.quest >= 5>>9. That's it for this version.<</if>> </h1><h1><<glow "0.5px yellow" "8px orange">>Extras<</glow>> 1. Meet Akane (Hospital). You can buy Health Tonics (Heals 100 hp) from her. <<if $player.quest >= 2>>2. Robbers in the alley at night. Increase your reputation to get special rewards.<</if>> </h1> <a href="https://safriscoffi.com/streethero/guide/player.php" class="button download" target="_blank" style="color: #aff; text-shadow: 0 0 5px cyan, 0 0 10px dodgerblue;">More detailed guide!</a> </div>
<<if $stats.ep >= 50>> <<set $podds = random(0,60)>> <<set $kodds = random(0,100-$podds) + $podds>> <<set $oddsText = "<br><br><br><span><strong>Next Move: "+$podds+"% Punch | "+($kodds-$podds)+"% Kick | "+(100-$kodds)+"% Grab</strong></span>">> <<set $stats.ep = Math.max($stats.ep - 50, 0)>> <<else>> <<set $commentary = "You don't have enough energy to reroll">> UI.alert("Not enough energy!"); <</if>> <<goto "rollredir">>
<<goto $battlefield>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "Damsel">>My purse! <</dialog>> <<enemy "robber" "Mugger" "alley" "left" "enemies">>Stop resisting bitch! <</enemy>> <<dialog "Damsel">>Heeelp! <</dialog>> <div class="button-row"> <<regButton "mugging2" "Help">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[mugging2]] <</if>> <<set $mugging = 1>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>Where do you think you're going? <</dialog>> <<enemy "robber" "Mugger" "alley" "left" "enemies">>Fuck! <</enemy>> <div class="button-row"> <<regButton "mugging-crud" "Fight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[mugging-crud]] <</if>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "mugging">> <<set $enemy = { level: Math.max(1, $stats.level + random(-3, 3)), hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $pspeech = "Make me.">> <<set $espeech = "OUT OF THE FUCKING WAY!">> <<goto "battle-crud2">> [[mugging-battle]] <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy "robber" "Mugger" "alley">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> <<action "Flee">><</action>> </div> </div> <<backend>> <<set $dmgres = "">> [[mugging-win]][[mugging-lose]][[mugging-flee]] <<set $location to "Park">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg alley"></div> <div class="content-panel"> <<print $commentary>> Mugger gets knocked out. You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "You">>How dare you steal in my turf. <</dialog>> <div class="button-row"> <<regButton "mugging-good" "Return the purse">><</regButton>> <<regButton "mugging-bad" "Take the purse for yourself">><</regButton>> </div> </div> <<backend>> [[mugging-good]][[mugging-bad]] <<set $hidenav to 1>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<backend>><<set $rewmoney = $enemy.level * (random(0,2)+random(2,4))>> <<set $player.money = Math.max($player.money - $rewmoney, 0)>> <</backend>> <div class="bg alley"></div> <div class="content-panel"> <<print $commentary>> You get knocked out. You lose $<<print $rewmoney>>. <<enemy "robber" "Mugger" "alley">>Don't be a hero next time, bitch. <</enemy>> <div class="button-row"> <<regButton "mugging-wake" "Wake up">><</regButton>> </div> </div> <<backend>> [[mugging-wake]] <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> You wake up in the alley with a splitting headache and a swollen jaw. <hr> <img src="img/misc/wake-streets.png" style="max-width: 80%;"> <<dialog "You">>Fuck... <</dialog>> <<regButton "alley" "Alley">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $hidenav to 0>> <<script>> incrementTime(1, 0); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>Here you go~ <</dialog>> <<dialog "Damsel">>Thank you! <</dialog>> <h1><<glow "0.4px cyan" "8px dodgerblue" "18">>Reputation +1<</glow>></h1> <div class="button-row"> <<if $player.rep >= 5>><<regButton "tr-1" "Actually...">><</regButton>><</if>> <<regButton "alley" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[mugging-crud]][[tr-1]] <</if>> <<set $player.rep = Math.min($player.rep + 1, 100)>> <<set $hidenav to 1>>
<<backend>> <<set $rewmoney = random(60,300)>> <<set $player.money = $player.money + $rewmoney>> <</backend>><div class="bg alley"></div> <div class="content-panel"> <<dialog "Damsel">>Thank you! <</dialog>> <<dialog "You">>Thank who? Tough luck, bitch. <</dialog>> <<dialog "Damsel">>H-hey!! <</dialog>> <<glow "0.5px red" "8px darkred" 18>><span style="color: red;">Reputation -1</span><</glow>> <<glow "0.5px lime" "8px green" 18>><span style="color: #cfc;">+$<<print $rewmoney>></span><</glow>> <div class="button-row"> <<regButton "alley" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $player.rep = Math.max($player.rep - 1, 0)>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>How dare you kids do this in someone else's school!? <</dialog>> <<enemy "tekijime" "Tekijime Baldie 1" "campus" "left" "enemies">>Haaahhhh?? Who are you, bitch!?? <</enemy>> <<dialog "You">>Those fuckers... <</dialog>> <div class="button-row"> <<regButton "main2-2" "Intervene">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main2-2]] <</if>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 1>>
<<backend>> <<set $ename = "Ranker No."+($rankCh)>> <<set $eid to "ranker"+((($rankCh) % 6) + 1)>> <<set $espeech = either("You wanna challenge me?", "You want my spot, huh?", "Go home before I kill you.", "Don't get cocky, new kid.")>> <</backend>> <<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<enemy $eid $ename "rooftop" "left">><<print $espeech>><</enemy>> <div class="button-row"> <<regButton "rank-battlecrud" "Fight">><</regButton>> <<regButton "rooftop" "Nevermind">><</regButton>> </div> </div> <<if false>> [[rank-battlecrud]] /* connected passages */ <</if>>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/intro1.mp4" type="video/mp4"> </video> <<dialog "You">>Hmmm. I don't know. How can you help me? <</dialog>> <<dialog "Shizu">>I think I know where this is going. <</dialog>> <<dialog "You">>The faculty room is empty~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-2" "She takes off her blouse">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-2]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/undress.mp4" type="video/mp4"> </video> <<dialog "Shizu">>As long as this helps you not get into fights. <</dialog>> <<dialog "You">>You're acting like you don't want this, Shizu-chan. <</dialog>> <<dialog "Shizu">>As cheeky as usual, but I like that about you too~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-3" "She takes off her bra">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-3]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/tits.mp4" type="video/mp4"> </video> <<dialog "You">>This is the best view in Kumine~ <</dialog>> <<dialog "Shizu">>They're just balls of flesh, you know? <</dialog>> <<dialog "You">>Yeah, but they're attached to you~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-4" "Grope her">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-4]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/grope'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Your tits are huge, sensei~ <</dialog>> <<dialog "Shizu">>I'm naturally gifted~ <</dialog>> <<dialog "You">>It's always good to share your gifts~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-4" "Keep groping">><</regButton>> <<regButton "shizu-faculty1-5" "Have a taste">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-5]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/lick'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>*Slurp*</i> <</dialog>> <<dialog "Shizu">>Ahhh~ It's so sensitive~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-5" "Keep going">><</regButton>> <<regButton "shizu-faculty1-6" "Handjob">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-6]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/hj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Mmmm~ Does this feel good? <</dialog>> <<dialog "You">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-6" "Keep going">><</regButton>> <<regButton "shizu-faculty1-7" "Blowjob">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-7]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "You">>Lubricate it with your mouth, Shizu-chan~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/bj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>*Slurppp*</i> Hike hizz? <</dialog>> <<dialog "You">>Ahh~ Yes~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-7" "Keep sucking">><</regButton>> <<regButton "shizu-faculty1-8" "Paizuri">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-8]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "You">>A-Alright. Ahh~ It's slippery enough. Use your tits~ <</dialog>> <<dialog "Shizu">>Okay~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/tj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Your boobs are so soft~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-8" "Keep going">><</regButton>> <<regButton "shizu-faculty1-9" "Take her panties off">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-9]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "You">>I wanna see your pussy~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/panty.mp4" type="video/mp4"> </video> <<dialog "You">>Damn. <</dialog>> <<dialog "Shizu">>S-stop~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-10" "Closer">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-10]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/pussy.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Stop staring~ It's embarrassing~ <</dialog>> <<dialog "You">>Nothing about you is embarrassing. <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-11" "Lick it">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-11]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/cun.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Ahh~ That feels good~ <</dialog>> <<dialog "You">>You're ready. <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-cow1" "She gets on top of you">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-cow1]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Ahhh~ Ahhhhh~ It's so biiig~ <</dialog>> <<dialog "You">>That's it, keep bouncing~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-cow1" "Keep riding">><</regButton>> <<regButton "shizu-faculty1-cow2" "She slows down">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-cow2]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/cowb.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Ahhhhh~ Mmmmm~ You want to be on top now? <</dialog>> <<dialog "You">>Hmmm~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-cow1" "Keep riding">><</regButton>> <<regButton "shizu-faculty1-mis1" "Okay">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-mis1]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/misa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Ahh~Ahh~ <</dialog>> <<dialog "You">>It feels good, Shizu-chan~ <</dialog>> <<dialog "Shizu">>Ahh~ Ahh~ Really?~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-mis1" "Keep this pace">><</regButton>> <<regButton "shizu-faculty1-mis2" "Fondle her breasts">><</regButton>> <<regButton "shizu-faculty1-mis3" "Fuck her hard">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-mis2]][[shizu-faculty1-mis3]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Ahh~Ahh~ <</dialog>> <<dialog "You">>Hehe~ You even came with gigantic handles so I can keep fucking you hard~ <</dialog>> <<dialog "Shizu">>Ahh~ Ahh~Th-that's Ahh~ So rude! <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-mis2" "Keep fondling">><</regButton>> <<regButton "shizu-faculty1-mis1" "Take your hands off">><</regButton>> <<regButton "shizu-faculty1-mis3" "Fuck her hard">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/faculty1/hard'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahhhhhhhhh~ Ahh~ Ahhh~ Slow~ Doooown~ <</dialog>> <<dialog "You">>I can't~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-mis3" "Keep this pace">><</regButton>> <<regButton "shizu-faculty1-hard" "Fuck her harder">><</regButton>> <<regButton "shizu-faculty1-mis1" "Slow down">><</regButton>> <<regButton "shizu-faculty1-mis2" "Fondle her breasts">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-hard]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/hard4.mp4" type="video/mp4"> </video> <<dialog "Shizu">>AHHHHH~ I'm cummiiiiiing~ <</dialog>> <<dialog "You">>I'm going to cum inside! <</dialog>> <<dialog "Shizu">>W-waaait~ Agaaaaain? Ahhhhh~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-cum" "Creampie her">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-cum]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "Shizu">>Ahhhhhhh~ I don't care anymore! Cum in me~ Let me feel your cum insiiiide~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/cum.mp4" type="video/mp4"> </video> <<dialog "You">>Ahhhhhh~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-cum2" "Continue">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-cum2]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/creampie.mp4" type="video/mp4"> </video> <<dialog "Shizu">>I... can't... believe... I did it again~ <</dialog>> <<dialog "You">>Mmm~ Can we raise a kid with a teacher's salary? <</dialog>> <<dialog "Shizu">>That's why you should graduate properly, brat~ <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-end1" "Continue">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-end1]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/end1.mp4" type="video/mp4"> </video> <<dialog "Shizu">>So... Are you still going to fight? <</dialog>> <<dialog "You">>Hmmm. I don't know~ I don't want to ruin this great day after all~ <</dialog>> <<dialog "Shizu">>Ahhh~ You can come back when you feel the urge to be... Violent... <</dialog>> <div class="button-row"> <<regButton "shizu-faculty1-end2" "Continue">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ [[shizu-faculty1-end2]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/faculty1/end2.mp4" type="video/mp4"> </video> <<dialog "Shizu">>Y-you should go. The other teachers are going back soon~ <</dialog>> <<dialog "You">>I'll see you in class, Shizu-chan~ <</dialog>> <<dialog "Shizu">>See you~ <</dialog>> <div class="button-row"> <<regButton "school" "End">><</regButton>> </div> </div> <<backend>> updateright(); /* connected passages */ <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">> <<set $hour = 13>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hi, Shiori~ <</dialog>> <<dialog "Shiori" "student">>Hey~ <</dialog>> <<dialog "You">>Guess who I met. <</dialog>> <<dialog "Shiori" "student">>Suis-san? <</dialog>> <<dialog "You">>Who? <</dialog>> <<dialog "Shiori" "student">>The vocalist for Yorushika! You have to listen to Kutsu no Hanabi~ <</dialog>> <<dialog "You">>Wh-what? No... I met Nirei-san. <</dialog>> <div class="button-row"> <<regButton "nirei2-2" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */[[nirei2-2]] <</if>> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shiori" "student">>My sister? How? <</dialog>> <<dialog "You">>It's a bit embarrassing, but I thought she was you so I approached her. <</dialog>> <<dialog "Shiori" "student">>Oof. She definitely got mad then. <</dialog>> <<dialog "You">>She definitely did. But! I made up for it. I offered to let her lease my apartment. <</dialog>> <<dialog "Shiori" "student">>I didn't know you had an apartment. <</dialog>> <<dialog "You">>That's because I never use it. Which is why I offered~ <</dialog>> <<dialog "Shiori" "student">>Honestly, I don't feel comfortable housing her. Not because I don't want her around, okay? My studio apartment is pretty small. I don't want her to be uncomfortable. <</dialog>> <<dialog "You">>So you approve? <</dialog>> <<dialog "Shiori" "student">>Of course! I trust you, so I know she won't get scammed or be treated unfairly. I'll even cover part of the rent, in case she can't afford it. <</dialog>> <<dialog "You">>No way! If she lets me, I'd even let her live there for free, but I know she'd feel uncomfortable. I'll charge her what she can afford. <</dialog>> <div class="button-row"> <<regButton "nirei2-3" "Continue">><</regButton>> </div> </div> <<if false>> /* connected passages */[[nirei2-3]] <</if>> <<set $profile to "nirei-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shiori" "student">>Why are you asking me for permission, by the way? <</dialog>> <<dialog "You">>She told me she'd only consider it if YOU convinced her. We just met after all, so she doesn't trust me. Which is understandable! <</dialog>> <<dialog "Shiori" "student">>How about we give her a visit after class? Let's convince her together! <</dialog>> <<dialog "You">>Sounds great! <</dialog>> <<dialog "Shizu">>Okay, class~ Please go back to your seats~ <</dialog>> <<dialog "Shiori" "student">>I'll see you later, okay? <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row"> <<regButton "nirei2-4" "Wait for class to end">><</regButton>> </div> </div> <<if false>> /* connected passages */[[nirei2-4]] <</if>> <<set $profile to "nirei-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Ready to go? <</dialog>> <<dialog "Shiori" "student">>Sure! She asked me to come too so perfect timing. <</dialog>> <div class="button-row"> <<regButton "nirei2-5" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[nirei2-5]] <</if>> <<set $profile to "nirei-profile">> <<set $hour = 17>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori" "student">>Aniki~ I'm here with $player.name. <</dialog>> <<dialog "You">>Hello, Nirei-san. <</dialog>> <<dialog "Nirei">>Oh! Shiori. Perfect timing. Come with me. You come too, $player.name. <</dialog>> <div class="button-row"> <<regButton "nirei2-6" "Follow her">><</regButton>> </div> </div> <<if false>> [[nirei2-6]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/movers.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>What's going on? Why are there movers? <</dialog>> <<dialog "Nirei">><i>*sigh*</i> I had a disagreement with the landlord so I have to move early. I'm sending my things to your place. <</dialog>> <<dialog "You">>That's hella illegal. <</dialog>> <<dialog "Nirei">>It is not. The lease is not actually in my name, it's in my ex's name. <</dialog>> <<dialog "Shiori" "student">>A-aniki! <</dialog>> <<dialog "You">>That sucks. <</dialog>> <<dialog "Nirei">>How do you think I could afford the rent in the first place? My ex and I split the bills. <</dialog>> <div class="button-row"> <<regButton "nirei2-7" "Offer your apartment again">><</regButton>> </div> </div> <<if false>> [[nirei2-7]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Why not move in to my apartment? I managed to convince Shiori like you asked me to. <</dialog>> <<dialog "Shiori" "student">>Yeah, Aniki! $player.name is a trustworthy person! <</dialog>> <<dialog "Nirei">>Are you crazy? I need to see the place first. You mentioned that it's your apartment, you're just not using it. So I assume it's furnished already. <</dialog>> <<dialog "You">>Yes! You don't have to worry about the furnishing. <</dialog>> <<dialog "Nirei">><i>*sigh*</i> That means we have to get rid of some stuff before I can move in. I'll have to stay with Shiori for a while. That's okay, right? <</dialog>> <<dialog "Shiori" "student">>Of course! That was the plan initially so it's fine. <</dialog>> <<dialog "Nirei">>Great. Can you talk to the driver about the directions and where to place the items? <</dialog>> <<dialog "Shiori" "student">>Sure thing~ <</dialog>> <div class="button-row"> <<regButton "nirei2-8" "Shiori leaves">><</regButton>> </div> </div> <<if false>> [[nirei2-8]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/movers2.mp4" type="video/mp4"> </video> <<dialog "Nirei">>Thanks again for offering your place, but how did you manage to convince her? <</dialog>> <<dialog "You">>Hm? I barely asked her. I just mentioned the plan and she told me it was a good idea. <</dialog>> <<dialog "Nirei">>That's weird. She complained when I told her I was going to live with a friend and convinced me to stay with her. She's pretty protective even though she's the younger sister. <</dialog>> <<dialog "You">>Maybe she wasn't comfortable with you living with someone. It's not like you're moving in with me, you're just using my place. <</dialog>> <<dialog "Nirei">>That's not it. I think she really trusts you. Are you perhaps... dating? <</dialog>> <<dialog "You">><i>*Ahem*</i> N-no. Well... It's complicated. <</dialog>> <div class="button-row"> <<regButton "nirei2-9" "Shiori comes back">><</regButton>> </div> </div> <<if false>> [[nirei2-9]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori" "student">>The driver's ready. All the boxes have been packed as well. What were you guys talking about? <</dialog>> <<dialog "Nirei">>I was asking your boyfriend if you were dating. <</dialog>> <<dialog "You">><i>*Cough* *Ahem*</i> <</dialog>> <<dialog "Shiori" "student">>Wh-wh-wh-wh-why are you being nosy!??? <i>*Blushes*</i> <</dialog>> <<dialog "Nirei">>Wow~ You're blushing. <</dialog>> <<dialog "You">>C-come on, Nirei-san. Stop teasing us. <</dialog>> <<dialog "Nirei">>I wasn't teasing you though... <</dialog>> <<dialog "Shiori" "student">>L-lets just go!!! $player.name, lets take Aniki to your apartment tomorrow okay? We'll go for now to deal with her things. <</dialog>> <<dialog "You">>S-sure. My apartment is close to yours anyway. You'll practically be neighbors. <</dialog>> <<dialog "Shiori" "student">>Isn't that great, aniki? <</dialog>> <<dialog "Nirei">>You didn't answer my question... <</dialog>> <<dialog "Shiori" "student">>We're going!! See you tomorrow, $player.name. <</dialog>> <<dialog "You">>Haha. See you tomorrow~ <</dialog>> <<dialog "Nirei">>See you. <</dialog>> <div class="button-row"> <<regButton "res-area" "They leave">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>> <<set $nirei.quest = 3>> <<set $hour = 18>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<if ($dayIndex % 7 < 6 && $dayIndex % 7 > 0 && ($hour == 7 || ($hour >= 17 && $hour < 23))) || ($daystate == "Night" && $hour < 23)>><video controls width="640" height="360" autoplay loop> <source src="vids/shiori/home.mp4" type="video/mp4"> </video> <<dialog "Shiori">>What do you want to do? <</dialog>> <<dialog "You">>Hmmm. <</dialog>> <<dialog "Shiori">>Hmmm? <</dialog>> <<else>> <<if $hour>= 23>><<dialog "You">>Shiori's asleep. <</dialog>><<else>><<dialog "You">>Shiori's not home. <</dialog>> <</if>><</if>> <div class="button-row"> <<if ($dayIndex % 7 < 6 && $dayIndex % 7 > 0) && $hour == 7 >><<regButton "shiori-bf1" "Have breakfast">><</regButton>><</if>> <<if !($dayIndex % 7 < 6 && $dayIndex % 7 > 0) && $hour < 12 >><<regButton "shiori5-3" "Take her to the shoot">><</regButton>><</if>> <<if $hour < 17 && $nirei.quest == 4>><<regButton "nirei3-1" "Help Nirei move">><</regButton>><</if>><<if $shiori.quest >= 9 && $hour >= 21 && $hour < 23>><<regButton "shiori-sleep" "Sleep">><</regButton>><<regButton "shiori7-11" "Have fun before bed">><</regButton>><</if>><<if $shiori.quest >= 9 && $hour >= 17 && $hour < 20>><<regButton "shiori-outfit" "She wants to show you her outfits">><</regButton>><</if>> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>I'll get ready for school then let's have breakfast~ <</dialog>> <<dialog "You">>Sure. Take your time. <</dialog>> <div class="button-row"> <<regButton "shiori-bf2" "Continue">><</regButton>> </div> </div> <<if false>> [[shiori-bf2]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/1.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>Let's eat~ <</dialog>> <<dialog "You">>Wow~ Everything looks good. <</dialog>> <<dialog "Shiori" "student">>I make a good wife, don't I? <</dialog>> <<dialog "You">><i>*Eherm*</i> That was so suddem, Shiori. <</dialog>> <div class="button-row"> <<regButton "shiori-bf3" "Eat">><</regButton>> </div> </div> <<if false>> [[shiori-bf3]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/2.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>Is it good? <</dialog>> <<dialog "You">>It's delicious! <</dialog>> <<dialog "Shiori" "student">>See? The perfect housewife~ <</dialog>> <<dialog "You">>You're so cute. What else can you do as a housewife? <</dialog>> <div class="button-row"> <<regButton "shiori-bf4" "She feeds you">><</regButton>> </div> </div> <<if false>> [[shiori-bf4]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/3.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>How about that? Did I make your heart flutter? <</dialog>> <<dialog "You">>Wh-whose heart wouldn't flutter after that? <</dialog>> <<dialog "Shiori" "student">>Ohhhh~ That's not all. <</dialog>> <<dialog "You">>That's not all? What else is there? <</dialog>> <<dialog "Shiori" "student">>My dessert~ <</dialog>> <div class="button-row"> <<regButton "shiori-bf5" "She crawls under the table">><</regButton>> </div> </div> <<if false>> [[shiori-bf5]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/5.mp4" type="video/mp4"> </video> <<dialog "You">>Sh-shiori... <</dialog>> <<dialog "Shiori" "student">>Just relax~ Let me make you feel good while I tell you what else I can do~ <</dialog>> <div class="button-row"> <<regButton "shiori-bf6" "Blowjob">><</regButton>> </div> </div> <<if false>> [[shiori-bf6]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/6.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Nom*</i> Hirsht of all... Gkk... Hyou'llk get hthish effriday~ <i>*Slurp*</i> <</dialog>> <<dialog "You">>O-oh my god. <</dialog>> <div class="button-row"> <<regButton "shiori-bf7" "She licks the shaft">><</regButton>> </div> </div> <<if false>> [[shiori-bf7]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/7.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Slurp*</i> <i>*Slurp*</i> I'll treat your cock like a popsicle~ <</dialog>> <<dialog "You">>Ahhh~ Th-that's... my weakness~ <</dialog>> <div class="button-row"> <<regButton "shiori-bf8" "She licks your balls">><</regButton>> </div> </div> <<if false>> [[shiori-bf8]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/8.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Slurp*</i> <i>*Slurp*</i> I won't neglect your jewels too~ <i>*Slurp*</i> <</dialog>> <<dialog "You">>H-holy shit, Shiori! <</dialog>> <div class="button-row"> <<regButton "shiori-bf9" "She starts sucking again">><</regButton>> </div> </div> <<if false>> [[shiori-bf9]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/9.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Ggkk*</i> <i>*Gggkk*</i> I hill make you feew gootck~ <i>*Slurp*</i> <</dialog>> <<dialog "You">>Wh-what else? <</dialog>> <div class="button-row"> <<regButton "shiori-bf10" "Deepthroat">><</regButton>> </div> </div> <<if false>> [[shiori-bf10]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/10.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Hhhgggkk*</i> I hon't have a gagk hefwecksh. <i>*Gkk*</i> <</dialog>> <<dialog "You">>Jesus christ, that's deep. Ahhhhh~ <</dialog>> <div class="button-row"> <<regButton "shiori-bf11" "Harder">><</regButton>> </div> </div> <<if false>> [[shiori-bf11]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/11.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Slurp* *Ggkk*</i> I hill make you gcum~ <i>*Gkk*</i> <</dialog>> <<dialog "You">>F-fuck~ Ahhh~ I'm going to cum, Shiori~ <</dialog>> <<dialog "Shiori" "student">><i>*Slurp* *Ggkk*</i> Pbainth my hretty hace~ <i>*Gkk*</i> <</dialog>> <div class="button-row"> <<regButton "shiori-bf12" "Cum">><</regButton>> </div> </div> <<if false>> [[shiori-bf12]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/12.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>Mmm~ You painted my face~ <</dialog>> <<dialog "You">>Th-that was amazing~ <</dialog>> <<dialog "Shiori" "student">>That's one more thing. You get to paint a model's face with your cum everyday~ <</dialog>> <<dialog "You">>Y-you make a convincing argument~ <</dialog>> <<dialog "Shiori" "student">>I'm not done though~ <</dialog>> <div class="button-row"> <<regButton "shiori-bf13" "She cleans you">><</regButton>> </div> </div> <<if false>> [[shiori-bf13]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/13.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">>I'm also good at cleaning~ <i>*Slurp*</i> <</dialog>> <<dialog "You">>I should start looking into rings~ <</dialog>> <<dialog "Shiori" "student">>Hehe~ <</dialog>> <div class="button-row"> <<regButton "shiori-bf14" "End">><</regButton>> </div> </div> <<if false>> [[shiori-bf14]] <</if>> <<set $location to "Shiori's Home">>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/breakfast/14.mp4" type="video/mp4"> </video> <<dialog "Shiori" "student">><i>*Sluuurp*</i> Thank you for the meal~ Should we head to class? <</dialog>> <<dialog "You">>G-give me a moment... My legs are shaking~ <</dialog>> <<dialog "Shiori" "student">>Hehe~ <</dialog>> <<if $nirei.quest == 3>><<backend>><<set $nirei.quest = 4>><</backend>> <hr> Someone is watching <hr> <<dialog "Nirei">><i>Wh-what did I just watch? Wh-why is he so big?</i> <</dialog>> <</if>> <div class="button-row"> <<regButton "classroom" "Go to class">><</regButton>> </div> </div> <<set $location to "Shiori's Home">> <<set $hour = 8>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "Damsel">>I want to thank you... <</dialog>> <<dialog "You">>No, it's okay. <</dialog>> <<dialog "Damsel">>Wait! Follow me. <</dialog>> <div class="button-row"> <<if $player.rep >= 5>><<regButton "tr-2" "She flashes her bare ass">><</regButton>><</if>> <<if $player.rep >= 10>><<regButton "tr-3" "She flashes her tits">><</regButton>><</if>> <<if $player.rep >= 15>><<regButton "tr-4" "She goes to a train station">><</regButton>><</if>> </div> </div> <<if false>> /* connected passages */ [[mugging-crud]][[tr-2]][[tr-3]][[tr-4]] <</if>> <<set $hidenav to 1>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/robber/flash-ass.mp4" type="video/mp4">'>> </video> <<dialog "Damsel">>Like what you see? <</dialog>> <<dialog "You">>Wow... <</dialog>> <<dialog "Damsel">>I've thanked you enough~ <</dialog>> <div class="button-row"> <<regButton "alley" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $hidenav to 1>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/robber/flash-boobs.mp4" type="video/mp4">'>> </video> <<dialog "Damsel">>Like what you see? <</dialog>> <<dialog "You">>Wow... <</dialog>> <<dialog "Damsel">>I've thanked you enough~ <</dialog>> <div class="button-row"> <<regButton "alley" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $hidenav to 1>> <<backend>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/robber/tr-f'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Damsel">>Ahhh~ <</dialog>> <div class="button-row"> <<if $player.rep >= 20>><<regButton "tr-5" "She wants to fuck">><</regButton>><</if>> <<regButton "tr-4" "Keep going">><</regButton>> <<regButton "tr-7" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[tr-7]] <</if>> <<set $hidenav to 1>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/robber/tr-s'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Damsel">>Ahhh~ Ahhh~ Ahhh~ It feels so good!~ <</dialog>> <<dialog "You">>Better than getting robbed, huh? <</dialog>> <div class="button-row"> <<regButton "tr-5" "Keep going">><</regButton>> <<regButton "tr-6" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $hidenav to 1>>
<div class="bg alley"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/robber/tr-end.mp4" type="video/mp4">'>> </video> <<dialog "Damsel">>See you! <</dialog>> <<dialog "You">>Being nice pays~ <</dialog>> <div class="button-row"> <<regButton "alley" "Leave">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $hidenav to 1>> <<backend>> <<script>> incrementTime(0, 45); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "Damsel">>Ahhhhhh~ I'm cumming! <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/robber/tr-cum.mp4" type="video/mp4">'>> </video> <<dialog "You">>Fuck... I came too <</dialog>> <div class="button-row"> <<regButton "tr-7" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $hidenav to 1>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'm bored~ Maybe I should go to the park. <</dialog>> <div class="button-row"> <<regButton "shizu-cut1" "Shizu catches you">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut1]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">> <<set $hidenav to 1>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>I don't think so! <</dialog>> <<dialog "You">>Jesus. Shizu-chan. You scared me. <</dialog>> <<dialog "Shizu">>First, fighting and now cutting classes?? Are you kidding me? <</dialog>> <<dialog "You">>I was bored! I was just thinking about it~ <</dialog>> <<dialog "Shizu">>Come with me. <</dialog>> <<dialog "You">>Really? Are you seriously taking me to the principal's office? <</dialog>> <<dialog "Shizu">>Come. With. Me. <</dialog>> <div class="button-row"> <<regButton "shizu-cut2" "Follow her">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut2]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/intro1.mp4" type="video/mp4">'>> </video> <<dialog "You">>Huh? The bathroom? <</dialog>> <<dialog "Shizu">>Seriously? You're bored? <</dialog>> <<dialog "You">>W-well... <</dialog>> <<dialog "Shizu">>How about we do something exciting then? <</dialog>> <<dialog "You">>Uhm... <</dialog>> <div class="button-row"> <<regButton "shizu-cut3" "She unbuckles your belt">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut3]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/intro2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Looks like you're already excited. <</dialog>> <<dialog "You">>Who wouldn't be in this situation? <</dialog>> <<dialog "Shizu">>You're just a pervert. Lusting over your teacher~ <</dialog>> <<dialog "You">>That's because the teacher is you~ <</dialog>> <div class="button-row"> <<regButton "shizu-cut4" "Handjob">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut4]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/hj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Get hard for me~ <</dialog>> <<dialog "You">>Ohhh~ <</dialog>> <div class="button-row"> <<regButton "shizu-cut4" "Keep Stroking">><</regButton>> <<regButton "shizu-cut5" "She takes her blouse off">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut5]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/undress.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Maybe these will get you hard~ <</dialog>> <<dialog "You">>Mmmm, works everytime. <</dialog>> <div class="button-row"> <<regButton "shizu-cut6" "Paizuri">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut6]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/tj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Does it feel good? Getting your dick squished in between my boobs? <</dialog>> <<dialog "You">>Ahhh~ It feels good, Shizu-chan~ <</dialog>> <div class="button-row"> <<regButton "shizu-cut6" "Keep Going">><</regButton>> <<regButton "shizu-cut7" "Cum">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut7]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <<dialog "You">>Ahhhhhh~ I'm cumming~ <</dialog>> <<dialog "Shizu">>Paint my boobs with your cum~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/cum.mp4" type="video/mp4">'>> </video> <div class="button-row"> <<regButton "shizu-cut8" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut8]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/end1.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>You came a lot~ <</dialog>> <<dialog "You">><i>*Gasp*</i> Your tits are incredible~ <</dialog>> <div class="button-row"> <<regButton "shizu-cut9" "End">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut9]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/cut/end2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>If you don't cut class, maybe I'll let you cum in another way later~ <</dialog>> <<dialog "You">>Fuck. You got me hard again. <</dialog>> <<dialog "Shizu">>I guess you'll have to wait til later~ Get back to class! <</dialog>> <div class="button-row"> <<regButton "classroom" "Back to class">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[shizu-cut9]] <</if>> <<set $location to "School">> <<set $profile to "shizu-profile">> <<backend>> <<script>> incrementTime(0, 25); <</script>> <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<enemy "tekijime" "Tekijime Baldie 1" "campus" "left" "enemies">>I should just sm-- <</enemy>> <hr> Before you could make a move, Kyogaku arrives and shuts the Tekijime student up. <hr> <img src="img/misc/tekijime-schoolfront.jpg" style="max-width: 40%;"> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>...Kyogaku. <</enemy>> <<dialog "Kyogaku">>... <i>Shizu-sensei...</i> <</dialog>> <<dialog "Shizu">>S-sai... <</dialog>> <<enemy "kichiro-01" "Kichiro" "campus" "left" "enemies">>I thought he'd be taller. <</enemy>> <<dialog "Kishi">>I thought you'd be bigger too. You need more protein. <</dialog>> <<enemy "sahai-01" "Sahai" "campus" "left" "enemies">>Keke~ The chibi is here too~ <</enemy>> <<dialog "Akagi">>I'll knock your teeth out. <</dialog>> <<enemy "oreni-01" "Oreni" "campus" "left" "enemies">>Izaki~ I heard you were beaten by a freshman. Is this the extent of Aoba's strength? <</enemy>> <<dialog "Izaki">>... <</dialog>> <<dialog "Kuroki">>What business does Tekijime have with us?~ <</dialog>> <<enemy "akashi-01" "Akashi" "campus" "left" "enemies">>We're here to wage war. You should get your troops ready. <</enemy>> <div class="button-row"> <<regButton "main2-3" "Provoke them">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main2-3]] <</if>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 1>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Good Morning, Shizu-chan~ <</dialog>> <<dialog "Kyogaku">>Ch-chan? <</dialog>> <<dialog "Izaki">>$player.name... <</dialog>> <<dialog "Shizu">>$player.name? <</dialog>> <<enemy "tekijime" "Tekijime Baldie 2" "campus" "left" "enemies">>Ehhhh? Who's this bitch? We're in the middle of something he-- <</enemy>> <img src="img/misc/tekijime-schoolfront2.jpg" style="max-width: 40%;"> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>... <</enemy>> <<dialog "Kyogaku">>!!! <</dialog>> <div class="button-row"> <<regButton "main2-4" "You put your arms around Shizu">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main2-4]] <</if>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 1>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>H-hey! Not here! <</dialog>> <<dialog "Kyogaku">>Wh-wha... Sh-shizu-sensei... <</dialog>> <<dialog "Kuroki">>Oi. Freshman. You better not be cocky in front of me. Are you being arrogant because you beat Izaki? <</dialog>> <<dialog "You">>Are you trying to intimidate me? You should know who I am by now, Seiya. It's for your own good. <</dialog>> <<dialog "Kuroki">><i>Wh-who is this guy? Why does he seem familiar?</i> <</dialog>> <div class="button-row"> <<regButton "main2-5" "Declare war">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main2-5]] <</if>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 1>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Oh, by the way. You with the frosted tips. <</dialog>> <<enemy "oreni-01" "Oreni" "campus" "left" "enemies">>Are you addressing Akashi-san?? This rude little... <</enemy>> <<enemy "akashi-01" "Akashi" "campus" "left" "enemies">>Stop... What is it? <</enemy>> <<dialog "You">>I've memorized what your uniforms look like. If I see anyone with that uniform, I'm beating them down. Tell that to Gokuro. <</dialog>> <<dialog "Shizu">>H-hey! $player.name! Stop picking fights! <</dialog>> <<dialog "Kuroki">>I thought he was from Shibuya... How did he know who Tekijime's leader was? <</dialog>> <<dialog "Kyogaku">>Sh-shizu-sensei... <</dialog>> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>We came here to give them a warning... Why does it feel like we were the ones warned instead? <</enemy>> <div class="button-row"> <<regButton "classroom" "Go to class">><</regButton>> </div> </div> <<if false>> /* connected passages */ <</if>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <<set $player.quest = 3>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "tekpark">> <<set $enemy = { level: $tekijime.park, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = ($tekijime.park == 38 ? "Akashi" : " Tekijime Student")>> <<set $eid to ($tekijime.park == 38 ? "akashi-01" : "tekijime")>> <<set $pspeech = ($tekijime.park == 38 ? "Wow. You know more than Seiya." : "Stop yapping, baldie.")>> <<set $espeech = ($tekijime.park == 38 ? "You... You're the young master of the Sawada Clan." : "Aoba is done.")>> <<goto "battle-crud2">> [[tekpark-battle]] <</backend>>
<<bg "park" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "park">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[tekpark-win]][[tekpark-lose]] <<set $dmgres = "">> <<set $location to "Park">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <<set $pspeech = ($tekijime.park == 38 ? "I hope Yodori's a better challenge." : " Flies...")>> <</backend>> <<bg "park" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> $ename gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "You">>$pspeech <</dialog>> <div class="button-row"> <<regButton "park" "Leave">><</regButton>> </div> </div> <<backend>> <<set $tekijime.park = $tekijime.park + 8>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg park"></div> <div class="content-panel"> You lost. I'll replenish half of your stats. Try again~ <<regButton "park" "Back to the Park">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $stats.ep = Math.min($stats.ep + Math.ceil($stats.maxep / 2), $stats.maxep)>> <<set $hidenav to 0>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "tekalley">> <<set $enemy = { level: $tekijime.alley, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = ($tekijime.alley == 32 ? "Oreni" : " Tekijime Student")>> <<set $eid to ($tekijime.alley == 32 ? "oreni-01" : "tekijime")>> <<set $pspeech = ($tekijime.alley == 32 ? "Let me show you how I did it." : "Stop yapping, baldie.")>> <<set $espeech = ($tekijime.alley == 32 ? "Hohh? So you're the one who beat Izaki? Did you cheat or something?" : "Aoba is done.")>> <<goto "battle-crud2">> [[tekalley-battle]] <</backend>>
<<bg "alley" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "alley">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[tekalley-win]][[tekalley-lose]] <<set $dmgres = "">> <<set $location to "Alley">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <<set $pspeech = ($tekijime.alley == 32 ? "I can't tell who's stronger between you and Izaki." : " Flies...")>> <</backend>> <<bg "alley" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> $ename gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "You">>$pspeech <</dialog>> <div class="button-row"> <<regButton "alley" "Leave">><</regButton>> </div> </div> <<backend>> <<set $tekijime.alley = $tekijime.alley + 8>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> You lost. I'll replenish half of your stats. Try again~ <<regButton "alley" "Back to the Alley">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $stats.ep = Math.min($stats.ep + Math.ceil($stats.maxep / 2), $stats.maxep)>> <<set $hidenav to 0>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "tekbisarea">> <<set $enemy = { level: $tekijime.bisarea, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = ($tekijime.bisarea == 34 ? "Sahai" : " Tekijime Student")>> <<set $eid to ($tekijime.bisarea == 34 ? "sahai-01" : "tekijime")>> <<set $pspeech = ($tekijime.bisarea == 34 ? "Why look for someone who isn't here?" : "Stop yapping, baldie.")>> <<set $espeech = ($tekijime.bisarea == 34 ? "Are you just as slippery as that chibi?" : "Aoba is done.")>> <<goto "battle-crud2">> [[tekbisarea-battle]] <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "business-area">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[tekbisarea-win]][[tekbisarea-lose]] <<set $dmgres = "">> <<set $location to "bisarea">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <<set $pspeech = ($tekijime.bisarea == 34 ? "You kept talking about a chibi but you couldn't even deliver." : " Flies...")>> <</backend>> <<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> $ename gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "You">>$pspeech <</dialog>> <div class="button-row"> <<regButton "business-area" "Leave">><</regButton>> </div> </div> <<backend>> <<set $tekijime.bisarea = $tekijime.bisarea + 8>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg business-area"></div> <div class="content-panel"> You lost. I'll replenish half of your stats. Try again~ <<regButton "business-area" "Back to the Business Area">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $stats.ep = Math.min($stats.ep + Math.ceil($stats.maxep / 2), $stats.maxep)>> <<set $hidenav to 0>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "tekresarea">> <<set $enemy = { level: $tekijime.resarea, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = ($tekijime.resarea == 36 ? "Kichiro" : " Tekijime Student")>> <<set $eid to ($tekijime.resarea == 36 ? "kichiro-01" : "tekijime")>> <<set $pspeech = ($tekijime.resarea == 36 ? "I could smack the both of you down at the same time, you know?" : "Stop yapping, baldie.")>> <<set $espeech = ($tekijime.resarea == 36 ? "Ehhh? You don't look buff. Where's Kishi?" : "Aoba is done.")>> <<goto "battle-crud2">> [[tekresarea-battle]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "residential">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[tekresarea-win]][[tekresarea-lose]] <<set $dmgres = "">> <<set $location to "resarea">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <<set $pspeech = ($tekijime.resarea == 36 ? "This is why you shouldn't bulk up too much. You were so stiff." : " Flies...")>> <</backend>> <<bg "residential" $hour>><</bg>> <div class="content-panel"> <<print $commentary>> $ename gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "You">>$pspeech <</dialog>> <div class="button-row"> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<backend>> <<set $tekijime.resarea = $tekijime.resarea + 8>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<div class="bg res-area"></div> <div class="content-panel"> You lost. I'll replenish half of your stats. Try again~ <<regButton "residential" "Back to the Residential Area">><</regButton>> </div> <<backend>> <<set $stats.hp = Math.ceil($stats.maxhp / 2)>> <<set $stats.ep = Math.min($stats.ep + Math.ceil($stats.maxep / 2), $stats.maxep)>> <<set $hidenav to 0>> <</backend>>
<div class="bg faculty"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shizu/shizu-faculty2.mp4" type="video/mp4"> </video> <<dialog "You">>You wanted to see me? <</dialog>> <<dialog "Shizu">>Sit down... <</dialog>> <div class="button-row"> <<regButton "main3-2" "Sit down">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-2]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "You">>What's wrong? <</dialog>> <<dialog "Shizu">>I heard... You fought Sai to a draw? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Shizu">>The whole purpose of us doing what we were doing was to stop you from fighting. <</dialog>> <<dialog "You">>Shizu-chan... <</dialog>> <<dialog "Shizu">>It seems like there's no point anymore, so we should stop doing what we've been doing. <</dialog>> <div class="button-row"> <<regButton "main3-3" "Explain yourself">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-3]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "You">>W-wait! Let's talk about this. <</dialog>> <<dialog "Shizu">>What's there to talk about, $player.name? Clearly, you like fighting more than me. <</dialog>> <<dialog "You">>No, Shizu-chan. Think about it, why did you stop me from joining the rankings in the first place? <</dialog>> <<dialog "Shizu">>I didn't want you to be like them... <</dialog>> <<dialog "You">>I didn't become like them, did I? My grades are still good. I haven't crippled anybody. When I beat Seiya and the others, I held back to not injure them. They weren't even hospitalized! <</dialog>> <<dialog "Shizu">>W-well... <</dialog>> <<dialog "You">>I told you I had a violent upbringing. How badly do you think they'd be destroyed if you weren't there for me? <</dialog>> <div class="button-row"> <<regButton "main3-4" "Continue">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-4]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <<dialog "Shizu">>You're just saying that... <</dialog>> <<dialog "You">>No, Shizu-chan. If it weren't for you, I'd be more violent and probably have beaten Kyogaku by now. <</dialog>> <<dialog "Shizu">>I... I don't know. <</dialog>> <<dialog "You">>Come on, Shizu. Do you really not want to be with me anymore? Just because I'm a little stronger than everyone else? <</dialog>> <<dialog "Shizu">>I just thought that... that maybe I've lost another student. <</dialog>> <<dialog "You">>Of course not. Come here. <</dialog>> <div class="button-row"> <<regButton "main3-5" "Kiss her">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-5]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg faculty"></div> <div class="content-panel"> <strong style="font-size: 30px;">*RIIIIIIIIIIIIIING!!!!!!*</strong> <<dialog "Shizu">>W-wait, lunch break is over! <</dialog>> <<dialog "You">>Goddammit. <</dialog>> <<dialog "Shizu">>Hmph. Serves you right! <</dialog>> <<dialog "You">>Awww. <</dialog>> <<dialog "Shizu">>Meet me in the classroom after class, okay? Let's continue this then~ <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row"> <<regButton "main3-6" "Go back to class">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-6]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>Okay, class! Back to your seats~ <</dialog>> <hr> You go back to your seat. <hr> <<dialog "Haru" "student">>You're back! You haven't been eating lunch with me these days. I'm getting upset, you know? <</dialog>> <<dialog "You">>Really? Should I take you out to lunch, then? Make up for it? <</dialog>> <<dialog "Haru" "student">>Maybe you should~ <</dialog>> <<dialog "Shizu">>... $player.name. Haru. Is there anything you'd like to share with the class? <</dialog>> <<dialog "Haru" "student">>N-no, ma'am! W-we're sorry. <</dialog>> <<dialog "Shizu">>Hmph. <</dialog>> <<dialog "Haru" "student">><i>M-miss Shizu seems upset today...</i> <</dialog>> <<dialog "You">><i>I wonder why~</i> <</dialog>> <div class="button-row"> <<regButton "main3-7" "Class ends">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-7]] <</backend>> <<set $location to "Faculty Room">> <<set $profile to "shizu-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>$player.name! I'll be in the Council Room, okay? Let me know when your thing with Shizu-sensei is done~ <</dialog>> <<dialog "You">>Okay~ <</dialog>> <hr> You wait for Shizu... <div class="button-row"> <<regButton "main3-8" "Somebody barges in">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-8]] <</backend>> <<set $location to "Classroom">> <<set $profile to "player-profile">> <<set $hour = 17>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Kyogaku">>You! You're coming with us. <</dialog>> <<dialog "You">>No way~ I have a date with Shizu-sensei~ <</dialog>> <<dialog "Kyogaku">>Y-you motherfucker... <</dialog>> <<dialog "Akagi">>Shizu-sensei has been taken by Tekijime. <</dialog>> <<dialog "You">>H-huh? <</dialog>> <<dialog "Kishi">>Yodori is outside. He has shown us this... <</dialog>> Kishi shows you a video <div class="button-row"> <<regButton "main3-shizu1" "Watch it (Rape)">><</regButton>> <<regButton "main3-9" "Don't watch it">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-9]][[main3-shizu1]] <</backend>> <<set $location to "Classroom">> <<set $profile to "player-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <img src="img/misc/shizu-kidnapped.jpg" style="max-width: 60%;"> <<dialog "You">>... <</dialog>> <<dialog "Kyogaku">>We're trading you for her. Come with us. <</dialog>> <<dialog "You">>Get out of my way... <</dialog>> <<dialog "Kuroki">>Kufufu~ You did well to get a draw from Kyogaku, but you can't fight all of us at the same time. <</dialog>> <<dialog "You">>Haaah. Seiya... Didn't I tell you you should know who I am by now? <</dialog>> <<dialog "Kuroki">>I don't know who you are~ You are indeed strong, but that's all you have~ <</dialog>> <<dialog "Kishi">>Haaaah. It feels cowardly doing this, but... <</dialog>> <<dialog "Akagi">>Let's just take him together, Kishi... <</dialog>> <div class="button-row"> <<regButton "main3-10" "Knock them both down">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-10]] <</backend>> <<set $location to "Classroom">> <<set $profile to "player-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <div class="button-row" style="justify-content: space-around;"><img src="img/misc/kishi-down.jpg" style="max-width: 45%;"><img src="img/misc/akagi-down.jpg" style="max-width: 45%;"></div> <<dialog "Kishi">>K--Kghhh... <</dialog>> <<dialog "Akagi">>... <</dialog>> <<dialog "You">>Did you think our fights were close? <</dialog>> <<dialog "Kyogaku">>!! <</dialog>> <<dialog "Kuroki">>Wh-what? <</dialog>> <<dialog "You">>Oi. Kuroki Seiya. You still don't know who I am? <</dialog>> <<dialog "Kuroki">>H-huh? <</dialog>> <<dialog "You">>My name's Sawada you know? <</dialog>> <<dialog "Kuroki">>C-could it be!! <</dialog>> <div class="button-row"> <<regButton "main3-11" "Seiya bows">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-11]] <</backend>> <<set $location to "Classroom">> <<set $profile to "player-profile">>
<div class="bg classroom"></div> <div class="content-panel"> <img src="img/misc/seiya-bow.png" style="max-width: 60%;"> <<dialog "Kuroki">>Y-young master! <</dialog>> <<dialog "Kyogaku">>K-kuroki!! <</dialog>> <<dialog "You">>Out of my way. <</dialog>> <<dialog "Kyogaku">>Tsk. I'll bring you to Tekijime. You don't have to be awake for that. Get ready to be knocked out. <</dialog>> <<dialog "Kuroki">>K-kyogaku! Wait! <</dialog>> <div class="button-row"> <<regButton "main3-f1-crud" "Fight">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-f1-crud]] <</backend>> <<set $location to "Classroom">> <<set $profile to "player-profile">>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "main3-f1">> <<set $enemy = { level: 60, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = "Sai Kyogaku">> <<set $eid to "ranker10">> <<set $pspeech = "You're right.">> <<set $espeech = "It's not going to be a draw today.">> <<goto "battle-crud2">> [[main3-f1-battle]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "classroom">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[main3-f1-win]][[main3-f1-lose]] <<set $dmgres = "">> <<set $location to "classroom">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>> <div class="bg classroom"></div> <div class="content-panel"> <<print $commentary>> $ename gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<glow "0.5px red" "8px red">><span style="color: red;">You replenish 25% of your hp.</span><</glow>> <<dialog "Kyogaku">>Ugkk!! M-mons... ter... <</dialog>> <<dialog "You">>That makes me number 1... I was told not to take Aoba before I take Tekijime. Taking both in the same day is probably fine... <</dialog>> <<dialog "Kuroki">>Y-young master... I apologize for not realizing who you were... <</dialog>> <<dialog "You">>Those three should wake up in a few minutes. I'm going to raid Tekijime and save Shizu-chan. Follow me after they regain consciousness. I'll take care of Yodori for now. <</dialog>> <<dialog "Kuroki">>As you wish. <</dialog>> <div class="button-row"> <<regButton "main3-12" "Leave">><</regButton>> </div> </div> <<backend>> [[main3-12]] <<set $inbattle = 0>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.25), $stats.maxhp)>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> You lost. I'm sending you back to the faculty room. I'll replenish half of your health too. Level up a bit more, then come back! <div class="button-row"> <<regButton "faculty" "Continue">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>> <<set $hidenav to 0>> <<set $inbattle to 0>> <<set $location to "Classroom">> <<set $profile to "player-profile">> <<set $hour = 12>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.5), $stats.maxhp)>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>... Where is Kyogaku? Why are you here alone? <</enemy>> <<dialog "You">>Out of my way. <</dialog>> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>... Do you not understand what's happening? You have been infuriating me for a while now. Gokuro-san won't mind if I give you a couple hits. <</enemy>> <div class="button-row"> <<regButton "main3-f2-crud" "Fight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main3-f2-crud]] <</if>> <<set $location to "School">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <<set $inbattle = 0>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "main3-f2">> <<set $enemy = { level: 65, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = "Yodori">> <<set $eid to "yodori-01">> <<set $pspeech = "...">> <<set $espeech = "You make me so angry.">> <<goto "battle-crud2">> [[main3-f2-battle]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "classroom">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[main3-f2-win]][[main3-f2-lose]] <<set $dmgres = "">> <<set $location to "school">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>><<set $rewmoney = 8 + ($enemy.level * random(4,8))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>> <<bg "campus" $hour>><</bg>> <div class="content-panel"> $ename gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<glow "0.5px red" "8px red">><span style="color: red;">You replenish 25% of your hp.</span><</glow>> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>Hggkk... <</enemy>> <<dialog "You">>... <</dialog>> <<dialog "Kuroki">>Young master. I've assembled the rankers. <</dialog>> <<dialog "You">>Wake the three punks up. We're raiding Tekijime. <</dialog>> <<dialog "Kuroki">><i>I thought it was Kyogaku that will unify Kumine. He had the drive... He wanted to create a good environment for that teacher, Shizu, to teach. I thought the young master would never visit Kumine. Ahh~ How wonderful. To think that I get to serve such a figure.</i> <</dialog>> <div class="button-row"> <<regButton "main3-13" "Raid Tekijime">><</regButton>> </div> </div> <<backend>> [[main3-13]] <<set $inbattle = 0>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.25), $stats.maxhp)>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> You lost. I'm sending you back to the faculty room. I'll replenish half of your health too. Level up a bit more, then come back! <div class="button-row"> <<regButton "faculty" "Continue">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>> <<set $hidenav to 0>> <<set $inbattle to 0>> <<set $location to "Classroom">> <<set $profile to "player-profile">> <<set $hour = 12>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.5), $stats.maxhp)>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/tekijime-raid.jpg" style="max-width: 60%;"> <<dialog "You">>... <</dialog>> <<dialog "Kuroki">>Young master. We've reached the campus! <</dialog>> <<dialog "You">>Charge. <</dialog>> <<enemy "oreni-01" "Oreni" "campus" "left" "enemies">>Not so fast, $player.name. You may have beaten me last time, but after fighting Yodori-san, you're probably tuckered out. <</enemy>> <<dialog "Kuroki">>How dare you... <</dialog>> <<dialog "Izaki">>Oi, $player.name. Shizu-sensei is a good teacher. I still hate you for taking Emi-chan from me, but I'll handle Oreni. I have unfinished business with him anyway. <</dialog>> <<enemy "oreni-01" "Oreni" "campus" "left" "enemies">>Izaki... <</enemy>> <<dialog "You">>Do what you want. <</dialog>> <div class="button-row"> <<regButton "main3-14" "Break through">><</regButton>> </div> </div> <<backend>> [[main3-14]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<enemy "sahai-01" "Sahai" "campus" "left" "enemies">>Keke~ You are not getting pastt~ <</enemy>> <<dialog "Akagi">>My jaw is still swollen, but I can give this bitch a handicap. Leave him to me. <</dialog>> <<enemy "kichiro-01" "Kichiro" "campus" "left" "enemies">>My muscles are way tougher than last time. <</enemy>> <<dialog "Kishi">>That's perfect. I need something tough to hit. <</dialog>> <<dialog "Kuroki">>Akashi. I wonder... Are you stronger than Yodori? <</dialog>> <<enemy "akashi-01" "Akashi" "campus" "left" "enemies">>Why don't you come and find out? <</enemy>> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>I... I'm not done yet! Sawada $player.name! <</enemy>> <<dialog "You">>Did you follow us all the way here? I'm surprised you're still conscious. I don't really have time for this, but I'll knock you down for good. <</dialog>> <<dialog "Kyogaku">>Stop. I'll take him. Go save Shizu-sensei. <</dialog>> <<dialog "You">>... Goodluck. <</dialog>> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>Kyogakuuuu~ I knew it. You're not fit to fight Gokuro-san. <</enemy>> <<enemy "kichiro-01" "Kichiro" "campus" "left" "enemies">>KILL THEM ALL!!! <</enemy>> <video controls width="640" height="360" autoplay loop> <source src="vids/misc/tekijime/kichiro-charge.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "main3-15" "Rush to Shizu-chan">><</regButton>> </div> </div> <<backend>> [[main3-15]] <</backend>>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/misc/tekijime/shizu/end.mp4" type="video/mp4"> </video> <<dialog "You">>Shizu-chan! <</dialog>> <<dialog "Shizu">>$player.name! Huhu <i>*sobs*</i> <</dialog>> <<dialog "You">>I've got you. <</dialog>> <div class="button-row"> <<regButton "main3-17" "Meanwhile...">><</regButton>> </div> </div> <<backend>> [[main3-17]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>F-fuck... Please be okay... <</dialog>> <div class="button-row"> <<regButton "main3-16" "You find Shizu-chan">><</regButton>> </div> </div> <<backend>> [[main3-16]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>H-how... <</enemy>> <<dialog "Kyogaku">>Compared to that monster $player.name... You're cute. <</dialog>> <<enemy "yodori-01" "Yodori" "campus" "left" "enemies">>Kyogakuuuu-Urghf. <</enemy>> <video controls width="640" height="360" autoplay loop> <source src="vids/misc/tekijime/yodori-down.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "main3-18" "Izaki's Redemption">><</regButton>> </div> </div> <<backend>> [[main3-18]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<enemy "oreni-01" "Oreni" "campus" "left" "enemies">>Izakiiiiiiii <</enemy>> <<dialog "Izaki">>Heh. I guess I'm still pretty tough, huh? $player.name and Kyogaku are just monsters. How reassuring~ <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/misc/tekijime/izaki-redemption.mp4" type="video/mp4"> </video> <div class="button-row"> <<regButton "main3-19" "Kuroki finishes up">><</regButton>> </div> </div> <<backend>> [[main3-19]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/misc/tekijime/kuroki-win.mp4" type="video/mp4"> </video> <<dialog "Kuroki">>Kufufu~ A win for my first war with the young master~ <</dialog>> <div class="button-row"> <<regButton "main3-20" "Leave with Shizu">><</regButton>> </div> </div> <<backend>> [[main3-20]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> You get out of the school. <<dialog "Kuroki">>Young Master! <</dialog>> <<dialog "Kyogaku">>Shizu-sensei!! <</dialog>> <<dialog "You">>We're retreating. <</dialog>> <<dialog "Kuroki">>B-but!! <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Is the young master of the Sawada Clan running away? How disappointing~ <</enemy>> <<dialog "You">>Shut up. We'll have our fight, don't worry. You've made a mistake today, Gokuro. Did you think I was weak because I lost to Yamaguchi Takeshi? <</dialog>> <<dialog "Uncle">>Haha! Even I would lose to that monster. Big Bro Isao only managed to draw with that battle maniac. <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Sawada Hideo! <</enemy>> <<dialog "Kuroki">>Hideo-sama! <</dialog>> <<dialog "Uncle">>Seiya-kun~ Look at you all grown up. Sorry I didn't tell you about $player.name transfering to Aoba. <</dialog>> <<dialog "You">>Take Gokuro. Make sure he's healthy. I would prefer if our 1v1 was fair. <</dialog>> <<dialog "Uncle">>Okay~ <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Y-you can't do this! Gangsters aren't supposed to meddle with the schools! <</enemy>> <<dialog "Kuroki">>Kufufu~ What an idiot. What are you talking about? This is not a gang war. This is a fight between Aoba and Tekijime. <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Y-you!! Fuck youuuuu!! <</enemy>> <div class="button-row"> <<regButton "main3-21" "Bring Shizu to Akane">><</regButton>> </div> </div> <<backend>> [[main3-21]] <</backend>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Hmmm. Aside from a few injuries, she's fine physically. Mentally though... <</dialog>> <<dialog "You">>Fuck... <</dialog>> <<dialog "Akane" "student">>Luckily, you saved her quickly. I have a drug that can erase what happened to her today. She won't remember a thing. <</dialog>> <<dialog "You">>That sounds like a dangerous drug. <</dialog>> <<dialog "Akane" "student">>Aside from an intense headache when she wakes up tomorrow, it's safe. It's only dangerous when taken regularly. It's truly fortunate that the traumatic event is still fresh in her mind. <</dialog>> <<dialog "Shizu">>Huhu... $player.name <</dialog>> <<dialog "Akane" "student">><i>Tsk...</i> <</dialog>> <<dialog "You">>Do it, Akane-chan. <</dialog>> <<dialog "Akane" "student">>As you wish. We'll have people take her back to her place. She should be back to normal tomorrow. <</dialog>> <<dialog "You">>Thank you. <</dialog>> <<dialog "Akane" "student">>You're welcome~ You should go home and rest, $player.name. If you want, you can even sleep in my office~ <</dialog>> <<dialog "You">>Another time, Akane-chan. <</dialog>> <<dialog "Akane" "student">>Awww... <</dialog>> <div class="button-row"> <<regButton "sleep" "Go home and rest">><</regButton>> </div> </div> <<backend>> <<set $player.quest = 4>> <</backend>>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/tekijime/shizu/dog'+random(1,4)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Noooo! <</dialog>> <div class="button-row"> <<regButton "main3-shizu1" "Doggy">><</regButton>> <<regButton "main3-shizu2" "Missionary">><</regButton>> <<regButton "main3-shizu3" "Cowgirl">><</regButton>> <<regButton "main3-shizu4" "She gets pissed on">><</regButton>> <<regButton "main3-shizu5" "Stop Watching">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ [[main3-shizu2]][[main3-shizu3]][[main3-shizu4]][[main3-shizu5]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/movers.mp4" type="video/mp4"> </video> <<dialog "Nirei">>Thanks for coming to help. <</dialog>> <<dialog "You">>It's no problem. I'm your landlord, so I should see the movers moving your stuff. <</dialog>> <div class="button-row"> <<regButton "nirei3-2" "You go to your apartment">><</regButton>> </div> </div> <<if false>> [[nirei3-2]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro1.mp4" type="video/mp4"> </video> <<dialog "You">>Should I help you unpack? <</dialog>> <<dialog "Nirei">>Hmmm. Before that... Can you take my picture? To commemorate my move. <</dialog>> <div class="button-row"> <<regButton "nirei3-3" "Sure">><</regButton>> </div> </div> <<if false>> [[nirei3-3]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro2.mp4" type="video/mp4"> </video> <<dialog "You">>Wow! I guess being a model runs in the family... <</dialog>> <<dialog "Nirei">>... You think so? <</dialog>> <div class="button-row"> <<regButton "nirei3-4" "Agree">><</regButton>> </div> </div> <<if false>> [[nirei3-4]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro4.mp4" type="video/mp4"> </video> <<dialog "Nirei">>Do you think I look like Shiori? <</dialog>> <<dialog "You">>Hmm. To some extent, but I think you have your own vibe. <</dialog>> <<dialog "Nirei">>Actually... Shiori thinks I'm a lesbian. <</dialog>> <<dialog "You">>Wh-what? <</dialog>> <<dialog "Nirei">>You see... We looked too similar as children. I hated it because we often got compared. Shiori is extremely beautiful after all. <</dialog>> <<dialog "You">>That had to have sucked. <</dialog>> <div class="button-row"> <<regButton "nirei3-5" "Continue">><</regButton>> </div> </div> <<if false>> [[nirei3-5]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>It did! We had to share a room too, so our personalities became the same. I think our room was as big as this room. Let me see... let's measure it. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro3.mp4" type="video/mp4"> </video> <<dialog "You">>It does seem a bit too cramped for two people. <</dialog>> <<dialog "Nirei">>Right? I had to share everything with Shiori, and everything I handed down to her, she pulled off way better. Every dress looked prettier when she wore it. So I did something impulsive... <</dialog>> <<dialog "You">>You became a lesbian? <</dialog>> <<dialog "Nirei">>Honestly, I just thought that if I dressed more masculine, our mother wouldn't be handing down my clothes to Shiori. I'd be compared to her less. <</dialog>> <<dialog "You">>You assumed a boyish personality to create an identity that deviated from your girly sister. <</dialog>> <<dialog "Nirei">>It worked well against bullies too. Being a "lesbian" gave me the courage to deck people. <</dialog>> <div class="button-row"> <<regButton "nirei3-6" "Continue">><</regButton>> </div> </div> <<if false>> [[nirei3-6]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro6.mp4" type="video/mp4"> </video> <<dialog "You">>You wanted to protect yourself and Shiori at the same time. <</dialog>> <<dialog "Nirei">>You understand me so well... <</dialog>> <<dialog "You">>I just listen well. <</dialog>> <<dialog "Nirei">>I'm tired of it... I want to be girly too, you know? But whenever I do... I get compared to my sister. I love her, but it hurts, you know? <</dialog>> <<dialog "You">>That sucks... <</dialog>> <div class="button-row"> <<regButton "nirei3-7" "Nirei tells you something">><</regButton>> </div> </div> <<if false>> [[nirei3-7]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro5.mp4" type="video/mp4"> </video> <<dialog "Nirei">>You know... I've seen you have breakfast with Shiori... <</dialog>> <<dialog "You">>Wh-what? N-nirei-san... I'm sorry... <</dialog>> <<dialog "Nirei">>Are you dating? <</dialog>> <<dialog "You">>A-actually... We're not. <</dialog>> <<dialog "Nirei">>Perfect. <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Nirei">>Honestly. All my life, Shiori has been depriving me of things. I love her so I could never steal her boyfriend, but since you're not dating, I can take you, right? <</dialog>> <div class="button-row"> <<regButton "nirei3-8" "Nirei becomes more aggressive">><</regButton>> </div> </div> <<if false>> [[nirei3-8]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Relax... I don't bite. <</dialog>> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/intro7.mp4" type="video/mp4"> </video> <<dialog "You">>Ow... <</dialog>> <<dialog "Nirei">>Hehe~ I lied~ <</dialog>> <<dialog "You">>Nirei... <</dialog>> <<dialog "Nirei">>You're dropping honorifics? How brazen... <</dialog>> <div class="button-row"> <<regButton "nirei3-9" "Kiss her">><</regButton>> </div> </div> <<if false>> [[nirei3-9]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/kissa.mp4" type="video/mp4"> </video> <<dialog "Nirei">>Mmmm~ <</dialog>> <<dialog "You">>N-nirei... <</dialog>> <div class="button-row"> <<regButton "nirei3-10" "Grab her boob">><</regButton>> </div> </div> <<if false>> [[nirei3-10]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/graba.mp4" type="video/mp4"> </video> <<dialog "You">>I know this won't change your mind... But, you're different from Shiori. I didn't think you were boyish as well... <</dialog>> <<dialog "Nirei">>You're just saying that... <</dialog>> <div class="button-row"> <<regButton "nirei3-11" "She undresses">><</regButton>> </div> </div> <<if false>> [[nirei3-11]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/undress1.mp4" type="video/mp4"> </video> <<dialog "You">>I'm not~ <</dialog>> <<dialog "Nirei">>Go ahead then, how am I different from Shiori? <</dialog>> <<dialog "You">>First, you look more mature... <</dialog>> <<dialog "Nirei">>Idiot. You're just calling me old. Of course, I do. I'm her older sister after all! <</dialog>> <div class="button-row"> <<regButton "nirei3-12" "Kiss her more">><</regButton>> </div> </div> <<if false>> [[nirei3-12]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/kissb.mp4" type="video/mp4"> </video> <<dialog "You">>I didn't mean old~ I just meant you look less sheepish~ You know how introverted Shiori is. <</dialog>> <<dialog "Nirei">>Mmmm... What else? <</dialog>> <<dialog "You">>Better complexion. She's a lot paler than you are~ <</dialog>> <<dialog "Nirei">>H-heyy~ That's my sister~ I just wanna know how we're different. I don't want you to tell me which of us is better... <</dialog>> <<dialog "You">>M-my bad... <</dialog>> <<dialog "Nirei">>I guess it did make me a little happy... Mmm~ What else? <</dialog>> <div class="button-row"> <<regButton "nirei3-13" "Suck on her nipples">><</regButton>> </div> </div> <<if false>> [[nirei3-13]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/titsa.mp4" type="video/mp4"> </video> <<dialog "You">>W-well... You have those moles~ <</dialog>> <<dialog "Nirei">>Pfftt. You mean these blemishes? <</dialog>> <<dialog "You">>Blemish? You know, in some countries, people call moles "Beauty Marks", and I agree. I think your moles are beautiful... <</dialog>> <<dialog "Nirei">>P-pfft... Is this how you seduced my sister? Mmmmmm~ <</dialog>> <div class="button-row"> <<regButton "nirei3-14" "Take her pants off">><</regButton>> </div> </div> <<if false>> [[nirei3-14]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/undress2.mp4" type="video/mp4"> </video> <<dialog "You">>Actually, she seduced me. <</dialog>> <<dialog "Nirei">>Yeah, right. <</dialog>> <div class="button-row"> <<regButton "nirei3-15" "Embrace her">><</regButton>> </div> </div> <<if false>> [[nirei3-15]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/nirei/1/grabb.mp4" type="video/mp4"> </video> <<dialog "You">>You don't believe me? <</dialog>> <<dialog "Nirei">>She IS a model, after all~ <</dialog>> <<dialog "You">>So? You're beautiful too~ But you're the one who came on to me. <</dialog>> <<dialog "Nirei">>Pshh <</dialog>> <div class="button-row"> <<regButton "nirei3-16" "Finger her">><</regButton>> </div> </div> <<if false>> [[nirei3-16]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'll show you why she seduced me~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/finger'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ohhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei3-16" "Keep touching her">><</regButton>> <<regButton "nirei3-17" "Take her panties off">><</regButton>> </div> </div> <<if false>> [[nirei3-17]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Let's get rid of this. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/panty.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "nirei3-18" "Cunnilingus">><</regButton>> </div> </div> <<if false>> [[nirei3-18]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/cuna'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>*Slurp*</i> You taste good. <</dialog>> <<dialog "Nirei">>Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei3-18" "Keep licking">><</regButton>> <<regButton "nirei3-19" "Blowjob">><</regButton>> </div> </div> <<if false>> [[nirei3-19]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Mmm~ My turn~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/bja'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>*Slurp*</i> You hashte ghoot too~ <</dialog>> <<dialog "You">>Ahhh~ Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei3-19" "Keep going">><</regButton>> <<regButton "nirei3-20" "Handjob">><</regButton>> </div> </div> <<if false>> [[nirei3-20]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/hj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Did that feel good? <</dialog>> <<dialog "You">>Ahhh~ Y-yes~ <</dialog>> <<dialog "Nirei">>Should I do it again? <</dialog>> <<dialog "You">>Y-yees~ <</dialog>> <div class="button-row"> <<regButton "nirei3-20" "Keep going">><</regButton>> <<regButton "nirei3-21" "She puts in back in her mouth">><</regButton>> </div> </div> <<if false>> [[nirei3-21]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/bjb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>*Nom*</i> You hike it when I shuck your dhick? <</dialog>> <<dialog "You">>Yeees~ <</dialog>> <<dialog "Nirei">><i>Gkkkkkk *Slurp*</i> <</dialog>> <div class="button-row"> <<regButton "nirei3-21" "Keep going">><</regButton>> <<regButton "nirei3-22" "Return the favor">><</regButton>> </div> </div> <<if false>> [[nirei3-22]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>H-hey. You should feel good too. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/cunb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhh~ Your tongue is so slimyyy~ <</dialog>> <div class="button-row"> <<regButton "nirei3-22" "Keep going">><</regButton>> <<regButton "nirei3-cowa" "Fuck her">><</regButton>> </div> </div> <<if false>> [[nirei3-cowa]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ah~ Ah~ Ah~ That~ Feels~ Good~ <</dialog>> <<dialog "You">>Keep going like that, Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei3-cowa" "Keep going">><</regButton>> <<regButton "nirei3-cowb" "Embrace her">><</regButton>> </div> </div> <<if false>> [[nirei3-cowb]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Hold me close~ <</dialog>> <<dialog "You">>Your body is so warm, Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei3-cowa" "Lie down">><</regButton>> <<regButton "nirei3-cowb" "Keep embracing her">><</regButton>> <<regButton "nirei3-doga" "Doggy">><</regButton>> <<regButton "nirei3-misa" "Missionary">><</regButton>> </div> </div> <<if false>> [[nirei3-doga]][[nirei3-misa]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/doga.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ Nirei, your ass is wonderful too~ <</dialog>> <<dialog "Nirei">>Ahhh~ You're reaching so deep~ <</dialog>> <div class="button-row"> <<regButton "nirei3-dogb" "Pull her to you">><</regButton>> </div> </div> <<if false>> [[nirei3-dogb]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/misa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhhh~ I love watching your tits bounce, Nirei~ <</dialog>> <<dialog "Nirei">>Keep watching my body as you fuck me~ <</dialog>> <div class="button-row"> <<regButton "nirei3-misa" "Keep going">><</regButton>> <<regButton "nirei3-doga" "Doggy">><</regButton>> <<regButton "nirei3-cowa" "Cowgirl">><</regButton>> <<regButton "nirei3-hard" "Fuck Hard">><</regButton>> </div> </div> <<if false>> [[nirei3-hard]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/dogb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Yeees~ I love it more when you're close to me~ <</dialog>> <<dialog "You">>Your body is so warm, Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei3-doga" "Put her down">><</regButton>> <<regButton "nirei3-dogb" "Keep going">><</regButton>> <<regButton "nirei3-misa" "Missionary">><</regButton>> <<regButton "nirei3-cowa" "Cowgirl">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/hard'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhh~ $player.name! I'm cummiiiing~ <</dialog>> <<dialog "You">>I'm about to cum tooo!! <</dialog>> <div class="button-row"> <<regButton "nirei3-hard" "Keep going">><</regButton>> <<regButton "nirei3-cum" "Cum">><</regButton>> </div> </div> <<if false>> [[nirei3-cum]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'm cummiiiing!!! <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/creampie.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>F-fuck... You came inside me... <</dialog>> <<dialog "You">>S-sorry... <</dialog>> <<dialog "Nirei">>Take responsibility, okay? <</dialog>> <div class="button-row"> <<regButton "nirei3-end" "Continue">><</regButton>> </div> </div> <<if false>> [[nirei3-end]] <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/1/end.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Haahh... I can't believe I just did that. <</dialog>> <<dialog "You">>Me too... <</dialog>> <<dialog "Nirei">>I just slept with my sister's boyfriend. <</dialog>> <<dialog "You">>I told you. We weren't dating. <</dialog>> <<dialog "Nirei">>Are you really not? You can tell me, you already got in my pants. <</dialog>> <<dialog "You">>Honestly, Shiori and I did not have the best first impression. You were surprised too when you found out I was friends with her, weren't you? <</dialog>> <<dialog "Nirei">>Yeah. Guy friends only become her friends so they can date her. <</dialog>> <<dialog "You">>Yep. That's why when we became friends, I suppressed all feelings I had for her, and it worked too well. Of course, I'm still attracted to her, but anything more than that... <</dialog>> <<dialog "Nirei">>Then, how come she's been sucking you off during breakfast? <</dialog>> <<dialog "You">><i>*Eherm*</i> W-well... Like I told you earlier. SHE seduced ME. You can ask her about this, you know? <</dialog>> <<dialog "Nirei">>Hmmm. I don't know. I'm not ready for that yet. In my mind, I still betrayed her. <</dialog>> <<dialog "You">>Do you regret it? <</dialog>> <<dialog "Nirei">>I don't know yet. I'm not exactly in love with you or anything. This is just purely physical. Can you make sure she doesn't find out about this for now? <</dialog>> <<dialog "You">>Of course... <</dialog>> <<dialog "Nirei">>You should go. Help me unpack my stuff next time, okay? <</dialog>> <<dialog "You">>I will. See you later, Nirei. <</dialog>> <<dialog "Nirei">>See you later, $player.name. <</dialog>> <div class="button-row"> <<regButton "res-area" "End">><</regButton>> </div> </div> <<if false>> <</if>> <<set $location to "Residential Area">> <<set $profile to "nirei-profile">> <<set $hidenav = 1>> <<backend>> <<script>> incrementTime(3, 30); <</script>> <</backend>> <<set $nirei.quest = 5>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>You ready to deal with Gokuro? <</dialog>> <div class="button-row"> <<regButton "main4-2" "Of course">><</regButton>> <<regButton "home" "Let me prepare">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main4-2]] <</if>> <<set $profile = "player-profile">> <<set $hidenav = 1>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Where is he? <</dialog>> <<dialog "Uncle">>We'll bring him to Aoba's rooftop. Even if he yells, no cop will come save him. <</dialog>> <<dialog "You">>Let me fight him one on one. If he wins, we'll let him go. <</dialog>> <<dialog "Uncle">>Heh. Poor kid. <</dialog>> <div class="button-row"> <<regButton "main4-3" "Go to school">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main4-3]] <</if>> <<set $profile = "player-profile">>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>S-sawada! D-don't be a coward! <</enemy>> <<dialog "You">>Hohh? You're saying that after hiding behind Tekijime? <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Urkk. You hid behind Aoba too, didn't you!? <</enemy>> <<dialog "You">>Did you go senile after getting caught by my clan? I drove every single insect you sent to Kumine. I only used Aoba after you took an Aoba Teacher. <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Oh, don't be a hypocrite, $player.name. Didn't you do the same thing to our Ojou-sama? <</enemy>> <<dialog "You">>If I did kidnap Azuki-chan, why would I have sex with her in Takeshi's house? Do you think I'm an idiot? <</dialog>> <<dialog "Uncle">>That's enough~ That's enough~ <</dialog>> <div class="button-row"> <<regButton "main4-4" "Hideo explains the rules">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main4-4]] <</if>> <<set $profile = "player-profile">> <<script>> incrementTime(0, 30); <</script>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>Gokuro~ As you've mentioned, $player.name here did fuck your princess' brains out~ <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Y-you! <</enemy>> <<dialog "Uncle">>So! To give you a chance, you just need to fight for your survival right? Beat $player.name, and you win your freedom~ If you lose, though... You'd be digging for coal in China. <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>That's fine, then! I'll beat the shit out of your young master. <</enemy>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "main4-crud" "Fight">><</regButton>> </div> </div> <<if false>> /* connected passages */ [[main4-crud]] <</if>> <<set $profile = "player-profile">>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "main4">> <<set $enemy = { level: 75, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $stats.ep = $stats.ep - 20>> <<set $ename = "Gokuro">> <<set $eid to "gokuro-01">> <<set $pspeech = "...">> <<set $espeech = "Perfect. I get to have revenge! This is for sullying Azuki Ojou's purity.">> <<goto "battle-crud2">> [[main4-battle]] <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "rooftop">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[main4-win]][[main4-lose]] <<set $dmgres = "">> <<set $location to "rooftop">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <<bg "rooftop" $hour>><</bg>> <div class="content-panel"> $ename gets knocked out. You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Hnggkkkk... F-fuck... A-are you... Just as strong as Ken-sama? H-huh? <</enemy>> <div class="button-row"> <<regButton "main4-5" "Approach him">><</regButton>> </div> </div> <<backend>> [[main4-5]] <<set $inbattle = 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> You lost. I'm sending you back home. Level up a bit more, then come back! <div class="button-row"> <<regButton "home" "Continue">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>> <<set $hidenav to 0>> <<set $inbattle to 0>> <<set $location to "Classroom">> <<set $profile to "player-profile">> <<set $hour = 12>> <<set $stats.hp = $stats.maxhp>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/shin-angry.png" style="max-width: 60%;"> <<dialog "You">>Yamaguchi Ken? You're going to wish I was Yamaguchi Ken... <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>S-stay away... <</enemy>> <<dialog "You">>You must've thought I was soft huh? For saving Shizu-chan... <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>N-no... S-sir... <</enemy>> <<dialog "You">>You must've thought this was an act of mercy... A way out for you. Beat the young master of the Sawada Clan then go home. <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>P-please... <</enemy>> <<dialog "You">>This isn't mercy. This is me venting my frustrations. <</dialog>> <div class="button-row"> <<regButton "main4-6" "Repeatedly wail on him">><</regButton>> </div> </div> <<backend>> [[main4-6]] <<set $inbattle = 0>> <<script>> incrementTime(0, 10); <</script>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Ughff! <</enemy>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>N-no-gkkkk... <</enemy>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>B-blease... S-stob i-- Hgkkk!! <</enemy>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>Id... hurds... Gffggkkk. <</enemy>> <img src="img/misc/gokuro-down.jpg" style="max-width: 80%;"> <<dialog "You">>Clean this up for me, uncle. <</dialog>> <<dialog "Uncle">>As I said earlier, he's going to China. I hope you like the cold, Gokuro-chan~ <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>B-ble... ase... S-sb... sbare... me... <</enemy>> <<dialog "You">>No. We can bargain with him. Send him to dad. He'll know what to do. <</dialog>> <<dialog "Uncle">>Awww. Did you hear that, Gokuro-chan? $player.name has given you mercy~ <</dialog>> <<enemy "gokuro-01" "Gokuro" "campus" "left" "enemies">>De... Denk... You... <</enemy>> <<dialog "You">>Fuck you. <</dialog>> <<dialog "Uncle">>So? What's next? <</dialog>> <<dialog "You">>Aoba? Although, I already beat Kyogaku. <</dialog>> <<dialog "Uncle">>Actually, Kyogaku is not the strongest in Aoba. There's a reason why he can come and go as he pleases yet Aoba is still untouched. Your school is being guarded by the Student Council. The current president is supposedly the strongest in history, Seto Kashiki. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "main4-7" "Meanwhile">><</regButton>> </div> </div> <<backend>> [[main4-7]] <<set $inbattle = 0>> <</backend>>
<div class="bg council-room"></div> <div class="content-panel"> <<dialog "Haru" "student">>Senpai! I'm done with the Activity Proposal~ We can submit it to the Faculty asap~ <</dialog>> <<dialog "Aodori">>Good work, Haru~ <</dialog>> <<dialog "Haru" "student">>Thanks! Is there anything else you need me to do? <</dialog>> <<dialog "Aki">>Being too diligent is not great, Haru-chan. You gotta take care of your health. Someone as beautiful as you should be taking it easy~ <</dialog>> <<dialog "Aodori">>A-aki! Stop flirting with Haru! <</dialog>> <<dialog "Kida">>You should make a move already, Aodori... Before Aki beats you to it... <</dialog>> <<dialog "Aodori">>Stop it. Haru is probably focusing on her studies anyway. Right, Haru? <</dialog>> <<dialog "Haru" "student">>Ummm... <</dialog>> <<dialog "Aki">>S-seriously? <</dialog>> <<dialog "Kida">>... No way... <</dialog>> <<dialog "Aodori">>A-are you seeing someone!? <</dialog>> <<dialog "Haru" "student">>N-no! $player.name and I haven't talked it about it yet... <i>*Blushes*</i> I-I should go!! <</dialog>> <div class="button-row"> <<regButton "main4-8" "Haru leaves">><</regButton>> </div> </div> <<backend>> [[main4-8]] <<set $inbattle = 0>> <</backend>>
<div class="bg council-room"></div> <div class="content-panel"> <<dialog "Aodori">>W-who is $player.name? <</dialog>> <<dialog "Kida">>... It could be Sawada $player.name... The transfer student... <</dialog>> <<dialog "Aki">>Haru is classmates with that guy. He's pretty strong. He beat my little brother, Akagi. Kyogaku too. <</dialog>> <<dialog "Kida">>... There's this incident with Tekijime too... Apparently, Haru's homeroom teacher, Shizu-sensei, was kidnapped by Tekijime... I heard it was Sawada $player.name, with the help of the rankers, who saved her. <</dialog>> <<dialog "Aodori">>H-haru shouldn't be with that kind of person!! <</dialog>> <<dialog "Aki">>He did put Shizu-sensei in danger. He's clearly not a good influence for Haru. <</dialog>> <<dialog "Kida">>... But he did beat Kyogaku... Gokuro of Tekijime hasn't been going to class too ever since the raid... He's pretty tough... Is there anything we can do? <</dialog>> <<dialog "Aodori">>Sh-shiki-san! What are we going to do about Sawada $player.name? <</dialog>> <<dialog "Shiki">>I only let Kyogaku and Tekijime exist so they can wear each other down... I could have crushed them both just as easily... As for Sawada $player.name... I'll crush him too. <</dialog>> <h1>First Arc complete!</h1> <div class="button-row"> <<regButton "sleep" "Continue">><</regButton>> </div> </div> <<backend>> [[main4-8]] <<set $inbattle = 0>> <<set $player.quest = 5>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Shizu-chan! Are you okay? <</dialog>> <<dialog "Shizu">>$player.name... I can't remember anything from last time, and my head hurts... What happened? <</dialog>> <<dialog "You">><i>Akane-chan said I shouldn't try to remind her as it might trigger the memory to resurface...</i> <</dialog>> <<dialog "Shizu">>$player.name? <</dialog>> <<dialog "You">>What? Oh! Y-you were just tired... <</dialog>> <<dialog "Shizu">>I don't know... For some reason... I feel scared. Like someone is going to take me... I feel a little sad too... <</dialog>> <<dialog "You">>Wh-what? I'm... sorry... <</dialog>> <<dialog "Shizu">>Why are you sorry? To be honest... when I saw you walk in the classroom, I felt... relief. All the fear and sadness is gone. D-do you know what that means? <</dialog>> <<dialog "You">>Wh-what? <</dialog>> <<dialog "Shizu">>I... think I love you. <</dialog>> <div class="button-row"> <<regButton "shizu3-2" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-2]] <<set $hidenav = 1>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Shizu-chan... <</dialog>> <<dialog "Shizu">>Stop! Don't say anything. I can't be in love with you. I'm your teacher. <</dialog>> <<dialog "You">>S-so what do we do? <</dialog>> <<dialog "Shizu">>Let's just continue what we've been doing. Until my feelings for you disappear. <</dialog>> <<dialog "You">>That seems irresponsible. What if we fall deeper? <</dialog>> <<dialog "Shizu">>That's a risk I'm willing to take... <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Shizu">>Come with me. I'll show you how sure I am. <</dialog>> <div class="button-row"> <<regButton "shizu3-3" "Go to an empty classroom">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-3]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/intro1.mp4" type="video/mp4">'>> </video> <<dialog "You">>We're gonna do it here? <</dialog>> <<dialog "Shizu">>This floor is being renovated, so nobody will come here~ <</dialog>> <<dialog "You">><i>Shit... I still feel bad for what happened to her...</i> <</dialog>> <div class="button-row"> <<regButton "shizu3-4" "She seduces you">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-4]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>Ohh? $player.name is hesitating? <</dialog>> <<dialog "You">>Sh-shizu... <</dialog>> <<dialog "Shizu">>You're not tempted by these? <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/intro2.mp4" type="video/mp4">'>> </video> <<dialog "You">>F-fuck... <</dialog>> <<dialog "Shizu">>Just do what you always do, $player.name~ <</dialog>> <div class="button-row" style="width: 60%;"> <<regButton "shizu3-5" "You realize that no amount of willpower. No amount of guilt. Nothing! None will help you resist. For it is perfect. The natural round shape that gives a perfect silhouette. The softness that lull you into allowing yourself to suffocate as you bury your entire being in between. The way it interacts with the laws of physics. How it jiggles from the slightest bit of movement. How it bounces when you give her a little bump. There is no escape. Succumb to the boobs.">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-5]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>Kiss me~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/kiss'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Mmm~ <</dialog>> <<dialog "Shizu">>Ahh~ You're so sweet~ <</dialog>> <<dialog "You">><i>Shit... She smells good.</i> <</dialog>> <div class="button-row"> <<regButton "shizu3-5" "Keep kissing her">><</regButton>> <<regButton "shizu3-6" "Grope her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-6]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">><i>I don't care anymore!</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/grope1.mp4" type="video/mp4">'>> </video> <<dialog "You">>I-it's these tits' fault! <</dialog>> <<dialog "Shizu">>Hehe~ I knew you couldn't resist~ <</dialog>> <div class="button-row"> <<regButton "shizu3-7" "Take them out">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-7]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/grope2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahhn~ <</dialog>> <<dialog "You">>You're beautiful, Shizu-chan! <</dialog>> <div class="button-row"> <<regButton "shizu3-8" "Suck on them">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-8]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/suck1.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahhhhh~ They're sensitive~ <</dialog>> <<dialog "You">>And they taste great~ <</dialog>> <div class="button-row"> <<regButton "shizu3-9" "Blowjob">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-9]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/lick'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ That's it, Shizu~ <</dialog>> <<dialog "Shizu">><i>*Slurp*</i> <</dialog>> <div class="button-row"> <<regButton "shizu3-bj1" "Continue">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-bj1]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/bja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>*Slurp* *Gkk*</i> Doesh it feel good? <</dialog>> <<dialog "You">>Yes~ Keep sucking like that~ <</dialog>> <div class="button-row"> <<regButton "shizu3-bj1" "Keep sucking">><</regButton>> <<regButton "shizu3-bj2" "Intensify">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-bj2]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/bjb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>*Slurp* *Slurp*</i> Hi wank you to eath me too~ <</dialog>> <<dialog "You">>J-just a little bit more~ <</dialog>> <div class="button-row"> <<regButton "shizu3-bj2" "Keep sucking">><</regButton>> <<regButton "shizu3-cun" "Eat her out">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-cun]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/cun'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>*Slurp* *Slurp*</i> Your pussy is as delicious as always. <</dialog>> <<dialog "Shizu">>Ahhhh~ S-stooop~ It's embarassing~ Ahhhhhhh~ <</dialog>> <div class="button-row"> <<regButton "shizu3-cun" "Keep licking">><</regButton>> <<regButton "shizu3-fin" "Finger her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-fin]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/fin'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>I think you're ready~ <</dialog>> <<dialog "Shizu">>Hnnnn~ I want to sit on you~ <</dialog>> <div class="button-row"> <<regButton "shizu3-fin" "Keep going">><</regButton>> <<regButton "shizu3-cow" "Fuck her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-cow]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/cow'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>That's it~ Keep riding~ <</dialog>> <div class="button-row"> <<regButton "shizu3-cow" "Keep riding">><</regButton>> <<regButton "shizu3-doga" "Doggy">><</regButton>> <<regButton "shizu3-misa" "Missionary">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-doga]][[shizu3-misa]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Fuck~ <</dialog>> <<dialog "You">>Kiss me. <</dialog>> <div class="button-row"> <<regButton "shizu3-doga" "Keep fucking her">><</regButton>> <<regButton "shizu3-dogb" "Kiss her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-dogb]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/misa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Fuck~ <</dialog>> <<dialog "You">>Kiss me. <</dialog>> <div class="button-row"> <<regButton "shizu3-misa" "Keep fucking her">><</regButton>> <<regButton "shizu3-misb" "Kiss her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-misb]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/dogb1.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Mmm~ <</dialog>> <<dialog "You">>Your lips are like strawberries~ <</dialog>> <div class="button-row"> <<regButton "shizu3-dogc" "Pull her up">><</regButton>> <<regButton "shizu3-dogd" "Bend her down">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-dogc]][[shizu3-dogd]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/dogc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Ahh~ You're reaching so deep~ <</dialog>> <<dialog "You">>I'd reach deeper if your ass wasn't so big~ <</dialog>> <div class="button-row"> <<regButton "shizu3-dogc" "Keep fucking her">><</regButton>> <<regButton "shizu3-dogd" "Bend her down">><</regButton>> <<regButton "shizu3-hard" "Fuck her hard">><</regButton>> <<regButton "shizu3-misa" "Missionary">><</regButton>> <<regButton "shizu3-cow" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-hard]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/dogd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Ahh~ Ahhh~ <</dialog>> <<dialog "You">>Sh-shit! I can see your ass rippling~ It's so sexy~ <</dialog>> <div class="button-row"> <<regButton "shizu3-dogd" "Keep fucking her">><</regButton>> <<regButton "shizu3-dogc" "Pull her towards you">><</regButton>> <<regButton "shizu3-misa" "Missionary">><</regButton>> <<regButton "shizu3-cow" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/misb1.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Mmm~ <</dialog>> <<dialog "You">>Your lips are like strawberries~ <</dialog>> <div class="button-row"> <<regButton "shizu3-misc" "Keep fucking">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-misc]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/misc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Fuck~ <</dialog>> <<dialog "You">>Kiss me. <</dialog>> <div class="button-row"> <<regButton "shizu3-misc" "Keep fucking her">><</regButton>> <<regButton "shizu3-doga" "Doggy">><</regButton>> <<regButton "shizu3-cow" "Cowgirl">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-misb]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/hard'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahh~ Fuuuuck~ I'm clooose~ <</dialog>> <<dialog "You">>F-fuuuck! <</dialog>> <div class="button-row"> <<regButton "shizu3-hard" "Keep fucking her">><</regButton>> <<regButton "shizu3-dogc" "Slow Down">><</regButton>> <<regButton "shizu3-cum" "Cum">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-cum]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/cum.mp4" type="video/mp4">'>> </video> <<dialog "You">>F-fuck! <</dialog>> <<dialog "Shizu">>Hehe~ You came~ <</dialog>> <div class="button-row"> <<regButton "shizu3-clean" "She cleans you up">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-clean]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/clean.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ohhhh~ <</dialog>> <<dialog "Shizu">><i>*Slurrrp*</i> Hi alwaysh gkive compfflete shervish~ <</dialog>> <div class="button-row"> <<regButton "shizu3-end" "Embrace her">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> [[shizu3-end]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/3/end.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>I don't care anymore. Sex with her feels too good. I'm sorry, Shizu-chan.</i> <</dialog>> <<dialog "Shizu">>Let's stay like this for a while, okay? <</dialog>> <<dialog "You">>Okay~ <</dialog>> <<dialog "Shizu">>I love you, $player.name~ It sucks that we can only be together on school days... <</dialog>> <<dialog "You">>Um... I'll call you on weekends, okay? <</dialog>> <<dialog "Shizu">>Really? That would be nice~ <</dialog>> <div class="button-row"> <<regButton "classroom" "Back to class">><</regButton>> </div> </div> <<set $profile to "shizu-profile">> <<backend>> <<set $hour = 9>> <<set $shizu.quest = 3>> <<set $hidenav = 0>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Shizu">>Hello? <</dialog>> <<dialog "You">>Hello~ <</dialog>> <<dialog "Shizu">>I'm going shopping, wanna come? <</dialog>> <<dialog "You">>Sure~ I know a place you can shop at~ <</dialog>> <<dialog "Shizu">>Oooh~ Are the clothes pretty? <</dialog>> <<dialog "You">>I don't know... We'll have a lot of fun though~ <i>We own it so I can do whatever I want there~</i> <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shizu-shop1" "Meet her">><</regButton>> </div> </div> <<backend>> [[shizu-shop1]] <<set $profile to "shizu-profile">> <<set $shizu.love = ($shizu.love + 1)>> <<set $hidenav = 1>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Shizu">>Hello? <</dialog>> <<dialog "You">>Hello~ <</dialog>> <<dialog "Shizu">>You called late today. I was hoping we'd go shopping together... <</dialog>> <<dialog "You">>I'm sorry, Shizu~ Stuff came up. <</dialog>> <<dialog "Shizu">>It's okay~ Wanna have lunch? <</dialog>> <<dialog "You">>Sure~ <</dialog>> <<dialog "Shizu">>Yay! I'm hungry... See you soon, okay? <</dialog>> <hr> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <div class="button-row"> <<regButton "shizu-lunch1" "Meet her">><</regButton>> </div> </div> <<backend>> [[shizu-lunch1]] <<set $profile to "shizu-profile">> <<set $shizu.love = ($shizu.love + 1)>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro1.mp4" type="video/mp4">'>> </video> <<dialog "You">>There she is. <</dialog>> <<dialog "You">>Shizu-chan! <</dialog>> <<dialog "Shizu">>Hi! <</dialog>> <<dialog "You">>Did you wait long? <</dialog>> <<dialog "Shizu">>Nope~ <</dialog>> <<dialog "You">>Let's go! <</dialog>> <<dialog "Shizu">>Lead the way~ <</dialog>> <div class="button-row"> <<regButton "shizu-shop2" "Walk with her">><</regButton>> </div> </div> <<backend>> [[shizu-shop2]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Where is this shop anyway? <</dialog>> <<dialog "You">>We're almost there~ <</dialog>> <<dialog "Shizu">>Hohh... You got me curious. <</dialog>> <div class="button-row"> <<regButton "shizu-shop3" "You arrive">><</regButton>> </div> </div> <<backend>> [[shizu-shop3]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro3.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ehhh? They mostly sell guy stuff though~ <</dialog>> <<dialog "You">>Let's just go in, okay? <</dialog>> <<dialog "Shizu">>A-are you turning me into a sugarmommy? I'm a bit offended, $player.name. <</dialog>> <<dialog "You">>Of course not! You're not spending a single penny today. <</dialog>> <div class="button-row"> <<regButton "shizu-shop4" "You go in">><</regButton>> </div> </div> <<backend>> [[shizu-shop4]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>Where are we eating? <</dialog>> <<dialog "You">>It's my uncle's. They have great Japanese Food. You like Karaage? <</dialog>> <<dialog "Shizu">>Wow~ I'm getting hungrier. <</dialog>> <div class="button-row"> <<regButton "shizu-lunch2" "You arrive">><</regButton>> </div> </div> <<backend>> [[shizu-lunch2]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro4.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>It really is just a bunch of boy clothes... Hmph. <</dialog>> <<dialog "You">>Yeah, the clothes here suck. Which is why it's so quiet here~ <</dialog>> <<dialog "Shizu">>Then why did you... Wait a minute! <</dialog>> <<dialog "You">>Hehe~ <</dialog>> <div class="button-row"> <<regButton "shizu-shop5" "Ask her for sex">><</regButton>> </div> </div> <<backend>> [[shizu-shop5]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro5.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>A-are you crazy!? No way! What if we get caught?</i> <</dialog>> <<dialog "You">><i>Wouldn't that be exciting?</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop6" "She changes the topic">><</regButton>> </div> </div> <<backend>> [[shizu-shop6]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro6.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Th-this shop isn't too bad! Look at these chains! Do you want any of them? I'll buy it for you~ <</dialog>> <div class="button-row"> <<regButton "shizu-shop7" "Tease her">><</regButton>> </div> </div> <<backend>> [[shizu-shop7]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro7.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>I want this~</i> <</dialog>> <<dialog "Shizu">><i>S-stop! We'll get kicked out~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop8" "She tries to act normal">><</regButton>> </div> </div> <<backend>> [[shizu-shop8]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/intro8.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Q-quit groping me~</i> <</dialog>> <<dialog "You">><i>You like it too~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop9" "Play with her boobs">><</regButton>> </div> </div> <<backend>> [[shizu-shop9]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/play'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Your boobs are too amazing~</i> <</dialog>> <<dialog "Shizu">><i>S-stop~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop10" "Rub her pussy">><</regButton>> </div> </div> <<backend>> [[shizu-shop10]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/rub.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>See? You're excited too. You're wet~</i> <</dialog>> <<dialog "Shizu">><i>Ahhn~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop11" "Take her tits out">><</regButton>> </div> </div> <<backend>> [[shizu-shop11]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/show.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Ooh~ No bra, huh?</i> <</dialog>> <<dialog "Shizu">><i>W-well... I knew we'd be doing something like this. I didn't think we'd do it here though~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop12" "Play with her nipples">><</regButton>> </div> </div> <<backend>> [[shizu-shop12]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/nip'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Your nipples are hard, Shizu-chan~</i> <</dialog>> <<dialog "Shizu">><i>Hnggg~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop12" "Keep going">><</regButton>> <<regButton "shizu-shop13" "Fondle her boobs">><</regButton>> </div> </div> <<backend>> [[shizu-shop13]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/grope'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Your boobs are so soft~</i> <</dialog>> <<dialog "Shizu">><i>We'll really get caught!</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop13" "Keep going">><</regButton>> <<regButton "shizu-shop14" "Someone walks in">><</regButton>> </div> </div> <<backend>> [[shizu-shop14]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/caught1.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>That scared me.</i> <</dialog>> <<dialog "Shizu">><i>See? L-let's stop.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop15" "No way">><</regButton>> </div> </div> <<backend>> [[shizu-shop15]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/force1.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>No way~</i> <</dialog>> <<dialog "Shizu">><i>S-stop it~</i> <</dialog>> <<dialog "You">><i>Come here.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop16" "Rub her pussy again">><</regButton>> </div> </div> <<backend>> [[shizu-shop16]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/rub'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>See? You're so wet, you want this too~</i> <</dialog>> <<dialog "Shizu">><i>O-of course I want this~ I'm horny too~ But it's too risky~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop17" "Pull her underwear to the side">><</regButton>> </div> </div> <<backend>> [[shizu-shop17]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/fin'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>But your pussy is so wet~</i> <</dialog>> <<dialog "Shizu">><i>Oohhhhh~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-lick" "She yields">><</regButton>> </div> </div> <<backend>> [[shizu-shop-lick]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">><i>Fuck it~ I don't care anymore. Give me that dick~</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/lick.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Doesn't it feel better when you let go?~</i> <</dialog>> <<dialog "Shizu">><i>*Slurp*</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-bj" "Blowjob">><</regButton>> </div> </div> <<backend>> [[shizu-shop-bj]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/bj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Ahhhh~</i> <</dialog>> <<dialog "Shizu">><i>*Slurp* *Ggkkk* Ish shomeone hooking?</i> <</dialog>> <<dialog "You">><i>No~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-bj" "Keep sucking">><</regButton>> <<regButton "shizu-shop-tj" "Paizuri">><</regButton>> </div> </div> <<backend>> [[shizu-shop-tj]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/tj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Mmm~ Your tits are so soft~</i> <</dialog>> <<dialog "Shizu">><i>Sh-shhh! What if they hear you?</i> <</dialog>> <<dialog "You">><i>I'd be bragging nonstop~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-tj" "Keep going">><</regButton>> <<regButton "shizu-shop-f" "Bend her over">><</regButton>> </div> </div> <<backend>> [[shizu-shop-f]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/force2.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Bend over~</i> <</dialog>> <<dialog "Shizu">><i>F-fuck we're really doing this~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-walk" "Walk her to a more secluded place">><</regButton>> </div> </div> <<backend>> [[shizu-shop-walk]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/walk.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Let's move here... No CCTV~</i> <</dialog>> <<dialog "Shizu">><i>A-are you saying the CCTV caught everything we did until now??</i> <</dialog>> <<dialog "You">><i>*Pfft~ This is gangster-owned so there's no CCTV inside. Only outside~ It's fun to tease her though~* I'm sure it's fine~</i> <</dialog>> <<dialog "Shizu">><i>Wha-wha-wha-what if it gets posted online?</i> <</dialog>> <<dialog "You">><i>People would probably jerk off to it~ Someone might even put it in a game~</i> <</dialog>> <<dialog "Shizu">><i>N-no way~ You're just messing with me~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-dog" "Fuck her">><</regButton>> </div> </div> <<backend>> [[shizu-shop-dog]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/dog'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Ahhh~ Ahh~ Ahhh~</i> <</dialog>> <<dialog "You">><i>This is so exciting~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-dog" "Keep going">><</regButton>> <<regButton "shizu-shop-caught" "Somebody walks in again">><</regButton>> </div> </div> <<backend>> [[shizu-shop-caught]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/caught2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Fuck. Fuck. Fuck~</i> <</dialog>> <<dialog "You">><i>Should a teacher swear this much?</i> <</dialog>> <<dialog "Shizu">><i>Sh-shut up~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-caught2" "You stall for time">><</regButton>> </div> </div> <<backend>> [[shizu-shop-caught2]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/caught3.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Should we stop?</i> <</dialog>> <<dialog "Shizu">><i>N-no way! After all of that?</i> <</dialog>> <<dialog "You">><i>That's my girl~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-cow" "Cowgirl">><</regButton>> <<regButton "shizu-shop-mis" "Missionary">><</regButton>> <<regButton "shizu-shop-dog" "Doggy">><</regButton>> </div> </div> <<backend>> [[shizu-shop-cow]][[shizu-shop-mis]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/cow'+random(1,4)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Ahhhh~</i> <</dialog>> <<dialog "You">><i>Keep your voice down~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-cow" "Keep going">><</regButton>> <<regButton "shizu-shop-mis" "Missionary">><</regButton>> <<regButton "shizu-shop-dog" "Doggy">><</regButton>> </div> </div> <<backend>> <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/mis'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>AHHHHHH~</i> <</dialog>> <<dialog "You">><i>Shhhhh~ F-fuck~ I'm close~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-mis" "Keep going">><</regButton>> <<regButton "shizu-shop-cum" "Cum">><</regButton>> <<regButton "shizu-shop-cow" "Cowgirl">><</regButton>> <<regButton "shizu-shop-dog" "Doggy">><</regButton>> </div> </div> <<backend>> [[shizu-shop-cum]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/cum.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Ahhh~</i> <</dialog>> <<dialog "Shizu">><i>Sh-shit~ That felt great~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-end1" "She fixes her blouse">><</regButton>> </div> </div> <<backend>> [[shizu-shop-end1]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">><i>D-do you have a napkin?</i> <</dialog>> <<dialog "You">><i>No, Shizu-chan~ I'm sorry.</i> <</dialog>> <<dialog "Shizu">><i>Hnggg. I'll just wipe it with my blouse.</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/end1.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>That was hot.</i> <</dialog>> <<dialog "Shizu">><i>Sh-shut up! It's so sticky!</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-end2" "She wears her panties">><</regButton>> </div> </div> <<backend>> [[shizu-shop-end2]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/end2.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>I think I like watching you dress up. Although, I'd prefer if you got naked.</i> <</dialog>> <<dialog "Shizu">><i>S-stop. I'm panicking~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-shop-end3" "She takes her jacket and rushes out">><</regButton>> </div> </div> <<backend>> [[shizu-shop-end3]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">><i>Fuck Fuck Fuck Fuck</i> <</dialog>> <<dialog "You">><i>Calm down, Shizu~</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/end3.mp4" type="video/mp4">'>> </video> <div class="button-row"> <<regButton "shizu-shop-end4" "You pick up her bag for her">><</regButton>> </div> </div> <<backend>> [[shizu-shop-end4]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>You left your purse~ And your me... <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/shop/end4.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>I'll really leave you, you know??</i> <</dialog>> <<dialog "You">>Will you really? <</dialog>> <<dialog "Shizu">><i>... Of course not. Hmph.</i> <</dialog>> <<dialog "You">>How sweet~ <</dialog>> <div class="button-row"> <<regButton "shizu-shop-end5" "Continue">><</regButton>> </div> </div> <<backend>> [[shizu-shop-end5]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>All that sex got me hungry... <</dialog>> <div class="button-row"> <<regButton "shizu-lunch1" "Invite to lunch">><</regButton>> <<regButton "shizu-lunch-end6" "Skip lunch">><</regButton>> </div> </div> <<backend>> <<set $profile to "shizu-profile">> <<set $hour = 12>> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/intro1.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Looks nice~ <</dialog>> <<dialog "You">>Glad you like it! Sit down. <</dialog>> <<dialog "Shizu">>Okay~ <</dialog>> <div class="button-row"> <<regButton "shizu-lunch3" "You eat">><</regButton>> </div> </div> <<backend>> [[shizu-lunch3]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/intro2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>It's delicious! <</dialog>> <<dialog "You">>Eat some more! <</dialog>> <<dialog "Shizu">>Okay~ <</dialog>> <div class="button-row"> <<regButton "shizu-lunch4" "You finish eating">><</regButton>> </div> </div> <<backend>> [[shizu-lunch4]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>That was great~ Although, are you sure that drink was non-alcoholic? <</dialog>> <<dialog "You">>The menu's still here. You can read it if you want. <</dialog>> <<dialog "Shizu">>Hmmm... It's not but... I-it's an aphrodisiac!! <</dialog>> <<dialog "You">>Really!? <</dialog>> <<dialog "Shizu">>No wonder. I googled it, and it's apparently not that strong. <</dialog>> <<dialog "You">>Do you feel horny? <</dialog>> <<dialog "Shizu">>... Maybe a little. <</dialog>> <<dialog "You">>Wanna have some fun? <</dialog>> <<dialog "Shizu">>Wh-what do you want me to do? <</dialog>> <<dialog "You">>First, let me have a peek. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/peek.mp4" type="video/mp4">'>> </video> <<dialog "You">>As hot as always~ <</dialog>> <<dialog "Shizu">>G-geez... <</dialog>> <div class="button-row"> <<regButton "shizu-lunch5" "Grope her">><</regButton>> </div> </div> <<backend>> [[shizu-lunch5]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>Haha~ Okay, that's enough. <</dialog>> <<dialog "You">>No way~ You already got me horny. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/grope.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Th-that's not my fault! It's the aphrodisiac!</i> <</dialog>> <<dialog "You">>I had a coke though~ <</dialog>> <<dialog "Shizu">><i>Wh-what? S-still... What if we get caught?</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch6" "Take her tits out">><</regButton>> </div> </div> <<backend>> [[shizu-lunch6]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "You">><i>Let me see them again~</i> <</dialog>> <<dialog "Shizu">><i>H-hey!</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/out.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Shh! You wanna get caught?</i> <</dialog>> <<dialog "Shizu">><i>N-noo~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch7" "Suck on her nipples">><</regButton>> </div> </div> <<backend>> [[shizu-lunch7]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">><i>Wh-what are you doi-- Ahhhn~</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/suck.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>*Slurp* Ahhh~ This is the best dessert~</i> <</dialog>> <<dialog "Shizu">><i>K-keep it down~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-bj" "Blowjob">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-bj]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "You">><i>Suck me off, Shizu-chan.</i> <</dialog>> <<dialog "Shizu">><i>W-wait! *Hggkkk*</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/bj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Oh my god~</i> <</dialog>> <<dialog "Shizu">><i>*Slurp* *Gawkk* G-geez.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-lick" "She licks you">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-lick]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">><i>*Slurp* You're too forshful~</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/lick'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>F-fuck. That tongue is dangerous~</i> <</dialog>> <<dialog "Shizu">><i>*Slurp* *Slurp*</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-tj" "Paizuri">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-tj]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">><i>My jaw is tired... I'll use my boobs.</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/tj.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>I'm not complaining~</i> <</dialog>> <<dialog "Shizu">><i>Pfft...</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-hide" "She gets scared">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-hide]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/hide.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Wh-what?</i> <</dialog>> <<dialog "Shizu">><i>I think that waiter saw us~</i> <</dialog>> <<dialog "You">><i>You're just paranoid~ Here. Lie down. I'll make you feel good too~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-fin" "Finger her">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-fin]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/fin'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Damn, you're really wet.</i> <</dialog>> <<dialog "Shizu">><i>I-it's the aphrodisiac! Ahhhh~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-fin" "Keep going">><</regButton>> <<regButton "shizu-lunch-cun" "Eat her out">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-cun]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/cun'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Let me see. Will I get horny too if I drink your juices?</i> <</dialog>> <<dialog "Shizu">><i>Hnnn~ As if you're not... Ahhhh~ Already horny~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-cun" "Keep going">><</regButton>> <<regButton "shizu-lunch-mis" "Fuck her">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-mis]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/mis'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Ahhhh~ That feels so good.</i> <</dialog>> <<dialog "Shizu">><i>Ahhh~ Ahhh~ Ahhh~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-mis" "Keep going">><</regButton>> <<regButton "shizu-lunch-hard" "Fuck her hard">><</regButton>> <<regButton "shizu-lunch-cowa" "Cowgirl">><</regButton>> <<regButton "shizu-lunch-doga" "Doggy">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-hard]][[shizu-lunch-cowa]][[shizu-lunch-doga]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/harda'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Ahhhhhh~ Waaaait~ Slow doooown~ My voiice~</i> Ahhhhh~ Ahhh~ <</dialog>> <<dialog "You">><i>Sh-shizu!</i> <</dialog>> <<dialog "Shizu">><i>Hnnnngggg~ I-I'm sorryyyy~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-mis" "Slow Down">><</regButton>> <<regButton "shizu-lunch-hard" "Keep going">><</regButton>> <<regButton "shizu-lunch-hard2" "Harder">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-hard2]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Hnnnn~ Wh-what if they see me bouncing? Ahhh~</i> <</dialog>> <<dialog "You">><i>You wanna stop?</i> <</dialog>> <<dialog "Shizu">><i>N-noo~ Fuck me in a different position~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-cowa" "Keep going">><</regButton>> <<regButton "shizu-lunch-cowb" "Lean her back">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-cowb]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/doga'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Mmmm~ Th-they could... Ahhhh~ Probably see you... Ahhhh~ Humping meee~</i> <</dialog>> <<dialog "You">><i>At least you're hidden, right?</i> <</dialog>> <<dialog "Shizu">><i>Mmmmmm~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-doga" "Keep going">><</regButton>> <<regButton "shizu-lunch-dogb" "See her tits bounce">><</regButton>> <<regButton "shizu-lunch-dogc" "She gets bold">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-dogb]][[shizu-lunch-dogc]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Mmmm~ Ahhhh~ A-am I... Ahhhh~ Low enough?</i> <</dialog>> <<dialog "You">><i>I bet they could see your boobs jiggle~ Hehe~</i> <</dialog>> <<dialog "Shizu">><i>S-stop that~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-cowb" "Keep going">><</regButton>> <<regButton "shizu-lunch-doga" "Doggy">><</regButton>> <<regButton "shizu-lunch-mis" "Missionary">><</regButton>> </div> </div> <<backend>> <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/dogb.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>These tits are heavenly~</i> <</dialog>> <<dialog "Shizu">><i>Ahhh~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-doga" "Go back">><</regButton>> <<regButton "shizu-lunch-dogc" "She gets bold">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-dogb]][[shizu-lunch-dogc]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/dogc.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Why are you raising your head?</i> <</dialog>> <<dialog "Shizu">><i>Ahhh~ Ahhh~ I... My neck... Ahhh~ Hurts~</i> <</dialog>> <<dialog "You">><i>This is exciting you, huh?</i> <</dialog>> <<dialog "Shizu">><i>N-noo~ Mmmmmmm~ M-maybe a little... Ahh~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-mis" "Missionary">><</regButton>> <<regButton "shizu-lunch-cowa" "Cowgirl">><</regButton>> <<regButton "shizu-lunch-doga" "Repeat">><</regButton>> </div> </div> <<backend>> <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/hardb.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Ahhhh~ I'm going to cuuum~ <</dialog>> <<dialog "You">><i>M-me too!</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-cum]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/cum.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Mmmm. That was great~</i> <</dialog>> <<dialog "You">><i>You're awesome.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-end1" "She covers up">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-end1]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/end1.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>I... I think people are coming.</i> <</dialog>> <<dialog "You">><i>F-fuck. I forgot that this was a shared room.</i> <</dialog>> <<dialog "Shizu">><i>Wh-what!?</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-end2" "She puts her sweater back on">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-end2]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/end2.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Fuck. Fuck.</i> <</dialog>> <<dialog "You">><i>H-hurry up.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-end3" "People go in">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-end3]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/end3.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Th-they saw...</i> <</dialog>> <<dialog "You">><i>They didn't~</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-end4" "She sneakily puts fixes her sweater">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-end4]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/end4.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>Th-this is so humiliating.</i> <</dialog>> <<dialog "You">><i>Hey, your boobs are not humiliating!</i> <</dialog>> <<dialog "Shizu">><i>Y-you brat...</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-end5" "Sit there awkwardly">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-end5]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shizu/lunch/end5.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">><i>D-do you have my panties?</i> <</dialog>> <<dialog "You">><i>Yep. I hid it in your purse.</i> <</dialog>> <<dialog "Shizu">><i>L-lets leave.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-lunch-end6" "Leave">><</regButton>> </div> </div> <<backend>> [[shizu-lunch-end6]] <<set $profile to "shizu-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Shizu">>That was so embarassing!! <</dialog>> <<dialog "You">>It was great! Haha~ <</dialog>> <<dialog "Shizu">>Easy for you to say! You just need to pull up your pants and you're good to go! <</dialog>> <<dialog "You">>Did you not have fun? <</dialog>> <<dialog "Shizu">>I-I didn't say that... <</dialog>> <<dialog "You">>Next time again? <</dialog>> <<dialog "Shizu">>Pervert... <</dialog>> <<dialog "You">>I'll take you home~ <</dialog>> <div class="button-row"> <<regButton "res-area" "Take her home">><</regButton>> </div> </div> <<backend>> <<set $hidenav = 0>> <<script>> incrementTime(1, 30); <</script>> <</backend>>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/tekijime/shizu/mis'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Noooo! <</dialog>> <div class="button-row"> <<regButton "main3-shizu1" "Doggy">><</regButton>> <<regButton "main3-shizu2" "Missionary">><</regButton>> <<regButton "main3-shizu3" "Cowgirl">><</regButton>> <<regButton "main3-shizu4" "She gets pissed on">><</regButton>> <<regButton "main3-shizu5" "Stop Watching">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/tekijime/shizu/cow'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Noooo! <</dialog>> <div class="button-row"> <<regButton "main3-shizu1" "Doggy">><</regButton>> <<regButton "main3-shizu2" "Missionary">><</regButton>> <<regButton "main3-shizu3" "Cowgirl">><</regButton>> <<regButton "main3-shizu4" "She gets pissed on">><</regButton>> <<regButton "main3-shizu5" "Stop Watching">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/tekijime/shizu/piss'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Noooo! <</dialog>> <div class="button-row"> <<regButton "main3-shizu1" "Doggy">><</regButton>> <<regButton "main3-shizu2" "Missionary">><</regButton>> <<regButton "main3-shizu3" "Cowgirl">><</regButton>> <<regButton "main3-shizu4" "She gets pissed on">><</regButton>> <<regButton "main3-shizu5" "Stop Watching">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>>
<div class="bg bathroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/tekijime/shizu/end.mp4" type="video/mp4">'>> </video> <<dialog "Shizu">>Huhuhu... $player.name... Help... <</dialog>> <div class="button-row"> <<regButton "main3-9" "Continue">><</regButton>></div> </div> <<backend>> updateright(); /* connected passages */ <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<print $commentary>> <<enemy "robber" "Mugger" "alley">>Come back here! <</enemy>> <div class="button-row"> <<regButton "alley" "Alley">><</regButton>> </div> </div> <<backend>> <<set $inbattle = 0>> <<set $hidenav to 0>> <<script>> incrementTime(0, 30); <</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<if $hour < 21>><video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/nirei-home.mp4" type="video/mp4">'>> </video> <<dialog "You">>Wanna do something? <</dialog>> <<dialog "Nirei">>Hmmm~ I wonder~ <</dialog>><<else>><<dialog "You">>Nirei's asleep. <</dialog>><</if>> <div class="button-row"> <<if $nirei.quest >= 7 && $hour >= 21>><<regButton "nirei-sleep1" "Sleep">><</regButton>><</if>> <<if $nirei.quest >= 7 && $hour == 20>><<regButton "nirei-bath1" "Join Nirei in the bath">><</regButton>><</if>> <<if $nirei.quest >= 7 && $hour < 17>><<regButton "nirei-d1" "Ask her out">><</regButton>><</if>> <<if $nirei.quest >= 7 && $hour >= 17 && $hour < 19>><<regButton "nirei-dd1" "Nirei has a request">><</regButton>><</if>> <<if $nirei.quest == 5>><<regButton "nirei4-1" "Help her unpack">><</regButton>><</if>> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<backend>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/unpack.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Put that there. <</dialog>> <<dialog "You">>Okay~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +20<</glow>></h1> <div class="button-row"> <<regButton "nirei4-2" "You finish unpacking">><</regButton>> </div> </div> <<backend>> [[nirei4-2]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <<set $nirei.love = $nirei.love + 20>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Come eat ramen. <</dialog>> <<dialog "You">>Okay~ <</dialog>> <<dialog "Nirei">>Sorry, this is all I have to offer. I'll treat you to better food next time! <</dialog>> <<dialog "You">>Don't worry about it. <</dialog>> <div class="button-row"> <<regButton "nirei4-3" "You wait for the ramen to cook">><</regButton>> </div> </div> <<backend>> [[nirei4-3]] <<script>> incrementTime(3,35); <</script>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/2.mp4" type="video/mp4">'>> </video> <<dialog "You">>So? Where are you going to take me for better food? <</dialog>> <<dialog "Nirei">>Hmm. I know a good Katsu Curry spot. It's cheap but it's amazing! <</dialog>> <<dialog "You">>Ohh? I can't wait. It's a date! <</dialog>> <div class="button-row"> <<regButton "nirei4-4" "She gets quiet">><</regButton>> </div> </div> <<backend>> [[nirei4-4]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/3.mp4" type="video/mp4">'>> </video> <<dialog "You">>What's wrong? <</dialog>> <<dialog "Nirei">>Listen. I talked to Shiori the day we... you know. <</dialog>> <<dialog "You">>Okay? What did you talk about? <</dialog>> <div class="button-row"> <<regButton "nirei4-5" "She explains">><</regButton>> </div> </div> <<backend>> [[nirei4-5]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/4.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Turns out... My little sister really likes you. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>She went on and on about how you protected her. How you made sure she was eating well at work. You even sleep on the studio's couch because you were sleep deprived that day but you still had to escort her. You're like a knight in shining armor to her. <</dialog>> <div class="button-row"> <<regButton "nirei4-6" "You try to explain">><</regButton>> </div> </div> <<backend>> [[nirei4-6]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/5.mp4" type="video/mp4">'>> </video> <<dialog "You">>L-listen... I just did all of those because I was trying to be a good friend. <</dialog>> <<dialog "Nirei">>Ohh? You're such a good friend that she rewards you with a blowjob every morning? <</dialog>> <<dialog "You">>W-well... <</dialog>> <<dialog "Nirei">>Haha. Calm down. I'm not trying to be a jealous girlfriend who caught my boyfriend cheating on me with my sister. I knew what I was getting into when we did what we did. <</dialog>> <div class="button-row"> <<regButton "nirei4-7" "You ask why she seems upset">><</regButton>> </div> </div> <<backend>> [[nirei4-7]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/6.mp4" type="video/mp4">'>> </video> <<dialog "You">>Why are you telling me this, then? <</dialog>> <<dialog "Nirei">>Well. She's my little sister. I do like what we did. A lot. But finding out how much she liked you kind of... broke my heart. <</dialog>> <<dialog "You">>Nirei... <</dialog>> <<dialog "Nirei">>Funny, right? After all the years I've spent yielding stuff I have to her, I finally took something she had. I thought I'd feel vindicated, but I just feel... <</dialog>> <<dialog "You">>Guilty? <</dialog>> She looks at you with a solemn expression, smiles bitterly and nods. <div class="button-row"> <<regButton "nirei4-8" "Ask what happens next">><</regButton>> </div> </div> <<backend>> [[nirei4-8]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/7.mp4" type="video/mp4">'>> </video> <<dialog "You">>So? What happens now? <</dialog>> <<dialog "Nirei">>I... I don't regret what we did. You're kind of a knight to me too, you know? Although I'm paying you, I know that it took genuine concern to offer your place tor me. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>I don't just sleep with anyone. I genuinely liked you... <</dialog>> <<dialog "You">>Then just keep liking me, Nirei... <</dialog>> <<dialog "Nirei">>I will. I will, but... I love Shiori. <</dialog>> <div class="button-row"> <<regButton "nirei4-9" "Ask again">><</regButton>> </div> </div> <<backend>> [[nirei4-9]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/8.mp4" type="video/mp4">'>> </video> <<dialog "You">>So what do we do? <</dialog>> <<dialog "Nirei">>We eat ramen. What else? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>Hehe. I'm sorry... We can still be friends. You're my landlord so it's not like I can avoid you. <</dialog>> <<dialog "You">>I'm... sorry. <</dialog>> <<dialog "Nirei">>For what? <</dialog>> <<dialog "You">>For making things complicated. I don't want to hurt Shiori too. <</dialog>> <<dialog "Nirei">>I know. Which is why I like you even more... <</dialog>> <<dialog "You">>Maybe things would have been easier if I met you first. <</dialog>> <<dialog "Nirei">>I know, right? That's your only flaw... You came too late. Why did it take you too long? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>Speaking of taking too long, the noodles are getting soggy. Let's eat! <</dialog>> <div class="button-row"> <<regButton "nirei4-10" "Eat">><</regButton>> </div> </div> <<backend>> [[nirei4-10]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/unpack/9.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Is it good? <</dialog>> <<dialog "You">>Yup! You picked a good brand. <</dialog>> <<dialog "Nirei">>I'm a college student, $player.name. Instant Noodles are my forte. <</dialog>> <<dialog "You">><i>Damn... Why do I feel so sad?</i> <</dialog>> <div class="button-row"> <<regButton "res-area" "Finish eating">><</regButton>> </div> </div> <<backend>> <<set $nirei.quest = 6>> <<script>> incrementTime(0,45) <</script>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>Wait! <</dialog>> <<dialog "You">>Yeah? <</dialog>> <<dialog "Shiori">>Would you like to join us? You're doing her a big favor, so I'm sure she won't mind. <</dialog>> <<dialog "You">>Oh... Shiori, I don't know. <</dialog>> <<dialog "Shiori">>Come on! It's my treat. You've done so much for me. You even helped my sister. I'll feel bad if you don't let me properly thank you. <</dialog>> <<dialog "You">>You already did... You still do~ Every breakfast time. <</dialog>> <<dialog "Shiori">>P-pervert! <</dialog>> <<dialog "You">>I meant you kept feeding me breakfast! What were you thinking of? I think you're the pervert here, Shiori~ Tsk. Tsk. <</dialog>> <<dialog "Shiori">>Sh-shut up... <</dialog>> <div class="button-row"> <<regButton "shiori7-2" "She insists">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $hidenav = 1>> <<set $location to "Residential Area">> [[shiori7-2]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>Come on. Please? For me? <</dialog>> <<dialog "You">>Urk. When you put it like that... <</dialog>> <<dialog "Shiori">>Hmm? You're coming? <</dialog>> <<dialog "You">><i>*Sigh*</i> I'm going to eat a lot, okay? <</dialog>> <<dialog "Shiori">>Yay! Hehe~ <</dialog>> <div class="button-row"> <<regButton "shiori7-3" "Get dinner with the Kanna sisters">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Residential Area">> [[shiori7-3]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Shiori">>Aniki! <</dialog>> <<dialog "Nirei">>Shiori! ... $player.name? <</dialog>> <<dialog "You">>Hi, Nirei. <</dialog>> <<dialog "Shiori">>I invited him. That's okay, right? <</dialog>> <<dialog "Nirei">>Y-yes! Of course! <</dialog>> You give Nirei a worried smile. <div class="button-row"> <<regButton "shiori7-4" "You sit">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $hour = 19>> <<set $profile = "nirei-profile">> <<set $location to "Residential Area">> [[shiori7-4]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Shiori">>Hmmm. What should we get? <</dialog>> <<dialog "Nirei">>Hmmm... <</dialog>> <<dialog "Shiori">>What do you want, $player.name? <</dialog>> <<dialog "You">>You pick for me~ <</dialog>> <<dialog "Shiori">>How aboooout... Katsu Curry? <</dialog>> <<dialog "Nirei">>N-no! <</dialog>> You and Shiori both look at Nirei with a puzzled expression. <<dialog "Nirei">>I... I'm a bit sick so the smell of curry... might make me feel nauseous. Can you pick something else? <</dialog>> <<dialog "Shiori">>Are you okay, Aniki? <</dialog>> <<dialog "Nirei">>Yeah. Don't worry... <</dialog>> <<dialog "You">>I-I'll just have the Gyudon then! I'm craving beef today. <</dialog>> <<dialog "Shiori">>Awww. I wanted to pick for you... What about you, Aniki? <</dialog>> <<dialog "Nirei">>Omurice! I'll get the omurice. <</dialog>> <<dialog "Shiori">>Ooh. That sounds good. I'll have that too~ <</dialog>> <<dialog "Nirei">>... <</dialog>> <div class="button-row"> <<regButton "shiori7-5" "You eat">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Resaurant">> [[shiori7-5]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Shiori">>This Omurice is delicious! Here, $player.name, have a taste. <</dialog>> <<dialog "You">>Wha- W-wait. Mmf <</dialog>> Shiori feeds you <<dialog "Nirei">>... <</dialog>> <<dialog "Shiori">>How is it? <</dialog>> <<dialog "You">>I-it's great! <</dialog>> <<dialog "Shiori">>How about the Gyudon? <</dialog>> <<dialog "Nirei">>... <</dialog>> You glance at Nirei but she avoids your gaze. You sigh in resignation and feed Shiori. <<dialog "You">>Here. <</dialog>> <<dialog "Shiori">>Oh my god! That's really good too! <</dialog>> <div class="button-row"> <<regButton "shiori7-6" "Nirei slams the table">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Resaurant">> [[shiori7-6]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Shiori">>A-aniki! <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>I have something to say. <</dialog>> <<dialog "You">>N-nirei... <</dialog>> <<dialog "Shiori">>What is it? <</dialog>> <<dialog "Nirei">>... Actually... <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>I have a guy I like. <</dialog>> <<dialog "Shiori">>A guy again? You still haven't tried dating girls? <</dialog>> <<dialog "Nirei">>Actually... I'm not really a lesbian... I'm not even bi. <</dialog>> <<dialog "Shiori">>Wh-what? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>Let's talk about this next time, okay? <</dialog>> <<dialog "Shiori">>B-but... Fine. Who is this person you like anyway? <</dialog>> <<dialog "Nirei">>... one of my classmates. <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Shiori">>Honestly, I'm shocked... but I'm happy for you, Ani-- nesan. Anesan. Haha <</dialog>> <div class="button-row"> <<regButton "shiori7-7" "You press her">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Resaurant">> [[shiori7-7]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "You">>So this guy you like. Are you guys dating? <</dialog>> <<dialog "Shiori">>$player.name... We should give Ani-- Anesan some privacy. <</dialog>> <<dialog "Nirei">>You can keep calling me Aniki, Shiori, and Yes. We are dating. <</dialog>> <<dialog "Shiori">>W-wow! <</dialog>> <<dialog "You">>Can we meet this guy, then? <</dialog>> <<dialog "Shiori">>$player.name! <</dialog>> <<dialog "Nirei">>Why do you wanna meet him? <</dialog>> <<dialog "Shiori">>Aniki, ignore him. <</dialog>> <<dialog "You">>He might move in with you soon, right? He could be a tenant. <</dialog>> <<dialog "Shiori">>$player.name! <</dialog>> <<dialog "Nirei">>Fine. Next dinner, I'll introduce you. <</dialog>> <<dialog "Shiori">>D-did you two fight? <</dialog>> <<dialog "Nirei">>Nope. <</dialog>> <<dialog "You">>Nope. <</dialog>> <<dialog "Shiori">>O-okay... <</dialog>> <div class="button-row"> <<regButton "shiori7-8" "You finish eating">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Resaurant">> [[shiori7-8]] <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>I'm stuffed! <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Shiori">>... Why is it so tense? Did you guys really not fight? <</dialog>> <<dialog "You">>O-of course! I'm just a little dizzy. I ate too much. <</dialog>> <<dialog "Nirei">>Same here. <</dialog>> <<dialog "Shiori">>Fine. Let's just go home then. You're going that way, right $player.name? I'll see you tomorrow, okay? <</dialog>> <<dialog "You">>I'll walk you home. <</dialog>> <<dialog "Nirei">>!! <</dialog>> <<dialog "Shiori">>Awww. How sweet. <</dialog>> <<dialog "You">>I'm supposed to protect you after all. <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "Shiori">><i>S-stop... My sister's right there.</i> <</dialog>> <<dialog "You">><i>Maybe I'll continue later, then.</i> <</dialog>> <<dialog "Shiori">><i>G-geez~</i> <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "You">>Let's go! <</dialog>> <<dialog "Shiori">>Okay. <</dialog>> <div class="button-row"> <<regButton "shiori7-9" "Take them home">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Business Area">> <<script>>incrementTime(1,15);<</script>> [[shiori7-9]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>Welp this is Aniki's place. <</dialog>> <<dialog "You">>Thanks for letting me eat with you, Nirei-san. I look forward to the next dinner and meeting your boyfriend of course. <</dialog>> <<dialog "Nirei">>Hmph. I'll take you to a Curry Katsu place I know. I'm sure I won't be sick anymore then. <</dialog>> <<dialog "Shiori">>Seriously, Aniki. Are you okay? <</dialog>> <<dialog "Nirei">>I'm fine, Shi. Get home safe, okay? <</dialog>> <<dialog "You">>Don't worry, I'll protect her. <</dialog>> <<dialog "Shiori">>Awww~ <</dialog>> Nirei glares at you. <<dialog "Shiori">>Bye, Aniki! See you tomorrow~ <</dialog>> <<dialog "Nirei">>Bye. <</dialog>> <<dialog "You">>Hmph. <</dialog>> <<dialog "Nirei">>Hmph. <</dialog>> <<dialog "Shiori">><i>D-do they not like each other? Geez...</i> <</dialog>> <div class="button-row"> <<regButton "shiori7-10" "Take Shiori home">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Residential Area">> <<script>>incrementTime(0,20);<</script>> [[shiori7-10]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>Aaand we're at my place. Thanks for walking me home~ <</dialog>> <<dialog "You">>As far as I'm concerned, as long as you haven't stepped foot inside your apartment, my job isn't done. <</dialog>> <<dialog "Shiori">>Ohhh~ I see~ Escorting me is a chore, huh? It's just a job to you~ <</dialog>> <<dialog "You">>Wh-what? Hey! You're turning a totally sweet line into something bad! <</dialog>> Shiori steps inside. <<dialog "Shiori">>I'm inside now. You can leave. Bye~ <</dialog>> <<dialog "You">>H-hey! Stop that. If you go home now, things will be awkward. <</dialog>> <<dialog "Shiori">>Hmmmm? You're still here? Your job is done though~ <</dialog>> <<dialog "You">>Cut it out. <</dialog>> <<dialog "Shiori">>Ohhh? Are you getting upset, Mr. Bodyguard? Hehe~ <</dialog>> <<dialog "You">>You know what's actually upsetting me? Whenever I take you home, we part ways because you have to have dinner with Nirei-san. We just had dinner so no way, you can't leave me yet. <</dialog>> <<dialog "Shiori">>Is that so?~ <</dialog>> <<dialog "You">>Come here~ <</dialog>> She comes out and you hug her. <<dialog "You">>It's too early to go home~ Let's hangout~ <</dialog>> <<dialog "Shiori">>Hehe~ Okay~ Wanna come in? <</dialog>> <<dialog "You">>Of course. <</dialog>> <div class="button-row"> <<regButton "shiori7-11" "You go in">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $profile to "shiori-profile">> <<set $location to "Shiori's home">> [[shiori7-11]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>Wait! <</dialog>> <<dialog "You">>Hmm? <</dialog>> <<dialog "Shiori">>I forgot. Weren't you supposed to have dinner with us? <</dialog>> <<dialog "You">>Oh, that's right! <</dialog>> <<dialog "Shiori">>Yeah! She's taking her boyfriend with us. <</dialog>> <<dialog "You">>Oh... That's right... <</dialog>> <div class="button-row"> <<regButton "shiori8-2" "You go to the Katsu place">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $hidenav = 1>> <<set $location to "Residential Area">> [[shiori8-2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>So? What do you wanna do? <</dialog>> <<dialog "Shiori">>Umm... <i>*Yaaawn*</i> Actually, I kind of want to go to bed. <</dialog>> <<dialog "You">>Whaaat? It's too early though. Can't we hang out? <</dialog>> <<dialog "Shiori">>Well, I did work all day today. <i>*Yaaawn*</i> <</dialog>> <<dialog "You">>You can just sleep in tomorrow~ Seriously, it's too early! People our age are still partying outside at this time, you know? <</dialog>> <<dialog "Shiori">>Ohhh? Is that so? I was thinking of letting you sleep here since it's already too late, but I guess it's still too early for you. <</dialog>> <<dialog "You">>But you know, those people are different. They're just students who don't know hard work! You should sleep early to maintain your beautiful skin. You're a model after all. <</dialog>> <<dialog "Shiori">><i>*Chuckles*</i> <</dialog>> You hug her from behind and lead her to her room. <<dialog "You">>Let's go to bed~ <</dialog>> <<dialog "Shiori">>Hahaha! Let me shower first~ <</dialog>> <<dialog "You">>Should I join you? <</dialog>> <<dialog "Shiori">>Don't push it, mister. You go take the shower first. I need to apply a mask and some hair serums. <</dialog>> <<dialog "You">>I just thought you'd be lonely all alone in the shower~ <</dialog>> <<dialog "Shiori">>Pfft~ <</dialog>> <div class="button-row"> <<regButton "shiori7-12" "You take a shower">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-12]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> You finish showering and Shiori takes her turn. You wait for her to come back. <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/1.mp4" type="video/mp4"> </video> <<dialog "You">>I'm getting too excited. How will I be able to sleep? <</dialog>> <div class="button-row"> <<regButton "shiori7-13" "Shiori gets out of the shower">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<script>>incrementTime(0,45);<</script>> <<set $location to "Shiori's home">> [[shiori7-13]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/2.mp4" type="video/mp4"> </video> <<dialog "You">>You're back~ <</dialog>> <<dialog "Shiori">>I'm sleepy~ <</dialog>> <div class="button-row"> <<regButton "shiori7-14" "She snuggles up to you">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-14]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/3.mp4" type="video/mp4"> </video> <<dialog "Shiori">>This feels nice. <</dialog>> <<dialog "You">>It does. <</dialog>> <div class="button-row"> <<if $shiori.quest == 8>><<regButton "shiori7-15" "Talk about what happened today">><</regButton>><<else>><<regButton "shiori7-18" "She yawns">><</regButton>><</if>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-15]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/4.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I was so shocked by Aniki earlier. She did date a couple of guys to make my parents happy... They weren't too accepting of her being a lesbian. <</dialog>> <<dialog "You">>Why do you think she felt like she was a lesbian back then? <</dialog>> <<dialog "Shiori">>Honestly, I had a feeling she was lying. You see, whenever my parents got me cute clothes or new make up, she always had this look... like she wants those things too. <</dialog>> <<dialog "You">>Really? <i>Shiori is more perceptive than I thought...</i> <</dialog>> <<dialog "Shiori">>I'm a girl too, you know? Of course, I can't just assume my sister's gender, so I believed that she was really a lesbian. All I'm saying is that it all makes sense in hindsight. <</dialog>> <div class="button-row"> <<regButton "shiori7-16" "Shiori gives you her perspective">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-16]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/5.mp4" type="video/mp4"> </video> <<dialog "Shiori">>You see... I love clothes. Which is why I became a model. <</dialog>> <<dialog "You">>I assumed so too. You are always very well-dressed. <</dialog>> <<dialog "Shiori">>You know... When we were kids. I always got her hand-me-downs. <</dialog>> <<dialog "You">>Yep. <</dialog>> <<dialog "Shiori">>Huh? What do you mean? How did you know? <</dialog>> <<dialog "You">><i>Shit</i> W-well. You know. Isn't that normal when it comes to siblings? <</dialog>> <<dialog "Shiori">>Huh. I guess. Still, I'd like it if I had my own clothes. Whenever I "inherit" her clothes, I alter them a bit so it fits better. That was the only way for me to actually like my clothes. That's also how I realized I wanted to work in fashion. <</dialog>> <<dialog "You">><i>Oh! That makes sense. So that's why Nirei thought Shiori pulled off her clothes better.</i> You are so talented. <</dialog>> <div class="button-row"> <<regButton "shiori7-17" "Shiori continues">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-17]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/6.mp4" type="video/mp4"> </video> <<dialog "Shiori">>When she came out to our parents as a lesbian, she started wearing boy clothes. That was when I was allowed to have my own clothes. Maybe I was too happy about the results so I chose to ignore the signs that she was lying. <</dialog>> <<dialog "You">>Why do you think she lied? <</dialog>> <<dialog "Shiori">>I don't know. <</dialog>> <<dialog "You">>Hmmm. <</dialog>> <<dialog "Shiori">>I'm just glad she's more open now~ I love her, so I'll accept her no matter what. <</dialog>> <<dialog "You">>Ohhh? Our Shiori isn't just beautiful, she's kind too~ <</dialog>> <<dialog "Shiori">>Heh. You like me even more now, huh? <</dialog>> <<dialog "You">>That's right, I didn't think it was possible. <</dialog>> <div class="button-row"> <<regButton "shiori7-18" "Shiori yawns">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-18]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/4.mp4" type="video/mp4"> </video> <<dialog "Shiori">>I'm so tired. <</dialog>> <<dialog "You">>Good work today, Shi. Let's just sleep~ <</dialog>> <<dialog "Shiori">>Actually... <</dialog>> <<dialog "You">>Hmmm? <</dialog>> <<dialog "Shiori">>I think I have enough energy for one more... activity. <</dialog>> <<dialog "You">>I'm so glad I slept over~ <</dialog>> <div class="button-row"> <<regButton "shiori7-19" "Kiss">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Shiori's home">> [[shiori7-19]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/shiori/sleep/kiss.mp4" type="video/mp4"> </video> <<dialog "You">>Shiori~ <</dialog>> <<dialog "Shiori">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "shiori7-hj" "She jerks you off">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-hj]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/hj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Shiori~ <</dialog>> <<dialog "Shiori">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "shiori7-hj" "She keeps stroking">><</regButton>> <<regButton "shiori7-bj" "Blowjob">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-bj]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/bj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">><i>*Gkkk* *Gkkk* *Gkkk*</i> Doesh it feel good?~ <</dialog>> <<dialog "You">>Ahh~ Yes~ <</dialog>> <div class="button-row"> <<regButton "shiori7-bj" "She keeps sucking">><</regButton>> <<regButton "shiori7-top" "She takes her top off">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-top]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/top.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmm~ I feel like sleeping naked today~ <</dialog>> <<dialog "You">>That's a great idea~ <</dialog>> <div class="button-row"> <<regButton "shiori7-panties" "She takes her panties off">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-panties]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/panties.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>I won't be needing this too~ <</dialog>> <<dialog "You">>You definitely won't. <</dialog>> <div class="button-row"> <<regButton "shiori7-mm" "Mutual Masturbation">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-mm]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/rub.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Yes, keep rubbing~ <</dialog>> <<dialog "You">>Isn't it great? Doing things together? <</dialog>> <div class="button-row"> <<regButton "shiori7-shicum" "You make her cum">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-shicum]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/69'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Eating together is great too~ <i>*Slurp*</i> <</dialog>> <<dialog "Shiori">>Hnnnggg~ Ith feelsh good~ <i>*Gkkkk*</i> <</dialog>> <div class="button-row"> <<regButton "shiori7-69" "Keep going">><</regButton>> <<regButton "shiori7-cow1" "Fuck her">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow1]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/shi-cum.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhhh~ I came~ <</dialog>> <<dialog "You">>Don't pass out yet~ <</dialog>> <div class="button-row"> <<regButton "shiori7-69" "69">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-69]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>That's it~ Ride me. <</dialog>> <<dialog "Shiori">>Ahhh~ Ahhh~ It feels goooood~ <</dialog>> <div class="button-row"> <<regButton "shiori7-cow1" "Keep going">><</regButton>> <<regButton "shiori7-cow2" "She leans back">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Yeah~ I can see your pussy swallowing my entire dick~ <</dialog>> <<dialog "Shiori">>Hnngggg~ You're so vulgaaar~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "shiori7-cow2" "Keep going">><</regButton>> <<regButton "shiori7-cow3" "She rides harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow3]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hnggggg~ Shiori~ I'm about to... <</dialog>> <<dialog "Shiori">>N-not inside! <</dialog>> <div class="button-row"> <<regButton "shiori7-cow3" "Keep going">><</regButton>> <<regButton "shiori7-cum1" "Cum">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cum1]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cum1.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhhh~ That felt great~ <</dialog>> <<dialog "Shiori">>Haah~ I'm glad~ <</dialog>> <div class="button-row"> <<if $shiori.quest >= 9>><<regButton "shiori7-r2" "Round 2">><</regButton>><</if>> <<regButton "shiori7-end2" "End">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-end2]][[shiori7-r2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/end2.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmm~ I'm tired now~ <</dialog>> <<dialog "You">>I still have energy though~ <</dialog>> <<dialog "Shiori">>Zzzzz~ <</dialog>> <<dialog "You">>Heh~ Goodnight, Shiori. <</dialog>> <div class="button-row"> <<regButton "shiori-sleep" "Sleep">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori-sleep]] <<if $shiori.quest < 9>><<set $shiori.quest = 9>><</if>> <</backend>>
<<include "sleep-crud">> <<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> You cuddle with Shiori. <hr> <img id="title-image" src="img/misc/shiori-sleep.jpg" style="width: 60%;"><<if $nirei.quest >= 6 && $day == "Sunday">><h1>Nirei pays you $60 for rent.</h1><</if>> <<regButton "shiori-wake" "Wake Up">><</regButton>> </div> <<backend>> [[shiori-wake]] <<set $location to "Shiori's home">> <<if $nirei.quest >= 6 && $day == "Sunday">><<set $player.money = $player.money + 60>><</if>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/r2.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>I can still go~ <</dialog>> <<dialog "You">>You wanna do it again? <</dialog>> <<dialog "Shiori">>Yes, please~ <</dialog>> <div class="button-row"> <<regButton "shiori7-cow4" "Cowgirl">><</regButton>> <<regButton "shiori7-dog1" "Doggy">><</regButton>> <<regButton "shiori7-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow4]][[shiori7-dog1]][[shiori7-mis1]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cowd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ I should have cleaned you first~ What if the cum gets me pregnant? <</dialog>> <<dialog "You">>Then I guess you'd be mine forever? <</dialog>> <<dialog "Shiori">>Ahhhhhh~ That doesn't sound bad~ <</dialog>> <div class="button-row"> <<regButton "shiori7-cow4" "Keep going">><</regButton>> <<regButton "shiori7-cow5" "Grab her tits">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow5]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/doga'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ I love the sound of my hips clapping your cheeks~ <</dialog>> <<dialog "Shiori">>Ahhh~ Ahhh~ You're reaching so deep inside~ <</dialog>> <div class="button-row"> <<regButton "shiori7-dog1" "Keep going">><</regButton>> <<regButton "shiori7-dog2" "Clap her cheeks harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-dog2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/misa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ You are so beautiful. <</dialog>> <<dialog "Shiori">>Ahhh~ Ahhh~ S-stop~ It's embarassing~ Ahhh~ To hear you say that~ Ahhhhh~ While you fuck meee~ <</dialog>> <div class="button-row"> <<regButton "shiori7-mis1" "Keep going">><</regButton>> <<regButton "shiori7-mis2" "Hold her hand">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-mis2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cowe'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Your tits are already perfect though~ Will they grow if you get pregnant? <</dialog>> <<dialog "Shiori">>Ahhh~ D-do you not like big boobs? Ahhhh~ <</dialog>> <<dialog "You">>I'm confident I'd like anything attached to you~ <</dialog>> <div class="button-row"> <<regButton "shiori7-cow5" "Keep going">><</regButton>> <<regButton "shiori7-cow6" "She leans back">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow6]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cowf.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Look at how my pussy is cleaning the cum off you~ <</dialog>> <<dialog "You">>Ohh~ <</dialog>> <div class="button-row"> <<regButton "shiori7-dog1" "Doggy">><</regButton>> <<regButton "shiori7-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cow6]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/dogb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Ahhh~ Ahhhhh~ I'm cummiiiing~ <</dialog>> <<dialog "You">>That's it, baby~ Cum~ <</dialog>> <div class="button-row"> <<regButton "shiori7-dog2" "Keep going">><</regButton>> <<regButton "shiori7-mis1" "Missionary">><</regButton>> <<regButton "shiori7-cow4" "Cowgirl">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-dog2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>But you are though~ <</dialog>> <<dialog "Shiori">>Ahhh~ Y-you're going to make me~ Ahhh~ Crazy for youuu~ <</dialog>> <div class="button-row"> <<regButton "shiori7-mis2" "Keep going">><</regButton>> <<regButton "shiori7-mis3" "Grab her waist">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-mis3]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>I'm already crazy about you~ <</dialog>> <<dialog "Shiori">>Ahhh~ I love youu~ <</dialog>> <div class="button-row"> <<regButton "shiori7-mis3" "Keep going">><</regButton>> <<regButton "shiori7-hard" "Fuck her hard">><</regButton>> <<regButton "shiori7-cow4" "Cowgirl">><</regButton>> <<regButton "shiori7-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-hard]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/hard.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhhh~ I'm going to cum again~ <</dialog>> <<dialog "Shiori">>Ahhhh~ Ahhhh~ Ahhhhhh~ <</dialog>> <div class="button-row"> <<regButton "shiori7-cum2" "Cum">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-cum2]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/cum2.mp4" type="video/mp4">'>> </video> <<dialog "You">>Haahhh~ Haahhh~ <</dialog>> <<dialog "Shiori">>I love you~ <</dialog>> <div class="button-row"> <<regButton "shiori7-end1" "End">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> [[shiori7-end1]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/sleep/end1.mp4" type="video/mp4">'>> </video> <<dialog "You">>You're amazing as always. <</dialog>> <<dialog "Shiori">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "shiori7-end2" "She falls asleep">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/1.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmm~ Heyy~ Wake up~ <</dialog>> <<dialog "You">>Uhn... Good morning~ <</dialog>> <div class="button-row"> <<regButton "shioriw-1" "Refuse to get up">><</regButton>> <<regButton "shiori-home" "Get up">><</regButton>> </div> </div> <<backend>> [[shioriw-1]] <<set $location to "Shiori's home">> <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Shiori">>Aniki! <</dialog>> <<dialog "Nirei">>Shiori! Hi! This is Reshi. <</dialog>> <<dialog "Reshi">>Hello, I'm Nirei's boyfriend. Nireka Reshi. <</dialog>> <<dialog "Shiori">>Hi! I'm Aniki's sister, Shiori. This is my... This is $player.name. <</dialog>> <<dialog "You">><i>*Stares judgmentally*</i> <</dialog>> <<dialog "Reshi">>Haha. Hey there... <</dialog>> <<dialog "Nirei">><i>*Glares at you*</i> <</dialog>> <<dialog "Shiori">><i>*Chuckles nervously*</i> <</dialog>> <<dialog "Reshi">>H-hey! Aren't you the model, Kanashi? <</dialog>> <<dialog "Shiori">>W-well... <</dialog>> You put your arm around Shiori. <<dialog "You">>Yup! She is. Don't tell anyone, okay? I'm actually a very jealous person. It would be a problem if your friends start bugging you about meeting my girl. <</dialog>> <<dialog "Reshi">>D-don't worry! <</dialog>> <<dialog "Shiori">>G-geez... $player.name. Be nice~ <</dialog>> <<dialog "Nirei">>You do seem like the jealous type. Reshi, let's sit down. <</dialog>> <<dialog "Reshi">>Sure, babe. <</dialog>> <div class="button-row"> <<regButton "shiori8-3" "Shiori pulls you to the side">><</regButton>> </div> </div> <<backend>> <<set $hour = 19>> <<set $profile = "nirei-profile">> <<set $location to "Residential Area">> [[shiori8-3]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Shiori">>Seriously. What's going on between you and my sister? You seemed tense last time too. <</dialog>> <<dialog "You">>A-ah. Well... W-will you promise you won't tell her you know? <</dialog>> <<dialog "Shiori">>Fine. I promise. <</dialog>> <<dialog "You">>Well... She accidentally caught us... during breakfast. <</dialog>> <<dialog "Shiori">>W-what!? <</dialog>> Shiori turns bright red. <<dialog "Shiori">>D-did she get mad at you? Is that why you're fighting? <</dialog>> <<dialog "You">>She's just being protective. We kind of had an argument when I helped her pack. <</dialog>> <<dialog "Shiori">>I... I'll just explain what happened to her. <</dialog>> <<dialog "You">>Don't. She'll come around. She knows you're a grown up. It would just be awkward if you talked about sex, you know? <</dialog>> <<dialog "Shiori">>O-okay... This is so embarrassing. <</dialog>> <<dialog "You">>Don't worry about it, okay? <</dialog>> <div class="button-row"> <<regButton "shiori8-4" "You sit down">><</regButton>> </div> </div> <<backend>> <<set $profile = "nirei-profile">> <<set $location to "Residential Area">> [[shiori8-4]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Nirei">>You okay, Shi? <</dialog>> <<dialog "Shiori">>Y-yup. <i>*Blushes*</i> <</dialog>> <<dialog "Nirei">>Really? Okay... We already ordered, by the way. <</dialog>> <<dialog "You">>So... How did you two meet? <</dialog>> <<dialog "Reshi">>We go to the same university. We took the same class last year and I've been pursuing her ever since. Then she suddenly gave me a chance~ <</dialog>> <<dialog "Shiori">>Really? Since last year? <</dialog>> <<dialog "You">>Weren't you dating someone then, Nirei? ...san? <</dialog>> <<dialog "Shiori">>How'd you know that? <</dialog>> Nirei glares at you. <<dialog "Nirei">>It's none of your business, $player.name. I told him I was living with Ryuu when he asked me to move into his apartment, Shi. <</dialog>> <<dialog "Reshi">>W-wait... You're living with $player.name, babe? <</dialog>> <<dialog "Nirei">>Wh-what? It's not like that... <</dialog>> <<dialog "You">>I'm her landlord. I live with my uncle so I rented out my apartment to her. <</dialog>> <<dialog "Reshi">>Oh... <</dialog>> <div class="button-row"> <<regButton "shiori8-5" "The food arrives">><</regButton>> </div> </div> <<backend>> <<set $profile = "nirei-profile">> <<set $location to "Residential Area">> [[shiori8-5]] <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <<dialog "Reshi">>Woah. This Katsu Curry is amazing. <</dialog>> <<dialog "Shiori">>It really is! <</dialog>> <<dialog "Nirei">>See? It's good isn't it? <</dialog>> Nirei glances at you. You smile. <<dialog "You">>It's delicious. <</dialog>> She smiles back with a hint of sadness in her eyes. <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <div class="button-row"> <<regButton "shiori8-6" "You finish eating">><</regButton>> </div> </div> <<backend>> <<set $profile = "nirei-profile">> <<set $nirei.love = $nirei.love + 5>> <<set $location to "Residential Area">> [[shiori8-6]] <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>I'm stuffed! Thanks for the treat, Aniki! Seriously though, I could have paid for me and $player.name. <</dialog>> <<dialog "You">>You don't have to pay for me too, Shi. <</dialog>> <<dialog "Nirei">>Consider it my housewarming~ <</dialog>> <<dialog "Reshi">><i>Why didn't she pay for mine?</i> <</dialog>> Reshi puts his arm around Nirei. <<dialog "You">><i>Motherfucker...</i> <</dialog>> Nirei takes Reshi's hand off and grabs Shiori's arm. You smirk. <<dialog "Reshi">>... <</dialog>> <<dialog "Nirei">>Let's go home~ <</dialog>> <<dialog "Shiori">>Actually, I have to go. I need to do something at the agency. <</dialog>> <<dialog "You">>I'll come with you. <</dialog>> <<dialog "Shiori">>No need. I'll head to our parents' house after and sleep there. I'll take a cab, okay? Don't worry. <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Shiori">>Yup! See you tomorrow, okay? <</dialog>> <<dialog "Nirei">>Tell mom and dad I said hi, okay? <</dialog>> <<dialog "Shiori">>Okay! <</dialog>> <div class="button-row"> <<regButton "shiori8-7" "Shiori takes a cab">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Business Area">> [[shiori8-7]] <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">><i>Damn. Am I thirdwheeling?</i> <</dialog>> Reshi's phone beeps. <<dialog "Reshi">>... Actually, babe. I need to go too. Something came up. <</dialog>> <<dialog "Nirei">>Y-you're not going to walk me home? <</dialog>> <<dialog "Reshi">>$player.name can walk you home for me! Take care of my Nirei, okay? Kanash-- I mean, Shiori will get mad if you let anything happen to her. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Reshi">>I'll take that as a yes~ I'm leaving! <</dialog>> <<dialog "Nirei">><i>Jerk...</i> <</dialog>> <div class="button-row"> <<regButton "shiori8-8" "Reshi leaves">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $profile to "nirei-profile">> <<set $location to "Business Area">> [[shiori8-8]] <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>What a dick. <</dialog>> <<dialog "Nirei">><i>*Glares at you*</i> You don't get to call my boyfriend a dick. <</dialog>> <<dialog "You">>Why not? He was being a dick. <</dialog>> <<dialog "Nirei">>What is your problem!? <</dialog>> <<dialog "You">>Are you two even really dating? <</dialog>> <<dialog "Nirei">>Wooow. How dare you. <</dialog>> She walks away. <div class="button-row"> <<regButton "shiori8-9" "Follow her">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Business Area">> [[shiori8-9]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Stop following me. <</dialog>> <<dialog "You">>Didn't you hear your boyfriend? Shiori will get mad at me if something happens to you. <</dialog>> <<dialog "Nirei">>Ohh? When did you ever worry about Shiori's feelings? You haven't thought of that when you did what you did to me. <</dialog>> <<dialog "You">>You came on to me, Nirei. <</dialog>> <<dialog "Nirei">>You're really starting to make me regret it. Stop following me! <</dialog>> <div class="button-row"> <<regButton "shiori8-10" "She cuts through an alley">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Business Area">> [[shiori8-10]] <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "Nirei">><i>That asshole...</i> <</dialog>> <<enemy "random-punk" "Random Punk" "alley" "left">>Ohh~ How lucky. You came here by yourself.<</enemy>> <<dialog "Nirei">>Wh-who are you? <</dialog>> <<enemy "random-punk" "Random Punk" "alley" "left">>I'll tell you if we have some fun~<</enemy>> <<dialog "Nirei">>P-please stay away... <</dialog>> <<dialog "You">>See? Why'd you have to cut through here? <</dialog>> <<dialog "Nirei">><<print $player.name.charAt(0)>>-<<print $player.name>>... <</dialog>> <<enemy "random-punk" "Random Punk" "alley" "left">>Playing hero hu--<</enemy>> <div class="button-row"> <<regButton "shiori8-11" "Deck him">><</regButton>> </div> </div> <<backend>> <<set $location to "Alley">> [[shiori8-11]] <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <img id="title-image" src="img/misc/punk-hit.jpg" style="width: 60%;"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <<dialog "Nirei">>$player.name! <</dialog>> <<enemy "random-punk" "Random Punk" "alley" "left">>Urkk.<</enemy>> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Nirei">>... <</dialog>> <div class="button-row"> <<regButton "shiori8-12" "Apologize">><</regButton>> </div> </div> <<backend>> <<set $location to "Alley">> <<set $nirei.love = $nirei.love + 5>> [[shiori8-12]] <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>Look... I'm sorry I kept bugging you, but never go through alleys, okay? <</dialog>> <<dialog "Nirei">>O-okay... <</dialog>> <<dialog "You">>I... I know I'm being a dick. It's just... a bummer you know? <</dialog>> <<dialog "Nirei">>What is? <</dialog>> <<dialog "You">>Finding out that the real reason you don't want to be with me was some guy. <</dialog>> <<dialog "Nirei">>You... You're a real jerk, aren't you? <</dialog>> <<dialog "You">>Huh? <</dialog>> <<dialog "Nirei">>I didn't lie to you! I only dated Reshi because you kept being lovey-dovey with my sister. IN FRONT OF ME!! <</dialog>> <<dialog "You">>So that guy... <</dialog>> <<dialog "Nirei">>He has liked me for a while now. I just started dating him so I don't seem so... I don't know... Pitiful. Then you just had to give me shit for it. <</dialog>> <<dialog "You">>Fuck... Nirei. I'm sorry. <</dialog>> <<dialog "Nirei">>This is why it won't work between us, $player.name. I'll keep feeling like I'm giving you away whenever the three of us meet. I can't live like that... It's just... too painful. <</dialog>> <<dialog "You">>You can't keep dating someone you don't like. <</dialog>> <<dialog "Nirei">>What about you? Do you even like Shiori? It doesn't seem like it. You're following me around like this. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Nirei">>Just... Let me move on. <</dialog>> <div class="button-row"> <<regButton "shiori8-13" "She tries to walk away but she hesitates">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Alley">> [[shiori8-13]] <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <<dialog "You">>I'll walk you home. <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "You">>I know you're shaken up by this dumbass. Let me walk you home. <</dialog>> <<dialog "Nirei">>... Thanks. <</dialog>> <div class="button-row"> <<regButton "shiori8-14" "You walk her home">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Alley">> [[shiori8-14]] <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>We're here... Thanks for walking me home. <</dialog>> <<dialog "You">>Listen. I'm really sorry. For being clueless. <</dialog>> <<dialog "Nirei">>... and insensitive. <</dialog>> <<dialog "You">>That too. <</dialog>> <<dialog "Nirei">>I know you didn't mean to be. Just... don't break my sister's heart. <</dialog>> She walks inside. <<dialog "You">>What about you though... <</dialog>> <div class="button-row"> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<if false>> <</if>> <<backend>> <<set $location to "Residential Area">> <<set $shiori.quest = 10>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>Damn! I forgot my school jacket at Nirei's place. Idiot. I'll call her. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "You">>She's not answering... <</dialog>> <div class="button-row"> <<regButton "nirei5-2" "Go to her apartment">><</regButton>> </div> </div> <<backend>> [[nirei5-2]] <<set $location to "Bedroom">> <<set $profile to "nirei-profile">> <<set $hidenav to 1>> <<set $prevHour = $hour>> <</backend>>
<<backend>><<set $hour = 9>><</backend>><<bg "campus" $hour>><</bg>> <div class="content-panel"> <h1>Let's rewind time a bit.</h1> <<dialog "Reshi">>Please? My friends really want to meet you. <</dialog>> <<dialog "Nirei">>I don't feel like going out, Reshi. <</dialog>> <<dialog "Reshi">>How about we drink at your place? You don't have to go out. You're just meeting my friends. <</dialog>> <<dialog "Nirei">>Are you serious? I don't like having a bunch of guys in my apartment. <</dialog>> <<dialog "Reshi">>I have female friends too, you know! Come on, please? <</dialog>> <<dialog "Nirei">>I don't care if you have female friends too. You know my history with the boys in this school. Harassing me just because I look like my sister. <</dialog>> <<dialog "Reshi">>Come on, babe. My friends aren't like that. Even if they were, I'll be there with you. No one will harass you. <</dialog>> <<dialog "Nirei">>... Ugh. I'll think about it. <</dialog>> <<dialog "Reshi">>You're the best, babe! I love you~ <</dialog>> <<dialog "Nirei">>Yeah. Yeah. <</dialog>> <<dialog "Reshi">>... <</dialog>> <div class="button-row"> <<regButton "nirei5-3" "Nirei's day passes by">><</regButton>> </div> </div> <<backend>> [[nirei5-3]] <<set $location to "Nirei's School">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <h1>Nirei's door rings.</h1> <<dialog "Reshi">>Babe, it's me! <</dialog>> <<dialog "Nirei">>Huh? Why are you here? <</dialog>> <<dialog "Reshi">>You were meeting my friends, remember? <</dialog>> <<dialog "Nirei">>I didn't say yes, Reshi. <</dialog>> <<dialog "Reshi">>Really? Well, since you told me you'd think about it and you didn't answer, I assumed you're okay with it. <</dialog>> <<dialog "Nirei">>Ugh. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Nice to meet you~ Our bad for intruding.<</enemy>> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>Woah~ Your girlfriend really looks like Kanashi~<</enemy>> <<dialog "Reshi">>Heh~ Isn't she hot? <</dialog>> <<dialog "Nirei">><i>H-hot?</i> <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Nice to meet you~<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Sorry for intruding~<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>We brought booze~<</enemy>> <div class="button-row"> <<regButton "nirei5-4" "They go in uninvited">><</regButton>> </div> </div> <<backend>> <<set $hour = 18>> [[nirei5-4]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/party/1.mp4" type="video/mp4">'>> </video> <<dialog "Reshi">>Wow, babe! I didn't know you were this wild~ <</dialog>> <<dialog "Nirei">>Urf... You... <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Lol~ She's drunk~<</enemy>> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>Reshi, your girlfriend's really hot.<</enemy>> <<dialog "Nirei">><i>P-pervert.</i> I need to go to the bathroom. <</dialog>> <<dialog "Reshi">>... <</dialog>> <div class="button-row"> <<regButton "nirei5-5" "Reshi follows her">><</regButton>> </div> </div> <<backend>> <<set $hour = $prevHour>> [[nirei5-5]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Reshi">>Why are you being such a bitch, Nirei? <</dialog>> <<dialog "Nirei">>Wh-what? How dare you! <</dialog>> <<dialog "Reshi">>Can't you even entertain my friends? It took so much effort to make you date me and you don't even put out. <</dialog>> <<dialog "Nirei">>Get out of my apartment!! <</dialog>> <<enemy "random-punk" "Reshi's Friend" "nirei-home" "left">>But I just got here~<</enemy>> <<dialog "Nirei">>Y-you! <</dialog>> <<dialog "Reshi">>Haha! I wanted to humiliate Kanashi's boyfriend that day, but who knew he was stronger than Obu-kun~ <</dialog>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>I told you! That motherfucker hit me with a bat!<</enemy>> <<dialog "Reshi">>Weird. That guy didn't bring a bat in the restaurant. <</dialog>> <<dialog "Nirei">>Wh-why? <</dialog>> <<dialog "Reshi">>Eh? I just liked you because you looked like Kanashi. If I blackmailed her using you, maybe I can sleep with her. Keke~ <</dialog>> <<dialog "Nirei">>You motherfucker!! <</dialog>> <<dialog "Reshi">>Take her top off, Obu. <</dialog>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>Gladly~<</enemy>> <div class="button-row"> <<regButton "nirei5-6" "They parade her in the living room">><</regButton>> </div> </div> <<backend>> [[nirei5-6]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/party/2.mp4" type="video/mp4">'>> </video> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Ohhh? You're finally doing it? lol<</enemy>> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>Woooah! Kanashi's tits!<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Haaahhh~ I was getting tired acting all buddy-buddy with that stuck up bitch.<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>That's not Kanashi, you idiot. That's her sister.<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>She looks just like her though~<</enemy>> <<dialog "Reshi">>Keke~ Relax. We'll get to see THE Kanashi's tits soon too~ <</dialog>> <<dialog "Nirei">>S-stop. Please... <</dialog>> <<dialog "Reshi">>You made me chase you for a fucking year, bitch. Don't you think I deserve to sleep with you AND your sister? <</dialog>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>I wanted to fuck your brains out when I first saw you. If only that fucker didn't hit me with a bat.<</enemy>> <div class="button-row"> <<regButton "nirei5-7" "They touch her">><</regButton>> </div> </div> <<backend>> [[nirei5-7]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/party/3.mp4" type="video/mp4">'>> </video> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Tch. Her body isn't even that great.<</enemy>> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>Don't be jealous. She's hot. Like Kanashi. Keke<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Look at her trying to hide her tits lol. It's so funny~<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Let me see those tits!<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Take those arms off, bitch~<</enemy>> <<dialog "Reshi">>You heard them~ <</dialog>> <<dialog "Nirei">>N-no! <</dialog>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>Hehe~<</enemy>> <div class="button-row"> <<regButton "nirei5-8" "They take pictures">><</regButton>> </div> </div> <<backend>> [[nirei5-8]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/party/4.mp4" type="video/mp4">'>> </video> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Smile, bitch!<</enemy>> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>Look at the camera!<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Make her do a peace sign lol<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Peeeace~<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Your sister's next. Keke~<</enemy>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>Send that to me, okay?<</enemy>> <<dialog "Reshi">>Give the camera a smile, babe~ <</dialog>> <<dialog "Nirei">>Stop it!! <</dialog>> <div class="button-row"> <<regButton "nirei5-9" "You arrive at her door">><</regButton>> </div> </div> <<backend>> [[nirei5-9]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>She's not reading my texts either... Is she not home? <</dialog>> <<dialog "Nirei">>STOOOOOP! <</dialog>> <<dialog "You">>Nirei!! <</dialog>> You text someone then you open her door with your spare key. <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/party/5.mp4" type="video/mp4">'>> </video> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Haha! Make her drink!!<</enemy>> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>Drink the beer from my mouth~<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Hahaha! If you don't drink, we'll make your sister drink piss~ lol<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Kanashi drinking my piss~<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>We'll make her drink piss and upload it online. You don't want that, do you?<</enemy>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>Let's just fuck her already!<</enemy>> <<dialog "Reshi">>Just listen to us, babe. It's for your own good. <</dialog>> <<dialog "Nirei">>Nooooo!! <</dialog>> <div class="button-row"> <<regButton "nirei5-10" "You curb stomp the guy making her drink beer">><</regButton>> </div> </div> <<backend>> [[nirei5-10]] <<script>>incrementTime(0,25);<</script>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/reshi-beatdown.jpg" style="width: 60%;"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <<enemy "ranker2" "Male Friend #1" "nirei-home" "left">>...<</enemy>> <<dialog "You">>Fucking piece of shit! Die! <</dialog>> <<dialog "Nirei">><i>*Sobs*</i> $player.name? <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>H-hey! He's gonna kill him!<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>S-stop!<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>This motherfucker.<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Wh-who's that?<</enemy>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>That's the punk who hit me!! ...with a bat...<</enemy>> <<dialog "Reshi">>Oi. Kanashi's boyfriend. Can you stop stepping on my friend? I'll deck you, you know? <</dialog>> <<dialog "Nirei">>D-don't! Please! <</dialog>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>That's Kanashi's boyfriend? Lucky bastard~<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Lucky? Reshi-san is an MMA fighter, you know? That guy's dead. Maybe we can use him to blackmail Kanashi even more.<</enemy>> <<dialog "Nirei">>$player.name! Run away!!! <</dialog>> <div class="button-row"> <<regButton "nirei5-11" "You find your jacket">><</regButton>> </div> </div> <<backend>> [[nirei5-11]] <<set $nirei.love = $nirei.love + 5>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>... There's my jacket. I'm glad I left it here. <</dialog>> <<dialog "Nirei">><i>*Sobs*</i> $player.name, get out of here. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Listen to the bitch~<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Hmmm? I think I know this guy~ Did I beat his ass before?<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Keke~ You? Beating somebody's ass?<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Reshi and Obu are both MMA fighters you know~ They'll kill you~<</enemy>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">><i>Th-that's right. I'm 60% sure he had a bat that day... That's how I lost. Besides, he's outnumbered.</i><</enemy>> <<dialog "Reshi">>Obu, bring that fucker here. <</dialog>> <<dialog "Nirei">>NO! STOP! <</dialog>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>O-okay. <i>Fuck. Why am I scared?</i><</enemy>> <div class="button-row"> <<regButton "nirei5-12" "He approaches you">><</regButton>> </div> </div> <<backend>> [[nirei5-12]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>H-hey. I owe you a punch. You hit me with a bat after all~<</enemy>> <<dialog "You">>Really? I don't remember hitting anybody with a bat though, but here. Hit me. <</dialog>> You offer your cheek. <<dialog "Nirei">>$player.name! What are you doing?? <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Haha! He's scared.<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>He's actually letting Obu-san hit him so he can be spared~<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>If you bring your girlfriend here and let us fuck her, we'll consider not beating your ass lol<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>How pathetic. Lol<</enemy>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">><i>M-my heart won't stop racing.</i><</enemy>> <<dialog "Reshi">>... <</dialog>> <<dialog "Nirei">>Leave him alone! Stop! <</dialog>> <div class="button-row"> <<regButton "nirei5-13" "He hits you">><</regButton>> </div> </div> <<backend>> [[nirei5-13]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>Wh-what?<</enemy>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>H-he's still standing?<</enemy>> <<dialog "You">>Oh? I remember you now. You attacked Nirei in the alley. I didn't hit you with a bat then. I don't owe you a punch. Here, let's make us even. <</dialog>> <img id="title-image" src="img/misc/punk-hit2.jpg" style="width: 60%;"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <<dialog "Nirei">>!! <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>!!<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>!!<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>!!<</enemy>> <<dialog "Reshi">>!! <</dialog>> <<enemy "random-punk" "Obu Tayaro" "nirei-home" "left">>Urghh... I... th-thought... it was... a b-bat... Urk.<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>F-fuck! I remember him! H-he's Sawada $player.name. He destroyed Tekijime in a week... H-he's Sawada Hideo's nephew...<</enemy>> <div class="button-row"> <<regButton "nirei5-14" "You threaten them">><</regButton>> </div> </div> <<backend>> [[nirei5-14]] <<set $stats.hp = Math.max($stats.hp - 1, 1)>> <<set $nirei.love = $nirei.love + 5>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Ohhh? So you know me? You know what'll happen if any of you run then, right? I'll hunt you down. <</dialog>> <<dialog "Reshi">>H-haha! Sawada $player.name... We didn't know. We'll let you go since your uncle is Kumine's guardian. We'll leave Nirei alone too. It's not like you can take all of us here, right? I can knock Obu with one hit too, so if all of us jump you at once, we can-- <</dialog>> <img id="title-image" src="img/misc/reshi-lose.jpg" style="width: 60%;"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +5<</glow>></h1> <<dialog "Reshi">>Urk... <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>!!<</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>!!<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>!!<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">><i>Shit... Reshi-san is a regional champion, you know? Sawada $player.name... Th-the guy who destroyed Gokuro of Tekijima... He's a monster.</i><</enemy>> <<dialog "You">>Get dressed, Nirei. <</dialog>> <<dialog "Nirei">><i>*Sobs*</i> $player.name! Th-they took pictures of me. <</dialog>> <div class="button-row"> <<regButton "nirei5-15" "You threaten them">><</regButton>> </div> </div> <<backend>> [[nirei5-15]] <<set $nirei.love = $nirei.love + 5>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/phone-delete.jpg" style="width: 60%;"> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>N-no! I'll just delete them!<</enemy>> <<dialog "You">>Hmmm? What do you think, Nirei? <</dialog>> <<dialog "Nirei">>T-take her phone. Take all of their phones!! <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>FUCK YOU, YOU BITCH! WHY ARE YOU--<</enemy>> <h1>You grab the girl's mouth.</h1> <<dialog "You">>Hey. You think just because you're a girl, I won't smack the living daylights out of you? Shut the fuck up and do as I say. <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Mmmmfff! Th-thowyy...<</enemy>> <h1>You take their phones, look at the pictures taken, and smash everything.</h1> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Sh-shit... That was a new phone...<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Shut up. I heard Gokuro was sold to China. You want him to sell you as a slave as well? You girls are probably going to be sold as sex slaves.<</enemy>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>N-no way...<</enemy>> <div class="button-row"> <<regButton "nirei5-16" "You punish them even more">><</regButton>> </div> </div> <<backend>> [[nirei5-16]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>You could have sent those pictures online. I can't take that risk. I need assurance, don't I? <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>N-no! W-we didn't! This bi-- woman... This woman didn't let us connect to her WIFI so...<</enemy>> <<dialog "You">>I thought I told you to shut the fuck up? <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Eek!<</enemy>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Wh-what assurance do you need? W-we'll do anything!<</enemy>> <<dialog "You">>Strip. <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Wh-what?<</enemy>> <<dialog "You">>Now. <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>...<</enemy>> <h1>They strip. You take a photo.</h1> <img id="title-image" src="img/misc/two-bitches/strip.jpg" style="width: 60%;"> <div class="button-row"> <<regButton "nirei5-17" "Your uncle arrives">><</regButton>> </div> </div> <<backend>> [[nirei5-17]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>Oiii~ $player.name~ Got your text. Why'd you call me this time? Huh? Why are those two young ladies naked? You having an orgy or something? <</dialog>> <h1>The following events are pretty fucked up. If you don't like rape, you can skip.</h1> <div class="button-row"> <<regButton "nirei5-20" "Skip">><</regButton>> </div> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>S-sawada Hideo...<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>We're so dead.<</enemy>> <<dialog "You">>Make sure nobody leaves while I deal with this, uncle. These fuckers messed with my girl. Don't touch them. They're mine. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>W-we already stripped!<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>L-let us go, okay? Please!<</enemy>> <<dialog "You">>You two. <</dialog>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>S-sir!<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Y-yessir!<</enemy>> <<dialog "You">>Strip. <</dialog>> <h1>They immediately strip.</h1> <<dialog "You">>They came here to rape someone, right? They should get what they came for. It doesn't have to be Nirei, though. Suck their dicks. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>B-but!<</enemy>> <<dialog "Uncle">>Hey, $player.name! If they don't obey, can I give them to my guys? Those geezers are pretty pent up, you know. They get pretty violent so all the sluts I give them don't last long. <</dialog>> <<dialog "You">><i>Pfft. That geezer has never touched prostitution, though. He's so good at bluffing. What a scary gangster~</i> <</dialog>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>N-no! I'll suck their dicks!<</enemy>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>H-hey! Come here!<</enemy>> <h1>You take a photo.</h1> <img id="title-image" src="img/misc/two-bitches/bj2.jpg" style="width: 60%;"> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Ohhhh~<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Th-thanks for this Sawada. Keke~<</enemy>> <h1>You glare at him.</h1> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>Urkkk.<</enemy>> <h1>You take another photo.</h1> <img id="title-image" src="img/misc/two-bitches/bj1.jpg" style="width: 60%;"> <div class="button-row"> <<regButton "nirei5-18" "Make them fuck">><</regButton>> </div> </div> <<backend>> <<script>>incrementTime(0,15);<</script>> [[nirei5-18]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Fuck them. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">><i>*Gkkkkk*</i> H-huuhh? N-noooo.<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">><i>*Gkkk* *Gkkk* *Gkkk* *Gkkk* *Gkkk* *Gkkk*</i><</enemy>> <<dialog "Nirei">>$player.name! That's enough! <</dialog>> <<dialog "Uncle">>Young lady, I don't want to overstep, but those two will likely get back at you somehow. Didn't they try to get you raped? <</dialog>> <<dialog "Nirei">>B-but... <</dialog>> <<dialog "Uncle">>If $player.name doesn't put the fear of god in them, they'll make you suffer even more. That nephew of mine... He's very kind towards women. I'm sure he hates doing this too. <</dialog>> <h1>They have sex.</h1> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>Ahhh~<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>I-it feels goood~<</enemy>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Ahhh~<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Hnnnnnnn~<</enemy>> <h1>You take a photo.</h1> <img id="title-image" src="img/misc/two-bitches/sex3.jpg" style="width: 60%;"> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Ohhhh~<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Ahhh~ Ahhh~<</enemy>> <h1>You take another photo.</h1> <img id="title-image" src="img/misc/two-bitches/sex2.jpg" style="width: 60%;"> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>AHHHHHH~<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>HNGGGG~<</enemy>> <h1>You take one last photo.</h1> <img id="title-image" src="img/misc/two-bitches/sex1.jpg" style="width: 60%;"> <div class="button-row"> <<regButton "nirei5-19" "You edge them">><</regButton>> </div> </div> <<backend>> [[nirei5-19]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Enough. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">><i>*Sobs*</i><</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">><i>*Sniffles*</i><</enemy>> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>B-but sir! We didn't cum yet.<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>I-I can't stop~<</enemy>> <img id="title-image" src="img/misc/reshi-fly.jpg" style="width: 60%;"> <<enemy "ranker4" "Male Friend #3" "nirei-home" "left">>I should have just stopped...<</enemy>> <<enemy "ranker5" "Male Friend #2" "nirei-home" "left">>We're dead...<</enemy>> <div class="button-row"> <<regButton "nirei5-20" "You knock them out">><</regButton>> </div> </div> <<backend>> [[nirei5-20]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>You two bitches. Get out. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>O-our clothes...<</enemy>> <<enemy "bitch2" "Female Friend #2" "nirei-home" "left">>Wh-where?<</enemy>> <<dialog "You">>You paraded Nirei around didn't you? Go streak. <</dialog>> <<dialog "Uncle">>My goons are on their way, $player.name. <</dialog>> <<enemy "bitch1" "Female Friend #1" "nirei-home" "left">>Eek!<</enemy>> <div class="button-row"> <<regButton "nirei5-21" "The girls run away">><</regButton>> </div> </div> <<backend>> [[nirei5-21]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>I threw their clothes outside. They'll probably find it. <</dialog>> <<dialog "You">>Yeah. I was just trying to scare them. Can you deal with the remaining people in here? Oh, and give these four people the Sawada special. <</dialog>> <<dialog "Uncle">>I'll make em regret touching miss... <</dialog>> <<dialog "Nirei">>N-nirei... <</dialog>> <<dialog "Uncle">>What a lovely name~ All right, you motherfuckers! Line up. Let me just smack y'all once for Miss Nirei. If you stay conscious, you can go home. <</dialog>> <div class="button-row"> <<regButton "nirei5-22" "You take Nirei outside">><</regButton>> </div> </div> <<backend>> [[nirei5-22]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Nirei">>... <</dialog>> <h1>She starts sobbing. You hug her.</h1> <<dialog "Nirei">>I was so scared. They were going to rape me, record it, then blackmail Shiori with it. <</dialog>> <<dialog "You">>I knew that guy was a fucking dick. <</dialog>> <<dialog "Nirei">>Wh-what is going to happen to him now? <</dialog>> <<dialog "You">>Attempted rape is like, what? 10 years in the hole? Uncle's going to use them for 10 years. Unpaid. Then let them go. <</dialog>> <<dialog "Nirei">>... S-so you were a gangster? <</dialog>> <div class="button-row"> <<regButton "nirei5-23" "You get quiet for a bit">><</regButton>> </div> </div> <<backend>> [[nirei5-23]] <<script>>incrementTime(0,5);<</script>> <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Does it bother you? <</dialog>> <<dialog "Nirei">>I don't know... Strangely, it doesn't. <</dialog>> <<dialog "You">>Really? <</dialog>> <<dialog "Nirei">>You make me feel so safe. Like you'll always come to my rescue. Back then, it seemed like you were an alien. A superhero~ You being in a gang explains how you're so capable. It explains why you have your own apartment at your age. <</dialog>> <<dialog "You">>Shiori does too though. <</dialog>> <<dialog "Nirei">>She has a job, you know. <</dialog>> <div class="button-row"> <<regButton "nirei5-24" "You talk some more">><</regButton>> </div> </div> <<backend>> [[nirei5-24]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>So... does this change anything between us? <</dialog>> <<dialog "Nirei">>Of course. <</dialog>> <<dialog "You">>Damn... <</dialog>> <<dialog "Nirei">>I can't anymore. <</dialog>> <<dialog "You">>I understand... I'll leave you alone. <</dialog>> <<dialog "Nirei">>What? No. I meant I can't stop liking you anymore. <</dialog>> <div class="button-row"> <<regButton "nirei5-25" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei5-25]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "residential" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/kiss-outside.mp4" type="video/mp4">'>> </video> <<dialog "You">>Nirei... <</dialog>> <<dialog "Nirei">>I have one condition though... <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Nirei">>Someday, you have to choose. Between me and her. I won't rush you, but don't take too long, okay? <</dialog>> <<dialog "You">>I understand. <</dialog>> <<dialog "Nirei">>You know... Your uncle will probably take a while in there. <</dialog>> <<dialog "You">>Probably. <</dialog>> <<dialog "Nirei">>I should probably get a hotel for tonight. <</dialog>> <<dialog "You">>P-probably... <</dialog>> <<dialog "Nirei">>But you know... I'm still a little scared... I need someone with me there. <</dialog>> <<dialog "You">>You do. <</dialog>> <<dialog "Nirei">>Will you stay with me? <</dialog>> <<dialog "You">>Yes, ma'am. <</dialog>> <div class="button-row"> <<regButton "nirei5-26" "Go to a hotel">><</regButton>> </div> </div> <<backend>> [[nirei5-26]] <<set $location to "Nirei's Home">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/2.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>She seems aggressive... She can't be okay after going through an attempted gang rape.</i> <</dialog>> <<dialog "Nirei">>Hurry~ <</dialog>> <div class="button-row"> <<regButton "nirei5-27" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei5-27]] <<script>>incrementTime(0,25);<</script>> <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/kissa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Mmm~ Nirei... <</dialog>> <<dialog "Nirei">><i>*Slurp*</i> I can't wait~ <</dialog>> <div class="button-row"> <<regButton "nirei5-27" "Keep making out">><</regButton>> <<regButton "nirei5-28" "Go in">><</regButton>> </div> </div> <<backend>> [[nirei5-28]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/enter.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>The hotel's nice~ <</dialog>> <<dialog "You">>Well, I want you to be comfortable. <</dialog>> <<dialog "Nirei">>You can't be more perfect~ <</dialog>> <div class="button-row"> <<regButton "nirei5-29" "She devours you again">><</regButton>> </div> </div> <<backend>> [[nirei5-29]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/kissb.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmm~ <</dialog>> <<dialog "You">>N-nirei... Are you sure you're okay? <</dialog>> <<dialog "Nirei">>I'm with you. How can I not be? Mmm~ <</dialog>> <div class="button-row"> <<regButton "nirei5-30" "She takes your shirt off">><</regButton>> </div> </div> <<backend>> [[nirei5-30]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/you-top.mp4" type="video/mp4">'>> </video> <<dialog "You">>You went through a lot today. <</dialog>> <<dialog "Nirei">>Which is why I deserve this. Mmm~ <</dialog>> <div class="button-row"> <<regButton "nirei5-31" "She takes your pants off">><</regButton>> </div> </div> <<backend>> [[nirei5-31]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/you-pants.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Specially this~ Mmm~ <</dialog>> <<dialog "You">><i>It's like she's in a trance...</i> <</dialog>> <div class="button-row"> <<regButton "nirei5-32" "She takes her top off">><</regButton>> </div> </div> <<backend>> [[nirei5-32]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/top.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>D-do you think I'm hot?~ <</dialog>> <<dialog "You">>Of course. <</dialog>> <<dialog "Nirei">>I knew it~ <</dialog>> <div class="button-row"> <<regButton "nirei5-33" "She kisses you again">><</regButton>> </div> </div> <<backend>> [[nirei5-33]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/kissc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ <</dialog>> <<dialog "You">>Nirei... <</dialog>> <div class="button-row"> <<regButton "nirei5-33" "Keep making out">><</regButton>> <<regButton "nirei5-34" "She takes her skirt off">><</regButton>> </div> </div> <<backend>> [[nirei5-34]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/skirt.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I'm ready for you~ <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "nirei5-35" "She gives you another kiss">><</regButton>> </div> </div> <<backend>> [[nirei5-35]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/kissd.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I wanna see~ <</dialog>> <<dialog "You">>C-calm down. <</dialog>> <div class="button-row"> <<regButton "nirei5-36" "She takes your underwear off">><</regButton>> </div> </div> <<backend>> [[nirei5-36]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/brief.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>It's okay~ Don't be shy~ <</dialog>> <<dialog "You">>Nirei... <</dialog>> <div class="button-row"> <<regButton "nirei5-bj1" "Blowjob">><</regButton>> </div> </div> <<backend>> [[nirei5-bj1]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/bja'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>*Slurp* *Slurp* *Slurp*</i> <</dialog>> <<dialog "You">>Ahhh~ <i>Fuck... She might still be traumatized. I can't be too aggressive.</i> <</dialog>> <div class="button-row"> <<regButton "nirei5-bj1" "She keeps sucking">><</regButton>> <<regButton "nirei5-bj2" "She asks you to take a photo">><</regButton>> </div> </div> <<backend>> [[nirei5-bj2]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">><i>*Gkk* *Slurp* *Gkk*</i> Thake a photho ov me~ <</dialog>> <<dialog "You">>Wh-what? Ahh~ Why? <</dialog>> <<dialog "Nirei">><i>*Gkk* *Gkk* *Gkk*</i> You're zhe onhee one allowed to take it~ <i>*Gkk* *Gkk*</i> <</dialog>> <<dialog "You">>O-okay. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/bjb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>*Slurp* *Slurp* *Gkk*</i> Peeeace~ <i>*Gkk*</i> <</dialog>> <div class="button-row"> <<regButton "nirei5-bj2" "Keep taking photos">><</regButton>> <<regButton "nirei5-bed" "She drags you to the bed">><</regButton>> </div> </div> <<backend>> [[nirei5-bed]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/bed.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I can't take it. I want it in me~ <</dialog>> <<dialog "You">>Nirei... I don't think-- <</dialog>> <<dialog "Nirei">>Ahhhhhhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei5-cow1" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei5-cow1]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahhh~ Ahhhhh~ <</dialog>> <<dialog "You">><i>Sh-shit... It feels too good...</i> <</dialog>> <div class="button-row"> <<regButton "nirei5-cow1" "She keeps riding">><</regButton>> <<regButton "nirei5-cow2" "She leans back">><</regButton>> </div> </div> <<backend>> [[nirei5-cow2]] <<script>>incrementTime(0,5);<</script>> <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Does it feel good?~ <</dialog>> <<dialog "You">>Yes~ <</dialog>> <div class="button-row"> <<regButton "nirei5-cow2" "She keeps riding">><</regButton>> <<regButton "nirei5-cow3" "She leans forward">><</regButton>> </div> </div> <<backend>> [[nirei5-cow3]] <<set $location to "Hotel">> <<script>>incrementTime(0,5);<</script>> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ It feels good~ <</dialog>> <<dialog "You">>Ahh~ Nirei~ <</dialog>> <<dialog "Nirei">>C-call me babe. <</dialog>> <<dialog "You">>H-huh? <</dialog>> <<dialog "Nirei">>Ahh~ Pleeease~ Hnnnn~ <</dialog>> <<dialog "You">>... It... It feels good, babe. <</dialog>> <div class="button-row"> <<regButton "nirei5-cow3" "She keeps riding">><</regButton>> <<regButton "nirei5-cow4" "She suddenly stops">><</regButton>> </div> </div> <<backend>> [[nirei5-cow4]] <<set $location to "Hotel">> <<script>>incrementTime(0,5);<</script>> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/laugh.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Hahahaha~ I had the worst day you know? It was all worth it though~ It led me back to you~ <</dialog>> <<dialog "You">>Wh-what's happening? Ahhh~ <</dialog>> <<dialog "Nirei">>That's right! I'm not his babe! You're the only one who can call me hot~ To kiss me~ To have naked pictures of me~ To fuck me~ Ahhhh~ <</dialog>> <<dialog "You">>C-calm down, Nirei! <</dialog>> <<dialog "Nirei">>Ahhh~ Nooo~ Call me babe~ I love you. I love you. I love you so much. Will this help you choose me? Over my sister? Pick me, okay? Ahhh~ I love you~ <</dialog>> <<dialog "You">><i>I knew it! Fuck! She's still not thinking straight. She's too shaken up. I need to take charge.</i> <</dialog>> <div class="button-row"> <<regButton "nirei5-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[nirei5-dog1]] <<set $location to "Hotel">> <<script>>incrementTime(0,5);<</script>> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhh~ That's it~ Use me~ Ahhhh~ <</dialog>> <<dialog "You">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "nirei5-dog1" "Keep fucking her">><</regButton>> <<regButton "nirei5-dog2" "Speed it up">><</regButton>> </div> </div> <<backend>> [[nirei5-dog2]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/dogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhh~ Keep fucking me like a dog~ <</dialog>> <<dialog "You">>Nirei... <</dialog>> <div class="button-row"> <<regButton "nirei5-dog2" "Keep fucking her">><</regButton>> <<regButton "nirei5-cow5" "Cowgirl on the couch">><</regButton>> <<regButton "nirei5-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[nirei5-cow5]][[nirei5-mis1]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ <i>*Slurp*</i> <</dialog>> <<dialog "You">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "nirei5-cow5" "She keeps riding">><</regButton>> <<regButton "nirei5-mis1" "Missionary">><</regButton>> <<regButton "nirei5-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[nirei5-cow4]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">><i>She's so beautiful...</i> <</dialog>> <div class="button-row"> <<regButton "nirei5-mis1" "Keep fucking her">><</regButton>> <<regButton "nirei5-mis2" "Faster">><</regButton>> </div> </div> <<backend>> [[nirei5-mis2]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ That's it~ Look at me~ Ahh~ <</dialog>> <<dialog "You">>You're beautiful, Nirei. <</dialog>> <div class="button-row"> <<regButton "nirei5-mis2" "Keep fucking her">><</regButton>> <<regButton "nirei5-mis3" "Raise her legs">><</regButton>> </div> </div> <<backend>> [[nirei5-mis3]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/misc.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhhhh!! You're reaching so deep~ <</dialog>> <<dialog "You">>I can feel your womb, Nirei~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "nirei5-hard" "Fuck her hard">><</regButton>> <<regButton "nirei5-cow5" "Cowgirl on the couch">><</regButton>> <<regButton "nirei5-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[nirei5-hard]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/hard.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>AHHHHHHH!! FUUCK~ <</dialog>> <<dialog "You">>I'm about to cum~ <i>Shit! I can't come inside. Pull out! Pull out! Pull out!</i> <</dialog>> <<dialog "Nirei">>Hnnnnnnggg~ Y-you can do it, you know? Only you are allowed~ <</dialog>> <<dialog "You">>Fuck!! <</dialog>> <div class="button-row"> <<regButton "nirei5-cum1" "Cum inside">><</regButton>> </div> </div> <<backend>> [[nirei5-cum1]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Y-you actually came inside~ <</dialog>> <<dialog "You">>Hahhh. Hahhhh. I'm so sorry, Nirei... Hahhh. <</dialog>> <div class="button-row"> <<regButton "nirei5-cum2" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei5-cum2]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ It's okay~ <</dialog>> <<dialog "You">>I'm really sorry~ <</dialog>> <div class="button-row"> <<regButton "nirei5-cum3" "Pull out">><</regButton>> </div> </div> <<backend>> [[nirei5-cum3]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum3.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Noo~ It's out~ <</dialog>> <<dialog "You">>F-fuck... <</dialog>> <div class="button-row"> <<regButton "nirei5-cum4" "The cum leaks out">><</regButton>> </div> </div> <<backend>> [[nirei5-cum4]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum4.mp4" type="video/mp4">'>> </video> <<dialog "You">>I-its leaking out... <</dialog>> <<dialog "Nirei">>Huh? No way. <</dialog>> <div class="button-row"> <<regButton "nirei5-kiss" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei5-kiss]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/kisse.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I can't get pregnant if it leaks out~ <</dialog>> <<dialog "You">>Wait, what!? Ahhhhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei5-cow6" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei5-cow6]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowe'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Cum inside~ Cum inside~ Cum inside~ <</dialog>> <<dialog "You">>F-fuck! I'm actually... Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei5-cow6" "She keeps riding">><</regButton>> <<regButton "nirei5-cum5" "She squeezes out the rest of your cum">><</regButton>> </div> </div> <<backend>> [[nirei5-cum5]] <<set $location to "Hotel">> <<script>>incrementTime(0,5);<</script>> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum5.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hrngggggg!! Fuck! <</dialog>> <<dialog "Nirei">>Ahhhhh~ You came~ <</dialog>> <div class="button-row"> <<regButton "nirei5-clean1" "You rush to clean her pussy">><</regButton>> </div> </div> <<backend>> [[nirei5-clean1]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Sh-shit! Let me clean your pussy! <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/clean1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>N-nooo~ My babiiies~ <</dialog>> <div class="button-row"> <<regButton "nirei5-clean2" "She cleans you too">><</regButton>> </div> </div> <<backend>> [[nirei5-clean2]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>I'll clean you too then~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/clean'+random(2,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Nirei~ What is happening to you? Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei5-clean2" "She keeps sucking">><</regButton>> <<regButton "nirei5-end" "End">><</regButton>> </div> </div> <<backend>> [[nirei5-end]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/end.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ Hehehe~ Let's do it again~ <</dialog>> <<dialog "You">>N-no! <</dialog>> <<dialog "Nirei">>Mmmmmmn~ <</dialog>> <<dialog "You">>Nirei! <</dialog>> <<dialog "Nirei">>Just one more~ It's okay, right? <</dialog>> <<dialog "You">>Calm doooown!! <</dialog>> <div class="button-row"> <<regButton "nirei5-sleep" "Sleep">><</regButton>> </div> </div> <<backend>> [[nirei5-sleep]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<include "sleep-crud">> <<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <h1>The next day...</h1> <<dialog "Nirei">>I'M SO SORRY!! <</dialog>> <<dialog "You">>I-I'm still tired from last night~ <</dialog>> <<dialog "Nirei">>R-really! I'm sorry. I know this is not an excuse b-but... I was actually really drunk last night. They tried to get me blackout drunk. The adrenaline kind of sobered me up, but when the adrenaline wore off... I kind of... got drunk... again. <</dialog>> <<dialog "You">>Haaahhh~ That explains why you were being so aggressive. You even wanted to get pregnant! <</dialog>> <<dialog "Nirei">>I'm sorry! <</dialog>> <div class="button-row"> <<regButton "nirei5-37" "Ask if she's okay">><</regButton>> </div> </div> <<backend>> [[nirei5-37]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<include "sleep-crud">> <<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "You">><i>*Sigh*</i> Are you okay? <</dialog>> <<dialog "Nirei">>W-well... I'm pretty hungover. <</dialog>> <<dialog "You">>Let's check out and get some coffee. <</dialog>> <<dialog "Nirei">>Yay! <</dialog>> <div class="button-row"> <<regButton "nirei5-38" "Get coffee">><</regButton>> </div> </div> <<backend>> [[nirei5-38]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <h1>You sip your coffee</h1> <<dialog "You">>Can we talk? <</dialog>> <<dialog "Nirei">>... Okay. <</dialog>> <<dialog "You">>Do you remember what happened last night? <</dialog>> <<dialog "Nirei">>Since I didn't black out... I do. <</dialog>> <<dialog "You">>Even what we talked about? <</dialog>> <<dialog "Nirei">>Yes. <</dialog>> <<dialog "You">>And? Now that you're sober. Does anything change? <</dialog>> <<dialog "Nirei">>N-no... I meant every word. <</dialog>> <<dialog "You">>... Even getting pregnant? <</dialog>> <<dialog "Nirei">>N-not that! <</dialog>> <<dialog "You">>So? What do we do now? <</dialog>> <<dialog "Nirei">>Like I said... You have time to choose. For now, I'm willing to share you with Shiori. <</dialog>> <<dialog "You">>So, I can keep seeing you then? <</dialog>> <<dialog "Nirei">>Hmph. You better keep seeing me! <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +15<</glow>></h1> <div class="button-row"> <<regButton "nirei5-39" "Finish coffee and take her home">><</regButton>> </div> </div> <<backend>> [[nirei5-39]] <<script>>incrementTime(0,20);<</script>> <<set $nirei.love = $nirei.love + 15>> <<set $location to "Cafe">> <<set $profile to "nirei-profile">> <</backend>>
<<backend>> <<script>>incrementTime(1,15);<</script>> <<set $nirei.quest = 7>> <<goto "res-area">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/2.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hnnn~ Five more minutes... <</dialog>> <<dialog "Shiori">>I think I know how to motivate you to get up~ It will take more than five minutes though~ <</dialog>> <div class="button-row"> <<regButton "shioriw-bj1" "Morning Blowjob">><</regButton>> </div> </div> <<backend>> [[shioriw-bj1]] <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/bja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>*Gkkk* *Slurp* Ath leasht thish ish up now *Gkkk* *Gkk* <</dialog>> <<dialog "You">>Ahh~ That feels amazing~ <</dialog>> <div class="button-row"> <<regButton "shioriw-bj1" "Keep going">><</regButton>> <<regButton "shioriw-bj2" "Continue">><</regButton>> </div> </div> <<backend>> [[shioriw-bj2]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/bjb.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>*Gkkk* *Slurp* Shtill not enough? *Gkkk* *Gkk* <</dialog>> <<dialog "You">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "shioriw-top" "She takes her top off">><</regButton>> </div> </div> <<backend>> [[shioriw-top]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/top1.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>I think you need something to look at so you'll open your eyes~ <</dialog>> <<dialog "You">>Sh-shit. I can't miss this~ <</dialog>> <div class="button-row"> <<regButton "shioriw-shorts" "She takes her shorts off">><</regButton>> </div> </div> <<backend>> [[shioriw-shorts]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/shorts.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>I have really cute panties on, you know~ <</dialog>> <<dialog "You">>R-really? <</dialog>> <div class="button-row"> <<regButton "shioriw-rub" "She plays with herself">><</regButton>> </div> </div> <<backend>> [[shioriw-rub]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/rub.mp4" type="video/mp4">'>> </video> <<dialog "You">>Those panties are cute, but it would be cuter with them off. <</dialog>> <<dialog "Shiori">>Oh? Are your eyes wide open now? <</dialog>> <div class="button-row"> <<regButton "shioriw-panty" "She takes them off">><</regButton>> </div> </div> <<backend>> [[shioriw-panty]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/panty.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>There you go~ <</dialog>> <<dialog "You">>That top has got to go too~ <</dialog>> <div class="button-row"> <<regButton "shioriw-top2" "She takes them off too">><</regButton>> </div> </div> <<backend>> [[shioriw-top2]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/top2.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>How demanding~ <</dialog>> <<dialog "You">>You are so beautiful~ <</dialog>> <div class="button-row"> <<regButton "shioriw-mast" "She masturbates">><</regButton>> </div> </div> <<backend>> [[shioriw-mast]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/finger'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>How about this? Is it beautiful too? <</dialog>> <<dialog "You">>Very~ <</dialog>> <div class="button-row"> <<regButton "shioriw-mast" "She keeps going">><</regButton>> <<regButton "shioriw-kiss" "She kisses you">><</regButton>> </div> </div> <<backend>> [[shioriw-kiss]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/kiss'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmm~ I want to sit on your face~ <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row"> <<regButton "shioriw-kiss" "You keep making out">><</regButton>> <<regButton "shioriw-cun" "She sits on your face">><</regButton>> </div> </div> <<backend>> [[shioriw-cun]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cun'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ It feels good, $player.name. <</dialog>> <<dialog "You">>*Slurp* <</dialog>> <div class="button-row"> <<regButton "shioriw-cun" "You keep eating her out">><</regButton>> <<regButton "shioriw-69" "69">><</regButton>> </div> </div> <<backend>> [[shioriw-69]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>*Slurp* Turn around~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/69'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ *Slurp* *Slurp* *Gkk* <</dialog>> <div class="button-row"> <<regButton "shioriw-69" "Keep going">><</regButton>> <<regButton "shioriw-hj" "She gives you a handjob">><</regButton>> </div> </div> <<backend>> [[shioriw-hj]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/hj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmm~ You're hard enough~ <</dialog>> <<dialog "You">>Lie down~ <</dialog>> <div class="button-row"> <<regButton "shioriw-hj" "Keep stroking">><</regButton>> <<regButton "shioriw-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[shioriw-mis1]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/misa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhh~ <</dialog>> <<dialog "You">>Ahh~ Shiori~ <</dialog>> <div class="button-row"> <<regButton "shioriw-mis1" "Keep going">><</regButton>> <<regButton "shioriw-mis2" "Speed up">><</regButton>> </div> </div> <<backend>> [[shioriw-mis2]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/misb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>You're so pretty~ Ahh~ <</dialog>> <div class="button-row"> <<regButton "shioriw-mis2" "Keep going">><</regButton>> <<regButton "shioriw-mis3" "Harder">><</regButton>> </div> </div> <<backend>> [[shioriw-mis3]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/misc.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhh~ It feels so good~ <</dialog>> <<dialog "You">>Ahh~ Shiori~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow1" "Cowgirl">><</regButton>> <<regButton "shioriw-mis1" "Do it again">><</regButton>> </div> </div> <<backend>> [[shioriw-cow1]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ Does it feel good? Ahhh~ Do you like it? <</dialog>> <<dialog "You">>Ahh~ Of course~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow1" "Keep going">><</regButton>> <<regButton "shioriw-cow2" "She kisses you">><</regButton>> </div> </div> <<backend>> [[shioriw-cow2]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowb.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmm~ I love you~ Ahhh~ <</dialog>> <<dialog "You">>*Slurp* <</dialog>> <div class="button-row"> <<regButton "shioriw-cow3" "She leans back">><</regButton>> </div> </div> <<backend>> [[shioriw-cow3]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowc'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ Ahhh~ Look ate me~ <</dialog>> <<dialog "You">>Ahh~ Shiori~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow3" "Keep going">><</regButton>> <<regButton "shioriw-cow4" "She bounces harder">><</regButton>> </div> </div> <<backend>> [[shioriw-cow4]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Hnnnngggg~ Isn't this a great way... Ahhhh~ To start your morning? <</dialog>> <<dialog "You">>Ahh~ Yess~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow4" "Keep going">><</regButton>> <<regButton "shioriw-cow5" "She cums">><</regButton>> </div> </div> <<backend>> [[shioriw-cow5]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowe1.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhhh~ Th-that felt amazing~ <</dialog>> <<dialog "You">>K-keep going... I'm close too~ <</dialog>> <<dialog "Shiori">>O-okay~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow6" "Grab her tits">><</regButton>> </div> </div> <<backend>> [[shioriw-cow6]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowf'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmmm~ Are you close? <</dialog>> <<dialog "You">>Keep grinding on me~ <</dialog>> <<dialog "Shiori">>Ahh~ Ahh~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow6" "Keep going">><</regButton>> <<regButton "shioriw-cow7" "Harder">><</regButton>> </div> </div> <<backend>> [[shioriw-cow7]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cowg'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>I'm cumming~ <</dialog>> <div class="button-row"> <<regButton "shioriw-cow7" "Keep going">><</regButton>> <<regButton "shioriw-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[shioriw-cum]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/cum.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Hnngggggg~ Ahhh~ <</dialog>> <<dialog "You">>Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "shioriw-end1" "End">><</regButton>> </div> </div> <<backend>> [[shioriw-end1]] <<script>>incrementTime(0,1);<</script>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/clean.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>*Gkkk* *Slurp* Ahh~ You're all clean now~ <</dialog>> <<dialog "You">>You're amazing. <</dialog>> <div class="button-row"> <<regButton "shioriw-end2" "Continue">><</regButton>> </div> </div> <<backend>> [[shioriw-end2]] <<if $minute < 15>> <<set $minute = 15>> <<elseif $minute < 30>> <<set $minute = 30>> <<elseif $minute < 45>> <<set $minute = 45>> <<else>> <<set $minute = 0>> <<set $hour = $hour + 1>> <</if>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/end1.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Hehe~ We'll be late~ We should get up~ <</dialog>> <<dialog "You">>Welp. I'm awake. <</dialog>> <div class="button-row"> <<regButton "shioriw-end3" "Continue">><</regButton>> </div> </div> <<backend>> [[shioriw-end3]] <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/wake/end2.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Hehe~ I like waking up next to you~ <</dialog>> <<dialog "You">>I do too~ <</dialog>> <<dialog "Shiori">>I love you~ <</dialog>> <div class="button-row"> <<regButton "shiori-home" "End">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>What outfit would you like to see? <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-1" "Bunny">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-1]] <<set $location to "Shiori's home">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/1.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>I can't believe I'm wearing a bunny outfit while we're having such a nice dinner. <</dialog>> <<dialog "You">>I am very happy with what you look right now, actually~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-2" "Clink glasses">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-2]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/2.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Cheers! <</dialog>> <<dialog "You">>Heh! Maybe I should get you drunk. That would be interesting. <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-3" "She kisses you">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-3]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/kissa.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmm~ You know, you don't have to get me drunk if you want to do some... perverted things... <</dialog>> <<dialog "You">>Ehhh? Who said anything about perverted things? I think you're the perverted one here, Shiori~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-4" "She agrees">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-4]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/3.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Maybe~ <</dialog>> <<dialog "You">>That's a surprising response. What perverted things do you have on your mind? <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-5" "She feeds you">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-5]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/feed.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Something like that~ <</dialog>> <<dialog "You">>Ehh~ That's pretty tame~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-6" "She touches you">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-6]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/rub.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>How about this then~ <</dialog>> <<dialog "You">>That's a good start~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-7" "She kisses you again">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-7]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/kissb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmm~ Why do you always make me do perverted things?~ <</dialog>> <<dialog "You">>It's my fault now, huh? <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-7" "Keep making out">><</regButton>> <<regButton "shiori-bunny-8" "She kisses your crotch">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-8]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/kissc.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>It's this guy's fault~ <</dialog>> <<dialog "You">>Maybe you should give it what it wants~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj1" "Blowjob">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj1]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>*Hggkkk* *Sluurp* <</dialog>> <<dialog "You">>Ahh~ Shiori~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj1" "Keep going">><</regButton>> <<regButton "shiori-bunny-bj2" "She kneels in front of you">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj2]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bjb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>*Gkk* *Gkk* Doesh it feel good? *Slurp* <</dialog>> <<dialog "You">>It feels amazing~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj2" "Keep going">><</regButton>> <<regButton "shiori-bunny-bj3" "She sucks harder">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj3]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bjc'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ Shiori~ Your tongue~ <</dialog>> <<dialog "Shiori">>*Gkk* *Gkk* *Slurp* <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj3" "Keep going">><</regButton>> <<regButton "shiori-bunny-bj4" "She gets freaky">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj4]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>*Gkk* Turn around~ *Gkk* *Slurp* <</dialog>> <<dialog "You">>Ahh~ H-huh? <</dialog>> <<dialog "Shiori">>*Slurp* Just do it! <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bjd.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hnngg~ What the hell? <</dialog>> <<dialog "Shiori">>*Gkk* *Gkk* *Slurp* Hehe~ *Gkk* *Slurp* <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-panty" "She takes her panties off">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-panty]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/panty.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>I can't take it anymore~ Fuck me~ <</dialog>> <<dialog "You">>Can't say no to that. <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-mis1]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Harder~ <</dialog>> <<dialog "You">>Fuck! You're already so wet~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-mis1" "Keep fucking her">><</regButton>> <<regButton "shiori-bunny-cow1" "She gets on top">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-cow1]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>Hngggg~ Let me do it~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/cowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ Keep riding~ <</dialog>> <<dialog "Shiori">>Ahhh~ Ahhh~ That's it~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-cow1" "Keep going">><</regButton>> <<regButton "shiori-bunny-cow2" "She leans back">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-cow2]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/cowb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ Look at me while I ride you~ Look at everything~ <</dialog>> <<dialog "You">>Ahhh~ You're beautiful, Shiori~ <</dialog>> <<dialog "Shiori">>Ahhh~ Does my outfit look good on me? Ahhh~ <</dialog>> <<dialog "You">>Ahhh~ It's impossible for anything to not look.. Ahhhhh! ...good on you. <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-cow2" "Keep going">><</regButton>> <<regButton "shiori-bunny-rcow1" "Reverse Cowgirl">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-rcow1]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/rcowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ This position feels great too~ <</dialog>> <<dialog "You">>Ahhh~ Your ass is amazing as always~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-rcow1" "Keep going">><</regButton>> <<regButton "shiori-bunny-rcow2" "She intensifies it">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-rcow2]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/rcowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahh~ Ahh~ Ahhhh~ I'm about to cuuuum~ <</dialog>> <<dialog "You">>Ride me harder~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-rcow2" "Keep going">><</regButton>> <<regButton "shiori-bunny-rcow3" "She cums">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-rcow3]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/scum.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhhh~ <</dialog>> <<dialog "You">>That was awesome~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj5" "She sucks you off again">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj5]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bje'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Hnnggg~ *Gkk* *Gkk* *Gkk* <</dialog>> <<dialog "You">>Good girl~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj5" "She keeps sucking">><</regButton>> <<regButton "shiori-bunny-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-dog1]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Ahhh~ Ahhh~ I'm losing my mind~ <</dialog>> <<dialog "You">>Should I slow it down? <</dialog>> <<dialog "Shiori">>Ahhhhh~ Noooo~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-dog1" "Keep fucking her">><</regButton>> <<regButton "shiori-bunny-dog2" "Stop moving">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-dog2]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/dogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~Nooo~ Keep fucking meee~ <</dialog>> <<dialog "You">>You're working hard~ Should I reward you? <</dialog>> <<dialog "Shiori">>Ahh~ Ahh~ Pleaase~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-dog2" "Keep teasing her">><</regButton>> <<regButton "shiori-bunny-mis2" "Missionary">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-mis2]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/misb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Ahh~ Yeees~ <</dialog>> <<dialog "You">>What a pervert~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-mis2" "Keep fucking her">><</regButton>> <<regButton "shiori-bunny-mis3" "Harder">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-mis3]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/misc.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhhh~ I'm gonna cuum~ <</dialog>> <<dialog "You">>Cum for me, Shiori~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-mis4" "She cums">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-mis4]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/misd.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhhhh~ Mmmm~ <</dialog>> <<dialog "You">>I didn't come yet tho~ <</dialog>> <<dialog "Shiori">>Hnngg~ My pussy is sore~ I'll suck you off instead~ <</dialog>> <<dialog "You">>Good girl~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj6" "Blowjob">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj6]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bjf'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>*Slurp* *Slurp* *Gkk* <</dialog>> <<dialog "You">>Ahhh~ <</dialog>> <<dialog "Shiori">>*Slurp* *Gkk* Awe you closhe? <</dialog>> <<dialog "You">>Keep going~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj6" "She keeps going">><</regButton>> <<regButton "shiori-bunny-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-cum]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>*Slurp* *Slurp* *Gkk* <</dialog>> <<dialog "You">>Ahhh~ I'm cumming! <</dialog>> <<dialog "Shiori">>*Slurp* *Slurp* Paint my face~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/facial.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ That felt amazing~ <</dialog>> <<dialog "Shiori">>Mmm~ It's all over my face~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj7" "She cleans you up">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-bj7]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Clean me up. <</dialog>> <<dialog "Shiori">>*Slurp* *Slurp* *Gkk* <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/bjg'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "shiori-bunny-bj7" "She keeps sucking">><</regButton>> <<regButton "shiori-bunny-end" "Continue">><</regButton>> </div> </div> <<backend>> [[shiori-bunny-end]] <<set $location to "Shiori's home">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/bunny/end.mp4" type="video/mp4">'>> </video> <<dialog "You">>That was great~ <</dialog>> <<dialog "Shiori">>Hehe~ I worked hard because I love you~ <</dialog>> <div class="button-row"> <<regButton "shiori-home" "End">><</regButton>> </div> </div> <<backend>> <<set $location to "Shiori's home">> <<script>>incrementTime(0,5);<</script>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/1.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hello! <</dialog>> <<dialog "Shiori">>Hiii~ I just wanted to call before I sleep~ <</dialog>> <div class="button-row"> <<regButton "shiori-cyber2" "The call goes on for a while...">><</regButton>> </div> </div> <<backend>> [[shiori-cyber2]] <<set $shiori.chat = $shiori.chat + 5>> <<set $profile = "shiori-profile">> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/2.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">><i>*Sigh*</i> I wish you were here... <</dialog>> <<dialog "You">>I'm sorry~ I really do have stuff I need to do~ <</dialog>> <div class="button-row"> <<regButton "shiori-cyber3" "She teases you">><</regButton>> </div> </div> <<backend>> [[shiori-cyber3]] <<script>>incrementTime(0,30);<</script>> <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/3.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Too bad~ I'm wearing a really cute outfit~ <</dialog>> <<dialog "You">>Every outfit looks cute on you, Shiori~ <</dialog>> <<dialog "Shiori">>B-but! This is EXTRA cute. <</dialog>> <<dialog "You">>Really? Show me. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber4" "She places the camera down">><</regButton>> </div> </div> <<backend>> [[shiori-cyber4]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/4.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>What do you think? <</dialog>> <<dialog "You">>It's extra cute, like you said~ <</dialog>> <<dialog "Shiori">>Hehe~ You know what's even cuter? <</dialog>> <<dialog "You">>What? <</dialog>> <div class="button-row"> <<regButton "shiori-cyber5" "She takes her skirt off">><</regButton>> </div> </div> <<backend>> [[shiori-cyber5]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/skirt.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>My panties~ <</dialog>> <<dialog "You">>I like where this is going. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber6" "She takes her top off">><</regButton>> </div> </div> <<backend>> [[shiori-cyber6]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/top.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>...and my bra~ <</dialog>> <<dialog "You">>Damn. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber7" "She takes her bra off">><</regButton>> </div> </div> <<backend>> [[shiori-cyber7]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/bra.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>But I know this is what you want to see~ <</dialog>> <<dialog "You">>Fuck. I want to touch you. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber8" "She gets horny">><</regButton>> </div> </div> <<backend>> [[shiori-cyber8]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/5.mp4" type="video/mp4">'>> </video> <<dialog "You">>You are so beautiful, Shiori. I want to go there right now and dominate you~ <</dialog>> <<dialog "Shiori">>Y-you keep saying naughty things... It's making me feel horny... Mmm~ <</dialog>> <<dialog "You">>Touch yourself. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber9a" "She touches herself">><</regButton>> </div> </div> <<backend>> [[shiori-cyber9a]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/tits.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmm~ You wanna see this? <</dialog>> <<dialog "You">>Perfect~ <</dialog>> <<dialog "Shiori">>Ahhh~ What else do you want to see? I'll show you everything~ <</dialog>> <<dialog "You">>Rub your pussy again. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber10" "She focuses on her crotch">><</regButton>> </div> </div> <<backend>> [[shiori-cyber10]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/rubb.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhh~ <</dialog>> <<dialog "You">>Keep rubbing~ <</dialog>> <<dialog "Shiori">>I'm getting sooo wet~ <</dialog>> <<dialog "You">>Put your hand inside your panties~ <</dialog>> <div class="button-row"> <<regButton "shiori-cyber11" "She does what you say">><</regButton>> </div> </div> <<backend>> [[shiori-cyber11]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/rubc.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Oh my god~ It's so sensitive~ Ahhhh~ <</dialog>> <<dialog "You">>How wet are you? <</dialog>> <<dialog "Shiori">>Dripping wet~ I'm imagining it's your hand touching me~ Ahhhh~ <</dialog>> <<dialog "You">>I want to see your pussy. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber12" "She takes her panties off">><</regButton>> </div> </div> <<backend>> [[shiori-cyber12]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/panties.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Did you miss this pussy? <</dialog>> <<dialog "You">>I did. I'm going to have to fuck that pussy hard when we see each other. <</dialog>> <<dialog "Shiori">>Mmmm~ I can't wait for you to fuck my pussy~ <</dialog>> <<dialog "You">>Spread your lips open. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber13" "She spreads her pussy lips open">><</regButton>> </div> </div> <<backend>> [[shiori-cyber13]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/spread.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmmm~ This is a little embarrassing... <</dialog>> <<dialog "You">>It's so tight~ <</dialog>> <<dialog "Shiori">>I want your dick inside~ <</dialog>> <<dialog "You">>Show me closely how you rub your pussy. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber14" "She puts the phone close again">><</regButton>> </div> </div> <<backend>> [[shiori-cyber14]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/rubd.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>This is so hot. <</dialog>> <<dialog "Shiori">>Ahhhh~ I want to cum~ <</dialog>> <<dialog "You">>Put your phone down and rub your clit. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber15" "She masturbates intensely">><</regButton>> </div> </div> <<backend>> [[shiori-cyber15]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/rube.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhh~ <</dialog>> <<dialog "You">>Keep rubbing~ <</dialog>> <<dialog "Shiori">>Ahhhh~ I'm clooose~ <</dialog>> <<dialog "You">>Hold it. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber16" "She's cumming">><</regButton>> </div> </div> <<backend>> [[shiori-cyber16]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Shiori">>I'm cummiiiing~ <</dialog>> <<dialog "You">>Not yet. <</dialog>> <<dialog "Shiori">>Wh-what? I want to cuuum~ Ahhhhhh~ <</dialog>> <<dialog "You">>Keep keep holding. <</dialog>> <<dialog "Shiori">>P-pleeease~ I'm losing my mind~ Ahhhhhhhhh~ <</dialog>> <<dialog "You">>Keep rubbing~ <</dialog>> <<dialog "Shiori">>Ahhhhhh~ <</dialog>> <<dialog "You">>Cum. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/cum.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhhhh~ <</dialog>> <<dialog "You">>That was awesome. <</dialog>> <<dialog "Shiori">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "shiori-cyber17" "Continue">><</regButton>> </div> </div> <<backend>> [[shiori-cyber17]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/end.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Mmmm~ <</dialog>> <<dialog "You">>You okay? <</dialog>> <<dialog "Shiori">>Yes~ I feel great~ <</dialog>> <h1>She closes her eyes.</h1> <<dialog "You">>Are you sleeping? <</dialog>> <<dialog "Shiori">>Mmm~ I'm awake... <</dialog>> <<dialog "You">>You look so relaxed~ <</dialog>> <<dialog "Shiori">>Hehe~ Because you're with me. <</dialog>> <<dialog "You">>I'm not though~ <</dialog>> <<dialog "Shiori">>...but we're talking... <</dialog>> <<dialog "You">>Haha! That's not enough for me~ <</dialog>> <<dialog "Shiori">>Mmm... I wish you were here... <</dialog>> <<dialog "You">>Me too. <</dialog>> <<dialog "Shiori">>I love you~ <</dialog>> <<dialog "You">>I... <</dialog>> <div class="button-row"> <<regButton "shiori-cyber18a" "Tell her you love her too">><</regButton>> <<regButton "shiori-cyber18b" "Don't answer">><</regButton>> </div> </div> <<backend>> [[shiori-cyber18a]] [[shiori-cyber18b]] <</backend>>
<<bg "shiori-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/call/ruba.mp4" type="video/mp4">'>> </video> <<dialog "Shiori">>Ahhh~ <</dialog>> <<dialog "You">>Imagine it's me touching you. <</dialog>> <<dialog "Shiori">>Ahhhhh~ It feels amazing~ <</dialog>> <<dialog "You">>Rub your tits too. <</dialog>> <div class="button-row"> <<regButton "shiori-cyber9" "She shows you her tits">><</regButton>> </div> </div> <<backend>> [[shiori-cyber9]] <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>I love you too. <</dialog>> <<dialog "Shiori">>... <</dialog>> <<dialog "You">>Shiori? Hello? <</dialog>> <<dialog "Shiori">>Zzzzzz~ <</dialog>> <<dialog "You">>Pfft~ Good night, Shiori. <</dialog>> <div class="button-row"> <<regButton "bedroom" "Hang up">><</regButton>> </div> </div> <<backend>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "You">>... <</dialog>> <<dialog "Shiori">>... <</dialog>> <<dialog "You">>Shiori? Hello? <</dialog>> <<dialog "Shiori">>Zzzzzz~ <</dialog>> <<dialog "You">>Pfft~ Good night, Shiori. <</dialog>> <div class="button-row"> <<regButton "bedroom" "Hang up">><</regButton>> </div> </div> <<backend>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Zzz~ <</dialog>> <<dialog "You">>She's sleeping so soundly. <</dialog>> <div class="button-row"> <<regButton "nirei-sleep2" "Snuggle up to her">><</regButton>> </div> </div> <<backend>> [[nirei-sleep2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Zzz~ <</dialog>> <<dialog "You">>She's so soft. <</dialog>> <div class="button-row"> <<regButton "nirei-sleep" "Sleep">><</regButton>> <<regButton "nirei-sleep3" "Grab her boob">><</regButton>> </div> </div> <<backend>> [[nirei-sleep3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/3.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmn... What are you doing? <</dialog>> <<dialog "You">>Oh. Sorry for waking you. <</dialog>> <<dialog "Nirei">>You're being a pervert again~ <</dialog>> <<dialog "You">>I have a very beautiful woman sleeping next to me. <</dialog>> <<dialog "Nirei">>Well, this very beautiful woman is very sleepy~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep4" "Intensify">><</regButton>> </div> </div> <<backend>> [[nirei-sleep4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/4.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>H-hey~ <</dialog>> <<dialog "You">>You're already up anyway, let's do it~ <</dialog>> <<dialog "Nirei">>I'm sleepy~ <</dialog>> <<dialog "You">>Please? <</dialog>> <<dialog "Nirei">>Mmmn... <</dialog>> <div class="button-row"> <<regButton "nirei-sleep5" "You bargain">><</regButton>> </div> </div> <<backend>> [[nirei-sleep5]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/5.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Fine~ How about a handjob instead? <</dialog>> <<dialog "You">>Hnggg... <</dialog>> <<dialog "Nirei">>I'll suck it a little~ <</dialog>> <<dialog "You">>Really? <</dialog>> <div class="button-row"> <<regButton "nirei-sleep6" "She nods">><</regButton>> </div> </div> <<backend>> [[nirei-sleep6]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/6.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>You're lucky I love you~ <</dialog>> <<dialog "You">>You're awesome~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep7" "She touches you">><</regButton>> </div> </div> <<backend>> [[nirei-sleep7]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/7.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Hehe~ You're already hard. <</dialog>> <<dialog "You">>Well, you're very pretty~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep8" "Handjob">><</regButton>> </div> </div> <<backend>> [[nirei-sleep8]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/hja'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Feel good? <</dialog>> <<dialog "You">>Mmm~ Amazing. <</dialog>> <div class="button-row"> <<regButton "nirei-sleep8" "She keeps stroking">><</regButton>> <<regButton "nirei-sleep9" "She licks it">><</regButton>> </div> </div> <<backend>> [[nirei-sleep9]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/lick'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>*Slurp* You taste really good. <</dialog>> <<dialog "You">>You taste really good too~ Maybe I should return the favor~ <</dialog>> <<dialog "Nirei">>Ha Ha~ Nice try~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep9" "She keeps licking">><</regButton>> <<regButton "nirei-sleep10" "Blowjob">><</regButton>> </div> </div> <<backend>> [[nirei-sleep10]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/bj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>*Gkk* *Gkk* *Gkk* <</dialog>> <<dialog "You">>Ahhh~ Oh my god~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep10" "She keeps sucking">><</regButton>> <<regButton "nirei-sleep11" "Handjob">><</regButton>> </div> </div> <<backend>> [[nirei-sleep11]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/hjb'+random(1,4)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>My jaw hurts a little... <</dialog>> <<dialog "You">>Ahhh~ This feels amazing too~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep11" "She keeps stroking">><</regButton>> <<regButton "nirei-sleep12" "She sucks it a little bit">><</regButton>> </div> </div> <<backend>> [[nirei-sleep12]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/hbj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>It does taste good though~ *Slurp* <</dialog>> <<dialog "You">>Ahhh~ Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep12" "She keeps stroking">><</regButton>> <<regButton "nirei-sleep13" "Intensify">><</regButton>> </div> </div> <<backend>> [[nirei-sleep13]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/hjc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Are you close? <</dialog>> <<dialog "You">>Ahhh~ I'm about to cum~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep13" "She keeps stroking">><</regButton>> <<regButton "nirei-sleep14" "Cum">><</regButton>> </div> </div> <<backend>> [[nirei-sleep14]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Cum for me~ <</dialog>> <<dialog "You">>Hnnnnngggggggg~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/cum.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>You came a lot~ <</dialog>> <<dialog "You">>You're the best~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep15" "She plays with your cum">><</regButton>> </div> </div> <<backend>> [[nirei-sleep15]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/end1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>It's so sticky~ <</dialog>> <<dialog "You">>Those should have been in you~ <</dialog>> <<dialog "Nirei">>Shut up~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep16" "She asks for tissues">><</regButton>> </div> </div> <<backend>> [[nirei-sleep16]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/end2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I'm going to wash my hands before you go clean up. <</dialog>> <<dialog "You">>Sure~ <</dialog>> <<dialog "Nirei">>The things I do for you. You better remember this when it's time to choose~ <</dialog>> <div class="button-row"> <<regButton "nirei-sleep17" "She leaves">><</regButton>> </div> </div> <<backend>> [[nirei-sleep17]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/night/end3.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Don't get cum on my sheets, okay? <</dialog>> <<dialog "You">>Yes, ma'am! <</dialog>> <div class="button-row"> <<regButton "nirei-sleep" "Sleep">><</regButton>> </div> </div> <<backend>> [[nirei-sleep]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/sleep.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Good night~ <</dialog>> <<dialog "You">>Good night~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake" "Wake up">><</regButton>> <<regButton "nirei-wake1" "Nirei wakes up first">><</regButton>> </div> </div> <<backend>> [[nirei-wake]][[nirei-wake1]] <</backend>>
<<include "sleep-crud">> <<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Good morning~ <</dialog>> <<dialog "You">>Good morning~ <</dialog>><<if $day == "Sunday">> <<dialog "Nirei">>Here's the rent, by the way. <</dialog>> <<dialog "You">>What? No way. <</dialog>> <<dialog "Nirei">>Huh? Why not?? <</dialog>> <<dialog "You">>I've been sleeping here. Why should you pay? <</dialog>> <<dialog "Nirei">>B-but... <</dialog>> <<dialog "You">>I'll wash my face~ <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<set $nirei.love = $nirei.love + 1>> <</if>> <div class="button-row"> <<regButton "nirei-home" "Get Up">><</regButton>> </div> </div> <<backend>> <</backend>>
<<include "sleep-crud">> <<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmmn... <</dialog>> <<dialog "You">>Zzzz... <</dialog>> <div class="button-row"> <<regButton "nirei-wake2" "She shuts the alarm off">><</regButton>> </div> </div> <<backend>> <<set $profile to "nirei-profile">> [[nirei-wake2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/2.mp4" type="video/mp4">'>> </video> <<dialog "You">>Zzzz... <</dialog>> <<dialog "Nirei">>Hehe~ How cute. Wake up~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake3" "She tries to wake you up">><</regButton>> </div> </div> <<backend>> [[nirei-wake3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/3.mp4" type="video/mp4">'>> </video> <<dialog "You">>Mmmmm... Zzzz... <</dialog>> <<dialog "Nirei">>Come on~ Wake up so we can hang out a little~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake4" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei-wake4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/kissa.mp4" type="video/mp4">'>> </video> <<dialog "You">>Mmmm~ <</dialog>> <<dialog "Nirei">>Are you up? <</dialog>> <div class="button-row"> <<regButton "nirei-wake5" "She goes down on you">><</regButton>> </div> </div> <<backend>> [[nirei-wake5]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/down.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Maybe this will wake you up~ <</dialog>> <<dialog "You">>Nirei... <</dialog>> <div class="button-row"> <<regButton "nirei-wake6" "Blowjob">><</regButton>> </div> </div> <<backend>> [[nirei-wake6]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/bj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>*Gkk* *Gkk* *Slurp* Awe you up yeth? *Gkk* <</dialog>> <<dialog "You">>Ahhh~ Morning blowjob~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake6" "She keeps going">><</regButton>> <<regButton "nirei-wake7" "She licks you">><</regButton>> </div> </div> <<backend>> [[nirei-wake7]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/lick.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>*Slurp* Hehe~ Maybe I should give you a full service? <</dialog>> <<dialog "You">>I am so lucky to have you~ <</dialog>> <<dialog "Nirei">>Let's start with a kiss~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake8" "She kisses your dick">><</regButton>> </div> </div> <<backend>> [[nirei-wake8]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/kissb.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>What else do you want? <</dialog>> <<dialog "You">>I want to dominate you~ <</dialog>> <<dialog "Nirei">>No way~ I'm supposed to be giving you a morning service~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake9" "She rubs her crotch on your thigh">><</regButton>> </div> </div> <<backend>> [[nirei-wake9]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/kissc.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmm~ Want me to ride you? <</dialog>> <<dialog "You">>Yes~ <</dialog>> <<dialog "Nirei">>What a demanding client~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake10" "She takes her panties off">><</regButton>> </div> </div> <<backend>> [[nirei-wake10]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/panties.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Are you ready, sir? <</dialog>> <<dialog "You">>I'm always ready for you, Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake11" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei-wake11]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/cowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ How~ Is~ It? Ahhh~ Does it feel~ Ahh~ Good? <</dialog>> <<dialog "You">>Ahh~ It feels good~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake11" "She keeps riding">><</regButton>> <<regButton "nirei-wake12" "She takes her shirt off">><</regButton>> </div> </div> <<backend>> [[nirei-wake12]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/shirt.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Is this view better? <</dialog>> <<dialog "You">>Way better~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake13" "She starts moving again">><</regButton>> </div> </div> <<backend>> [[nirei-wake13]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ It's so deep~ Ahhh~ <</dialog>> <<dialog "You">>You're so wet~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake13" "She keeps going">><</regButton>> <<regButton "nirei-wake14" "She speeds up">><</regButton>> </div> </div> <<backend>> [[nirei-wake14]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/cowc'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ah fuck! I'm cumming! <</dialog>> <<dialog "Nirei">>Ahhh~ Noooo~ Hold it~ I'm close too~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake14" "She keeps going">><</regButton>> <<regButton "nirei-wake15" "She fucks you harder">><</regButton>> </div> </div> <<backend>> [[nirei-wake15]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/hard.mp4" type="video/mp4">'>> </video> <<dialog "You">>FUUUCK! I can't... hold it anymore~ Ahhhh~ <</dialog>> <<dialog "Nirei">>Cum inside me! Let's cum together! Ahhhhhhh~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake16" "Cum">><</regButton>> </div> </div> <<backend>> [[nirei-wake16]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/cum.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhhh~ That... Hahhh~ That was amazing. <</dialog>> <<dialog "Nirei">>It felt amazing for me too~ I managed to cum hehe~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake17" "Continue">><</regButton>> </div> </div> <<backend>> [[nirei-wake17]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>You've been cumming in me a lot~ <</dialog>> <<dialog "You">>I'm sorry~ It just feels so good. <</dialog>> <div class="button-row"> <<regButton "nirei-wake18" "She teases you">><</regButton>> </div> </div> <<backend>> [[nirei-wake18]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>It's okay~ <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Nirei">>Yep. If I get pregnant, you'd HAVE to choose me. <</dialog>> <<dialog "You">>Th-that's... <</dialog>> <div class="button-row"> <<regButton "nirei-wake19" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei-wake19]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end3.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ Don't think about it~ <</dialog>> <<dialog "You">>O-okay? <</dialog>> <<dialog "Nirei">>Hehe~ You're so cute. <</dialog>> <div class="button-row"> <<regButton "nirei-wake20" "She gets off of you">><</regButton>> </div> </div> <<backend>> [[nirei-wake20]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end4.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Geez. You came a lot. It's so sticky~ <</dialog>> <<dialog "You">>Sorry... <</dialog>> <<dialog "Nirei">>Help me clean up~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake21" "Wipe the cum off her pussy">><</regButton>> </div> </div> <<backend>> [[nirei-wake21]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end5.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Noooo~ My babies~ <</dialog>> <<dialog "You">>Stop that~ <</dialog>> <<dialog "Nirei">>Hehe~ I want you to pick me regardless anyways~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake22" "Lay back down">><</regButton>> </div> </div> <<backend>> [[nirei-wake22]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end6.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Kiss me more~ <</dialog>> <<dialog "You">>It's my turn to service you~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake23" "Make out">><</regButton>> </div> </div> <<backend>> [[nirei-wake23]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end7.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I want to stay here a bit more~ <</dialog>> <<dialog "You">>I thought you wanted me to get up? <</dialog>> <<dialog "Nirei">>I changed my mind just now~ <</dialog>> <div class="button-row"> <<regButton "nirei-wake24" "Cuddle">><</regButton>> </div> </div> <<backend>> [[nirei-wake24]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end8.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I love you. I wish we could stay like this the whole day... <</dialog>> <<dialog "You">>I can do that if you want~ <</dialog>> <<dialog "Nirei">>Nah~ I don't want to be too greedy. Get up. Let's eat. <</dialog>> <div class="button-row"> <<regButton "nirei-wake25" "Get up">><</regButton>> </div> </div> <<backend>> [[nirei-wake25]] <<script>>incrementTime(0,7);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/wake/end9.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Good morning, by the way~ <</dialog>> <<dialog "You">>My morning is already great~ <</dialog>><<if $day == "Sunday">> <<dialog "Nirei">>Oh! Here's the rent, by the way. <</dialog>> <<dialog "You">>What? No way. <</dialog>> <<dialog "Nirei">>Huh? Why not?? <</dialog>> <<dialog "You">>We just had sex. It feels weird accepting money right after... <</dialog>> <<dialog "Nirei">>Pfft. But it's for rent!! <</dialog>> <<dialog "You">>I've been sleeping here a lot anyways. You're paying for the utilities so let's just say that's my contribution. <</dialog>> <<dialog "Nirei">>Hmph. You're lucky I like the idea of us living together and sharing expenses. It's like we're newlyweds~ <</dialog>> <<dialog "You">>That escalated quickly... <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<set $nirei.love = $nirei.love + 1>><</if>> <div class="button-row"> <<regButton "nirei-home" "End">><</regButton>> </div> </div> <<backend>> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>You're here! <</dialog>> <<dialog "You">>What's up? <</dialog>> <<dialog "Nirei">>Actually... I have a request. <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Nirei">>My friend from uni has a crush on another friend, so I'm setting up a double date~ <</dialog>> <<dialog "You">>Soooo... You just want to go on a date with me? That's not a request, of course I'd join you. <</dialog>> <div class="button-row"> <<regButton "nirei-dd2" "Nirei hesitates">><</regButton>> </div> </div> <<backend>> <<set $profile to "nirei-profile">> [[nirei-dd2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Weeeeell... It's not exactly a double date... <</dialog>> <<dialog "You">>Huh? <</dialog>> <<dialog "Nirei">>That college guy friend has a crush on me. So... <</dialog>> <<dialog "You">>What? I'm not a cuck, Nirei. <</dialog>> <<dialog "Nirei">>I know! I know! It's not a date at all. I just asked him to have drinks here in my place as a kind of house warming party! I'll tell them we're dating after I introduce you THEN it'll turn into a double date. <</dialog>> <<dialog "You">>That scared me. I'm up for it. I want to make that guy know you're mine anyways. <</dialog>> <<dialog "Nirei">><i>*Blushes*</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd3" "Her friends arrive">><</regButton>> </div> </div> <<backend>> [[nirei-dd3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Dachi">>Nirei-chan~ I'm here~ <</dialog>> <<dialog "Tomo">>Dachi-kun? Nirei invited you too? <</dialog>> <<dialog "Dachi">>O-oh... She invited us both. <i>Tch. I thought it was just going to be the two of us.</i> <</dialog>> <h1>Nirei opens up the door.</h1> <<dialog "Nirei">>Tomo-chan! Dachi-kun! Welcome to my new place! Let me introduce you to my... uhm... w-well... He's... <</dialog>> <h1>Nirei's face gets flushed as she stumbles over her words.</h1> <<dialog "You">>Aww. She's being shy haha! I'm $player.name. Nirei's boyfriend. Nice to meet you~ <</dialog>> <<dialog "Nirei">>B-boyfriend... <</dialog>> <h1>Nirei's eyes sparkle a bit.</h1> <<dialog "Dachi">>BOYFRIEND? <i>Sh-she has a boyfriend?</i> <</dialog>> <<dialog "Tomo">>Nice to meet you, $player.name! I'm Tomo. This is Dachi~ <</dialog>> <<dialog "Dachi">>N-nice to meet you... <i>*Cries internally*</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd4" "They sit down">><</regButton>> </div> </div> <<backend>> [[nirei-dd4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">><i>Sit in front of me.</i> <</dialog>> <<dialog "You">><i>Not beside you? Did I do something wrong?</i> <</dialog>> <h1>She sits next to Dachi.</h1><video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/1.mp4" type="video/mp4">'>> </video> <<dialog "Dachi">><i>Sh-she sat next to me! I-is this...</i> <</dialog>> <<dialog "Tomo">><i>Just as we planned! Nirei-chan will stare at her boyfriend the whole time. Dachi-kun will have no choice but to interact with me instead~ Good going, Nirei-chan!</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd5" "Eat">><</regButton>> </div> </div> <<backend>> [[nirei-dd5]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/2.mp4" type="video/mp4">'>> </video> <<dialog "Dachi">>So, Nirei-chan this is such a-- <</dialog>> <<dialog "Nirei">>That's your favorite beer, right? I asked Tomo-chan to bring that for you~ <</dialog>> <<dialog "You">>Yup! It's refreshing~ Thanks, Tomo-san. <</dialog>> <<dialog "Tomo">>You're welcome! <</dialog>> <div class="button-row"> <<regButton "nirei-dd6" "Nirei keeps swooning at you">><</regButton>> </div> </div> <<backend>> [[nirei-dd6]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/3.mp4" type="video/mp4">'>> </video> <<dialog "Dachi">>N-nirei! Your place looks great! <</dialog>> <<dialog "Nirei">>I know~ I'm glad I moved in with $player.name~ He takes such good care of me and our place. <</dialog>> <<dialog "You">>Well, of course I should. I love you after all. <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "Dachi">><i>*Sigh* What am I doing? Trying to destroy a beautiful couple... I should just be happy for them. Let's just drink our sorrows away.</i> <</dialog>> <<dialog "Tomo">>Awwww~ How sweet. <</dialog>> <div class="button-row"> <<regButton "nirei-dd7" "Nirei flashes her cleavage at you">><</regButton>> </div> </div> <<backend>> [[nirei-dd7]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/4.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I'm feeling hot today~ <</dialog>> <<dialog "You">><i>Jesus Christ. What's she doing? ... It's pretty hot, though.</i> <</dialog>> <<dialog "Tomo">>Dachi-kun, are you feeling okay? Your face is getting red. <</dialog>> <<dialog "Dachi">>Hmmm? *hic* I guess I've been drinking too much. <</dialog>> <<dialog "Tomo">>That's not good! <</dialog>> <<dialog "Dachi">>S-sorry... *hic* <</dialog>> <<dialog "Tomo">>You shouldn't be drinking alone. Pour me a glass~ <</dialog>> <<dialog "Dachi">>O-okay... <i>I guess Tomo-chan is pretty cute too. Maybe she's single?</i> <</dialog>> <<dialog "You">><i>Fucking hell, Nirei. I'm getting a boner. My dick is digging into my zipper, but Tomo-chan might see me if I try to adjust my dick here.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd8" "Excuse yourself to the bathroom">><</regButton>> </div> </div> <<backend>> [[nirei-dd8]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Gotta use the bathroom, be right back. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/5.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>... <</dialog>> <<dialog "Dachi">>You're single, right? Tomo-chan? <</dialog>> <<dialog "Tomo">>Yep~ <i>It worked. Thanks, Nirei-chan!</i> <</dialog>> <<dialog "Nirei">><i>Hey, Tomo-chan! I'll leave you and Dachi alone.</i> <</dialog>> <<dialog "Tomo">><i>Ooooh~ Are you using me as an excuse to do naughty things with your boyfriend?</i> <</dialog>> <h1>Nirei smiles and stands up.</h1> <<dialog "Tomo">><i>Wait. Is she actually going to??</i> <</dialog>> <<dialog "Dachi">>What's wrong, Tomo-chan? <</dialog>> <<dialog "Tomo">>N-nothing~ Let's keep drinking! <</dialog>> <div class="button-row"> <<regButton "nirei-dd9" "Nirei follows you">><</regButton>> </div> </div> <<backend>> [[nirei-dd9]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/6.mp4" type="video/mp4">'>> </video> <<dialog "You">>H-hey! <</dialog>> <<dialog "Nirei">><i>Shhh. We both know you don't have to pee~</i> <</dialog>> <<dialog "You">><i>Urk...</i> <</dialog>> <<dialog "Nirei">><i>You have to fix your boner?</i> <</dialog>> <<dialog "You">><i>Whose fault do you think it is?</i> <</dialog>> <<dialog "Nirei">><i>Better get rid of it fast then.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd10" "She gets close to you">><</regButton>> </div> </div> <<backend>> [[nirei-dd10]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/7.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Your friends are right there...</i> <</dialog>> <<dialog "Nirei">><i>Tomo-chan is too busy flirting with Dachi-kun.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd11" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei-dd11]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/kissa.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>N-nirei...</i> <</dialog>> <<dialog "Nirei">><i>It's okay~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd12" "She puts your hand on her chest">><</regButton>> </div> </div> <<backend>> [[nirei-dd12]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/grope.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Was this what made you hard?</i> <</dialog>> <<dialog "You">><i>Your entire body did~</i> <</dialog>> <<dialog "Nirei">><i>Hehe~ Well, I should fix the boner, since it's my fault.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd13" "Handjob">><</regButton>> </div> </div> <<backend>> [[nirei-dd13]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/hja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>It's REALLY hard.</i> <</dialog>> <<dialog "You">><i>Of course it is. Have you seen you?</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd13" "Keep going">><</regButton>> <<regButton "nirei-dd14" "Blowjob">><</regButton>> </div> </div> <<backend>> [[nirei-dd14]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/bj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>*Gkk* *Gkk* *Gkk*</i> <</dialog>> <<dialog "You">><i>Ahhh~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd14" "Keep going">><</regButton>> <<regButton "nirei-dd15" "She sucks your balls">><</regButton>> </div> </div> <<backend>> [[nirei-dd15]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/lick.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>*Slurp* Hill you cum quickher if I hick your ballsh? *Slurp*</i> <</dialog>> <<dialog "You">><i>I'm about to. Ahhhhh~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd16" "Facial">><</regButton>> </div> </div> <<backend>> [[nirei-dd16]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/facial.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>You came all over my face~</i> <</dialog>> <<dialog "You">><i>My bad...</i> <</dialog>> <<dialog "Nirei">><i>It's okay~ IF you give me a kiss.</i> <</dialog>> <<dialog "You">><i>Uhhhhmmmmm</i> <</dialog>> <<dialog "Nirei">><i>Pfft~ I'm joking. Go back first. I'll just wash my face.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd17" "Go back to the table">><</regButton>> </div> </div> <<backend>> [[nirei-dd17]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/8.mp4" type="video/mp4">'>> </video> <<dialog "Tomo">>You're back! Where's Nirei-chan? <</dialog>> <<dialog "You">><i>She's in the bathroom.</i> <</dialog>> <<dialog "Tomo">><i>Okay... but ummm...</i> <</dialog>> <<dialog "You">><i>Yup?</i> <</dialog>> <<dialog "Tomo">><i>Why are we whispering?</i> <</dialog>> <<dialog "You">><i>*Fuck...* W-well... She's having girl stuff.</i> <</dialog>> <<dialog "Tomo">><i>Oh! Got ya.</i> <</dialog>> <<dialog "Dachi">>What are we talking about? <</dialog>> <div class="button-row"> <<regButton "nirei-dd18" "Nirei comes back">><</regButton>> </div> </div> <<backend>> [[nirei-dd18]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/9.mp4" type="video/mp4">'>> </video> <<dialog "Tomo">>You okay, Nirei-chan? <</dialog>> <<dialog "Nirei">>I'm great~ <</dialog>> <<dialog "Dachi">><i>They're being lovey-dovey...</i> <</dialog>> <<dialog "Tomo">><i>Dachi-kun probably wants to be lovey-dovey too~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd19" "Nirei turns to you">><</regButton>> </div> </div> <<backend>> [[nirei-dd19]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/10.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Hmmm? I think you're still pretty hard~</i> <</dialog>> <<dialog "You">><i>Your friends are right in front of us.</i> <</dialog>> <<dialog "Dachi">><i>I wish I had that too...</i> <</dialog>> <<dialog "Tomo">><i>I should sit next to him~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd20" "Nirei sits next to you">><</regButton>> </div> </div> <<backend>> [[nirei-dd20]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/11.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>I'm getting horny~</i> <</dialog>> <<dialog "You">><i>Let's do it after your friends leave.</i> <</dialog>> <<dialog "Nirei">><i>Nope. I don't think they're going home. I have an idea.</i> <</dialog>> <<dialog "Nirei">>Tomo-chan! I'm a bit chilly~ Can you get me a blanket from the drawer next to you? <</dialog>> <<dialog "Tomo">>Sure~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd21" "You snuggle together">><</regButton>> </div> </div> <<backend>> [[nirei-dd21]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/12.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Invisibility cloak~</i> <</dialog>> <<dialog "You">><i>You really are horny.</i> <</dialog>> <<dialog "Nirei">><i>Hehe~ Feel how wet I am.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd22" "Rub her pussy">><</regButton>> </div> </div> <<backend>> [[nirei-dd22]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/ruba'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>You're soaking wet~</i> <</dialog>> <<dialog "Nirei">><i>That's your fault~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd22" "Keep rubbing">><</regButton>> <<regButton "nirei-dd23" "Make out">><</regButton>> </div> </div> <<backend>> [[nirei-dd23]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/kissb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Mmmm~ You really like me that much?</i> <</dialog>> <<dialog "Nirei">><i>...</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd23" "Keep kissing">><</regButton>> <<regButton "nirei-dd24" "She cries">><</regButton>> </div> </div> <<backend>> [[nirei-dd24]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/13.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>H-hey... Are you crying?</i> <</dialog>> <<dialog "Nirei">><i>*sob*</i> <</dialog>> <<dialog "You">><i>What's wrong?</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd25" "She opens up">><</regButton>> </div> </div> <<backend>> [[nirei-dd25]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/14.mp4" type="video/mp4">'>> </video> <h1>You try to stop fingering her.</h1> <<dialog "Nirei">><i>N-no! Please, don't stop. Nothing's wrong. *sobs* I'm just really happy.</i> <</dialog>> <<dialog "You">><i>To the point that you're crying? Why?</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd26" "She explains">><</regButton>> </div> </div> <<backend>> [[nirei-dd26]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/15.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Well... I got to introduce you as my boyfriend.</i> <</dialog>> <<dialog "You">><i>Nirei...</i> <</dialog>> <<dialog "Nirei">><i>I didn't think I'd be able to show you off... *sniffles* because of Shiori... but we just had dinner with my friends.</i> <</dialog>> <<dialog "You">><i>...</i> <</dialog>> <<dialog "Nirei">><i>You even told me you love me... *sniffles* I know you actually don't, but it still feels really good hearing it from you.</i> <</dialog>> <<dialog "You">><i>I do love you. It's just complicated... I know this makes me sound like an asshole, but I can love you both.</i> <</dialog>> <<dialog "Nirei">><i>I know I should be hurt by that, but knowing you love me too is enough. I don't know what kind of voodoo you did to me, but it worked. I just love you so much that I don't mind sharing as long as you don't forget about me...</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd27" "Keep fingering her">><</regButton>> </div> </div> <<backend>> [[nirei-dd27]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rubb.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahhh~ It feels so good.</i> <</dialog>> <<dialog "You">><i>It feels weird doing this while you're crying like that...</i> <</dialog>> <<dialog "Nirei">><i>I'm sorry. I'm just really happy~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd28" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei-dd28]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rubc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>I love you.</i> <</dialog>> <<dialog "You">><i>...</i> <</dialog>> <<dialog "Nirei">><i>...</i> <</dialog>> <<dialog "You">><i>I love you too.</i> <</dialog>> <<dialog "Nirei">><i>*sobs*</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd29" "Her friends black out">><</regButton>> </div> </div> <<backend>> [[nirei-dd29]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Tomo">>Nnnnn~ Dachi... kun... Zzzz~ <</dialog>> <<dialog "Dachi">>... Yes? ... Zzzz~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/16.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Pfft~ They fell asleep.</i> <</dialog>> <<dialog "You">><i>They did.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd30" "She takes the blanket off">><</regButton>> </div> </div> <<backend>> [[nirei-dd30]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rubd.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>It was so hot under that blanket~</i> <</dialog>> <<dialog "You">><i>I'm sweating.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd31" "She wants to have sex">><</regButton>> </div> </div> <<backend>> [[nirei-dd31]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/17.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Hey... Let's do it.</i> <</dialog>> <<dialog "You">><i>What if they wake up?</i> <</dialog>> <<dialog "Nirei">><i>I don't care.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-cow1" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cow1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahhh~ Ahhh~ Amazing~</i> <</dialog>> <<dialog "You">><i>Ahhh~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-cow1" "Keep going">><</regButton>> <<regButton "nirei-dd-cow2" "She leans back">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cow2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahhh~ Look at my body~ Ahhh~</i> <</dialog>> <<dialog "You">><i>You're beautiful, Nirei.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-cow2" "Keep going">><</regButton>> <<regButton "nirei-dd-cow3" "She gets loud">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cow3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/cowc'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahhh~ Ahhh~</i> Ahhhh~ Ahhhhh~ <</dialog>> <<dialog "You">><i>Shhh. Nirei.</i> <</dialog>> <<dialog "Nirei">>Ahhh~ I love youuu~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-cow3" "Keep going">><</regButton>> <<regButton "nirei-dd-hide" "Tomo wakes up">><</regButton>> </div> </div> <<backend>> [[nirei-dd-hide]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/hide.mp4" type="video/mp4">'>> </video> <<dialog "Tomo">>Ehhh? Nirei-chan... Wha... Zzzz... <</dialog>> <<dialog "You">><i>Ahh~ Th-that was close...</i> <</dialog>> <<dialog "Nirei">><i>This blanket is so hot~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-panties" "Nirei takes her panties off">><</regButton>> </div> </div> <<backend>> [[nirei-dd-panties]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/panties.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>I'll turn around so I can see if they're waking up~</i> <</dialog>> <<dialog "You">><i>O-okay.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow1" "Reverse Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei-dd-rcow1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rcowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahh~ Ahhh~ This is so exciting~</i> <</dialog>> <<dialog "You">><i>Ahh~ Ahh~ It kinda is~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow1" "Keep going">><</regButton>> <<regButton "nirei-dd-rcow2" "Rub her clit">><</regButton>> </div> </div> <<backend>> [[nirei-dd-rcow2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rcowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahhhhhhhh~ That feels way too good~ Ahhh~ Keep rubbing it~</i> <</dialog>> <<dialog "You">><i>So wet~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow2" "Keep going">><</regButton>> <<regButton "nirei-dd-rcow3" "Intensify">><</regButton>> </div> </div> <<backend>> [[nirei-dd-rcow3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rcowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">><i>Ahhh~ Ahhh~ If you keep fucking me like this~ Ahhhh~ I'll make a lot of noise~</i> <</dialog>> <<dialog "You">><i>I don't care anymore~</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow3" "Keep going">><</regButton>> <<regButton "nirei-dd-rcow4" "Harder">><</regButton>> </div> </div> <<backend>> [[nirei-dd-rcow4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rcowd.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Hnnnnngggg~ <</dialog>> <<dialog "You">>Take your top off. <</dialog>> <div class="button-row"> <<regButton "nirei-dd-top" "She takes her top off">><</regButton>> </div> </div> <<backend>> [[nirei-dd-top]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/top.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I was feeling really hot~ <</dialog>> <<dialog "You">>Feel better? <</dialog>> <<dialog "Nirei">>Yup~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow5" "Take her boobs out">><</regButton>> </div> </div> <<backend>> [[nirei-dd-rcow5]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rcowe.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ <</dialog>> <<dialog "You">>You're so hot~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow6" "Keep going">><</regButton>> </div> </div> <<backend>> [[nirei-dd-rcow6]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/rcowf'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ Yes~ Play with my tits~ <</dialog>> <<dialog "You">>They're so soft~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-rcow6" "Keep going">><</regButton>> <<regButton "nirei-dd-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[nirei-dd-dog1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ <</dialog>> <<dialog "You">>How is your ass so fat? <</dialog>> <div class="button-row"> <<regButton "nirei-dd-dog1" "Keep going">><</regButton>> <<regButton "nirei-dd-dog2" "Harder">><</regButton>> </div> </div> <<backend>> [[nirei-dd-dog2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/dogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ I have an idea~ <</dialog>> <<dialog "You">>Ahh~ What is it? <</dialog>> <div class="button-row"> <<regButton "nirei-dd-dog2" "Keep going">><</regButton>> <<regButton "nirei-dd-brave" "She lays down next to Tomo">><</regButton>> </div> </div> <<backend>> [[nirei-dd-brave]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/brave.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Fuck me here. <</dialog>> <<dialog "You">>A-are you crazy? No! <</dialog>> <div class="button-row"> <<regButton "nirei-dd-bra" "She takes her bra off">><</regButton>> </div> </div> <<backend>> [[nirei-dd-bra]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/bra.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Don't you want to watch my boobs bounce? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "You">>Fuck it. <</dialog>> <div class="button-row"> <<regButton "nirei-dd-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[nirei-dd-mis1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Ahh~ That's it~ Wake her up~ <</dialog>> <<dialog "You">>Ahhh~ This is insane! <</dialog>> <div class="button-row"> <<regButton "nirei-dd-mis1" "Keep going">><</regButton>> <<regButton "nirei-dd-mis2" "Kiss her">><</regButton>> </div> </div> <<backend>> [[nirei-dd-mis2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/misb.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmn~ I love you~ <</dialog>> <<dialog "You">>Why are you crying again? <</dialog>> <<dialog "Nirei">>Say it back~ <</dialog>> <<dialog "You">>I love you too. <</dialog>> <div class="button-row"> <<regButton "nirei-dd-mis3" "Harder">><</regButton>> </div> </div> <<backend>> [[nirei-dd-mis3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/misc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I'm so happy~ Ahhhnnn~ <</dialog>> <<dialog "You">>I'll keep making you happy. <</dialog>> <<dialog "Nirei">>Hehe~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-mis3" "Keep going">><</regButton>> <<regButton "nirei-dd-cow4" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cow4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/cowd1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Hehe~ Ahhhh~ She didn't wake up~ <</dialog>> <<dialog "You">>Were you hoping she did? Ahhh~ <</dialog>> <<dialog "Nirei">>Of course~ Hehe~ It really made me happy bragging to them that you were-- Ahhhh~ My boyfriend. Ahhh~ Ahhh~ What better way to-- Ahhh~ Show you off than to-- Hnnggg~ Have you fuck me in front of them? <</dialog>> <div class="button-row"> <<regButton "nirei-dd-cow5" "Hug her">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cow5]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/'+either("cowd2","cowe")+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhhhh~ I'm about to cum~ <</dialog>> <<dialog "You">>Go ahead, babe~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-cow5" "Keep going">><</regButton>> <<regButton "nirei-dd-cow6" "She cums">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cow6]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/cowf.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I came... <</dialog>> <<dialog "You">>What's wrong? <</dialog>> <<dialog "Nirei">>I'm just really happy. You called me babe. <</dialog>> <<dialog "You">>Heh. Well, lay down, babe. Let's try to wake her up again~ <</dialog>> <<dialog "Nirei">>Okay~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-mis4" "Missionary">><</regButton>> </div> </div> <<backend>> [[nirei-dd-mis4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/misd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhhh~ I'm still sensitive~ <</dialog>> <<dialog "You">>Are you gonna cum again? <</dialog>> <<dialog "Nirei">>Ahhh~ Yeeessss~ <</dialog>> <<dialog "You">>I'm cumming too! <</dialog>> <<dialog "Nirei">>Let's cum together! Ahhhh~ <</dialog>> <<dialog "You">>I love you. <</dialog>> <<dialog "Nirei">>Hnnnnnnnnnnnnngggggg~ <</dialog>> <div class="button-row"> <<regButton "nirei-dd-mis4" "Keep going">><</regButton>> <<regButton "nirei-dd-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[nirei-dd-cum]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/cum.mp4" type="video/mp4">'>> </video> <<dialog "You">>Arghhhh~ <</dialog>> <<dialog "Nirei">>Ahhh~ You came inside~ <</dialog>> <<dialog "You">>I did... <</dialog>> <<dialog "Nirei">>Hehe~ I love you too. <</dialog>> <div class="button-row"> <<regButton "nirei-dd-end1" "She plays with your cum">><</regButton>> </div> </div> <<backend>> [[nirei-dd-end1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/end1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>You came a lot~ <</dialog>> <<dialog "You">>That was really hot. <</dialog>> <div class="button-row"> <<regButton "nirei-dd-end2" "Continue">><</regButton>> </div> </div> <<backend>> [[nirei-dd-end2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/date/end2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I'm sorry for crying. I was just really happy. <</dialog>> <<dialog "You">>It's okay. I was just worried. <</dialog>> <<dialog "Nirei">>Are you sure you love me? <</dialog>> <<dialog "You">>Well... I'm sure I want to be with you. I know it's selfish, but I still can't choose. I'm sorry. <</dialog>> <<dialog "Nirei">>Well, then. Can you be my boyfriend when Shiori's not around? A real boyfriend. Not a fake one. <</dialog>> <<dialog "You">>What else can this relationship be called? It's not like Shiori and I had a conversation about dating. I'll gladly be your boyfriend. <</dialog>> <<dialog "Nirei">>Hehe~ You're my boyfriend now... *Yawn* I'm tired. <</dialog>> <<dialog "You">>Let's go to bed~ <</dialog>> <h1>This is repeatable, but canonically, it only happened once.</h1> <div class="button-row"> <<regButton "nirei-dd-end3" "The next day">><</regButton>> </div> </div> <<backend>> [[nirei-dd-end3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<include "sleep-crud">> <<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Tomo">>My head~ <</dialog>> <<dialog "Dachi">>Good morning, Tomo. <</dialog>> <<dialog "You">>Good morning, guys. <</dialog>> <<dialog "Nirei">>Good morning! <</dialog>> <<dialog "Tomo">>Urfff~ My head~ <</dialog>> <<dialog "Dachi">>Tomo-chan? <</dialog>> <<dialog "Tomo">>Wh-what? Urrkk~ <</dialog>> <<dialog "Dachi">>Coffee should fix your hangover. Wanna grab coffee with me? <</dialog>> <<dialog "Tomo">>Wh-what? Of course!! <</dialog>> <<dialog "Nirei">><i>Congratulations, Tomo-chan.</i> <</dialog>> <<dialog "You">><i>Congratulations, Tomo-chan.</i> <</dialog>> <div class="button-row"> <<regButton "nirei-dd-end4" "They leave">><</regButton>> </div> </div> <<backend>> [[nirei-dd-end4]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>They left. <</dialog>> <<dialog "Nirei">>Good for them. <</dialog>> <<dialog "You">>Want to grab coffee too? <</dialog>> <<dialog "Nirei">>I want soup. <</dialog>> <<dialog "You">>Okay, babe. Let's get soup. <</dialog>> <<dialog "Nirei">>Wh-wha... You called me babe again... *Sniffle* *Sobs* Waaaaa~ I'm so happy~ <</dialog>> <<dialog "You">>G-geez... Nirei. Don't cry. <</dialog>> <<dialog "Nirei">>Nooooo~ Call me babe agaaaain~ <</dialog>> <div class="button-row"> <<regButton "nirei-home" "End">><</regButton>> </div> </div> <<backend>> [[nirei-dd-end4]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Let's go out! <</dialog>> <<dialog "Nirei">>Okaay~ It's a date~ <</dialog>> <div class="button-row"> <<regButton "nirei-d2" "Go out">><</regButton>> </div> </div> <<backend>> [[nirei-d2]] <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <h1>After going around the Business Area the whole day, you end up in a restaurant to eat.</h1><video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/1.mp4" type="video/mp4">'>> </video> <<dialog "You">>I'm a little tired. Are you okay? <</dialog>> <<dialog "Nirei">>Of course~ I'm a little hungry though. <</dialog>> <<dialog "You">>Let me take a photo of you~ To commemorate our first date~ <</dialog>> <div class="button-row"> <<regButton "nirei-d3" "Snap a photo">><</regButton>> </div> </div> <<backend>> [[nirei-d3]] <<set $location to "Business Area">> <<set $profile to "nirei-profile">> <<set $hour = 19>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/2.mp4" type="video/mp4">'>> </video> <<dialog "You">>So pretty~ <</dialog>> <<dialog "Nirei">>Really? <</dialog>> <div class="button-row"> <<regButton "nirei-d4" "Show her the photos">><</regButton>> </div> </div> <<backend>> [[nirei-d4]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/3.mp4" type="video/mp4">'>> </video><video controls width="420" height="236.25" autoplay loop muted> <<print '<source src="vids/nirei/prehotel/9.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>You're a really good photographer. Ever thought of being a pro? <</dialog>> <<dialog "You">>Nah. You know my family business... <</dialog>> <<dialog "Nirei">>Ah. That. Right... <</dialog>> <<dialog "You">>Did that scare you off? <</dialog>> <<dialog "Nirei">>I told you. You're a hero to me. That's just your superpower~ <</dialog>> <<dialog "You">>Thank you... <</dialog>> <<dialog "Nirei">>Stop that~ I'm really okay with it. Let's drink~ <</dialog>> <div class="button-row"> <<regButton "nirei-d5" "Cheers">><</regButton>> </div> </div> <<backend>> [[nirei-d5]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/4.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ <</dialog>> <<dialog "You">>I'm getting hungry too~ <</dialog>> <div class="button-row"> <<regButton "nirei-d6" "The food arrives">><</regButton>> </div> </div> <<backend>> [[nirei-d6]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/5.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Finally~ <</dialog>> <<dialog "You">>Let's eat~ <</dialog>> <div class="button-row"> <<regButton "nirei-d7" "The food arrives">><</regButton>> </div> </div> <<backend>> [[nirei-d7]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/6.mp4" type="video/mp4">'>> </video> <<dialog "You">>So, how's college? What happened to the dumbasses? <</dialog>> <<dialog "Nirei">>Ugh. Don't even remind me. You know what? Fine. Reshi tried to beg me to ask you to let him go. I told him if he got near me, I'll ask you to ship him off to China. <</dialog>> <<dialog "You">>Should I? <</dialog>> <<dialog "Nirei">>Nooo! <</dialog>> <<dialog "You">>Haha! I was kidding. Kind of... <</dialog>> <div class="button-row"> <<regButton "nirei-d8" "She continues">><</regButton>> </div> </div> <<backend>> [[nirei-d8]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/7.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>The other guys aren't approaching me anymore. Some guys are still trying to approach me, but for some reason, two thuggish guys come to my rescue when I walk around the Business Area and get hit on by random dudes. <</dialog>> <<dialog "You">>Two guys? <</dialog>> <<dialog "Nirei">>I thought they were from your gang. Were they not? <</dialog>> <<dialog "You">>I don't think so. Gangs aren't very active in public here in Kumine. The schools kind of overpower them. <</dialog>> <<dialog "Nirei">>Huh. When I try to thank them, they tell me to tell my boyfriend, I assume you, that they did what they were told. <</dialog>> <<dialog "You">>Weird. <</dialog>> <<dialog "Nirei">>As for the two girls, they haven't been coming to classes. Some of my classmates are saying they started doing compensated dating. <</dialog>> <<dialog "You">>At least they made a career out of being such bitches. <</dialog>> <div class="button-row"> <<regButton "nirei-d9" "You finish">><</regButton>> </div> </div> <<backend>> [[nirei-d9]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/prehotel/8.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I'm full now~ <</dialog>> <<dialog "You">>What do you want to do now? <</dialog>> <<dialog "Nirei">>Burn the calories. <</dialog>> <<dialog "You">>How? <</dialog>> <<dialog "Nirei">>You know how. <</dialog>> <div class="button-row"> <<regButton "nirei-dcrud" "Yep. We all know how.">><</regButton>> </div> </div> <<backend>> [[nirei-dcow1]][[nirei-dcrud]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowa'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>Fuck! Nirei~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "nirei-dcow1" "Keep going">><</regButton>> <<regButton "nirei-dcow2" "She spreads her legs">><</regButton>> </div> </div> <<backend>> [[nirei-dcow2]] <<set $location to "Hotel">> <<set $profile to "nirei-profile">> <<script>>incrementTime(0,1);<</script>> <</backend>>
<<script>>incrementTime(0,23);<</script>> <<goto "nirei-dcow1">>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Look at your dick~ Ahhh~ Going in and out of my pussy~ <</dialog>> <<dialog "You">>Ahhh~ It's so hot~ <</dialog>> <div class="button-row"> <<regButton "nirei-dcow2" "Keep going">><</regButton>> <<regButton "nirei-dcow3" "Intensify">><</regButton>> </div> </div> <<backend>> [[nirei-dcow3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhh~ Ahhhhhhhh~ <</dialog>> <<dialog "You">>Ahhh~Fuck~ <</dialog>> <div class="button-row"> <<regButton "nirei-dcow3" "Keep going">><</regButton>> <<regButton "nirei-ddog1" "Doggy">><</regButton>> <<regButton "nirei-dmis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[nirei-ddog1]][[nirei-dmis1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ Mmmmm~ <</dialog>> <<dialog "You">>Your tongue is so soft~ <</dialog>> <<dialog "Nirei">>Perfect for sucking your dick~ <</dialog>> <div class="button-row"> <<regButton "nirei-ddog1" "Keep going">><</regButton>> <<regButton "nirei-ddog2" "Harder">><</regButton>> </div> </div> <<backend>> [[nirei-ddog2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "nirei-dmis1" "Keep going">><</regButton>> <<regButton "nirei-dmis2" "Hold her arms">><</regButton>> </div> </div> <<backend>> [[nirei-dmis2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>><<set $goto = either("nirei-dcow1", "nirei-dcowb")>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/dogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Hngggggg~ <</dialog>> <<dialog "You">>Ahhhh~ Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei-ddog2" "Keep going">><</regButton>> <<regButton "nirei-dmis1" "Missionary">><</regButton>> <<regButton $goto "Cowgirl">><</regButton>> </div> </div> <<backend>> [[nirei-dcowb]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cowd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhh~ Ahhhhhhhh~ <</dialog>> <<dialog "You">>Ahhh~Fuck~ <</dialog>> <div class="button-row"> <<regButton "nirei-dcowb" "Keep going">><</regButton>> <<regButton "nirei-ddog1" "Doggy">><</regButton>> <<regButton "nirei-dmis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[nirei-ddog1]][[nirei-dmis1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>><<set $goto = either("nirei-dcow1", "nirei-dcowb")>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Hnggg~ Ahhh~ <</dialog>> <<dialog "You">>Your boobs keep bouncing~ <</dialog>> <div class="button-row"> <<regButton "nirei-dmis2" "Keep going">><</regButton>> <<regButton "nirei-dhard" "Fuck her hard">><</regButton>> <<regButton $goto "Cowgirl">><</regButton>> <<regButton "nirei-ddog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[nirei-dhard]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/hard.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>AHHHHHHH!! FUUCK~ <</dialog>> <<dialog "You">>I'm about to cum~ <i>Shit! I can't come inside. Pull out! Pull out! Pull out!</i> <</dialog>> <<dialog "Nirei">>Hnnnnnnggg~ Y-you can do it, you know? Only you are allowed~ <</dialog>> <<dialog "You">>Fuck!! <</dialog>> <div class="button-row"> <<regButton "nirei-dcum1" "Cum inside">><</regButton>> </div> </div> <<backend>> [[nirei-dcum1]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahh~ Y-you actually came inside~ <</dialog>> <<dialog "You">>Hahhh. Hahhhh. I'm so sorry, Nirei... Hahhh. <</dialog>> <div class="button-row"> <<regButton "nirei-dcum2" "She kisses you">><</regButton>> </div> </div> <<backend>> [[nirei-dcum2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Mmmm~ It's okay~ <</dialog>> <<dialog "You">>I'm really sorry~ <</dialog>> <div class="button-row"> <<regButton "nirei-dcum3" "Pull out">><</regButton>> </div> </div> <<backend>> [[nirei-dcum3]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/cum3.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>I told you it's okay~ Haaah~ I'm tired~ <</dialog>> <<dialog "You">>Let's go to bed~ <</dialog>> <div class="button-row"> <<regButton "nirei-dend" "Sleep">><</regButton>> </div> </div> <<backend>> [[nirei-dend]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/hotel/end.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Good night~ <</dialog>> <<dialog "You">>Sleep tight~ <</dialog>> <<dialog "Nirei">>If you hug me tight, maybe I will~ <</dialog>> <div class="button-row"> <<regButton "nirei-dend2" "Wake up">><</regButton>> </div> </div> <<backend>> [[nirei-dend2]] <<script>>incrementTime(0,1);<</script>> <</backend>>
<<include "sleep-crud">> <<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Nirei">>Good morning~ <</dialog>> <<dialog "You">>Good morning~ <</dialog>> <<dialog "Nirei">>Listen. I need to do something at the university. Can we head there after washing up? <</dialog>> <<dialog "You">>Of course~ <</dialog>> <<dialog "Nirei">>Hehe~ You're the best. <</dialog>><<if $day == "Sunday">> <<dialog "Nirei">>Oh! Here's the rent, by the way. <</dialog>> <<dialog "You">>What? No way. <</dialog>> <<dialog "Nirei">>Huh? Why not?? <</dialog>> <<dialog "You">>We just had sex last night. It feels weird accepting money the morning after... <</dialog>> <<dialog "Nirei">>Pfft. But it's for rent!! <</dialog>> <<dialog "You">>I've been sleeping there a lot anyways. You're paying for the utilities so let's just say that's my contribution. <</dialog>> <<dialog "Nirei">>Hmph. You're lucky I like the idea of us living together and sharing expenses. It's like we're newlyweds~ <</dialog>> <<dialog "You">>That escalated quickly... <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1> <<set $nirei.love = $nirei.love + 1>><</if>> <div class="button-row"> <<regButton "business-area" "End">><</regButton>> </div> </div> <<set $profile to "nirei-profile">>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/1.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>A quick bath before bed~ <</dialog>> <<dialog "You">>It's nice. <</dialog>> <div class="button-row"> <<regButton "nirei-bath2" "Get in the tub">><</regButton>> </div> </div> <<backend>> [[nirei-bath2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/2.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Don't slip~ <</dialog>> <<dialog "You">>Heh. I don't slip~ <</dialog>> <h1>You almost slip.</h1> <<dialog "Nirei">>Pfft~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath3" "Soak with Nirei">><</regButton>> </div> </div> <<backend>> [[nirei-bath3]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/3.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Isn't this relaxing? <</dialog>> <<dialog "You">>Hmmmm. I'm not a big fan of baths. <</dialog>> <<dialog "Nirei">>Why not? <</dialog>> <<dialog "You">>I don't know. I just feel like it's unhygienic. Stewing in your own filth... <</dialog>> <<dialog "Nirei">>I suck your dick. I even let you inside me. Do you think that's unhygienic too? <</dialog>> <<dialog "You">>It's all about context. I just don't like baths. I'm sorry. <</dialog>> <<dialog "Nirei">>... Even with me in it? <</dialog>> <<dialog "You">>Like I said, it's all about context~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath4" "Grab her boob">><</regButton>> </div> </div> <<backend>> [[nirei-bath4]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/4.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Everything we do turns into something naughty~ <</dialog>> <<dialog "You">>What do you mean? I'm just cleaning you~ <</dialog>> <<dialog "Nirei">>Pfft~ Should I clean you too? <</dialog>> <<dialog "You">>This is a give and take relationship after all~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-hj" "Handjob">><</regButton>> </div> </div> <<backend>> [[nirei-bath-hj]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/hj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>How about now? Is it relaxing? <</dialog>> <<dialog "You">>I'm relaxed~ Ahh~ <</dialog>> <<dialog "Nirei">>Hehe~ Don't get too relaxed, you might drown~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-hj" "Keep going">><</regButton>> <<regButton "nirei-bath-grope" "Grope her">><</regButton>> </div> </div> <<backend>> [[nirei-bath-grope]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/grope'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Back to my tits again~ <</dialog>> <<dialog "You">>It's a massage! A massage~ <</dialog>> <<dialog "Nirei">>Oh~ Speaking of massages, let me give you one. <</dialog>> <div class="button-row"> <<regButton "nirei-bath-grope" "Keep going">><</regButton>> <<regButton "nirei-bath-lube" "She offers a massage">><</regButton>> </div> </div> <<backend>> [[nirei-bath-lube]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>What kind of massage? <</dialog>> <<dialog "Nirei">>The nuru kind~ Lie down. Let me lube you up. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/lube.mp4" type="video/mp4">'>> </video> <<dialog "You">>Why do you have lube in the bathroom? <</dialog>> <<dialog "Nirei">>I need money so I'm going to offer massages to my classmates. Let me practice on you. <</dialog>> <<dialog "You">>Wh-what??? <</dialog>> <<dialog "Nirei">>Pfft~ I'm kidding! I bought it for you, of course. <</dialog>> <<dialog "You">>Geez... <</dialog>> <div class="button-row"> <<regButton "nirei-bath-nuru" "She massages you with her breasts">><</regButton>> </div> </div> <<backend>> [[nirei-bath-nuru]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/nuru'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>How is it? Mmmm~ <</dialog>> <<dialog "You">>It's making me horny~ <</dialog>> <<dialog "Nirei">>Ahhh~ My nipples rubbing on your skin feels tingly too~ <</dialog>> <<dialog "You">>N-nirei... <</dialog>> <<dialog "Nirei">>Fuck it. Let's do it. <</dialog>> <div class="button-row"> <<regButton "nirei-bath-nuru" "Keep going">><</regButton>> <<regButton "nirei-bath-bj1" "Blowjob">><</regButton>> </div> </div> <<backend>> [[nirei-bath-bj1]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/bja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>*Gkkk* *Gkk* *Slurp* Doesh it feel goodt? <</dialog>> <<dialog "You">>Holy shit. That massage made me extra sensitive. Ahhh~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-bj1" "Keep going">><</regButton>> <<regButton "nirei-bath-bj2" "She licks your balls">><</regButton>> </div> </div> <<backend>> [[nirei-bath-bj2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/bjb.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>*Slurp* *Slurp* Ready? <</dialog>> <<dialog "You">>Come here~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-cow1" "Cowgirl">><</regButton>> <<regButton "nirei-bath-dog1" "Doggy">><</regButton>> </div> </div> <<backend>> [[nirei-bath-dog1]][[nirei-bath-cow1]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/doga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ It feels so good~ <</dialog>> <<dialog "You">>I'm speeding up. <</dialog>> <div class="button-row"> <<regButton "nirei-bath-dog1" "Keep going">><</regButton>> <<regButton "nirei-bath-dog2" "Speed up">><</regButton>> </div> </div> <<backend>> [[nirei-bath-dog2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/cowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ It's so slippery~ <</dialog>> <<dialog "You">>Ahh~ Be careful. <</dialog>> <div class="button-row"> <<regButton "nirei-bath-cow1" "Keep going">><</regButton>> <<regButton "nirei-bath-cow2" "She spreads her legs">><</regButton>> </div> </div> <<backend>> [[nirei-bath-cow2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>That's it~ Ride harder~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-cow2" "Keep going">><</regButton>> <<regButton "nirei-bath-cow3" "Harder">><</regButton>> </div> </div> <<backend>> [[nirei-bath-cow3]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/cowc'+random(1,4)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhhhhh~ <</dialog>> <<dialog "You">>Ahhh~ More~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-cow3" "Keep going">><</regButton>> <<regButton "nirei-bath-dog1" "Doggy">><</regButton>> <<regButton "nirei-bath-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[nirei-bath-mis1]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-mis1" "Keep going">><</regButton>> <<regButton "nirei-bath-cow1" "Cowgirl">><</regButton>> <<regButton "nirei-bath-dog1" "Doggy">><</regButton>> <<regButton "nirei-bath-mis2" "Harder">><</regButton>> </div> </div> <<backend>> [[nirei-bath-mis2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/dogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>AHHHH~ AHHHHH~ AHHHHH~ <</dialog>> <<dialog "You">>That's right~ Keep moaning. That's really hot, Nirei~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-cow1" "Cowgirl">><</regButton>> <<regButton "nirei-bath-mis1" "Missionary">><</regButton>> </div> </div>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/misb.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhh~ I'm cummiiiiiiiiing~ <</dialog>> <<dialog "You">>I'm cumming too~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-cum" "Cum on her face">><</regButton>> </div> </div> <<backend>> [[nirei-bath-cum]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/cum.mp4" type="video/mp4">'>> </video> <<dialog "Nirei">>Ahhhhh~ You came all over my face~ <</dialog>> <<dialog "You">>We don't get to do that a lot, and we're already in the bath. <</dialog>> <<dialog "Nirei">>Yeah. You always cum in me. <</dialog>> <<dialog "You">>You're worth the risk~ <</dialog>> <div class="button-row"> <<regButton "nirei-bath-end1" "She lies down a bit">><</regButton>> </div> </div> <<backend>> [[nirei-bath-end1]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/end1.mp4" type="video/mp4">'>> </video> <<dialog "You">>Not getting up? <</dialog>> <<dialog "Nirei">>Let me let my face soak on your cum~ I heard it's good for the skin~ <</dialog>> <<dialog "You">>Gross... <</dialog>> <<dialog "Nirei">>Hey! This is your cum! You even made me suck it off of your dick. Don't call it gross! <</dialog>> <div class="button-row"> <<regButton "nirei-bath-end2" "Continue">><</regButton>> </div> </div> <<backend>> [[nirei-bath-end2]] <</backend>>
<<bg "nirei-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/nirei/shower/end2.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hey~ Let's finish up and go to bed~ <</dialog>> <<dialog "Nirei">>... <</dialog>> <<dialog "You">>Nirei? <</dialog>> <<dialog "Nirei">>Zzzz... <</dialog>> <div class="button-row"> <<regButton "nirei-home" "End">><</regButton>> </div> </div> <<backend>> <<set $hour = 21>> <</backend>>
<div class="bg alley"></div> <div class="content-panel"> <img src="img/sv.png" style="max-width: 30%;"><h1 style="width:60%; margin: 0 auto;"> While Sawada $player.name was fucking Azuki Yamaguchi, the Yamaguchi Clan's princess, Yamaguchi Ken, the Head's nephew, was busy taking over China Town in Yokohama. Ordered by his uncle to conquer Kumine next, but fearing the combined strength of Sawada Hideo and Sawada $player.name, he decided to establish himself in the neighboring city, Ariku, first. This story is the perspective of the Street Hero's antagonist, the Street Villain. You can now check the game out on Gank. </h1> <div class="button-row" style=" width: 25%; justify-content: space-around;"><<subscribe "gank" "https://ganknow.com/post/f80593b9-b97e-46cb-b9a1-7d1ce4166d04">><<regButton "bedroom" "Back to Bedroom">><</regButton>></div> </div> <<set $profile = "player-profile">>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/miku-coffee1.mp4" type="video/mp4"> </video> <<dialog "Miku">>Before we met, I couldn't stay up in the morning because I couldn't get coffee. I've missed going on coffee runs. <</dialog>> <<dialog "You">>Well, you have me now. <</dialog>> <<dialog "Miku">><i>*Blushes*</i> <i>Thank you...</i> <</dialog>> <<dialog "You">>Hmm? <</dialog>> <<dialog "Miku">>Nothing! <</dialog>> <div class="button-row"> <<regButton "miku6-2" "Enter the Cafe">><</regButton>> </div> </div> <<time 0 45>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Business Area">> <<backend>> [[miku6-2]] <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "Barista">>One Mocha and One Spanish Latte. That'll be $12. <</dialog>> <<dialog "You">>Here you-- <</dialog>> <<dialog "Miku">>Wait! Let me pay this time. You always pay for me. <</dialog>> <<dialog "You">>But... <</dialog>> <<dialog "Miku">>No buts! Here's my card, miss~ <</dialog>> <<dialog "Barista">>Thank you~ <</dialog>> <h1>Miku's card gets declined.</h1> <<dialog "Barista">>I-Im sorry, ma'am... Your card was declined. <</dialog>> <<dialog "Miku">>Wh-what? Can you try again? <</dialog>> <h1>She tries again, but the card still got declined.</h1> <<dialog "You">>Don't worry about it, Miku. I got it. <</dialog>> <<dialog "Miku">>Excuse me. I need to make a call. <</dialog>> <h1>-$12</h1> <div class="button-row"> <<regButton "miku6-3" "Sit down and wait for Miku">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Cafe">> <<backend>> [[miku6-3]] <<set $player.money -= 12>> <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Heyy~ <</dialog>> <<dialog "Miku">>That was so embarrassing... <</dialog>> <<dialog "You">>It happens, dont worry about it. Are you okay? <</dialog>> <<dialog "Miku">>I called my parents... They cut me off. <</dialog>> <<dialog "You">>What? Why? <</dialog>> <<dialog "Miku">>They want me to get a job... They think I'm using their wealth as a crutch. <</dialog>> <<dialog "You">>I'm sorry... <</dialog>> <<dialog "Miku">>It's okay. Yeah... I'll be okay. Actually... <</dialog>> <div class="button-row"> <<regButton "miku6-4" "Hear her out">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Cafe">> <<backend>> [[miku6-4]] <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>What is it? <</dialog>> <<dialog "Miku">>I started looking for a job. <</dialog>> <<dialog "You">>That's great news! <</dialog>> <<dialog "Miku">>Hehe~ I'm still terrified, but you gave me confidence. Thank you. <</dialog>> <<dialog "You">>I didn't do anything though. <</dialog>> <<dialog "Miku">>You did everything! You saved me from my creepy stalker then you eased me back into society. <</dialog>> <<dialog "You">>I don't know what to say. How's the job search? <</dialog>> <<dialog "Miku">>I have an interview with this marketing company in Ariku. <</dialog>> <<dialog "You">>Woah. Woah. Are you moving? <</dialog>> <<dialog "Miku">>Of course not! It's just one station from here. I'll commute. <</dialog>> <<dialog "You">>Phew~ That scared me. <</dialog>> <<dialog "Miku">>Pfft~ <</dialog>> <div class="button-row"> <<regButton "miku6-5" "Ask if she's okay">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Cafe">> <<backend>> [[miku6-5]] <</backend>>
<<bg "cafe" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Are you okay though? That phone call must have been rough. <</dialog>> <<dialog "Miku">>I'm a bit... upset. I can't blame them though. I've never told anybody I was agoraphobic. <</dialog>> <<dialog "You">>Wow. Thank you for trusting me enough to tell me. <</dialog>> <<dialog "Miku">>Of course. You're you. Still though... Their timing couldn't be worse. Couldn't they have waited for just one more month? <</dialog>> <<dialog "You">>Will you be okay? <</dialog>> <<dialog "Miku">>Yeah. I did art commissions online so I have some money saved up. <</dialog>> <<dialog "You">>Well, you are good with a brush. Seeing you use it was beautiful. <</dialog>> <<dialog "Miku">>I still can't believe you saw that... <</dialog>> <<dialog "You">>Haha~ It was hot. <</dialog>> <<dialog "Miku">>Haahhhh! I'm so mad at them. <</dialog>> <<dialog "You">>What can I do to help you take your mind off it? <</dialog>> <<dialog "Miku">>Let's just go home and have sex. <</dialog>> <<dialog "You">>Wh-what? <</dialog>> <<dialog "Miku">>Let's go!! <</dialog>> <<dialog "You">>Yes, ma'am. <</dialog>> <div class="button-row"> <<regButton "miku6-6" "Rush home">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Cafe">> <<backend>> [[miku6-6]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/miku/reward/1.mp4" type="video/mp4"> </video> <<dialog "You">>Woah. You're being wild~ <</dialog>> <<dialog "Miku">>Shut up and kiss me. <</dialog>> <div class="button-row"> <<regButton "miku6-7" "Make out">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 45>> [[miku6-7]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/kissa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Mmm~ Miku~ <</dialog>> <<dialog "Miku">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "miku6-7" "Keep making out">><</regButton>> <<regButton "miku6-8" "She takes your shirt off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-8]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/kissb1.mp4" type="video/mp4">'>></video> <<dialog "You">>Perfect. I was getting hot. <</dialog>> <<dialog "Miku">>Me too~ <</dialog>> <div class="button-row"> <<regButton "miku6-9" "Take her top off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-9]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/top.mp4" type="video/mp4">'>></video> <<dialog "You">>Better? <</dialog>> <<dialog "Miku">>Way better~ <</dialog>> <div class="button-row"> <<regButton "miku6-10" "Kiss her">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-10]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/kissc.mp4" type="video/mp4">'>></video> <<dialog "You">>You're cute~ <</dialog>> <<dialog "Miku">>Aww~ Do you like me? <</dialog>> <<dialog "You">>Pfft. Do I like you? What do you think? <</dialog>> <div class="button-row"> <<regButton "miku6-hj" "She gives you a handjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-hj]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/hj.mp4" type="video/mp4">'>></video> <<dialog "Miku">>I know you like me when I do this~ <</dialog>> <<dialog "You">>Hehe~ Of course I do, but I like you regardless. <</dialog>> <<dialog "Miku">>Oh, really? I should show you my appreciation then. <</dialog>> <div class="button-row"> <<regButton "miku6-bj1" "Blowjob">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-bj1]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/bja'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ That feels so good~ <</dialog>> <<dialog "Miku">>*Slurp* Slurp* <</dialog>> <div class="button-row"> <<regButton "miku6-bj1" "Keep going">><</regButton>> <<regButton "miku6-bj2" "Closer">><</regButton>> <<regButton "miku6-bra" "Take her bra off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-bj2]][[miku6-bra]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/bra.mp4" type="video/mp4">'>></video> <<dialog "You">>Those boobs never fail to amaze me. <</dialog>> <<dialog "Miku">>You really like them, huh? Here. <</dialog>> <div class="button-row"> <<regButton "miku6-grope" "She takes your hand">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-grope]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/bjb.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahh~ That feels so good~ <</dialog>> <<dialog "Miku">>*Slurp* Slurp* <</dialog>> <div class="button-row"> <<regButton "miku6-bj1" "Farther">><</regButton>> <<regButton "miku6-bra" "Take her bra off">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/grope.mp4" type="video/mp4">'>></video> <<dialog "You">>As soft as always~ <</dialog>> <<dialog "Miku">>I'm starting to think you only like me for my boobs. <</dialog>> <<dialog "You">>Pfft. Why would you think that? <</dialog>> <<dialog "Miku">>I got harassed because of these, you know? I still get anxious that maybe these are the only things you're after. <</dialog>> <<dialog "You">>You think I'm that shallow? <</dialog>> <<dialog "Miku">>Hehe~ Of course not. <</dialog>> <<dialog "You">>I like your boobs very very much, but I like just being with you just the same. <</dialog>> <<dialog "Miku">>Hmmm~ Maybe I should start loving my boobs again then~ Since you like them very very much. <</dialog>> <<dialog "You">>Heh~ Here, let me give it more love. <</dialog>> <div class="button-row"> <<regButton "miku6-lay" "Lay her down">><</regButton>> </div> </div> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<backend>> <<time 0 1>> [[miku6-lay]] <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/lay.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Your breath feels kinda good on my nipples~ <</dialog>> <<dialog "You">>Let me make them feel even better. <</dialog>> <div class="button-row"> <<regButton "miku6-tits" "Play with her nipples">><</regButton>> </div> </div> <<backend>> [[miku6-tits]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/tits'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Mmmmmhhh~ Ahhh~ I'm getting wet. <</dialog>> <<dialog "You">>Better not let those juices go to waste. <</dialog>> <<dialog "Miku">>H-heyy~ That's embarassing~ <</dialog>> <div class="button-row"> <<regButton "miku6-tits" "Keep playing with her nipples">><</regButton>> <<regButton "miku6-panties" "Take her panties off">><</regButton>> </div> </div> <<backend>> [[miku6-panties]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/panties.mp4" type="video/mp4">'>></video> <<dialog "You">>You really are wet. <</dialog>> <<dialog "Miku">>That's your fault~ <</dialog>> <div class="button-row"> <<regButton "miku6-cun" "Eat her out">><</regButton>> </div> </div> <<backend>> [[miku6-cun]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/cun'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahhh~ That feels so good~ <</dialog>> <<dialog "You">>Your pussy is a little sweet~ *Slurp* <</dialog>> <<dialog "Miku">>H-heyyy~ <</dialog>> <<dialog "You">>I'm want to fuck this tight pussy~ <</dialog>> <<dialog "Miku">>L-lay down~ Ahhh~ I want to ride you~ <</dialog>> <div class="button-row"> <<regButton "miku6-cun" "Keep eating her out">><</regButton>> <<regButton "miku6-cow1" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[miku6-cow1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/cowa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Nnhh~ Does it feel good? <</dialog>> <<dialog "You">>Ahh~ It feels amazing. <</dialog>> <div class="button-row"> <<regButton "miku6-cow1" "She keeps riding">><</regButton>> <<regButton "miku6-cow2" "Intensify">><</regButton>> </div> </div> <<backend>> [[miku6-cow2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/cowb'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>This chair is gonna break~ <</dialog>> <<dialog "Miku">>Nnn~ Noo~ I can't afford a new one~ <</dialog>> <div class="button-row"> <<regButton "miku6-cow2" "She keeps going">><</regButton>> <<regButton "miku6-cow3" "Move to the floor">><</regButton>> </div> </div> <<backend>> [[miku6-cow3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg studio"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/shiori/shiori6a/mir'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Shiori">><i>Ahhhh~ Hurry up~ That was scaryyy~</i> <</dialog>> <<dialog "You">><i>I'm close~</i> <</dialog>> <div class="button-row"> <<regButton "shiori6a-mirror" "Keep going">><</regButton>> <<regButton "shiori6a-kiss" "Kiss her">><</regButton>> <<regButton "shiori6a-desk" "Desk Doggy">><</regButton>> </div> </div> <<if false>> [[shiori6a-kiss]] <</if>> <<set $location to "Studio">>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/cowc.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Mmmm~ Is the floor cold? Ahh~ <</dialog>> <<dialog "You">>Better than breaking the chair~ <</dialog>> <div class="button-row"> <<regButton "miku6-cow4" "Harder">><</regButton>> </div> </div> <<backend>> [[miku6-cow4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/cowd'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahhh~ Ahhh~ Ahhh~ Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>You're really going at it, Miku~ Nnggh~ <</dialog>> <div class="button-row"> <<regButton "miku6-cow4" "Keep going">><</regButton>> <<regButton "miku6-prone" "Prone">><</regButton>> </div> </div> <<backend>> [[miku6-prone]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/prone'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahhh~ Ahhh~ You're gonna make me cum~ Ahhh~ <</dialog>> <<dialog "You">>Your body is so soft~ <</dialog>> <div class="button-row"> <<regButton "miku6-prone" "Keep going">><</regButton>> <<regButton "miku6-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[miku6-mis1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Mmmm~ Let's slow down a bit~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/misa'+random(1,2)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Mmmmm~ This is nice too... <</dialog>> <<dialog "You">>I can't take it anymore, I want to fuck your brains out. <</dialog>> <<dialog "Miku">>Hnnnggg~ Fuck me hard~ <</dialog>> <div class="button-row"> <<regButton "miku6-mis1" "Keep going">><</regButton>> <<regButton "miku6-mis2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku6-mis2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/misb'+random(1,3)+'.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Ahhhhhh~ <</dialog>> <<dialog "You">>Fuck! Miku~ <</dialog>> <div class="button-row"> <<regButton "miku6-mis2" "Keep going">><</regButton>> <<regButton "miku6-mis3" "Watch her tits bounce">><</regButton>> </div> </div> <<backend>> [[miku6-mis3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/hard1.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Ahh~ Ahh~ <</dialog>> <<dialog "You">>Ahhh~ I love watching your soft parts jiggle~ <</dialog>> <div class="button-row"> <<regButton "miku6-mis4" "Harder">><</regButton>> </div> </div> <<backend>> [[miku6-mis4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/hard'+random(2,4)+'.mp4" type="video/mp4">'>></video> <<dialog "You">>Ahhhhhhh~ I'm about to cum~ <</dialog>> <<dialog "Miku">>Ahh~ Ahhh~ Cum on my face~ <</dialog>> <div class="button-row"> <<regButton "miku6-mis4" "Keep fucking">><</regButton>> <<regButton "miku6-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[miku6-cum]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/cum.mp4" type="video/mp4">'>></video> <<dialog "You">>Haaah~ Haaaahh~ Miku... <</dialog>> <<dialog "Miku">>Mmmm~ Let me suck the rest of it off~ <</dialog>> <div class="button-row"> <<regButton "miku6-bj3" "She cleans your dick">><</regButton>> </div> </div> <<backend>> [[miku6-bj3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/bjc.mp4" type="video/mp4">'>></video> <<dialog "Miku">>*Slurp* *Slurp* <</dialog>> <<dialog "You">>Ahhh~ Perfect service~ <</dialog>> <div class="button-row"> <<regButton "miku6-end1" "Kiss her">><</regButton>> <<regButton "miku6-end2" "Let her clean her mouth first">><</regButton>> </div> </div> <<backend>> [[miku6-end1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/end1.mp4" type="video/mp4">'>></video> <<dialog "Miku">>Mmmph~ There's still cum on my face~ <</dialog>> <<dialog "You">>Oh. Gross. <</dialog>> <<dialog "Miku">>Pfft. Let me clean my mouth first~ <</dialog>> <div class="button-row"> <<regButton "miku6-end2" "Kiss her again">><</regButton>> </div> </div> <<backend>> [[miku6-end2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>All clean~ <</dialog>> <<dialog "You">>Come here then~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/reward/end2.mp4" type="video/mp4">'>></video> <<dialog "Miku">>You know... I love you. <</dialog>> <<dialog "You">>I love you too~ <</dialog>> <<dialog "Miku">>Do you actually though? <</dialog>> <div class="button-row"> <<regButton "miku6-end3" "She confronts you">><</regButton>> </div> </div> <<backend>> [[miku6-end3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>I know about you and the Convenience Store clerk... The convenience store has glass walls, you know? <</dialog>> <<dialog "You">>Miku... Why haven't you said anything until now? <</dialog>> <<dialog "Miku">>Well... I was scared of losing you. I didn't know when it had happened, but before I knew it, I was relying on you. Besides, we're not officially dating. <</dialog>> <<dialog "You">>Are you upset? <</dialog>> <<dialog "Miku">>I was... but not anymore. I actually... talked to your uncle. <</dialog>> <div class="button-row"> <<regButton "miku6-end4" "Flashback">><</regButton>> </div> </div> <<backend>> [[miku6-end4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<<bg "uncle-house" 23>><</bg>> <div class="content-panel"> <<dialog "Miku">>U-uncle... <</dialog>> <<dialog "Uncle">>Miku-chan~ You've been out late again? <</dialog>> <h1>Miku's tears well up.</h1> <<dialog "Uncle">>A-are you okay? What's wrong? <</dialog>> <<dialog "Miku">>W-well... $player.name... H-he... I saw him... h-having sex with the Convenience Store Clerk... U-uncle... Wh-what do I do? *sobs* <</dialog>> <<dialog "Uncle">>Oh, Miku-chan... <</dialog>> <<dialog "Miku">>I don't know what to do... *sniffle* I thought he liked me... *sobs* We've been having sex too. I was just waiting for him to ask me out. *sobs* I didn't think the reason why we're not together yet was because he's seeing some other girl. *sobs* <</dialog>> <<dialog "Uncle">>That idiot $player.name... After making a move on you... <</dialog>> <<dialog "Miku">>W-well... A-actually... I was the one who made the move... I got on top of him while he was sleeping, you see... <</dialog>> <<dialog "Uncle">>Miku. Miku. You don't have to tell me about my nephew's sex life. <</dialog>> <<dialog "Miku">>I-I'm sorry... *sobs* <</dialog>> <<dialog "Uncle">>*Sigh* Listen, kid. You know about our business, right? <</dialog>> <<dialog "Miku">>Y-yes... You're gangsters... <</dialog>> <<dialog "Uncle">>But you see, $player.name is more than that. He takes after his old man, I guess. That little kid is a hero. <</dialog>> <<dialog "Miku">>A-a hero? <</dialog>> <<dialog "Uncle">>Like an adventurer. He has a soft spot for women. His mom raised him that way. He has a strong sense of justice and you've seen him fight. I bet he could even go toe to toe with Old Man Takeshi if he got serious... or you know... clothed. <</dialog>> <<dialog "Miku">>Wh-what? Who's Old Man-- <</dialog>> <<dialog "Uncle">>Nevermind that. The point is: someone with that kind of personality... He's like an incarnation of a norse god. It's basically impossible to make him settle down. <</dialog>> <<dialog "Miku">>S-so what do I do? <</dialog>> <<dialog "Uncle">>Well. For starters, you can move on. You deserve so much more, Miku-chan. <</dialog>> <<dialog "Miku">>But... What if I still want to be with him? <</dialog>> <<dialog "Uncle">>Then be with him. It's gonna hurt. A lot. Sharing the person you love with other people, but... If leaving him is not an option for you, then you have to accept him for what kind of person he is. <</dialog>> <<dialog "Miku">>... <</dialog>> <<dialog "Uncle">>You know, that Convenience Store girl is probably not the only one. You don't deserve that. You can turn back now and go back to your life, when everything was simpler. <</dialog>> <<dialog "Miku">>Go... back? <</dialog>> <div class="button-row"> <<regButton "miku6-end5" "Continue">><</regButton>> </div> </div> <<backend>> [[miku6-end5]] <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<<bg "uncle-house" 23>><</bg>> <div class="content-panel"> <img src="img/misc/miku-hikiko.jpg" style="max-width: 80%;"> <<dialog "Miku">>Hahhh... Haaaahhhhhhh... <</dialog>> <<dialog "Uncle">>Miku-chan? Are you okay? <</dialog>> <div class="button-row"> <<regButton "miku6-end6" "Continue">><</regButton>> </div> </div> <<backend>> [[miku6-end6]] <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<<bg "uncle-house" 23>><</bg>> <div class="content-panel"> <img src="img/misc/u-good.jpg" style="max-width: 60%;"> <<dialog "Miku">>Ah. $player.name... <</dialog>> <div class="button-row"> <<regButton "miku6-end7" "Back to reality">><</regButton>> </div> </div> <<backend>> [[miku6-end7]] <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>I don't know what I want, $player.name, but I do know what I don't want. I know I can't have you all to myself, so I'm ready to give you what you need. <</dialog>> <<dialog "You">>Miku... <</dialog>> <<dialog "Miku">>I just need you to love me. Just... Promise me that you'd come home to me. <</dialog>> <<dialog "You">>It's going to be a lonely life, Miku. I don't know if I can do that to you. <</dialog>> <<dialog "Miku">>I was below rock bottom before I met you, $player.name. I was alone, and scared... and... and just... empty... Whenever my eyes would get tired from looking at a screen. I'd just stare at the walls... the ceilings... It felt like existing was a burden. It's going to be painful, you know? Seeing you find comfort from other women... But at least I can feel something. <</dialog>> <<dialog "You">>I've never had a girlfriend before... I never thought anyone would be okay with how I live my life. <</dialog>> <<dialog "Miku">>You accepted me for who I am. It's my turn to accept you for you. I love you after all. <</dialog>> <<dialog "You">>I really do love you too, you know? <</dialog>> <<dialog "Miku">>And that's enough for me. <</dialog>> <<dialog "You">>You're too good to me. <</dialog>> <<dialog "Miku">>Wait... Does this make me your first girlfriend? <</dialog>> <<dialog "You">>Woah. I guess so. Wow. I didn't think having a label like this would feel this nice. <</dialog>> <<dialog "Miku">>Hehe~ That makes me really happy~ <</dialog>> <div class="button-row"> <<regButton "miku-room" "End">><</regButton>> </div> </div> <<backend>> [[miku6-end4]] <<set $miku.quest = 6>> <<set $miku.love = 120>> <<time 0 15>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Miku's at work. <</dialog>> <div class="button-row"> <<if $hour == 17 && $day == "Friday" && $miku.quest == 9>><<regButton "miku10-1" "Miku is calling">><</regButton>><</if>> <<regButton "home" "Leave">><</regButton>> </div> </div> <<backend>> <</backend>>
<<backend>> <<if $hour >= "7" && $hour <= "15">> <<set $mikustate = "miku-roomday">> <<elseif $hour >= "16" && $hour <= "18">> <<set $mikustate = "miku-visit">> <<elseif $hour >= "19" && $hour <= "22">> <<set $mikustate = "miku-roomnight">> <<else>> <<set $mikustate = "miku-night">> <</if>> <</backend>><div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/'+$mikustate+'.mp4" type="video/mp4">'>> </video> <<if $hour >= "7" && $hour <= "22">><<dialog "Miku">>What do you wanna do? <</dialog>> <<dialog "You">>Lots of things. <</dialog>><</if>><div class="button-row"> <<if $hour >= "19" && $hour <= "22" && $miku.quest >= 5>> <<regButton "miku-ngt-kiss" "Kiss her">><</regButton>> <</if>> <<if $hour <= 22 && $day == "Wednesday" && $miku.quest == 8>><<regButton "miku9-1" "Pillow talk with Miku">><</regButton>><</if>> <<if $hour <= 22 && $day == "Monday" && $miku.quest == 7>><<regButton "miku8-1" "Miku's home from her first day at work">><</regButton>><</if>> <<if $hour == 17 && $day == "Saturday" && $miku.quest == 6>><<regButton "miku7-1" "Miku has news for you">><</regButton>><</if>> <<if $hour > 22 && $miku.love >= 30>><<regButton "miku3-1" "You hear a noise from Miku's room">><</regButton>><</if>> <<if $hour >= 11 && $hour <= 12>><<regButton "miku-lunch1" "Ask to lunch">><</regButton>><</if>> <<if $hour >= 7 && $hour <= 8>><<if $miku.quest == 5 && $player.quest >= 5 && $player.money >= 12>><<regButton "miku6-1" "Ask to go get coffee">><</regButton>><<else>><<regButton "miku-coffee1" "Ask to go get coffee">><</regButton>><</if>><</if>> <<if $hour >= 19 && $hour <= 20>><<regButton "miku-dinner1" "Miku is making dinner">><</regButton>><</if>> <<if $hour > 22>><<regButton "miku-sleep" "Sleep on the couch">><</regButton>><</if>> <<regButton "home" "Leave">><</regButton>> </div> </div> <<backend>> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>$player.name... <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Miku">>I... I got hired... <</dialog>> <<dialog "You">>You got hired!! <</dialog>> <<dialog "Miku">>I... Haahh... <</dialog>> <div class="button-row"> <<regButton "miku7-2" "Kiss her">><</regButton>> </div> </div> <<backend>> [[miku7-2]] <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>$player.name... Stop... Why are you suddenly kissing me? <</dialog>> <<dialog "You">>Well, for one, you're my beautiful girlfriend. Second, I can see that the panic is setting in... <</dialog>> <<dialog "Miku">>... I'm just scared all of a sudden. <</dialog>> <<dialog "You">>Nothing I say will get the jitters out of you... So instead. Allow me to distract you while you calm down. <</dialog>> <<dialog "Miku">>Mmmmppff~ <</dialog>> <div class="button-row"> <<regButton "miku7-3" "Keep kissing her">><</regButton>> </div> </div> <<backend>> [[miku7-3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmmm~ <</dialog>> <<dialog "You">>I can feel you loosening up a bit. <</dialog>> <<dialog "Miku">>Mmm~ I don't know~ <</dialog>> <<dialog "You">>Why don't you tell me about your interview first? <</dialog>> <div class="button-row"> <<regButton "miku7-4" "Keep kissing her">><</regButton>> </div> </div> <<backend>> [[miku7-4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Mmm... Okay~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmmm~ I... had an interview with... Mmmm~ the CEO of Vibe. <</dialog>> <<dialog "You">>Mmmm~ Was that the marketing company you told me about. <</dialog>> <<dialog "Miku">>Yes~ Mmmm~ $player.name... I can't talk if you're kissing me~ <</dialog>> <<dialog "You">>Lay down~ <</dialog>> <<dialog "Miku">>Mmmmmm~ <</dialog>> <div class="button-row"> <<regButton "miku7-5" "Lay her down">><</regButton>> </div> </div> <<backend>> [[miku7-5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/4.mp4" type="video/mp4">'>> </video> <<dialog "You">>What happened next? <</dialog>> <<dialog "Miku">>Mmmm~ Then... Mmmm~ Ms. Naguro... Mmm~ Fuck it, I'll tell you later. <</dialog>> <div class="button-row"> <<regButton "miku7-6" "She takes the lead">><</regButton>> </div> </div> <<backend>> [[miku7-6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/5.mp4" type="video/mp4">'>> </video> <<dialog "You">>You're in the mood now, huh? Mm~ <</dialog>> <<dialog "Miku">>You're a jerk sometimes~ <</dialog>> <div class="button-row"> <<regButton "miku7-7" "Take your shirt off">><</regButton>> </div> </div> <<backend>> [[miku7-7]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/6.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>How did we end up here? <</dialog>> <<dialog "You">>It started from me being so happy for you that I had to kiss you, but then you were so hot, I had to escalate it. <</dialog>> <div class="button-row"> <<regButton "miku7-8" "Lift up her shirt">><</regButton>> </div> </div> <<backend>> [[miku7-8]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/7.mp4" type="video/mp4">'>> </video> <<dialog "You">>You're beautiful, Miku. I know you'll do great. <</dialog>> <<dialog "Miku">>Ahhh~ I'm not... worried about that... Nnggh~ It's going out... on my own... <</dialog>> <div class="button-row"> <<regButton "miku7-9" "She takes her shirt off">><</regButton>> </div> </div> <<backend>> [[miku7-9]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/8.mp4" type="video/mp4">'>> </video> <<dialog "You">>You'll be okay, I promise. <</dialog>> <<dialog "Miku">>How can you tell? <</dialog>> <<dialog "You">>I'll protect you. <</dialog>> <div class="button-row"> <<regButton "miku7-10" "Kiss her again">><</regButton>> </div> </div> <<backend>> [[miku7-10]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/9.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I don't know... Mmm~ <</dialog>> <<dialog "You">>Don't think about it for now, and just enjoy this~ <</dialog>> <<dialog "Miku">>... <</dialog>> <div class="button-row"> <<regButton "miku7-11" "Kiss her neck">><</regButton>> </div> </div> <<backend>> [[miku7-11]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/neck.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ <</dialog>> <<dialog "You">>I'll make you feel good. <</dialog>> <div class="button-row"> <<regButton "miku7-fin" "Finger her">><</regButton>> </div> </div> <<backend>> [[miku7-fin]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/fin'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hnnnggg~ Ahhhhh~ <</dialog>> <<dialog "You">>You're wet~ <</dialog>> <div class="button-row"> <<regButton "miku7-fin" "Keep going">><</regButton>> <<regButton "miku7-mcum1" "Make her cum">><</regButton>> </div> </div> <<backend>> [[miku7-mcum1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Ahhhhh~ I'm cummiiiing~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/mcum1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>O-oh my god... <</dialog>> <<dialog "You">>We're not done yet~ <</dialog>> <div class="button-row"> <<regButton "miku7-pants" "Take her pants off">><</regButton>> </div> </div> <<backend>> [[miku7-pants]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/pants.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku7-panties" "Take her panties off">><</regButton>> </div> </div> <<backend>> [[miku7-panties]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/panties.mp4" type="video/mp4">'>> </video> <<dialog "You">>There it is~ So pretty~ <</dialog>> <<dialog "Miku">>You're such a pervert~ <</dialog>> <div class="button-row"> <<regButton "miku7-cun" "Eat her out">><</regButton>> </div> </div> <<backend>> [[miku7-cun]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/cun'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ That feels so good~ <</dialog>> <<dialog "You">>You're delicious, Miku~ <</dialog>> <<dialog "Miku">>Noo~ Don't say that~ <</dialog>> <div class="button-row"> <<regButton "miku7-cun" "Keep eating her out">><</regButton>> <<regButton "miku7-drop" "Drop your pants">><</regButton>> </div> </div> <<backend>> [[miku7-drop]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/drop.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>God, you're so hard. <</dialog>> <<dialog "You">>Of course, I am~ <</dialog>> <<dialog "Miku">>Perv... <</dialog>> <div class="button-row"> <<regButton "miku7-bj1" "Blowjob">><</regButton>> </div> </div> <<backend>> [[miku7-bj1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/bja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Slurp* *Gkk* *Slurp* <</dialog>> <<dialog "You">>Ahh~ Miku~ <</dialog>> <div class="button-row"> <<regButton "miku7-bj1" "Let her keep sucking">><</regButton>> <<regButton "miku7-bj2" "She lays you down">><</regButton>> </div> </div> <<backend>> [[miku7-bj2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/bjb.mp4" type="video/mp4">'>> </video> <<dialog "You">>Move your pussy here~ <</dialog>> <<dialog "Miku">>Okay. <</dialog>> <div class="button-row"> <<regButton "miku7-69" "69">><</regButton>> </div> </div> <<backend>> [[miku7-69]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/69'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Slurp* *Slurp* Ahh~ <</dialog>> <<dialog "You">>*Slurp* <</dialog>> <div class="button-row"> <<regButton "miku7-69" "Keep going">><</regButton>> <<regButton "miku7-tj1" "She sandwiches your dick with her boobs">><</regButton>> </div> </div> <<backend>> [[miku7-tj1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/tja.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Let me speed things up~ <</dialog>> <<dialog "You">>Damn. <</dialog>> <div class="button-row"> <<regButton "miku7-tj2" "Titjob">><</regButton>> </div> </div> <<backend>> [[miku7-tj2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/tjb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhhh~ Oh my god~ <</dialog>> <<dialog "Miku">>Don't cum from this, okay? <</dialog>> <div class="button-row"> <<regButton "miku7-tj2" "Keep going">><</regButton>> <<regButton "miku7-lay" "Lay her down">><</regButton>> </div> </div> <<backend>> [[miku7-lay]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/lay.mp4" type="video/mp4">'>> </video> <<dialog "You">>Are you ready? <</dialog>> <<dialog "Miku">>Ahhh~ Yes... <</dialog>> <div class="button-row"> <<regButton "miku7-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[miku7-mis1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/misa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>I'm gonna make you cum~ <</dialog>> <div class="button-row"> <<regButton "miku7-mis1" "Keep going">><</regButton>> <<regButton "miku7-mis2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku7-mis2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/misb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahhhh~ Ahhhhhh~ <</dialog>> <<dialog "You">>Cum for me. <</dialog>> <<dialog "Miku">>I'm cummiiing~ <</dialog>> <div class="button-row"> <<regButton "miku7-mcum2" "She cums">><</regButton>> </div> </div> <<backend>> [[miku7-mcum2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/mcum2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahhhh~ That felt great~ <</dialog>> <<dialog "You">>We're not done yet~ <</dialog>> <<dialog "Miku">>W-wait~ <</dialog>> <div class="button-row"> <<regButton "miku7-mis3" "Fuck her again">><</regButton>> </div> </div> <<backend>> [[miku7-mis3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/misc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahhhh~ I'm still sensitive~ <</dialog>> <<dialog "You">>Ahh~ It's so much wetter with your cum~ <</dialog>> <div class="button-row"> <<regButton "miku7-mis4" "Faster">><</regButton>> </div> </div> <<backend>> [[miku7-mis4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/misd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahhhh~ <</dialog>> <<dialog "You">>You're gonna cum again~ <</dialog>> <div class="button-row"> <<regButton "miku7-mis4" "Keep going">><</regButton>> <<regButton "miku7-mis5" "Make her cum">><</regButton>> </div> </div> <<backend>> [[miku7-mis5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/mise.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Oh my god~ I'm gonna cum agaaain~ <</dialog>> <<dialog "You">>Go ahead~ <</dialog>> <div class="button-row"> <<regButton "miku7-mcum3" "She cums">><</regButton>> </div> </div> <<backend>> [[miku7-mcum3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/mcum3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhhhhhhh~ <</dialog>> <<dialog "You">>Hehe~ <</dialog>> <div class="button-row"> <<regButton "miku7-cow" "Cowgirl">><</regButton>> <<regButton "miku7-rcow1" "Reverse Cowgirl">><</regButton>> <<regButton "miku7-hard1" "Missionary">><</regButton>> </div> </div> <<backend>> [[miku7-cow]][[miku7-rcow1]][[miku7-hard1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/cow'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ You like it? <</dialog>> <<dialog "You">>Yes~ <</dialog>> <div class="button-row"> <<regButton "miku7-cow" "Keep going">><</regButton>> <<regButton "miku7-mcum4" "She cums again">><</regButton>> </div> </div> <<backend>> [[miku7-mcum4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/rcowa.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Nnnggg~ My legs are getting tired~ <</dialog>> <<dialog "You">>Lay down on me~ <</dialog>> <div class="button-row"> <<regButton "miku7-rcow2" "Keep going">><</regButton>> </div> </div> <<backend>> [[miku7-rcow2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/misf.mp4" type="video/mp4">'>> </video> <<dialog "You">>What a beautiful pussy~ <</dialog>> <<dialog "Miku">>Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "miku7-hard2" "Fuck her">><</regButton>> </div> </div> <<backend>> [[miku7-hard2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Oh my god, I'm gonna cum~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/mcum4.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmmm~ <</dialog>> <<dialog "You">>You're really enjoying this~ <</dialog>> <div class="button-row"> <<regButton "miku7-rcow1" "Reverse Cowgirl">><</regButton>> <<regButton "miku7-hard1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/rcowb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ That feels good~ <</dialog>> <<dialog "You">>I'm speeding up~ <</dialog>> <div class="button-row"> <<regButton "miku7-rcow3" "Speed up">><</regButton>> </div> </div> <<backend>> [[miku7-rcow3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/rcowc'+random(1,4)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahhhh~ Ahhhh~ <</dialog>> <<dialog "You">>Your butt is squeezing me~ It feels good~ <</dialog>> <div class="button-row"> <<regButton "miku7-rcow3" "Keep going">><</regButton>> <<regButton "miku7-cow" "Cowgirl">><</regButton>> <<regButton "miku7-hard1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/misg'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Fuck, Miku~ <</dialog>> <div class="button-row"> <<regButton "miku7-hard2" "Keep going">><</regButton>> <<regButton "miku7-hard3" "Harder">><</regButton>> </div> </div> <<backend>> [[miku7-hard3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/mish'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhhh~ <</dialog>> <<dialog "You">>Fuck, I'm gonna cum~ <</dialog>> <<dialog "Miku">>O-on my boobs! <</dialog>> <div class="button-row"> <<regButton "miku7-hard3" "Keep going">><</regButton>> <<regButton "miku7-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[miku7-cum]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/cum.mp4" type="video/mp4">'>> </video> <<dialog "You">>That felt amazing. <</dialog>> <<dialog "Miku">>Haaaa~ Haaa~ <</dialog>> <div class="button-row"> <<regButton "miku7-bj3" "She cleans you up">><</regButton>> </div> </div> <<backend>> [[miku7-bj3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/bjc.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Miku~ Your mouth is so warm~ <</dialog>> <<dialog "Miku">>Mmm~ *Slurp* <</dialog>> <div class="button-row"> <<regButton "miku7-end1" "Continue">><</regButton>> </div> </div> <<backend>> [[miku7-end1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/congrats/end.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Pfft~ Your cum flew far~ <</dialog>> <<dialog "You">>Hehe~ Look at you laughing. You feel better? <</dialog>> <<dialog "Miku">>Hehe~ Come here. <</dialog>> <div class="button-row"> <<regButton "miku7-end2" "She smacks you">><</regButton>> </div> </div> <<backend>> [[miku7-end2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1> <<dialog "You">>Owww! <</dialog>> <<dialog "Miku">>Are you crazy!? Fucking me while I was in a panic!? <</dialog>> <<dialog "You">>C-calm down, Miku. <</dialog>> <<dialog "Miku">>CALM DOWN? Come here! <</dialog>> <h1>She smacks you repeatedly.</h1> <h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1><h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1><h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1><h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1> <<dialog "You">>Wait! Wait! Wait! I'm sorry. I'm sorry. <</dialog>> <<dialog "Miku">>*Sigh* Just one more. <</dialog>> <h1><<glow "0.4px #e60036" "8px #f00" "18">>HP -1<</glow>></h1> <<dialog "You">>Ow... <</dialog>> <<dialog "Miku">>I know you were just horny and took advantage of the situation, but I still believe you. I know you wanna help too. Two things can be right at the same time, and that took my mind off of the anxiety a bit, so I let it happen, but I'm still scared. <</dialog>> <<dialog "You">>It's okay. Here, I have a gift for you. <</dialog>> <div class="button-row"> <<regButton "miku7-end3" "You give her a watch">><</regButton>> </div> </div> <<backend>> [[miku7-end3]] <<set $stats.hp = Math.max($stats.hp-6, 1)>> <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>A watch? <</dialog>> <<dialog "You">>That's not a normal watch. It has a tracker and a recording device built in. <</dialog>> <<dialog "Miku">>Ummm... You know, I trust you, but being surveilled like this is a bit... <</dialog>> <<dialog "You">>Oh! Nonono. It's not active all the time, that would drain the battery too quick. It will only record you if the noise around you reaches a set decibel, or if the watch receives a shock, or if you shake it too hard. The tracker will turn on too, and will only turn off once you press a button. Here, let me show you. <</dialog>> <h1>You yell at the watch, smack it to the ground and violently shake it.</h1> <<dialog "Miku">>Wow... It sends the recordings to your phone. <</dialog>> <<dialog "You">>Yup! So if you literally scream for help, or if you fall down suddenly, I'll come running to save you. <</dialog>> <<dialog "Miku">>Awww~ That's so sweet. <</dialog>> <<dialog "You">>Soo? Are you still mad at me? <</dialog>> <<dialog "Miku">>Hmph. A little bit~ <</dialog>> <<dialog "You">>Come on~ I only did it because I like you a lot~ <</dialog>> <<dialog "Miku">>Not good enough~ <</dialog>> <<dialog "You">>Okay. I did it because I love you so much that I wanted to take you~ <</dialog>> <<dialog "Miku">>Hehe~ I love you too. <</dialog>> <div class="button-row"> <<regButton "miku7-end4" "Ask about the interview">><</regButton>> </div> </div> <<backend>> [[miku7-end4]] <<set $stats.hp = Math.max($stats.hp-6, 1)>> <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>So? What happened to the interview? <</dialog>> <<dialog "Miku">>Well, I got interviewed by the CEO herself, Ms. Naguro. <</dialog>> <<dialog "You">>That must have been nerve-wracking. <</dialog>> <<dialog "Miku">>I thought so too at first, but for some reason, when she started talking to me, I felt calm. It was just weird that she asked me if I had a boyfriend. <</dialog>> <<dialog "You">>Woah. Is this Naguro woman trying to steal my girlfriend? <</dialog>> <<dialog "Miku">>Pfft~ No way. <</dialog>> <<dialog "You">>If talking to her was calming, why are you suddenly scared? <</dialog>> <<dialog "Miku">>I don't know. I just had a weird feeling. Besides, I'd be working for clients, so I won't even be working near her. <</dialog>> <<dialog "You">>Huh? So that's why you were afraid of going out. What position did you land again? <</dialog>> <<dialog "Miku">>Designer. <</dialog>> <<dialog "You">>I thought so. Why do you need to be on site if your project is output-based? It's not like the client needs to watch you. <</dialog>> <<dialog "Miku">>I know... Which is why I was worried... <</dialog>> <<dialog "You">><i>Damn. Why did I ask that? It'll scare her even more.</i> <</dialog>> <<dialog "You">>M-maybe to help you understand the business better? And get direct insight from not just the client, but the people working there too? <</dialog>> <<dialog "Miku">>Hmmm. Maybe. <</dialog>> <<dialog "You">>The important thing is you landed a job. You just need to experience it first I guess. Besides, I will protect you if anything went wrong. <</dialog>> <<dialog "Miku">>Thank you, babe. I love you. <</dialog>> <<dialog "You">>I love you too. Let's clean up, okay? <</dialog>> <<dialog "Miku">>Okay~ <</dialog>> <div class="button-row"> <<regButton "miku-room" "End">><</regButton>> </div> </div> <<backend>> <<set $miku.quest = 7>> <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Heyy~ <</dialog>> <<dialog "Miku">>You're here~ I need a hug. <</dialog>> <h1>She hugs you.</h1> <<dialog "You">>First day was that rough, huh? <</dialog>> <<dialog "Miku">>No, it was fine. I was at the Vibe office today. <</dialog>> <div class="button-row"> <<regButton "miku8-2" "Why the sudden need for a hug then?">><</regButton>> </div> </div> <<backend>> [[miku8-2]] <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <h1>She looks at you with a grumpy expression.</h1> <<dialog "Miku">>I can't hug my boyfriend? <</dialog>> <<dialog "You">>Stop that~ <</dialog>> <h1>You flick her forehead.</h1> <<dialog "Miku">>Owww~ <</dialog>> <<dialog "You">>When we went out for lunches before, I had to trick you into holding my hand. I'm just worried something might have happened, okay? <</dialog>> <<dialog "Miku">>Pfft~ Okay~ <</dialog>> <div class="button-row"> <<regButton "miku8-3" "How was work?">><</regButton>> </div> </div> <<backend>> [[miku8-3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>It was fine. It wasn't too busy. Miss Haku briefed me about the client and made me prepare for the project. <</dialog>> <<dialog "You">>Miss Haku? <</dialog>> <<dialog "Miku">>Oh, right. Miss Naguro Haku. <</dialog>> <<dialog "You">>Oh! You're on a first name basis now. <</dialog>> <<dialog "Miku">>Ohhhh? Are you jealous? <</dialog>> <<dialog "You">>Hmph. <</dialog>> <<dialog "Miku">>Pfft~ It is weird though. She kept asking about you. <</dialog>> <<dialog "You">>Maybe she does like you. <</dialog>> <<dialog "Miku">>Hmmm... Well, I like YOU. <</dialog>> <<dialog "You">>Reeeally? <</dialog>> <<dialog "Miku">>Ehhh? You want me to prove it? <</dialog>> <div class="button-row"> <<regButton "miku8-4" "She kisses you">><</regButton>> </div> </div> <<backend>> [[miku8-4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmm~ Convinced yet? <</dialog>> <<dialog "You">>What do you think? <</dialog>> <div class="button-row"> <<regButton "miku8-5" "She takes your hand">><</regButton>> </div> </div> <<backend>> [[miku8-5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Not enough? Well, you made these poke out~ <</dialog>> <<dialog "You">>I did? I can't tell, I'm a visual learner~ <</dialog>> <div class="button-row"> <<regButton "miku8-6" "Pull up her top">><</regButton>> </div> </div> <<backend>> [[miku8-6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Well? <</dialog>> <<dialog "You">>All this confirms is that I REALLY like you~ <</dialog>> <div class="button-row"> <<regButton "miku8-7" "Kiss her">><</regButton>> </div> </div> <<backend>> [[miku8-7]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/4.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Oh you do? Mmm~ <</dialog>> <<dialog "You">>What's not to like? <</dialog>> <div class="button-row"> <<regButton "miku8-8" "Suck on her nipples">><</regButton>> </div> </div> <<backend>> [[miku8-8]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/5.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Are you sure it's not my boobs that you like? <</dialog>> <<dialog "You">>*Slurp* You know, I love mangoes. We had a tree when I was a kid. I used to climb it a lot, even had a swing tied to it. *Slurp* So I don't just love mango, the fruit. I love the entire tree~ But I gotta say, Miku. *Slurp* You have a very delicious fruit~ <</dialog>> <<dialog "Miku">>That's... Ahhh~ So dumb~ <</dialog>> <div class="button-row"> <<regButton "miku8-9" "She takes your shirt off">><</regButton>> </div> </div> <<backend>> [[miku8-9]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/6.mp4" type="video/mp4">'>> </video> <<dialog "You">>Hehe~ Let's just agree that we both like each other~ <</dialog>> <<dialog "Miku">>But I like you more~ <</dialog>> <div class="button-row"> <<regButton "miku8-10" "Take her bottoms off">><</regButton>> </div> </div> <<backend>> [[miku8-10]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/panties.mp4" type="video/mp4">'>> </video> <<dialog "You">>Oh, so it's a competition now, huh? <</dialog>> <<dialog "Miku">>It's on~ <</dialog>> <div class="button-row"> <<regButton "miku8-top" "Take her top off">><</regButton>> </div> </div> <<backend>> [[miku8-top]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/top.mp4" type="video/mp4">'>> </video> <<dialog "You">>There's my hot girlfriend~ <</dialog>> <<dialog "Miku">>I feel like you've seen me naked a lot more times than clothed~ <</dialog>> <div class="button-row"> <<regButton "miku8-kiss" "Kiss her">><</regButton>> </div> </div> <<backend>> [[miku8-kiss]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/kiss.mp4" type="video/mp4">'>> </video> <<dialog "You">>Mmm~ It's proof of our love~ <</dialog>> <<dialog "Miku">>Pfft~ Because we make love all the time? <</dialog>> <<dialog "You">>Exactly~ <</dialog>> <<dialog "Miku">>Ooh. Let me get you ready to make love to me again, then. <</dialog>> <div class="button-row"> <<regButton "miku8-bj" "Blowjob">><</regButton>> </div> </div> <<backend>> [[miku8-bj]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/bj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Gkkkk* *Gkkkk* *Slurp* You're awready sho hard~ <</dialog>> <<dialog "You">>Mmm~ Keep going~ <</dialog>> <div class="button-row"> <<regButton "miku8-bj" "Keep going">><</regButton>> <<regButton "miku8-tj" "Paizuri">><</regButton>> </div> </div> <<backend>> [[miku8-tj]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/tj'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Your boobs are so soft~ <</dialog>> <<dialog "Miku">>Heyy~ I wanna feel good to~ <</dialog>> <<dialog "You">>Ahhh~ Come here. <</dialog>> <div class="button-row"> <<regButton "miku8-tj" "Keep going">><</regButton>> <<regButton "miku8-69" "69">><</regButton>> </div> </div> <<backend>> [[miku8-69]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/69'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>*Slurp* Ahhh~ Let's see who wins~ <</dialog>> <<dialog "Miku">>Th-that's not fair~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku8-69" "Keep going">><</regButton>> <<regButton "miku8-cun1" "She loses">><</regButton>> </div> </div> <<backend>> [[miku8-cun1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/cuna'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ <</dialog>> <<dialog "You">>*Slurp* Looks like I win~ <</dialog>> <<dialog "Miku">>N-nooo~ <</dialog>> <div class="button-row"> <<regButton "miku8-cun1" "Keep going">><</regButton>> <<regButton "miku8-cun2" "Lay her down">><</regButton>> </div> </div> <<backend>> [[miku8-cun2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/cunb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hnnngggg~ Ahh~ <</dialog>> <<dialog "You">>*Slurp* I'm going to take my prize now~ <</dialog>> <<dialog "Miku">>Hnnngggggg~ <</dialog>> <div class="button-row"> <<regButton "miku8-cun2" "Keep going">><</regButton>> <<regButton "miku8-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[miku8-mis1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/misa.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhh~ <</dialog>> <<dialog "You">>Your pussy is so wet and tight~ <</dialog>> <<dialog "Miku">>Fuck me hard~ <</dialog>> <<dialog "You">>As you wish~ <</dialog>> <div class="button-row"> <<regButton "miku8-mis2" "Fuck her hard">><</regButton>> </div> </div> <<backend>> [[miku8-mis2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>Fuck, Miku. It feels good~ <</dialog>> <<dialog "Miku">>Ahhhhhhhh~ <</dialog>> <div class="button-row"> <<regButton "miku8-mis2" "Keep going">><</regButton>> <<regButton "miku8-mis3" "Continue">><</regButton>> </div> </div> <<backend>> [[miku8-mis3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/misc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hahhh~ Hahhhh~ Haaahh~ <</dialog>> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Miku">>M-more~ <</dialog>> <div class="button-row"> <<regButton "miku8-cow1" "Cowgirl">><</regButton>> <<regButton "miku8-dog1" "Doggy">><</regButton>> <<regButton "miku8-prone1" "Prone">><</regButton>> </div> </div> <<backend>> [[miku8-cow1]][[miku8-dog1]][[miku8-prone1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/cow'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ah~ Ah~ Ahh~ Mmm~ M-my knees... <</dialog>> <<dialog "You">>Let's try something else~ <</dialog>> <div class="button-row"> <<regButton "miku8-cow1" "Keep going">><</regButton>> <<regButton "miku8-dog1" "Doggy">><</regButton>> <<regButton "miku8-prone1" "Prone">><</regButton>> <<regButton "miku8-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Bend over. <</dialog>> <<dialog "Miku">>Okay~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/bend.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhh~ <</dialog>> <<dialog "You">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "miku8-dog2" "Faster">><</regButton>> </div> </div> <<backend>> [[miku8-dog2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/pronea.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahh~ Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Miku~ <</dialog>> <div class="button-row"> <<regButton "miku8-prone2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku8-prone2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/doga.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ You're being very gentle~ <</dialog>> <<dialog "You">>Am I? Ahh~ <</dialog>> <div class="button-row"> <<regButton "miku8-dog3" "Faster">><</regButton>> </div> </div> <<backend>> [[miku8-dog3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/dogb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ This pace is perfect~ Ahhh~ <</dialog>> <<dialog "You">>No, it isn't~ <</dialog>> <<dialog "Miku">>Ahhh~ Wh-what? <</dialog>> <div class="button-row"> <<regButton "miku8-dog4" "Faster">><</regButton>> </div> </div> <<backend>> [[miku8-dog4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/dogc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ Ahhh~ T-too muchh~ Ahhh~ <</dialog>> <<dialog "You">>Hehe~ <</dialog>> <<dialog "Miku">>Ahhh~ S-slow down and kiss me~ <</dialog>> <div class="button-row"> <<regButton "miku8-dog5" "Slow down">><</regButton>> </div> </div> <<backend>> [[miku8-dog5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/dogd.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ Isn't this great? <</dialog>> <<dialog "You">>I'm speeding up again. <</dialog>> <<dialog "Miku">>W-wait~ <</dialog>> <div class="button-row"> <<regButton "miku8-dog6" "Speed up">><</regButton>> </div> </div> <<backend>> [[miku8-dog6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/doge.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhhh~ <</dialog>> <<dialog "You">>Fuck~ It feels so good. <</dialog>> <div class="button-row"> <<regButton "miku8-cow1" "Cowgirl">><</regButton>> <<regButton "miku8-prone1" "Prone">><</regButton>> <<regButton "miku8-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[miku8-cow1]][[miku8-dog1]][[miku8-prone1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/proneb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Y-yes~ Pound me to the ground~ Ahhh~ <</dialog>> <<dialog "You">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku8-prone2" "Keep going">><</regButton>> <<regButton "miku8-prone3" "Harder">><</regButton>> </div> </div> <<backend>> [[miku8-prone3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/pronec'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Ahhh~ <</dialog>> <<dialog "You">>Get ready~ <</dialog>> <div class="button-row"> <<regButton "miku8-prone3" "Keep going">><</regButton>> <<regButton "miku8-prone4" "Harder">><</regButton>> <<regButton "miku8-cow1" "Cowgirl">><</regButton>> <<regButton "miku8-dog1" "Doggy">><</regButton>> <<regButton "miku8-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> [[miku8-prone4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/proned.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhhhhhhh~ I'm going to cum~ <</dialog>> <<dialog "Miku">>Cuuuum~ Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "miku8-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[miku8-cum]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/cum.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ That felt good. <</dialog>> <<dialog "Miku">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "miku8-end1" "End">><</regButton>> </div> </div> <<backend>> [[miku8-end1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/end1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hehe~ Would I let you do all that if I didn't like you? <</dialog>> <<dialog "You">>Pfft~ I believe you~ <</dialog>> <div class="button-row"> <<regButton "miku8-end2" "Kiss">><</regButton>> </div> </div> <<backend>> [[miku8-end2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/end2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>And that's to show you I love you. <</dialog>> <<dialog "You">>I love you too. <</dialog>> <div class="button-row"> <<regButton "miku8-end3" "Continue">><</regButton>> </div> </div> <<backend>> [[miku8-end3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/end3.mp4" type="video/mp4">'>> </video> <<dialog "You">>Seriously though. Are you going to be okay? <</dialog>> <<dialog "Miku">>Yes. I have your watch, don't I? You'll come running to me when something bad happens~ <</dialog>> <<dialog "You">>Of course~ <</dialog>> <div class="button-row"> <<regButton "miku8-end4" "Kiss her">><</regButton>> </div> </div> <<backend>> [[miku8-end4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/end4.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmm~ <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "miku8-end5" "Continue">><</regButton>> </div> </div> <<backend>> [[miku8-end5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/monday/end5.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>It'll be okay. Don't worry about me. <</dialog>> <<dialog "You">>I will always worry about you. <</dialog>> <<dialog "Miku">>Pfft~ I didn't think the day would come when someone else is more worried about me going out than myself. <</dialog>> <<dialog "You">>You've come so far~ <</dialog>> <<dialog "Miku">>I am extremely tired though. A quick shower then let's go to bed~ <</dialog>> <<dialog "You">>As long as we're both still naked when we sleep~ <</dialog>> <<dialog "Miku">>Pfft~ No way~ You'll just get horny again. I wanna sleep, but I give you full consent to violate me while I sleep. Just, don't wake me up okay? <</dialog>> <<dialog "You">>Th-that's a little difficult, don't you think? <</dialog>> <div class="button-row"> <<regButton "miku-ohayo" "The next day">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $miku.quest = 8>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/1.mp4" type="video/mp4">'>> </video> <<dialog "You">>How are you? <</dialog>> <<dialog "Miku">>A little tired~ I was finally on site today. <</dialog>> <<dialog "You">>Anything interesting happen while you were there? <</dialog>> <<dialog "Miku">>Hmmm. Not much. The director was a bit creepy though. He hovered around me a lot. <</dialog>> <<dialog "You">>What!?? <</dialog>> <<dialog "Miku">>Awww~ Are you worried? I'm okay. Haku-san said he was just being thorough. <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Miku">>Yes~ Don't worry, okay? <</dialog>> <<dialog "You">>If it gets too uncomfortable, call me okay? I'll come get you immediately. <</dialog>> <<dialog "Miku">>I will~ <</dialog>> <div class="button-row"> <<regButton "miku9-2" "Miku hesitates">><</regButton>> </div> </div> <<backend>> [[miku9-2]] <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I am worried about one thing though... <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Miku">>You know how you keep saying Haku-san might be into me? <</dialog>> <<dialog "You">>Yeah? Don't tell me... <</dialog>> <<dialog "Miku">>No no no. <</dialog>> <<dialog "You">>Oh okay. <</dialog>> <<dialog "Miku">>I think she's into you. <</dialog>> <<dialog "You">>Eh? She doesn't even know me. <</dialog>> <<dialog "Miku">>She keeps telling me you sound cool and that she wants to meet you someday. <</dialog>> <<dialog "You">>That's a little weird. <</dialog>> <<dialog "Miku">>I get it. She said the way I talked about you makes me seem so deep in love. I really talked you up, you know? I'm a very proud girlfriend~ <</dialog>> <<dialog "You">>I'm proud of you too, you know? <</dialog>> <div class="button-row"> <<regButton "miku9-3" "She kisses you">><</regButton>> </div> </div> <<backend>> [[miku9-3]] <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I love you. <</dialog>> <<dialog "You">>I love you too. <</dialog>> <<dialog "Miku">>I need to leave early tomorrow, so let's sleep~ <</dialog>> <<dialog "You">>Good night~ <</dialog>> <<dialog "Miku">>Good night~ <</dialog>> <div class="button-row"> <<regButton "miku9-4" "The next morning...">><</regButton>> </div> </div> <<backend>> [[miku9-4]] <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/4.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Babe... <</dialog>> <<dialog "You">>Ngggh~ <</dialog>> <<dialog "Miku">>Wake up~ <</dialog>> <<dialog "You">>Wh-what time is it? <</dialog>> <div class="button-row"> <<regButton "miku9-5" "Continue">><</regButton>> </div> </div> <<backend>> [[miku9-5]] <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <<set $dayIndex += 1>> <<set $day = $days[$dayIndex % $days.length]>> <<set $mugging = 0>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.25), $stats.maxhp)>> <<if $akane.quest == 1>> <<if $hospintro == "hosp-lobby" && $hour == 23 && $minute >= 45>> <<set $sick = $sick + 1>> <<elseif $sick < 5>> <<set $sick = Math.max($sick - 1, 0)>> <</if>><</if>> <<set $akane.checktoday = 0>> <<if $yuki.quest == 5>><<set $yuki.think = $yuki.think + 1>> <<if $yuki.think > 3>><<set $yuki.quest = 6>> <</if>><</if>> <<set $hour = 6>> <<set $minute = 30>> <<set $haru.chat = 0>> <<set $emi.chat = 0>> <<if $sick >= 5>> <<set $stats.ep = Mathf.min($stats.ep + ($stats.maxep/2), $stats.maxep)>> <<else>> <<set $stats.ep = $stats.maxep>> <</if>> <<set $haru.scc = 0>> <<set $yuki.chat = 0>> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/5.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>6:30... <</dialog>> <<dialog "You">>It's so early, babe... <</dialog>> <<dialog "Miku">>Good morning~ <</dialog>> <<dialog "You">>Mmmm~ 5 more minutes~ <</dialog>> <div class="button-row"> <<regButton "miku9-6" "She gets on top of you">><</regButton>> </div> </div> <<backend>> [[miku9-6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/6.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I'm horny~ <</dialog>> <<dialog "You">>I'm awake. <</dialog>> <div class="button-row"> <<regButton "miku9-7" "Unzip her jacket">><</regButton>> </div> </div> <<backend>> [[miku9-7]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/unzip.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I'm sorry for waking you up... <</dialog>> <<dialog "You">>Always wake me up for things like this. <</dialog>> <<dialog "Miku">>Pfft~ Pervert~ <</dialog>> <div class="button-row"> <<regButton "miku9-grope" "Grope her">><</regButton>> </div> </div> <<backend>> [[miku9-grope]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/grope.mp4" type="video/mp4">'>> </video> <<dialog "You">>You've been super proactive since you started work~ <</dialog>> <<dialog "Miku">>Mmm~ I know. For some reason, whenever I'm about to go to work, I get really horny~ <</dialog>> <<dialog "You">>That hurt my feelings a bit... <</dialog>> <<dialog "Miku">>Nooo~ I think it's because I won't be seeing you for 11 hours. I keep thinking about you when I'm at work... Ahh~ It would be so hot if we did it in the office~ <</dialog>> <div class="button-row"> <<regButton "miku9-lay" "Lay her down">><</regButton>> </div> </div> <<backend>> [[miku9-lay]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/lay.mp4" type="video/mp4">'>> </video> <<dialog "You">>Then I should satisfy you before work~ So you can focus properly~ <</dialog>> <<dialog "Miku">>Mhmm~ It's the only way~ <</dialog>> <div class="button-row"> <<regButton "miku9-nips" "Suck on her nipples">><</regButton>> </div> </div> <<backend>> [[miku9-nips]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/nips.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ I feel so sensitive~ <</dialog>> <<dialog "You">>Wow~ You're really horny~ <</dialog>> <div class="button-row"> <<regButton "miku9-tj1" "Paizuri">><</regButton>> </div> </div> <<backend>> [[miku9-tj1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Maybe you'll feel something from this~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/tja.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hmm~ I don't know~ <</dialog>> <<dialog "You">>Let's try~ <</dialog>> <div class="button-row"> <<regButton "miku9-tj2" "Fuck her tits">><</regButton>> </div> </div> <<backend>> [[miku9-tj2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/tjb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Not that this doesn't feel great, babe, but... <</dialog>> <<dialog "You">>What's wrong? <</dialog>> <<dialog "Miku">>I... I want you to eat me out~ <</dialog>> <<dialog "You">>Hehe~ You're usually shy when I try to eat you out~ <</dialog>> <<dialog "Miku">>I-I know... I'm just... really horny... <</dialog>> <div class="button-row"> <<regButton "miku9-panties" "Take her panties off">><</regButton>> </div> </div> <<backend>> [[miku9-panties]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/panties.mp4" type="video/mp4">'>> </video> <<dialog "You">>Wow, you're so wet. <</dialog>> <<dialog "Miku">>I know, okay? J-just... please make me feel good... <</dialog>> <div class="button-row"> <<regButton "miku9-cun1" "Eat her out">><</regButton>> </div> </div> <<backend>> [[miku9-cun1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cuna'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ That's it~ <</dialog>> <<dialog "You">>*Slurp* <</dialog>> <<dialog "Miku">>Oh my god~ Yees~ You're gonna make me cuum~ <</dialog>> <div class="button-row"> <<regButton "miku9-cun1" "Keep going">><</regButton>> <<regButton "miku9-cun2" "She cums">><</regButton>> </div> </div> <<backend>> [[miku9-cun2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cunb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ <</dialog>> <<dialog "You">>Damn~ <</dialog>> <div class="button-row"> <<regButton "miku9-kiss" "Kiss her">><</regButton>> </div> </div> <<backend>> [[miku9-kiss]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/kiss.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmm~ Put your dick in me~ <</dialog>> <<dialog "You">>Woah~ There's an order to things, Miku~ <</dialog>> <div class="button-row"> <<regButton "miku9-bj" "She immediately sucks your dick">><</regButton>> </div> </div> <<backend>> [[miku9-bj]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/bj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Gkk* *Slurp* You're hard e-oughh... *Slurp* <</dialog>> <<dialog "You">>Ahh~ Miku~ <</dialog>> <div class="button-row"> <<regButton "miku9-bj" "Keep going">><</regButton>> <<regButton "miku9-play" "She asks you to fuck her">><</regButton>> </div> </div> <<backend>> [[miku9-play]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/play.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Come on~ Put it in now~ <</dialog>> <<dialog "You">>You just started... <</dialog>> <<dialog "Miku">>I want it now~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[miku9-mis1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/misa.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Finally~ <</dialog>> <<dialog "You">>You're so wet, Miku~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis2" "Faster">><</regButton>> </div> </div> <<backend>> [[miku9-mis2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/misb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahhh~ Does it feel good? <</dialog>> <<dialog "You">>Ahhh~ Yes~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis2" "Keep going">><</regButton>> <<regButton "miku9-mis3" "Kiss">><</regButton>> </div> </div> <<backend>> [[miku9-mis3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/misc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Mmm~ <</dialog>> <<dialog "You">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis4" "Harder">><</regButton>> </div> </div> <<backend>> [[miku9-mis4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/misd'+random(1,4)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ohhh! I'm gonna cum~ <</dialog>> <<dialog "You">>Cum for me~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis4" "Keep going">><</regButton>> <<regButton "miku9-mis5" "She cums">><</regButton>> </div> </div> <<backend>> [[miku9-mis5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/mise.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahhhhh~ Hahh~ Hahh~ Hahh~ <</dialog>> <<dialog "You">>Damn~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow1" "Cowgirl">><</regButton>> </div> </div> <<backend>> [[miku9-cow1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Mmmmm~ <</dialog>> <<dialog "You">>Miku~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow1" "Keep going">><</regButton>> <<regButton "miku9-cow2" "She starts making a lot of noise">><</regButton>> </div> </div> <<backend>> [[miku9-cow2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahhh~ Ahhhh~ <</dialog>> <<dialog "You">>Oh my god, Miku~ You're so wet~ That sound is so hot~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow2" "Keep going">><</regButton>> <<regButton "miku9-cow3" "She slows down">><</regButton>> </div> </div> <<backend>> [[miku9-cow3]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>You've never been this wet, Miku~ <</dialog>> <<dialog "Miku">>Do you not like it? <</dialog>> <<dialog "You">>I'd be crazy if I didn't like this~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow3" "Keep going">><</regButton>> <<regButton "miku9-cow4" "Harder">><</regButton>> </div> </div> <<backend>> [[miku9-cow4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ Ahhhhh~ I'm going to cum agaiiin~ <</dialog>> <<dialog "You">>Go ahead~ It's going to be so much wetter~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow4" "Keep going">><</regButton>> <<regButton "miku9-cow5" "She cums">><</regButton>> </div> </div> <<backend>> [[miku9-cow5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowe.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ That felt amazing~ <</dialog>> <<dialog "You">>I'm not done hearing you squeak~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow6" "Fuck her">><</regButton>> </div> </div> <<backend>> [[miku9-cow6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowf'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Ahh~ Take it~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow6" "Keep going">><</regButton>> <<regButton "miku9-cow7" "Harder">><</regButton>> </div> </div> <<backend>> [[miku9-cow7]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowg'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ I'm gonna cum agaaain~ <</dialog>> <div class="button-row"> <<regButton "miku9-cow7" "Keep going">><</regButton>> <<regButton "miku9-cow8" "She cums">><</regButton>> </div> </div> <<backend>> [[miku9-cow8]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cowh.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Haahhh~ Hehe~ I came again~ <</dialog>> <<dialog "You">>Lay down so I can cum too~ <</dialog>> <<dialog "Miku">>And I need to go to work~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis6" "Missionary">><</regButton>> </div> </div> <<backend>> [[miku9-mis6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/misf'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhhh~ Please cum~ <</dialog>> <<dialog "You">>Ahh~ Should I cum inside? <</dialog>> <<dialog "Miku">>N-nooo~ I might be ovulating~ Ahhhh~ <</dialog>> <<dialog "You">>Ahh~ Is that why... Ahhh~ you're so horny? <</dialog>> <<dialog "Miku">>P-probably~ Ahhhhh~ Cum on my face~ <</dialog>> <<dialog "You">>I'm gonna cum, Miku~ <</dialog>> <div class="button-row"> <<regButton "miku9-mis6" "Keep going">><</regButton>> <<regButton "miku9-mis7" "Cum">><</regButton>> </div> </div> <<backend>> [[miku9-mis7]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/misg.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hahhh~ Hahhh~ Hahhh~ <</dialog>> <<dialog "You">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "miku9-cum" "Facial">><</regButton>> </div> </div> <<backend>> [[miku9-cum]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/cum.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hnggkk~ It got in my mouth~ <</dialog>> <<dialog "You">>Sorry~ <</dialog>> <<dialog "Miku">>It'sh okay~ <</dialog>> <div class="button-row"> <<regButton "miku9-end1" "Continue">><</regButton>> </div> </div> <<backend>> [[miku9-end1]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/end1.mp4" type="video/mp4">'>> </video> <<dialog "You">>So... Ovulating, huh? <</dialog>> <<dialog "Miku">>Don't even think about it!! <</dialog>> <<dialog "You">>Pfft~ Okay! Okay! <</dialog>> <<dialog "Miku">>Let me rest for a while before I shower and go to work. <</dialog>> <<dialog "You">>If I got you pregnant, you'd be on leave~ <</dialog>> <<dialog "Miku">>Pfft~ I told you not to even think about it!! <</dialog>> <<dialog "You">>I didn't think about it, it just came to me~ <</dialog>> <<dialog "Miku">>Really~ <</dialog>> <<dialog "You">>Yeah, like you did multiple times~ <</dialog>> <<dialog "Miku">>Pfft~ Are you proud? <</dialog>> <<dialog "You">>Of course, I am. <</dialog>> <div class="button-row"> <<regButton "miku9-end2" "Continue">><</regButton>> </div> </div> <<backend>> [[miku9-end2]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<<time 0 1>><<set $dialog = $minute>><<if $minute < 10>><<set $dialog = '0'+$minute>><</if>><div class="bg miku-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/pillow/end2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I like having a job, okay? <</dialog>> <<dialog "You">>I know, babe~ <</dialog>> <<dialog "Miku">>Huh. Now that I'm thinking about work, I'm getting horny again. <</dialog>> <<dialog "You">>One more round? <</dialog>> <<dialog "Miku">>I wish, but it's already <<print $hour + ':' + $dialog>>. I'm gonna be late. <</dialog>> <<dialog "You">>Later then~ <</dialog>> <<dialog "Miku">>Okay~ <</dialog>> <div class="button-row"> <<regButton "miku-room" "End">><</regButton>> </div> </div> <<backend>> <<set $miku.quest = 9>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "You">>Hello? <</dialog>> <<dialog "Miku">>Hello, babe~ <</dialog>> <<dialog "You">>You going home yet? <</dialog>> <<dialog "Miku">>Actually, it's a friday so I'm going out to drink with my boss. <</dialog>> <<dialog "You">>Okay, I'll wait for you at home. <</dialog>> <<dialog "Miku">>Ummmm... Actually... Can you come to Ariku? <</dialog>> <<dialog "You">>Why? Did something happen? <</dialog>> <<dialog "Miku">>Nothing, but my boss and I have something to tell you. <</dialog>> <<dialog "You">>Umm... Okay, but it's gonna take me 45 minutes to get there. <</dialog>> <<dialog "Miku">>We'll be waiting~ <</dialog>> <div class="button-row"> <<regButton "miku10-2" "You arrive at a restaurant in Ariku">><</regButton>> </div> </div> <<backend>> [[miku10-2]] <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Miku's Home">> <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/1.mp4" type="video/mp4">'>> </video> <<dialog "You">>I'm here. <</dialog>> <<dialog "Miku">>Babe!! <</dialog>> <<dialog "You">>Hi! This must be... <</dialog>> <<dialog "Haku">>Hi. Miku has told me a lot about you. <</dialog>> <<dialog "You">><i>Damn. She's beautiful.</i> <</dialog>> <<dialog "You">>H-hello, I'm $player.name. <</dialog>> <div class="button-row"> <<regButton "miku10-3" "Haku and Miku look at each other">><</regButton>> </div> </div> <<backend>> [[miku10-3]] <<time 0 45>> <<set $profile to "miku-profile">> <<set $location to "Restaurant">> <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Pfft~ You were right, Haku-san. He got flustered~ <</dialog>> <<dialog "Haku">>Hehe~ Of course he did. <</dialog>> <<dialog "You">>What's going on? <</dialog>> <<dialog "Haku">>I know about your little arrangement with my cute employee~ <</dialog>> <<dialog "You">>H-huh? <</dialog>> <div class="button-row"> <<regButton "miku10-4" "Miku explains">><</regButton>> </div> </div> <<backend>> [[miku10-4]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Restaurant">> <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I told her about how I was willing to share you~ <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Haku">>Don't worry, $player.name-kun. I don't judge~ <</dialog>> <div class="button-row"> <<regButton "miku10-5" "Seriously, what's happening?">><</regButton>> </div> </div> <<backend>> [[miku10-5]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Restaurant">> <</backend>>
<div class="bg restaurant"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/4.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Remember when you told me my boss likes me, then I told you maybe she likes you? <</dialog>> <<dialog "You">>Y-yeah? <</dialog>> <<dialog "Haku">>Well, you're both right~ <</dialog>> <<dialog "You">>Huh? <</dialog>> <<dialog "Haku">>I think Miku-chan is cute~ And I like strong guys, I heard you saved her from her stalker. <</dialog>> <<dialog "You">>Where is this going? <</dialog>> <<dialog "Miku">>Well... If I want to live with seeing you do it with different girl, I figured I could need some practice~ Thankfully, my boss is willing to help with that~ <</dialog>> <<dialog "Haku">>Ever had a threesome? <</dialog>> <div class="button-row"> <<regButton "miku10-6" "Oh shit">><</regButton>> </div> </div> <<backend>> [[miku10-6]] <<time 0 1>> <<set $profile to "miku-profile">> <<set $location to "Restaurant">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <h1>Later in a hotel...</h1> <<dialog "You">>This is wild... <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/5.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Slurp* *Slurp* <</dialog>> <<dialog "Haku">>*Slurp* *Slurp* You didn't think this would happen today, did you? <</dialog>> <div class="button-row"> <<regButton "miku10-hlick" "Haku licks you">><</regButton>> </div> </div> <<backend>> [[miku10-hlick]] <<time 0 45>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hlick.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>How does it feel, babe? <</dialog>> <<dialog "You">>Good~ <</dialog>> <<dialog "Haku">>*Slurp* Hehe~ What a beautiful couple~ *Slurp* <</dialog>> <div class="button-row"> <<regButton "miku10-mlick" "Miku's turn">><</regButton>> </div> </div> <<backend>> [[miku10-mlick]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mlick.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Slurp* *Slurp* <</dialog>> <<dialog "You">>Ahh~ <</dialog>> <<dialog "Haku">>Hehe~ I guess I need to watch this so I know what you like~ <</dialog>> <div class="button-row"> <<regButton "miku10-mbj1" "Grab Haku's boob">><</regButton>> </div> </div> <<backend>> [[miku10-mbj1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mbja.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Slurp* *Slurp* <</dialog>> <<dialog "You">>You're huge, Haku. <</dialog>> <<dialog "Haku">>You like grabbing someone else's boob as your girlfriend sucks you off? Naughty boy~ <</dialog>> <<dialog "You">>Why don't you suck me off now too so I can grab hers next? <</dialog>> <div class="button-row"> <<regButton "miku10-hbj1" "Haku licks her lips">><</regButton>> </div> </div> <<backend>> [[miku10-hbj1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hbja'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>*Slurp* *Slurp* *Gkk* <</dialog>> <<dialog "You">>Ahh~ That feels good~ <</dialog>> <<dialog "Miku">>I can't believe my boss is sucking my boyfriends cock~ <</dialog>> <<dialog "You">>Are you sure you're okay? <</dialog>> <<dialog "Miku">>Well... This is turning me on~ <</dialog>> <div class="button-row"> <<regButton "miku10-hbj1" "Keep going">><</regButton>> <<regButton "miku10-htj1" "Haku gives you a titjob">><</regButton>> </div> </div> <<backend>> [[miku10-htj1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/htja1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Do her boobs feel good, babe? <</dialog>> <<dialog "You">>Ahh~ Yes~ <</dialog>> <<dialog "Haku">>I guess you like big boobs, huh? Miku's are pretty big too~ <</dialog>> <div class="button-row"> <<regButton "miku10-htj2" "Faster">><</regButton>> </div> </div> <<backend>> [[miku10-htj2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/htja2.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Will this make you cum? <</dialog>> <<dialog "You">>Ahhhh~ Fuck. <</dialog>> <<dialog "Miku">>Don't cum yet, okay? <</dialog>> <div class="button-row"> <<regButton "miku10-mtj1" "Miku's turn">><</regButton>> </div> </div> <<backend>> [[miku10-mtj1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mtja1.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ohhh~ Miku can completely bury you too~ <</dialog>> <<dialog "You">>You're both huge~ <</dialog>> <<dialog "Miku">>Does it feel good too? <</dialog>> <<dialog "You">>Of course it does~ <</dialog>> <div class="button-row"> <<regButton "miku10-mtj2" "Faster">><</regButton>> </div> </div> <<backend>> [[miku10-mtj2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mtja2.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Make him cum, Miku~ <</dialog>> <<dialog "You">>Pfft~ No way~ I'm going to enjoy this. <</dialog>> <<dialog "Miku">>Mmmm~ <</dialog>> <div class="button-row"> <<regButton "miku10-hbj2" "Haku gives you a blowjob">><</regButton>> </div> </div> <<backend>> [[miku10-hbj2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hbjb.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>*Slurp* *Slurp* You're conhident huh? <</dialog>> <<dialog "You">>I can handle you both~ <</dialog>> <<dialog "Miku">>I guess we gotta work harder~ <</dialog>> <div class="button-row"> <<regButton "miku10-htj3" "Paizuri">><</regButton>> </div> </div> <<backend>> [[miku10-htj3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/htjb.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>You're drowning in boobs~ What a lucky guy~ <</dialog>> <<dialog "Miku">>I know~ I'm a great girlfriend~ <</dialog>> <<dialog "You">>Ahh~ Too great~ <</dialog>> <div class="button-row"> <<regButton "miku10-mtj3" "They switch places">><</regButton>> </div> </div> <<backend>> [[miku10-mtj3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mtjb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Heyyy~ Make sure my boyfriend can still breathe, okay? <</dialog>> <<dialog "Haku">>I'm pretty sure he'd die happy this way~ <</dialog>> <<dialog "You">>What are you talking about? I haven't fucked you yet. <</dialog>> <<dialog "Haku">>Ohh? <</dialog>> <div class="button-row"> <<regButton "miku10-hbj3" "Haku sucks your dick">><</regButton>> </div> </div> <<backend>> [[miku10-hbj3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hbjc.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>*Slurp* We should huhhy up then~ <</dialog>> <<dialog "You">>Mmm~ *Slurp* <</dialog>> <<dialog "Miku">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "miku10-mbj3" "Miku sucks your dick">><</regButton>> </div> </div> <<backend>> [[miku10-mbj3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mbjc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Slurp* *Gkk* *Slurp* <</dialog>> <<dialog "Haku">>I'm expecting a lot, okay? <</dialog>> <<dialog "You">>*Slurp* Why don't I take you first, then? <</dialog>> <div class="button-row"> <<regButton "miku10-hp" "Take Haku's panties off">><</regButton>> </div> </div> <<backend>> [[miku10-hp]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hpanties.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I can't believe I'm looking at my boss' pussy~ <</dialog>> <<dialog "Haku">>So? What do you think? <</dialog>> <<dialog "You">>For someone with huge tits, you have a tiny pussy~ I can make you cum quick~ <</dialog>> <div class="button-row"> <<regButton "miku10-hfin1" "Play with her clit">><</regButton>> </div> </div> <<backend>> [[miku10-hfin1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hfin1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Make her cum~ <</dialog>> <<dialog "Haku">>Ahh~ That feels good~ <</dialog>> <div class="button-row"> <<regButton "miku10-hfin2" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-hfin2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hfin2.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhh~ Ahhhhh~ Hnnnggg~ <</dialog>> <<dialog "Miku">>She came~ <</dialog>> <<dialog "You">>Looks tasty~ <</dialog>> <div class="button-row"> <<regButton "miku10-hcun" "Eat her out">><</regButton>> </div> </div> <<backend>> [[miku10-hcun]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcun'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Hnnnggg~ Ahhhhhh~ D-don't~ Ahhh~ suddenly lick my... pussy~ Ahhhh~ <</dialog>> <<dialog "Miku">>Yep, he does that. Hehe~ <</dialog>> <<dialog "You">>You put your pussy in front of my face, what did you expect would happen? <</dialog>> <div class="button-row"> <<regButton "miku10-hcun" "Keep going">><</regButton>> <<regButton "miku10-hcow1" "Haku Cowgirl">><</regButton>> </div> </div> <<backend>> [[miku10-hcow1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Haku">>Ahhhh~ I can't take it anymore~ Give me that dick~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowa.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhhhhh~ That's feels good~ <</dialog>> <<dialog "Miku">>Mmmm~ My boss is fucking my boyfriend~ This feels a little weird... But I'm getting so turned on~ <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "miku10-hcow2" "Haku starts moving">><</regButton>> </div> </div> <<backend>> [[miku10-hcow2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowb.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Mmmm~ Ahhh~ <</dialog>> <<dialog "You">>Ahhh~ Harder~ <</dialog>> <div class="button-row"> <<regButton "miku10-hcow3" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-hcow3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>I can't wait for my turn~ <</dialog>> <<dialog "Haku">>Ahhhh~ Ahhhh~ Ahhh~ You're gonna make me cum again~ <</dialog>> <<dialog "You">>Cum for me. <</dialog>> <div class="button-row"> <<regButton "miku10-hcow4" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-hcow4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowd.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhhhh~ <</dialog>> <<dialog "You">>Ahhh~ Shit~ Your pussy contracts when you cum~ <</dialog>> <<dialog "Miku">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "miku10-hcow5" "She leans back">><</regButton>> <<regButton "miku10-hsit1" "Haku Sitting">><</regButton>> <<regButton "miku10-hrcow1" "Haku Reverse Cowgirl">><</regButton>> <<regButton "miku10-hdog1" "Haku Doggy">><</regButton>> <<regButton "miku10-hmis1" "Haku Missionary">><</regButton>> <<regButton "miku10-mcow1" "Switch to Miku">><</regButton>> </div> </div> <<backend>> [[miku10-hcow5]][[miku10-hsit1]][[miku10-hrcow1]][[miku10-hdog1]][[miku10-hmis1]][[miku10-mcow1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowe'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhhh~ Itfeelsgood. Itfeelsgood. Itfeelsgood. <</dialog>> <<dialog "You">>Ah~ This is awesome. <</dialog>> <div class="button-row"> <<regButton "miku10-hcow5" "Keep going">><</regButton>> <<regButton "miku10-hcow6" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-hcow6]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hsit1.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "Miku">>Mmm~ I'm feeling a little neglected~ <</dialog>> <div class="button-row"> <<regButton "miku10-hsit2" "Miku offers her boobs to you">><</regButton>> </div> </div> <<backend>> [[miku10-hsit2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hrcowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ You have such a nice ass~ <</dialog>> <<dialog "Haku">>Ahhhh~ Thank~ Ahhh~ You~ <</dialog>> <div class="button-row"> <<regButton "miku10-hrcow1" "Keep going">><</regButton>> <<regButton "miku10-hrcow2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-hrcow2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hdoga'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhh~ Ahhhh~ Hahhhh~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row"> <<regButton "miku10-hdog1" "Keep going">><</regButton>> <<regButton "miku10-hdog2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-hdog2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hmisa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhh~ Ahhhh~ I'm gonna cuuum~ <</dialog>> <<dialog "You">>Go ahead. <</dialog>> <div class="button-row"> <<regButton "miku10-hmis1" "Keep going">><</regButton>> <<regButton "miku10-hmis2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-hmis2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowa.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhhh~ That's feels good~ <</dialog>> <<dialog "Haku">>Mmmm~ Miku talked a lot about this~ Now, I get to see it in action~ <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "miku10-mcow2" "Miku starts moving">><</regButton>> </div> </div> <<backend>> [[miku10-mcow2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowf'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahhh~ Your nipples are delicious, Miku~ <</dialog>> <<dialog "Miku">>Mmmm~ <</dialog>> <<dialog "Haku">>Ahh~ Ahh~ Ahh~ I'm being ignored~ I should work harder~ <</dialog>> <div class="button-row"> <<regButton "miku10-hcow6" "Keep going">><</regButton>> <<regButton "miku10-hcow7" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-hcow7]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hcowg.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhh~ I came again~ <</dialog>> <<dialog "You">>And it's even tighter~ <</dialog>> <div class="button-row"> <<regButton "miku10-hsit1" "Haku Sitting">><</regButton>> <<regButton "miku10-hrcow1" "Haku Reverse Cowgirl">><</regButton>> <<regButton "miku10-hdog1" "Haku Doggy">><</regButton>> <<regButton "miku10-hmis1" "Haku Missionary">><</regButton>> <<regButton "miku10-hcow1" "Cowgirl">><</regButton>> <<regButton "miku10-mcow1" "Switch to Miku">><</regButton>> </div> </div> <<backend>> [[miku10-hcow5]][[miku10-hsit1]][[miku10-hrcow1]][[miku10-hdog1]][[miku10-hmis1]][[miku10-mcow1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>Lick them~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hsit2.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhhhh~ <</dialog>> <<dialog "Miku">>Ahhh~ <</dialog>> <<dialog "You">>*Slurp* <</dialog>> <div class="button-row"> <<regButton "miku10-hsit3" "Haku offers hers too">><</regButton>> </div> </div> <<backend>> [[miku10-hsit3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Haku">>Mmmm~ No fair~ You get to have him all to yourself at home~ Lick mine too~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hsit3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hnnngggg~ <</dialog>> <<dialog "You">>*Slurp* *Slurp* Oh fuck~ <</dialog>> <div class="button-row"> <<regButton "miku10-hsit4" "Focus on Haku">><</regButton>> </div> </div> <<backend>> [[miku10-hsit4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hsit4.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahh~ Make me cum again~ <</dialog>> <<dialog "You">>As you wish~ <</dialog>> <div class="button-row"> <<regButton "miku10-hsit5" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-hsit5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hsit5.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahh~ I came again~ <</dialog>> <<dialog "You">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "miku10-hrcow1" "Haku Reverse Cowgirl">><</regButton>> <<regButton "miku10-hdog1" "Haku Doggy">><</regButton>> <<regButton "miku10-hmis1" "Haku Missionary">><</regButton>> <<regButton "miku10-hcow5" "Lay down">><</regButton>> <<regButton "miku10-hcow1" "Cowgirl">><</regButton>> <<regButton "miku10-mcow1" "Switch to Miku">><</regButton>> </div> </div> <<backend>> [[miku10-hsit5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hrcowb.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhhhhhh~ I'm cumming agaaain~ <</dialog>> <<dialog "You">>Cum all over my dick~ <</dialog>> <div class="button-row"> <<regButton "miku10-hrcow3" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-hrcow3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hrcowc.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Haahhh~ Haahhh~ <</dialog>> <<dialog "You">>We're not done yet~ <</dialog>> <div class="button-row"> <<regButton "miku10-hdog1" "Haku Doggy">><</regButton>> <<regButton "miku10-hmis1" "Haku Missionary">><</regButton>> <<regButton "miku10-hsit1" "Haku Sitting">><</regButton>> <<regButton "miku10-hcow5" "Lay down">><</regButton>> <<regButton "miku10-hcow1" "Cowgirl">><</regButton>> <<regButton "miku10-mcow1" "Switch to Miku">><</regButton>> </div> </div> <<backend>> [[miku10-hsit5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hdogb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ Ahhh~ Your ass is bouncing~ <</dialog>> <<dialog "Haku">>Ahhhh~ Ahhhhhh~ Make it bounce harderrr~ <</dialog>> <div class="button-row"> <<regButton "miku10-hdog1" "Keep going">><</regButton>> <<regButton "miku10-hmis1" "Haku Missionary">><</regButton>> <<regButton "miku10-hsit1" "Haku Sitting">><</regButton>> <<regButton "miku10-hrcow1" "Haku Reverse Cowgirl">><</regButton>> <<regButton "miku10-hcow5" "Lay down">><</regButton>> <<regButton "miku10-hcow1" "Cowgirl">><</regButton>> <<regButton "miku10-mcow1" "Switch to Miku">><</regButton>> </div> </div> <<backend>> [[miku10-hsit5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/hmisb.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>Ahhhhhh~ That was amazing~ <</dialog>> <<dialog "You">>Hahhhh~ <</dialog>> <<dialog "Miku">>Is it my turn yet? <</dialog>> <div class="button-row"> <<regButton "miku10-hdog1" "Haku Doggy">><</regButton>> <<regButton "miku10-hrcow1" "Haku Reverse Cowgirl">><</regButton>> <<regButton "miku10-hsit1" "Haku Sitting">><</regButton>> <<regButton "miku10-hcow5" "Lay down">><</regButton>> <<regButton "miku10-hcow1" "Cowgirl">><</regButton>> <<regButton "miku10-mcow1" "Switch to Miku">><</regButton>> </div> </div> <<backend>> [[miku10-hmis2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhh~ Ahhhhh~ <</dialog>> <<dialog "Haku">>That's right, squeeze my boobs while you fuck your girlfriend~ <</dialog>> <<dialog "You">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku10-mcow3" "Grab Miku's boobs too">><</regButton>> </div> </div> <<backend>> [[miku10-mcow3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhh~ Ahhhhh~ I'm gonna cuuum~ <</dialog>> <<dialog "Haku">>That was quick~ <</dialog>> <<dialog "You">>Cum for me~ <</dialog>> <div class="button-row"> <<regButton "miku10-mcow4" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-mcow4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowd.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hahhh~ Hahhh~ Haaahhh~ <</dialog>> <<dialog "Haku">>That was hot~ <</dialog>> <<dialog "Miku">>I'm not done yet~ <</dialog>> <div class="button-row"> <<regButton "miku10-mcow5" "She rides harder">><</regButton>> </div> </div> <<backend>> [[miku10-mcow5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowe'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "Haku">>Ohh~ Impressive energy~ <</dialog>> <div class="button-row"> <<regButton "miku10-mcow5" "Keep going">><</regButton>> <<regButton "miku10-mcow6" "She cums again">><</regButton>> </div> </div> <<backend>> [[miku10-mcow6]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowf.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ I came~ Hahhh~ <</dialog>> <<dialog "Haku">>Pfft~ He hasn't let go of my boob the entire time~ You must really like boobs, huh? Let me return the favor~ <</dialog>> <div class="button-row"> <<regButton "miku10-mcow7" "She returns the favor">><</regButton>> </div> </div> <<backend>> [[miku10-mcow7]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowg.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ <</dialog>> <<dialog "Haku">>*Slurp* *Slurp* <</dialog>> <div class="button-row"> <<regButton "miku10-mcow8" "Miku rides harder">><</regButton>> </div> </div> <<backend>> [[miku10-mcow8]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowh.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ Ahhhh~ I'm gonna cum~ <</dialog>> <<dialog "Haku">>*Slurp* *Slurp* *Slurp* *Slurp* <</dialog>> <div class="button-row"> <<regButton "miku10-mcow9" "Miku cums">><</regButton>> </div> </div> <<backend>> [[miku10-mcow9]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowi.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ <</dialog>> <<dialog "Haku">>*Slurp* Hehe~ <</dialog>> <div class="button-row"> <<regButton "miku10-msit1" "Miku Sitting">><</regButton>> <<regButton "miku10-mrcow1" "Miku Reverse Cowgirl">><</regButton>> <<regButton "miku10-mdog1" "Miku Doggy">><</regButton>> <<regButton "miku10-mmis1" "Miku Missionary">><</regButton>> <<regButton "miku10-hcow1" "Switch to Haku">><</regButton>> <<regButton "miku10-hard1" "Miku Hard">><</regButton>> </div> </div> <<backend>> [[miku10-msit1]][[miku10-mrcow1]][[miku10-mdog1]][[miku10-mmis1]][[miku10-hard1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/msita'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "Haku">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "miku10-msit1" "Keep going">><</regButton>> <<regButton "miku10-msit2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-msit2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mrcowa'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Ahhh~ Getting your hand squeezed by huge tits while your girlfriend rides you~ It's like I'm dreaming~ <</dialog>> <<dialog "Haku">>Hehe~ <</dialog>> <div class="button-row"> <<regButton "miku10-mrcow1" "Keep going">><</regButton>> <<regButton "miku10-mrcow2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-mrcow2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mdoga.mp4" type="video/mp4">'>> </video> <<dialog "You">>Your asses look good together~ <</dialog>> <<dialog "Miku">>Ahhh~ Hehe~ <</dialog>> <div class="button-row"> <<regButton "miku10-mdog2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-mdog2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mmisa.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Harder, babe~ <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row"> <<regButton "miku10-mmis2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-mmis2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowj.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ It's your turn to cum~ <</dialog>> <<dialog "You">>Ahhh~ Keep going then~ <</dialog>> <<dialog "Haku">>My pussy is sore now too~ <</dialog>> <div class="button-row"> <<regButton "miku10-hard2" "Harder">><</regButton>> </div> </div> <<backend>> [[miku10-hard2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/msitb.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ I'm gonna cum~ <</dialog>> <div class="button-row"> <<regButton "miku10-msit3" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-msit3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/msitc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ <</dialog>> <<dialog "Haku">>Lean back so I can lick him~ <</dialog>> <div class="button-row"> <<regButton "miku10-msit4" "Continue">><</regButton>> </div> </div> <<backend>> [[miku10-msit4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/msitd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ I'm gonna cum agaaain~ <</dialog>> <<dialog "You">>Go ahead~ <</dialog>> <div class="button-row"> <<regButton "miku10-msit5" "Continue">><</regButton>> </div> </div> <<backend>> [[miku10-msit5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/msite.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hahhhh~ Hahhh~ <</dialog>> <<dialog "You">>Ahhhh~ You're so wet, Miku. You're enjoying this, huh? <</dialog>> <<dialog "Haku">>Hehe~ You didn't give me the impression that you like having threesomes with your boss, Miku-chan~ <</dialog>> <div class="button-row"> <<regButton "miku10-mrcow1" "Miku Reverse Cowgirl">><</regButton>> <<regButton "miku10-mdog1" "Miku Doggy">><</regButton>> <<regButton "miku10-mmis1" "Miku Missionary">><</regButton>> <<regButton "miku10-mcow1" "Miku Cowgirl">><</regButton>> <<regButton "miku10-hcow1" "Switch to Haku">><</regButton>> <<regButton "miku10-hard1" "Miku Hard Fuck">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mrcowb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ I'm cummiiing~ <</dialog>> <<dialog "You">>Go ahead~ <</dialog>> <div class="button-row"> <<regButton "miku10-mrcow2" "Keep going">><</regButton>> <<regButton "miku10-mrcow3" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-mrcow3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mrcowc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ <</dialog>> <<dialog "Haku">>Ah~ She came again~ <</dialog>> <div class="button-row"> <<regButton "miku10-mdog1" "Miku Doggy">><</regButton>> <<regButton "miku10-mmis1" "Miku Missionary">><</regButton>> <<regButton "miku10-msit1" "Miku Sitting">><</regButton>> <<regButton "miku10-mcow1" "Miku Cowgirl">><</regButton>> <<regButton "miku10-hcow1" "Switch to Haku">><</regButton>> <<regButton "miku10-hard1" "Miku Hard Fuck">><</regButton>> </div> </div> <<backend>> [[miku10-mrcow3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mdogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhh~ Ahhh~ Mmm~ <</dialog>> <<dialog "You">>Come here Haku~ <</dialog>> <<dialog "Haku">>Okay~ <</dialog>> <div class="button-row"> <<regButton "miku10-mdog2" "Keep going">><</regButton>> <<regButton "miku10-mdog3" "Grab Haku's tits">><</regButton>> </div> </div> <<backend>> [[miku10-mdog3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mdogc'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ I'm cumming~ <</dialog>> <<dialog "You">>Cum~ <</dialog>> <div class="button-row"> <<regButton "miku10-mdog4" "Miku cums">><</regButton>> </div> </div> <<backend>> [[miku10-mdog4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mdogc'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhhhh~ I'm cumming~ <</dialog>> <<dialog "You">>Cum~ <</dialog>> <div class="button-row"> <<regButton "miku10-mmis1" "Miku Missionary">><</regButton>> <<regButton "miku10-mrcow1" "Miku Reverse Cowgirl">><</regButton>> <<regButton "miku10-msit1" "Miku Sitting">><</regButton>> <<regButton "miku10-mcow1" "Miku Cowgirl">><</regButton>> <<regButton "miku10-hcow1" "Switch to Haku">><</regButton>> <<regButton "miku10-hard1" "Miku Hard Fuck">><</regButton>> </div> </div> <<backend>> [[miku10-mdog4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mmisb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahhhh~ Make me cuuuuum~ <</dialog>> <<dialog "You">>Ahhh~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku10-mmis2" "Keep going">><</regButton>> <<regButton "miku10-mmis3" "Make her cum">><</regButton>> </div> </div> <<backend>> [[miku10-mmis3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mmisc.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahhhh~ It feels so good~ <</dialog>> <<dialog "Haku">>You really cum a lot, huh? <</dialog>> <<dialog "You">>You're one to talk~ <</dialog>> <<dialog "Haku">>Hehe~ <</dialog>> <<dialog "You">>But I haven't cum yet. <</dialog>> <div class="button-row"> <<regButton "miku10-mmis4" "Fuck Miku harder">><</regButton>> </div> </div> <<backend>> [[miku10-mmis4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mmisd'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahhh~ <</dialog>> <<dialog "You">>I just love watching those tits bounce~ <</dialog>> <<dialog "Haku">>Looks like she's gonna cum again~ <</dialog>> <div class="button-row"> <<regButton "miku10-mmis4" "Keep going">><</regButton>> <<regButton "miku10-mmis5" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-mmis5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mmise.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>AHHHHH~ Ahhh~ Ahh~ Hahhhh~ <</dialog>> <<dialog "Haku">>That was hot~ <</dialog>> <div class="button-row"> <<regButton "miku10-mdog1" "Miku Doggy">><</regButton>> <<regButton "miku10-mrcow1" "Miku Reverse Cowgirl">><</regButton>> <<regButton "miku10-msit1" "Miku Sitting">><</regButton>> <<regButton "miku10-mcow1" "Miku Cowgirl">><</regButton>> <<regButton "miku10-hcow1" "Switch to Haku">><</regButton>> <<regButton "miku10-hard1" "Miku Hard Fuck">><</regButton>> </div> </div> <<backend>> [[miku10-mdog4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/mcowk.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Fuck~ I'm cumming~ <</dialog>> <div class="button-row"> <<regButton "miku10-hard3" "Push Miku off">><</regButton>> </div> </div> <<backend>> [[miku10-hard3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Weren't you ovulating, babe? <</dialog>> <<dialog "Haku">>... <</dialog>> <<dialog "You">>... <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/cum.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Oh that's right~ Let me finish you off this way~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row"> <<regButton "miku10-hard4" "Cum">><</regButton>> </div> </div> <<backend>> [[miku10-hard4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>I'm cumming~ <</dialog>> <<dialog "Miku">>Cum all over my tits~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/end1.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Ahh~ You came all over my boobs~ <</dialog>> <<dialog "Haku">>You came a lot~ <</dialog>> <<dialog "You">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "miku10-end1" "Miku cleans you up">><</regButton>> </div> </div> <<backend>> [[miku10-end1]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/end2.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>*Gkkk* *Slurp* Goog hob babe~ <</dialog>> <<dialog "Haku">>I didn't think you'd be able to satisfy us both but~ <</dialog>> <<dialog "You">>Hehe~ You both came a lot~ <</dialog>> <div class="button-row"> <<regButton "miku10-end2" "Haku takes a turn">><</regButton>> </div> </div> <<backend>> [[miku10-end2]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/end3.mp4" type="video/mp4">'>> </video> <<dialog "Miku">>Hehe~ <</dialog>> <<dialog "Haku">>*Gkk* *Gkk* <</dialog>> <<dialog "You">>Ahh~ Haku~ <</dialog>> <div class="button-row"> <<regButton "miku10-end3" "Continue">><</regButton>> </div> </div> <<backend>> [[miku10-end3]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/end4.mp4" type="video/mp4">'>> </video> <<dialog "Haku">>So? How was the experience? <</dialog>> <<dialog "Miku">>I was nervous at first, but it was really hot~ <</dialog>> <<dialog "You">>Does it feel like an itch has been scratched? <</dialog>> <<dialog "Haku">>... <</dialog>> <<dialog "Miku">>Yes! That's the feeling~ It's like I've been craving for this. <</dialog>> <div class="button-row"> <<regButton "miku10-end4" "Propose to do it again">><</regButton>> </div> </div> <<backend>> [[miku10-end4]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/miku/haku1/end5.mp4" type="video/mp4">'>> </video> <<dialog "You">>So? Should we schedule a second date? <</dialog>> <<dialog "Haku">>Already? How naughty~ <</dialog>> <<dialog "Miku">>Wow, babe~ We just finished~ <</dialog>> <<dialog "You">>W-wait... <</dialog>> <<dialog "Haku">>Pervert~ <</dialog>> <<dialog "Miku">>Totally~ <</dialog>> <h1>After a quick shower and some pillow talk with both girls, Miku fell asleep.</h1> <div class="button-row"> <<regButton "miku10-end5" "Continue">><</regButton>> </div> </div> <<backend>> [[miku10-end5]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>So? Are you still awake? <</dialog>> <<dialog "Haku">>Yep~ Why? You want to do it while your girlfriend is sleeping? <</dialog>> <div class="button-row"> <<regButton "miku10-end6" "Grab her boob">><</regButton>> </div> </div> <<backend>> [[miku10-end6]] <<time 0 20>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Haku">>Mmmm~ <</dialog>> <<dialog "You">>Miku's definitely not ovulating. <</dialog>> <<dialog "Haku">>Wh-what? <</dialog>> <<dialog "You">>I'm guessing... A psychology degree? <</dialog>> <<dialog "Haku">>Y-you know what, I'm a little tired. You wore me out earlier, I'm going to sleep~ <</dialog>> <div class="button-row"> <<regButton "miku10-end7" "Rub her clit">><</regButton>> </div> </div> <<backend>> [[miku10-end7]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Haku">>Ahhhn~ $player.name~ S-stop~ <</dialog>> <<dialog "You">>I don't know what you're after, but I can see through your mind tricks~ <</dialog>> <<dialog "Haku">>I-I don't know what you're talking about... Ahhh~ <</dialog>> <<dialog "You">>You can keep denying it, but just know I know what you're doing. You better not mess with my girlfriend, Haku-chan~ <</dialog>> <<dialog "Haku">>Ch-chan? <</dialog>> <<dialog "You">>I'll be watching~ <</dialog>> <div class="button-row"> <<regButton "miku10-end8" "She cums">><</regButton>> </div> </div> <<backend>> [[miku10-end8]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Haku">>Ahhhhhhhh~ <</dialog>> <<dialog "You">>Pfft~ <</dialog>> <<dialog "Miku">>Nnn~ $player.name? <</dialog>> <<dialog "You">>Go back to sleep~ <</dialog>> <<dialog "Haku">>Hahhh... Hahhh... Hahhh... <</dialog>> <<dialog "You">>Good night~ <</dialog>> <div class="button-row"> <<regButton "miku10-end9" "The next morning">><</regButton>> </div> </div> <<backend>> [[miku10-end9]] <<time 0 1>> <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $location to "Hotel">> <</backend>>
<<bg "hotel-room" $hour>><</bg>> <div class="content-panel"> <<dialog "Miku">>Mmmm~ Good morning~ <</dialog>> <<dialog "You">>Good morning~ <</dialog>> <<dialog "Miku">>Where's Haku-san? <</dialog>> <<dialog "You">>She left earlier. <</dialog>> <<dialog "Miku">>That's too bad~ I wanted to have breakfast with her. <</dialog>> <<dialog "You">>Just have it with me~ <</dialog>> <<dialog "Miku">>Okay~ <</dialog>> <<dialog "You">>Lets go home~ <</dialog>> <div class="button-row"> <<regButton "miku10-end10" "End">><</regButton>> </div> </div> <<backend>> [[miku10-end10]] <<set $hidenav = 1>> <<set $profile to "miku-profile">> <<set $miku.quest = 10>> <<set $dayIndex += 1>> <<set $day = $days[$dayIndex % $days.length]>> <<set $mugging = 0>> <<set $stats.hp = Math.min($stats.hp+Math.round($stats.maxhp * 0.25), $stats.maxhp)>> <<if $akane.quest == 1>> <<if $hospintro == "hosp-lobby" && $hour == 23 && $minute >= 45>> <<set $sick = $sick + 1>> <<elseif $sick < 5>> <<set $sick = Math.max($sick - 1, 0)>> <</if>><</if>> <<set $akane.checktoday = 0>> <<if $yuki.quest == 5>><<set $yuki.think = $yuki.think + 1>> <<if $yuki.think > 3>><<set $yuki.quest = 6>> <</if>><</if>> <<set $hour = 7>> <<set $minute = 0>> <<set $hidenav to 0>> <<set $haru.chat = 0>> <<set $emi.chat = 0>> <<if $sick >= 5>> <<set $stats.ep = Mathf.min($stats.ep + ($stats.maxep/2), $stats.maxep)>> <<else>> <<set $stats.ep = $stats.maxep>> <</if>> <<set $haru.scc = 0>> <<set $yuki.chat = 0>> <<set $location to "Hotel">> <</backend>>
<<set $hidenav = 0>> <<time 1 15>> <<goto "miku-room">>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Fuck... <</dialog>> <h1>You listen to the recording in a low volume.</h1> <<dialog "Miku">>Hmmmppphhhhh!!! <</dialog>> <<enemy "ranker6" "Male Voice" "alley" "left">>Got the girl!<</enemy>> <<enemy "ranker5" "Male Voice" "alley" "left">>Okay. Let's hurry to--<</enemy>> <h1>The recording got cut off.</h1> <div class="button-row"> <<regButton "miku11-2" "Storm out of the classroom">><</regButton>> </div> </div> <<backend>> [[miku11-2]] <<set $profile = "miku-profile">> <<set $location = "Classroom">> <<set $hidenav = 1>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>$player.name! Where are you going? <</dialog>> <<dialog "Shizu">>$player.name-kun! Stop right there!!! I told you to stop cutting class!!! <</dialog>> <<dialog "Shiori" "student">>I'm worried for him... <</dialog>> <<dialog "Emi" "student">>... <</dialog>> <<dialog "Rio" "student">>He like... probably got a booty call~ Only a guy about to get pussy would like totally run off like that. <</dialog>> <<dialog "Shizu">>Higuchi! Language! <</dialog>> <<dialog "Rio" "student">>What? Like... It's totally true~ <</dialog>> <<dialog "Haru" "student">>$player.name is not like that! <</dialog>> <div class="button-row"> <<regButton "miku11-3" "Call Seiya">><</regButton>> </div> </div> <<backend>> [[miku11-3]] <</backend>>
<<bg "campus" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Ariku has the Black Widow. I should cause as much chaos as possible there to spread their army thin. <</dialog>> <h1>You call Seiya.</h1> <<dialog "Kuroki">>Young Master. <</dialog>> <<dialog "You">>Go to Ariku and pick as many fights as possible with the local gangs. <</dialog>> <<dialog "Kuroki">>Should I bring the rankers? <</dialog>> <<dialog "You">>Take as many as you can. You can call some of our gang members too. Ask the bastards you beat up where the girl is then call me if you get information. <</dialog>> <<dialog "Kuroki">>Which girl, sir? <</dialog>> <<dialog "You">>Just do it. Let Uncle know too. <</dialog>> <div class="button-row"> <<regButton "miku11-4" "Go to Ariku">><</regButton>> </div> </div> <<backend>> [[miku11-4]] <<set $location = "School">> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "You">>The tracker in Miku's watch is here. The whole place is getting chaotic too. I guess Seiya's here. <</dialog>> <<enemy "arigoon" "Ariku Goon" "city" "left">>Huh? Who the fuck are you?<</enemy>> <<dialog "You">>Where is she? <</dialog>> <<enemy "arigoon" "Ariku Goon" "city" "left">>You're one of them, huh?<</enemy>> <div class="button-row"> <<regButton "miku11-a-battlecrud" "You get surrounded by a swarm of them">><</regButton>> </div> </div> <<backend>> [[miku11-a-battlecrud]] <<set $location = "Ariku">> <<time 0 45>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "miku11-a">> <<set $enemy = { level: 60, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $statpoints to 7 + (($enemy.level - 1) * 4)>> <<set $enemy.str to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.agi to Math.floor(($statpoints * random(30,50)) / 100)>> <<set $enemy.int to $statpoints - $enemy.str - $enemy.agi>> <<set $enemy.maxhp to 100 + ($enemy.level * 4) + ($enemy.str * 2)>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "arigoon">><<set $ename = "Ariku Goon">> <<set $profile = "player-profile">> <<set $pspeech = "Where is she?">> <<set $espeech = "I'll kill you.">> <<goto "battle-crud2">> [[miku11-a-battle]] <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "city">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[miku11-a-win]][[miku11-a-lose]] <<set $dmgres = "">> <<set $location to "Ariku">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg city"></div> <div class="content-panel"> $ename got knocked out. You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "arigoon" "Ariku Goon" "city" "left">>Urk... <</enemy>> <div class="button-row"> <<regButton "miku11-5" "His phone rings">><</regButton>> </div> </div> <<backend>> [[miku11-5]] <<set $inbattle = 0>> <<time 0 15>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "miku11-4" "Nah~ I'll fight him again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> [[miku11-a-battlecrud]] <<set $location = "Ariku">> <<time 0 45>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "Ken">>Did you get her? Go to the rooftop of the Sunshine Bar. I'll deal with her there. <</dialog>> <<dialog "You">>... <</dialog>> <img src="img/misc/miku/where.png" style="max-width: 70%;"> <<dialog "Ken">>Huh? You sound differ-- <</dialog>> <div class="button-row"> <<regButton "miku11-6" "Hang up and go to the Sunshine Bar">><</regButton>> </div> </div> <<backend>> [[miku11-6]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "Ken">>Huh? <</dialog>> <<dialog "You">>Huh? <</dialog>> <<dialog "Ken">>Sawada $player.name? <</dialog>> <<dialog "You">>Yamaguchi Ken... Where is the girl? <</dialog>> <<dialog "Ken">>Pfft~ Hahaha! You're not satisfied with my cousin so you're trying to fuck a whore now? <</dialog>> <<dialog "You">>... Have you gotten stronger since then? I'm about to fuck you up. <</dialog>> <<dialog "Ken">>How about you try me then? <</dialog>> <div class="button-row"> <<regButton "miku11-7" "Deck him">><</regButton>> </div> </div> <<backend>> [[miku11-7]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <img src="img/misc/miku/vs1.jpg" style="max-width: 95%;"> <<dialog "Ken">>Urk... <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "miku11-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[miku11-battlecrud]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "miku11">> <<set $enemy = { level: $stats.level, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "ken">><<set $ename = "Yamaguchi Ken">> <<set $profile = "player-profile">> <<set $pspeech = "Yeah. I'll actually kill you today.">> <<set $espeech = "It's not gonna be the same this time.">> <<goto "battle-crud2">> [[miku11-battle]] <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "city">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[miku11-win]][[miku11-lose]] <<set $dmgres = "">> <<set $location to "Ariku">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg city"></div> <div class="content-panel"> $ename staggered a bit. You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<dialog "Ken">>F-fuck... I'm not done yet. <</dialog>> <<dialog "You">>Go ahead. I'm not afraid of some war. <</dialog>> <img src="img/misc/miku/vs2.jpg" style="max-width: 60%;"> <<dialog "You">>After I'm done with you, I'm killing Naguro Haku. <</dialog>> <<dialog "Ken">>Wh-what? <</dialog>> <<dialog "Sho">>STOOOOP! <</dialog>> <<dialog "Kuroki">>Young Master! We found her. <</dialog>> <div class="button-row"> <<regButton "miku11-8" "You stop">><</regButton>> </div> </div> <<backend>> [[miku11-8]] <<set $inbattle = 0>> <<time 0 15>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "miku11-7" "Nah~ I'll fight him again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> <<set $location = "Ariku">> <<time 0 45>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "Ken">>Why would you want to kill Naguro Haku? Aren't you working with her? <</dialog>> <<dialog "You">>Huh? She kidnapped my girlfriend. <</dialog>> <<dialog "Ken">>Huh. <</dialog>> <<dialog "Sho">>We are not working with the Black Widow, Sawada $player.name. We have beef with them~ We brought Naguro Haku and Miss Miku with us. I was surprised when Kuroki Seiya-kun here started swinging at me~ I'm not much of a fighter after all, my little brother got all the fighting talent in the family~ <</dialog>> <<dialog "Kuroki">>What this chatty idiot is saying, young master, is that they saved Miku-jou from this bitch. <</dialog>> <<dialog "Haku">>Tch... <</dialog>> <<dialog "Miku">>Zzz... <</dialog>> <div class="button-row"> <<regButton "miku11-9" "Laugh">><</regButton>> </div> </div> <<backend>> [[miku11-9]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "You">>Pfft~ Hahaha! <</dialog>> <<dialog "Sho">>Eh? I-is that funny? <</dialog>> <<dialog "Ken">>... <</dialog>> <<dialog "You">>You're not the only one building forces, Ken-chan. Did you think building forces in the neighbor city is a good idea? It hasn't been a month and I already found you. I wasn't even looking. <</dialog>> <<dialog "Sho">>H-how did he find that out so quickly? <</dialog>> <<dialog "You">>If I make a move now, you'd be fucked, won't you? <</dialog>> <<dialog "Ken">>What do you want? <</dialog>> <div class="button-row"> <<regButton "miku11-10" "Continue">><</regButton>> </div> </div> <<backend>> [[miku11-10]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "You">>As quick as always... You really are cunning, Ken-chan. <</dialog>> <h1>Grab Haku by the hair.</h1> <<dialog "Haku">>F-fuck! That hurts! <</dialog>> <<dialog "You">>So... You're a venom? I assume you handle the prostitution business? Miku-chan keeps getting horny every morning. I could feel you trying your brainwashing mojo bullshit on me last time too. <</dialog>> <<dialog "Ken">><i>H-how did he know?</i> <</dialog>> <<dialog "Sho">><i>He found that out just by talking to her in a day. I had to work my butt off getting that information, you know? I really don't like dealing with this guy.</i> <</dialog>> <<dialog "Kuroki">>Heh~ <</dialog>> <<dialog "Haku">>I don't know what you're-- Mmmpphhh!! <</dialog>> <div class="button-row"> <<regButton "miku11-11" "Cover her mouth">><</regButton>> </div> </div> <<backend>> [[miku11-11]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "You">>The broker reacted weird. I definitely hit the nail in the head. You don't have to say shit anymore, Haku-chan. <</dialog>> <<dialog "Sho">>D-damn... I guess I wasn't as incognito as I thought... <</dialog>> <<dialog "You">>I assume you plan to take over her business? <</dialog>> <<dialog "Ken">>Yeah. <</dialog>> <<dialog "You">>And you can't get rid of her, right? Since the business depends on her brainwashing mojo? <</dialog>> <<dialog "Sho">>Mentalism... <</dialog>> <<dialog "Ken">>You already know everything. Stop asking questions and tell me what you want. <</dialog>> <div class="button-row"> <<regButton "miku11-12" "Tell him what you want">><</regButton>> </div> </div> <<backend>> [[miku11-12]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "You">>Miku-chan worked hard to look for a job. All I want is for this bitch to continue employing her. <</dialog>> <<dialog "Ken">>Works for me. Thanks for giving us one of your weaknesses. <</dialog>> <<dialog "You">>Pfft~ This is Miku-chan's watch. It has a recording device in it. That's how I tracked you down. It's recording as we speak. If Miku somehow disappears, you're the main culprit. <</dialog>> <<dialog "Ken">>... <</dialog>> <<dialog "You">>You can't really take Kumine over while you're behind bars now, can you? <</dialog>> <<dialog "Sho">>He's good... <</dialog>> <<dialog "Ken">>... So I employ your girlfriend, and you leave Ariku alone? <</dialog>> <<dialog "You">>The Sawada Clan leaves Ariku alone. I do whatever I want. <</dialog>> <<dialog "Ken">>Okay. Take your girlfriend and get your team out of here. <</dialog>> <div class="button-row"> <<regButton "miku11-13" "Let Haku go">><</regButton>> </div> </div> <<backend>> [[miku11-13]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <<dialog "Haku">>Hahhhh. Hahhhh. Hahhhhh... <</dialog>> <<dialog "You">>And I'll be borrowing Haku-chan from time to time~ I've already experienced her gigantic breasts, and I can't get enough anymore~ <</dialog>> <<dialog "Ken">>That's-- <</dialog>> <<dialog "You">>Stop right there, Ken-chan~ I just gave you leverage over her~ If she doesn't cooperate with you, the entirety of the Sawada Clan and your clan will go after her. Even if all the venoms of Black Widow band together, they can't stop us. <</dialog>> <<dialog "Haku">>... <</dialog>> <<dialog "You">>Besides, I still need to pay her back for this. Don't worry though, Haku-chan~ I'll be as gentle to you as I was last time~ Let's go, Seiya. <</dialog>> <<dialog "Kuroki">>Yes, young master. <</dialog>> <<dialog "Ken">>... <</dialog>> <<dialog "Sho">>I almost shit my pants... <</dialog>> <div class="button-row"> <<regButton "miku11-14" "Leave">><</regButton>> </div> </div> <<backend>> [[miku11-14]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg city"></div> <div class="content-panel"> <h1>You carry Miku on your back.</h1> <<dialog "You">>Go ahead, talk. <</dialog>> <<dialog "Kuroki">>I'm just confused, Young Master. Why let Yamaguchi Ken build his forces? <</dialog>> <<dialog "You">>Well, let me ask you. Which one would you rather take on? The schools of Kumine or Black Widow? <</dialog>> <<dialog "Kuroki">>... Probably Black Widow. They're strong but not every venom are combat prepared. Unlike the schools in Kumine. <</dialog>> <<dialog "You">>I disagree. You see, you don't have to take Kumine over. The biggest forces there are students, not gangsters. Even if you unify the schools, you won't be able to make them attack Ariku. <</dialog>> <<dialog "Kuroki">>Huh. <</dialog>> <<dialog "You">>They're protectors after all. Which is why even if you don't unify the schools, if Ken-chan attacks us, the students will defend the city. It will be a 2v1. <</dialog>> <<dialog "Kuroki">>So, Yamaguchi Ken made a mistake by taking Black Widow on? <</dialog>> <<dialog "You">>Not necessarily. I'd do the same. He worked with what he got. I got to Kumine first after all. I let him build forces in Ariku because it will guarantee that he attacks us using Black Widow. If we beat them, it would be as if he rounded up the Venoms for us. <</dialog>> <<dialog "Kuroki">>As expected of the Young Master! <</dialog>> <<dialog "You">>I'll be taking Miku to Akane. Retreat with our boys. <</dialog>> <div class="button-row"> <<regButton "miku11-15" "Go to Akane">><</regButton>> </div> </div> <<backend>> [[miku11-15]] <<set $location = "Ariku">> <<time 0 1>> <</backend>>
<div class="bg doctors-office"></div> <div class="content-panel"> <<dialog "Akane" "student">>Y-you brought another girl. <</dialog>> <<dialog "You">>Are you jealous? <</dialog>> <<dialog "Akane" "student">>A little... <</dialog>> <<dialog "You">>I promise to give you more attention from now on~ <</dialog>> <<dialog "Akane" "student">>R-really? *Blushes* <</dialog>> <<dialog "You">>Of course~ <</dialog>> <<dialog "Akane" "student">>O-okay~ What do I do with this woman? <</dialog>> <<dialog "You">>Give her the same drug you gave Shizu-sensei. <</dialog>> <<dialog "Akane" "student">>Understood~ <</dialog>> <<dialog "You">>I'll take her home right after. I just fought Yamaguchi Ken so I'm a little tired. <</dialog>> <<dialog "Akane" "student">>Y-yamaguchi!! Understood, $player.name-kun. <</dialog>> <div class="button-row"> <<regButton "miku11-16" "Go back to Miku's place">><</regButton>> </div> </div> <<backend>> [[miku11-16]] <<time 0 45>> <<set $location = "Hospital">> <</backend>>
<div class="bg miku-room"></div> <div class="content-panel"> <<dialog "Miku">>Mmm... $player.name? What happened? <</dialog>> <<dialog "You">>You collapsed at work... Haku-chan called me. Are you okay? <</dialog>> <<dialog "Miku">>Y-yes... Although, I don't remember... Gosh, that's so embarrassing... <</dialog>> <<dialog "You">>That's probably from exhaustion. Rest up okay? <</dialog>> <<dialog "Miku">>O-okay... Will you stay with me? <</dialog>> <<dialog "You">>Of course~ <</dialog>> <div class="button-row"> <<regButton "miku-room" "End">><</regButton>> </div> </div> <<backend>> [[miku11-16]] <<if $hour < 18>><<set $hour = 18>><</if>> <<time 1 25>> <<set $location = "Miku's Home">> <<set $miku.quest = 11>> <</backend>>
<<backend>><<set $relper = Math.ceil(($anzu.love/$anzu.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px lime" "8px cyan" 24>>Character Profile<</glow>></h1> <img src="img/avatars/anzu.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px #F09819" "8px #F09819">>Kamiya Anzu<</glow>></h1> <<if $anzu.love > $anzu.maxlove>><<set $anzu.love to $anzu.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>> <<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $anzu.love+" / "+$anzu.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.2;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Finish the Tekijima War Arc. <<if $player.quest >= 5>>2. Go to class before lunch break.<</if>> <<if $anzu.quest >= 2>>3. That's it for this version.<</if>> </h1> </div>
<<backend>><<set $relper = Math.ceil(($erika.love/$erika.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px lime" "8px cyan" 24>>Character Profile<</glow>></h1> <img src="img/avatars/erika.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px #c31432" "8px #c31432">>Fuji Erika<</glow>></h1> <<if $erika.love > $erika.maxlove>><<set $erika.love to $erika.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>> <<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $erika.love+" / "+$erika.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.2;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Meet Anzu at school. <<if $anzu.quest >= 2>>2. Meet them in the livingroom.<</if>> <<if $erika.quest >= 2>>3. Get her chocolates from the Convenience Store.<</if>> <<if $erika.quest >= 3>>4. Go to her room and give her the chocolates.<</if>> <<if $erika.quest >= 4>>5. Have breakfast in the dining room at 7AM the next day.<</if>> <<if $erika.quest >= 5>>6. Have dinner in the dining room at 7PM.<</if>> <<if $erika.quest >= 6>>7. Go to the living room tomorrow before 8AM.<</if>> <<if $erika.quest >= 7>>8. Watch TV in the living room on a Saturday afternoon.<</if>> <<if $erika.quest >= 8>>9. Go to the living room on a Sunday morning.<</if>> <<if $erika.quest >= 9>>10. That's it for this version.<</if>> </h1><<glow "0.5px yellow" "8px orange">>Home Schedule<</glow>> <h1>Weekdays - 6PM onwards Weekends - The entire day </h1> <a href="https://safriscoffi.com/streethero/guide/erika.php" class="button download" target="_blank" style="color: #fff; text-shadow: 0 0 5px #c31432, 0 0 10px #c31432;">More detailed guide!</a> </div>
<<backend>><<set $relper = Math.ceil(($marika.love/$marika.maxlove) * 100)>><</backend>> <h1 style="font-weight: 500;"><<glow "0.5px lime" "8px cyan" 24>>Character Profile<</glow>></h1> <img src="img/avatars/marika.png" style="max-width: 80%;"> <h1 style="font-size: 20px;"><<glow "0.5px #8E2DE2" "8px #8E2DE2">>Fuji Marika<</glow>></h1> <<if $marika.love > $marika.maxlove>><<set $marika.love to $marika.maxlove>><</if>> <h1><<glow "0.65px magenta" "10px red">>Relationship: <</glow>> <<bar $relper "Love">><</bar>><<glow "0.65px magenta" "10px red" "16">><<print $marika.love+" / "+$marika.maxlove>><</glow>><h1> <div style="text-align: left; line-height:1.2;"> <h1><<glow "0.5px yellow" "8px orange">>Guide<</glow>> 1. Meet Anzu at school. <<if $anzu.quest >= 2>>2. Meet them in the livingroom.<</if>> <<if $marika.quest >= 2>>3. That's it for this version.<</if>> </h1> </div>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Shizu">>Class~ We have another transfer student from Shibuya. Please introduce yourself. <</dialog>> <img src="img/misc/anzu-intro.jpg" style="max-width: 60%;"> <<dialog "Anzu">>Osu! The name's Kamiya Anzu. <</dialog>> <<dialog "You">>A-anzu!? <</dialog>> <<dialog "Anzu">>Hohhhh~ Found ya~ Hey, darling~ <</dialog>> <<dialog "Shizu">>D-darling!? <</dialog>> <<dialog "Haru" "student">>Wh-what!?? <</dialog>><<if $shiori.love > 0>> <<dialog "Shiori" "student">>N-no way... <</dialog>> <</if>><<dialog "Emi" "student">>... <</dialog>> <<dialog "Rio" "student">>Tch <</dialog>> <<dialog "Anzu">>Hehe~ <</dialog>> <<dialog "You">>Dammit. <</dialog>> <div class="button-row"> <<regButton "anzu1-2" "Lunch">><</regButton>> </div> </div> <<backend>> [[anzu1-2]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <img src="img/misc/anzu-intro.jpg" style="max-width: 40%;"> <<dialog "Anzu">>Hey, darlin'~ <</dialog>> <div class="button-row"> <<regButton "classroom" "Nevermind">><</regButton>> </div> </div> <<backend>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>$player.name! Who's Anzu? <</dialog>> <<dialog "You">>She's my childhood friend... <</dialog>> <<dialog "Haru" "student">>Why is she calling you darling?? <</dialog>> <<dialog "Anzu">>Because he's my darling~ <</dialog>> <<dialog "Haru" "student">>Wh-what? <</dialog>> <<dialog "You">>*Sigh* Her dad is friends with my dad, and when we were kids, our dads made a bet. If my dad loses in a card game, Anzu becomes engaged to me. My dad lost. <</dialog>> <<dialog "Haru" "student">>S-so you're her fiancee?? <</dialog>> <div class="button-row"> <<regButton "anzu1-3" "Explain">><</regButton>> </div> </div> <<backend>> <<set $hour = 12>> [[anzu1-3]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Anzu">>Yep~ <</dialog>> <<dialog "You">>NO! I challenged her dad to the same card game and I won. <</dialog>> <<dialog "Anzu">>He stormed our house then he challenged my dad because he wanted me to have a choice in my future husband~ Even beat up all my brothers to get to him. It was so romantic~ <</dialog>> <<dialog "Haru" "student">>Huh? How old were you? <</dialog>> <<dialog "You">>We were four... <</dialog>> <<dialog "Haru" "student">>And her brothers? <</dialog>> <<dialog "Anzu">>The eldest was 14~ <</dialog>> <<dialog "Haru" "student">>You beat up a 14-year-old as a 4-year-old? <</dialog>> <<dialog "Anzu">>Isn't my darling great? <</dialog>> <div class="button-row"> <<regButton "anzu1-4" "Make her stop">><</regButton>> </div> </div> <<backend>> [[anzu1-4]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Anzu. Enough. <</dialog>> <<dialog "Anzu">>... <</dialog>> <<dialog "Anzu">><i>As you wish, Young Master.</i> <</dialog>> <<dialog "Haru" "student">>Huh? <</dialog>> <<dialog "Anzu">>Pfft~ I was kidding. $player.name and I are friends. I just love making him feel uncomfortable. Nice to meet ya. Haru, right? <</dialog>> <<dialog "Haru" "student">>O-oh. Haha! Yes, nice to meet you, Kamiya-san. <</dialog>> <<dialog "Anzu">>Please, Anzu is fine~ <</dialog>> <div class="button-row"> <<regButton "anzu1-5" "Rio approaches">><</regButton>> </div> </div> <<backend>> [[anzu1-5]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Rio" "student">>Hey! New girl. Just so you know, I'm the only gyaru here. You better dye your hair black before I-- <</dialog>> <img src="img/misc/anzu-smack.png" style="max-width: 60%;"> <<dialog "You">>Damn it. <</dialog>> <<dialog "Anzu">>This fuckin' bitch... <</dialog>> <<dialog "Haru" "student">>O-oh my god... <</dialog>> <<dialog "Rio" "student">>Y-you... $player.name! Say something! <</dialog>> <div class="button-row"> <<regButton "anzu1-6" "Rio's tears well up">><</regButton>> </div> </div> <<backend>> [[anzu1-6]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>I don't know what to tell you, Rio. You kind of deserved that. <</dialog>> <<dialog "Rio" "student">>B-but! <</dialog>> <<dialog "You">>You can't just tell people to dye their hair black. It's not like you invented being a gyaru. As for you, Anzu, you've only been here for less than a day and you're already smacking people. Apologize to each other. <</dialog>> <<dialog "Anzu">><i>Seriously? Why should I? She was being a bitch.</i> <</dialog>> <<dialog "You">><i>Just do it. She's an informant.</i> <</dialog>> <<dialog "Anzu">>*Sigh* Listen. Rio, right? I'm sorry for smackin' ya. Where I come from, yellin' at people will get ya smacked. <</dialog>> <<dialog "Rio" "student">>... <</dialog>> <<dialog "Anzu">>Your tan's lookin' real weak. How about we discuss how to be a proper gyaru? <</dialog>> <<dialog "Rio" "student">>L-like totally? <</dialog>> <<dialog "Anzu">>Just call me nee-sama~ <</dialog>> <<dialog "Rio" "student">>Y-yes! Nee-sama~ I'm like... totally sorry for yelling at you earlier~ <</dialog>> <div class="button-row"> <<regButton "anzu1-7" "They leave">><</regButton>> </div> </div> <<backend>> [[anzu1-7]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>Wow... She tamed THE Rio Higuchi in less than a minute. <</dialog>> <<dialog "You">>Anzu's always been like that. <</dialog>> <<dialog "Haru" "student">>Are you sure you're not engaged to her? She seems great. <</dialog>> <<dialog "You">>What? You want me to be? <</dialog>> <<dialog "Haru" "student">>No! <</dialog>> <<dialog "You">>Ooooh~ Why not? <</dialog>> <<dialog "Haru" "student">>... <</dialog>> <div class="button-row"> <<regButton "anzu1-obj1" "Go home with Anzu">><</regButton>> </div> </div> <<backend>> [[anzu1-obj1]] <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/obj1.mp4" type="video/mp4">'>> </video> <<dialog "You">>So... Orie is here too. <</dialog>> <<dialog "Orie">>*Gkk* *Slurp* We were hooking hor you youngk mashter~ *Gkk* <</dialog>> <<dialog "Anzu">>You suddenly left. <</dialog>> <div class="button-row"> <<regButton "anzu1-obj2" "Orie keeps sucking">><</regButton>> </div> </div> <<backend>> [[anzu1-obj2]] <<set $hour = 17>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/obj2.mp4" type="video/mp4">'>> </video> <<dialog "You">>I kind of have a hit on me in Shibuya. <</dialog>> <<dialog "Orie">>*Gkk* *Gkk* Why did you haff to fuckk hat bitck Ashugi. You had us~ <</dialog>> <<dialog "Anzu">>I knew something was up with that bitch. I didn't think she'd be the princess of Yamaguchi. <</dialog>> <<dialog "Orie">>*Gkk* *Gkk* She'sh using her mom'sh maiden name... <</dialog>> <<dialog "You">>Yep. I knew her as Sawatari Azuki. <</dialog>> <div class="button-row"> <<regButton "anzu1-dbj" "Anzu joins the blowjob">><</regButton>> </div> </div> <<backend>> [[anzu1-dbj]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/dbj'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "You">>Why are you here, by the way? <</dialog>> <<dialog "Orie">>*Slurp* Erika-jou and Aunt Marika moved here. I bet you haven't met them yet though. *Slurp* <</dialog>> <<dialog "Anzu">>*Slurp* We went with them to make sure Erika-jou doesn't get bullied *Slurp* <</dialog>> <<dialog "Orie">>*Gkk* *Gkk* She'll go to Aoba too but she'sh a year under you. I'm her clashmate. <</dialog>> <<dialog "Anzu">>*Slurp* I'm a year older than her sho I got into your clashh~ <</dialog>> <<dialog "You">>Damn. Those two are here, huh? <</dialog>> <<dialog "Anzu">>Hey~ Darling~ I'm gonna fuck you now, okay? <</dialog>> <<dialog "You">>Go ahead. <</dialog>> <div class="button-row"> <<regButton "anzu1-dbj" "Keep sucking">><</regButton>> <<regButton "anzu1-acow1" "Anzu Cowgirl">><</regButton>> </div> </div> <<backend>> [[anzu1-acow1]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/acowa.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahhh~ I haven't had this dick for months~ <</dialog>> <<dialog "Orie">>Hurry up~ I want it too~ <</dialog>> <<dialog "You">>This brings me back. <</dialog>> <div class="button-row"> <<regButton "anzu1-acow2" "Harder">><</regButton>> </div> </div> <<backend>> [[anzu1-acow2]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/acowb'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahhh~ Ahhh~ I've missed this dick~ <</dialog>> <<dialog "Orie">>Hurry up~ <</dialog>> <div class="button-row"> <<regButton "anzu1-acow2" "Keep going">><</regButton>> <<regButton "anzu1-acow3" "Harder">><</regButton>> </div> </div> <<backend>> [[anzu1-acow3]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/acowc.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahhh~ Ahhh~ Ahh~ I'm gonna cuuum~ <</dialog>> <<dialog "Orie">>*Slurp* I haven't kissed anyone else while you were gone, darling~ <</dialog>> <div class="button-row"> <<regButton "anzu1-cum1" "Cum Inside">><</regButton>> </div> </div> <<backend>> [[anzu1-cum1]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum1.mp4" type="video/mp4">'>> </video> <<dialog "You">>Ahh~ My bad, Anzu. <</dialog>> <<dialog "Anzu">>Ahhhhhh~ You came inside~ <</dialog>> <<dialog "Orie">>*Slurp* Hehe~ It'll be fine~ She's on the pill~ <</dialog>> <div class="button-row"> <<regButton "anzu1-cum2" "She pulls out">><</regButton>> </div> </div> <<backend>> [[anzu1-cum2]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum2.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Mmm~ It's dripping~ Maybe I should get off the pill~ <</dialog>> <<dialog "You">>Then I'll stop fucking you. <</dialog>> <<dialog "Anzu">>Aww~ <</dialog>> <<dialog "Orie">>My turn~ <</dialog>> <div class="button-row"> <<regButton "anzu1-odog1" "Orie Doggy">><</regButton>> </div> </div> <<backend>> [[anzu1-odog1]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odoga.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhhh~ Ahh~ <</dialog>> <<dialog "Anzu">>It's really been a while since she came~ I bet it feels so good~ <</dialog>> <<dialog "You">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "anzu1-odog2" "Harder">><</regButton>> </div> </div> <<backend>> [[anzu1-odog2]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odogb'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhhhhhhhh~ Young masterrr~ <</dialog>> <<dialog "Anzu">>Yeah, fuck her~ <</dialog>> <div class="button-row"> <<regButton "anzu1-odog2" "Harder">><</regButton>> <<regButton "anzu1-odog3" "Make her cum">><</regButton>> </div> </div> <<backend>> [[anzu1-odog3]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odogc.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhh~ <</dialog>> <<dialog "Anzu">>She totally came~ <</dialog>> <div class="button-row"> <<regButton "anzu1-opanties" "Take Orie's panties off">><</regButton>> </div> </div> <<backend>> [[anzu1-opanties]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/opanties.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Her again?? <</dialog>> <<dialog "Orie">>Hehe~ He already came using your pussy~ <</dialog>> <div class="button-row"> <<regButton "anzu1-omis1" "Penetrate">><</regButton>> </div> </div> <<backend>> [[anzu1-omis1]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/omisa.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhhhhhhhh~ <</dialog>> <<dialog "Anzu">>Damn~ <</dialog>> <div class="button-row"> <<regButton "anzu1-omis2" "Let her move">><</regButton>> </div> </div> <<backend>> [[anzu1-omis2]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/omisb.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Hahhh~ Come on, young master~ Fuck me hard already~ <</dialog>> <<dialog "Anzu">>You gotta work for it~ <</dialog>> <div class="button-row"> <<regButton "anzu1-omis3" "Fuck her">><</regButton>> </div> </div> <<backend>> [[anzu1-omis3]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/omisc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhh~ Ahhhh~ Cum for me~ <</dialog>> <<dialog "You">>I'm gonna cum in your mouth~ <</dialog>> <<dialog "Anzu">>Ahh~ I want it too~ <</dialog>> <div class="button-row"> <<regButton "anzu1-cum3" "Cum in her mouth">><</regButton>> </div> </div> <<backend>> [[anzu1-cum3]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum3.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhh~ You still came a lot~ <</dialog>> <<dialog "You">>Well, it felt good. <</dialog>> <div class="button-row"> <<regButton "anzu1-cum4" "You missed">><</regButton>> </div> </div> <<backend>> [[anzu1-cum4]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum4.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Pfft~ You missed~ <</dialog>> <<dialog "You">>I couldn't focus. Orie's too tight~ <</dialog>> <<dialog "Orie">>Hehe~ <</dialog>> <<dialog "Anzu">>My turn!!! Don't miss this time, young master~ <</dialog>> <div class="button-row"> <<regButton "anzu1-amis1" "Fuck Anzu">><</regButton>> </div> </div> <<backend>> [[anzu1-amis1]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/amisa.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Mmmm~ Let me move on my own too~ <</dialog>> <<dialog "Orie">>Copycat~ <</dialog>> <div class="button-row"> <<regButton "anzu1-amis2" "Harder">><</regButton>> </div> </div> <<backend>> [[anzu1-amis2]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/amisb.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahh~ Ahh~ Ahhhh~ <</dialog>> <<dialog "Orie">>You're too good at this, nee-san~ <</dialog>> <div class="button-row"> <<regButton "anzu1-amis3" "Take the lead">><</regButton>> </div> </div> <<backend>> [[anzu1-amis3]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/amisc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahhhh~ Cum for meeee~ <</dialog>> <<dialog "You">>Open your mouth!! <</dialog>> <div class="button-row"> <<regButton "anzu1-cum5" "Cum">><</regButton>> </div> </div> <<backend>> [[anzu1-cum5]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum5.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Mmm~ Delicious~ <</dialog>> <<dialog "You">>Clean me up, Orie. <</dialog>> <div class="button-row"> <<regButton "anzu1-obj3" "Orie sucks your dick">><</regButton>> </div> </div> <<backend>> [[anzu1-obj3]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/obj3.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Mmm~ You're right~ *Gkkk* It's delicious~ <</dialog>> <div class="button-row"> <<regButton "anzu1-cum6" "Anzu spits out the cum">><</regButton>> </div> </div> <<backend>> [[anzu1-cum6]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum6.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>You still came a lot. You came three times now. <</dialog>> <<dialog "Orie">>What did you expect from the young master? <</dialog>> <div class="button-row"> <<regButton "anzu1-end" "Continue">><</regButton>> </div> </div> <<backend>> [[anzu1-end]] <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/end.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhh~ We missed you, young master. <</dialog>> <<dialog "Anzu">>Keep using our bodies again~ Like you usually do~ <</dialog>> <<dialog "You">>Sure~ I need to go out to meet Erika and Aunt Marika. Stay here, okay? <</dialog>> <div class="button-row"> <<regButton "bedroom" "End">><</regButton>> </div> </div> <<backend>> <<set $anzu.quest = 2>> <<time 0 1>> <<set $profile to "anzu-profile">> <</backend>>
<div class="bg kitchen"></div> <div class="content-panel"> <<dialog "You">>I should cook something. <</dialog>> <div class="button-row"> <<imgButton "living" "img/neon-buttons/living.png">> <<imgButton "corridor" "img/neon-buttons/corridor.png">> <<imgButton "dining" "img/neon-buttons/dining.png">> </div> </div> <<backend>> <<set $profile = "player-profile">> <<set $hidenav = 0>> <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <<dialog "You">>I'm getting hungry. <</dialog>> <div class="button-row"> <<if $erika.quest == 4 && $hour == 7 && $erika.day < $dayIndex>><<regButton "erika2a-1" "Have breakfast">><</regButton>><</if>> <<if $erika.quest == 5 && $hour == 19>><<regButton "erika2b-1" "Have dinner">><</regButton>><</if>> </div> <div class="button-row"> <<imgButton "living" "img/neon-buttons/living.png">> <<imgButton "corridor" "img/neon-buttons/corridor.png">> <<imgButton "kitchen" "img/neon-buttons/kitchen.png">> </div> </div> <<backend>> <<set $profile = "player-profile">> <<set $hidenav = 0>> <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <<dialog "You">>This house has so many rooms. <</dialog>> <div class="button-row"> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<if $erika.quest >= 2>> <<imgButton "anzu-room" "img/neon-buttons/anzu-room.png">> <<imgButton "erika-room" "img/neon-buttons/erika-room.png">> <<imgButton "marika-room" "img/neon-buttons/marika-room.png">> <</if>> <<imgButton "living" "img/neon-buttons/living.png">> </div> </div> <<backend>> <<set $profile = "player-profile">> <<set $hidenav = 0>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "You">>Home sweet home~ <</dialog>> <div class="button-row"><<if $anzu.quest == 2 && $erika.quest == 1>><<regButton "fuji1-1" "Your aunt and cousin are here">><</regButton>><</if>> <<if $erika.quest == 6 && $hour == 7>><<regButton "erika2c-1" "Erika is trying to seduce you">><</regButton>><</if>> <<if $erika.quest == 8 && $day == "Sunday" && $daystate == "Morning">><<regButton "erika4-1" "You bump into Marika and Hideo">><</regButton>><</if>> <<if $erika.quest == 7 && $daystate == "Afternoon" && $day == "Saturday">><<regButton "erika3-1" "Watch TV">><</regButton>><</if>></div> <div class="button-row"> <<imgButton "home" "img/neon-buttons/frontyard.jpg">> <<imgButton "corridor" "img/neon-buttons/corridor.png">> <<imgButton "dining" "img/neon-buttons/dining.png">> <<imgButton "kitchen" "img/neon-buttons/kitchen.png">> </div> </div> <<backend>> <<set $profile = "player-profile">> <<set $hidenav = 0>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <div class="button-row"> <<regButton "corridor" "Leave">><</regButton>> </div> </div> <<backend>> <<set $profile = "anzu-profile">> <<set $location = "Gal's Room">> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<if $hour >= 18 || $day == 'Saturday' || $day == 'Sunday'>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/room.mp4" type="video/mp4">'>> </video> <<dialog "You">>She's studying. <</dialog>> <<else>> <<dialog "You">>She's not here. <</dialog>> <</if>> <div class="button-row"> <<if $erika.quest == 3 && ($hour >= 18 || $day == 'Saturday' || $day == 'Sunday')>> <<regButton "erika1-1" "Give her the chocolates">><</regButton>> <</if>> <<regButton "corridor" "Leave">><</regButton>> </div> </div> <<backend>> [[erika1-1]] <<set $profile = "erika-profile">> <<set $location = "Erika's Room">> <</backend>>
<div class="bg marika-room"></div> <div class="content-panel"> <div class="button-row"> <<regButton "corridor" "Leave">><</regButton>> </div> </div> <<backend>> <<set $profile = "marika-profile">> <<set $location = "Marika's Room">> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Uncle">>$player.name! You're here. <</dialog>> <<dialog "Marika">>Ohh~ $player.name! Long time no see~ <</dialog>> <<dialog "Erika">>... <</dialog>> <<dialog "You">>Hey, Aunt Marika. Hey, Erika... <</dialog>> <<dialog "Marika">>How are you? <</dialog>> <<dialog "Erika">>Hmph... <</dialog>> <div class="button-row"> <<regButton "fuji1-2" "Move on">><</regButton>> </div> </div> <<backend>> <<set $hidenav = 1>> [[fuji1-2]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "You">>I'm doing great! <</dialog>> <<dialog "Uncle">>You don't seem surprised that they're here. <</dialog>> <<dialog "You">>I met Anzu and Orie already. They told me about the arrangement. <</dialog>> <<dialog "Marika">>*Sigh* I hope I'm not intruding. I can't stand my stupid husband right now, so I'm living here. <</dialog>> <<dialog "Uncle">>I can't believe you're just ditching Big Bro Kaku like that. You're really cold, you know, big sis? <</dialog>> <<dialog "Erika">>I'm gonna go to my room... <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "fuji1-3" "Erika leaves">><</regButton>> </div> </div> <<backend>> [[fuji1-3]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Marika">>Seriously, that kid... <</dialog>> <<dialog "Uncle">>Cut her some slack, big sis. You did just separate her from her dad. <</dialog>> <<dialog "Marika">>What do you mean? Moving here was her idea. <</dialog>> <<dialog "You">>Is Uncle Kaku still a gangster? <</dialog>> <<dialog "Marika">>*Sigh* Yes. Big Bro Isao told him he doesn't need to be in the gang, but he keeps insisting. <</dialog>> <<dialog "Uncle">>No offense, big sis, but Big Bro Kaku is a little... It's just... <</dialog>> <<dialog "Marika">>Spit it out, Hide-chan. <</dialog>> <<dialog "Uncle">>Let's just say his brain is not gifted enough to be an officer in the gang. Big Bro Isao just can't afford to give him a seat. <</dialog>> <<dialog "You">>Even if dad did, Erika would still want to move here. That girl hates gangsters. I guess she wanted to move to Kumine because gang activity is weak here. <</dialog>> <div class="button-row"> <<regButton "fuji1-4" "Continue">><</regButton>> </div> </div> <<backend>> [[fuji1-4]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Uncle">>Did you know that $player.name is living with me right now? <</dialog>> <<dialog "Marika">>No. We thought he was in Shibuya. Big Bro Isao is being secretive about where $player.name is. <</dialog>> <<dialog "You">>I guess that's why Erika reacted like that. When she saw me here, she knew that the clan is about to make their move here. <</dialog>> <<dialog "Marika">>Seriously. You boys and your gang. Big Bro Isao could have been the president right now if he just left the clan. <</dialog>> <<dialog "Uncle">>Still the biggest Isao fan girl... <</dialog>> <<dialog "Marika">>$player.name-kun. Can you talk to Erika? You were so close as kids. I'm sure she'll listen to you. <</dialog>> <<dialog "You">><i>I don't know about that...</i> <</dialog>> <<dialog "Uncle">>But then he turned out into a giant asshole~ Erika-chan probably hates his guts~ <</dialog>> <<dialog "You">>Why don't you talk to her then, Hide-chan? <</dialog>> <<dialog "Uncle">>H-hide-chan. Come here, you little shit. <</dialog>> <h1>He starts chasing you and you start bolting.</h1> <<dialog "You">>I'll talk to her after Uncle tires out, Aunt Marika! <i>That girl loves chocolates. I should get her one from the convenience store.</i> <</dialog>> <<dialog "Uncle">>Let me hit you once!! <</dialog>> <<dialog "Marika">>Boys... <</dialog>> <div class="button-row"> <<regButton "alley" "End">><</regButton>> </div> </div> <<backend>> <<set $marika.quest = 2>> <<set $erika.quest = 2>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<if $player.money >= 5>><<dialog "You">>These are her favorite. <</dialog>><<else>><<dialog "You">>Damn. $5? Should I beat up some thugs in the park? <</dialog>><</if>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<backend>> <<if $player.money >= 5>> <<set $player.money -= 5>> <<set $erika.quest = 3>> <</if>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "You">>Erika? <</dialog>> <<dialog "Erika">>What are you doing in my room!? GET OUT! <</dialog>> <<dialog "You">>W-wait! Wait! I got you some chocolates. <</dialog>> <<dialog "Erika">>Ch-chocolates? Y-y-y-you think I'm a kid? Heh. Get out, $player.name. <</dialog>> <<dialog "You">>I got Twix. <</dialog>> <<dialog "Erika">>Urk. Fine. What do you want? <</dialog>> <div class="button-row"> <<regButton "erika1-2" "Ask if she's upset">><</regButton>> </div> </div> <<backend>> [[erika1-2]] <<set $profile = "erika-profile">> <<set $hidenav = 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "You">>Are you still mad at me? <</dialog>> <<dialog "Erika">>Hmph. <</dialog>> <<dialog "You">>Is it because I beat up your boyfriends? <</dialog>> <<dialog "Erika">>Y-YOU DID? What the fuck!? <</dialog>> <<dialog "You">>J-just the bad ones. <</dialog>> <<dialog "Erika">>It all makes sense why I kept getting broken up with now. <</dialog>> <div class="button-row"> <<regButton "erika1-3" "It's not the boyfriends">><</regButton>> </div> </div> <<backend>> [[erika1-3]] <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "You">>If it's not that, then why are you mad at me? <</dialog>> <<dialog "Erika">>What gave you the impression I was mad at you? <</dialog>> <<dialog "You">>Well... We used to be really close, you know? But then you started being cold towards me. You didn't even say hello when I came to greet you and Aunt Marika. <</dialog>> <<dialog "Erika">>... <</dialog>> <<dialog "You">>Can you tell me what's wrong? <</dialog>> <div class="button-row"> <<regButton "erika1-4" "She denies">><</regButton>> </div> </div> <<backend>> [[erika1-4]] <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "Erika">>Nothing's wrong. It's normal for people to drift apart. <</dialog>> <<dialog "You">>That doesn't explain why you've been so cold to me. Is it because I became a gangster? You hate gangsters. <</dialog>> <<dialog "Erika">>Huh? I love gangsters. Specially Uncle Isao. <</dialog>> <<dialog "You">>What? Then why did you ask to move here? <</dialog>> <<dialog "Erika">>Because I hate my dad, not gangsters. <</dialog>> <<dialog "You">>But you always seem annoyed when dad's men approach you. <</dialog>> <<dialog "Erika">>Because those guys aren't cool. They should be ashamed calling themselves gangsters. <</dialog>> <<dialog "You">><i>Damn. She set dad as the standard. That's a pretty high standard.</i> <</dialog>> <div class="button-row"> <<regButton "erika1-5" "Then why are you being cold?">><</regButton>> </div> </div> <<backend>> [[erika1-5]] <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "You">>Is it because I'm not cool enough too? <</dialog>> <<dialog "Erika">>NO! <</dialog>> <<dialog "You">>Eh? <</dialog>> <<dialog "Erika">>I-I mean... You're Uncle Isao's son and you're just as strong as Uncle Hide. <</dialog>> <<dialog "You">>Then why? <</dialog>> <<dialog "Erika">>Umm... I just feel awkward around you since we're not close anymore. <</dialog>> <div class="button-row"> <<regButton "erika1-6" "I want us to be close again">><</regButton>> </div> </div> <<backend>> [[erika1-6]] <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "Erika">>H-huh? W-w-w-w-w-why? <</dialog>> <<dialog "You">>I've been alone in this house for a month. I kind of need a friend, you know? <</dialog>> <<dialog "Erika">>Th-then go bother Anzu. Orie's mine, by the way. <</dialog>> <<dialog "You">>Don't be like that. Come on~ Don't you miss playing with me? <</dialog>> <div class="button-row"> <<regButton "erika1-7" "She teases you">><</regButton>> </div> </div> <<backend>> [[erika1-7]] <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "Erika">>Ehhhhh? I see how it is. <</dialog>> <<dialog "You">>What do you mean? <</dialog>> <<dialog "Erika">>You're a creep. <</dialog>> <<dialog "You">>What? Why am I suddenly a creep? <</dialog>> <<dialog "Erika">>You want to play with your adult cousin? That's so creepy. <</dialog>> <<dialog "You">>What? No. You know I didn't mean it like that. <</dialog>> <<dialog "Erika">>Gross~ Get out of my room, creep. <</dialog>> <<dialog "You">>What the fuck is wrong wi-- <</dialog>> <<dialog "Erika">>MOOOOOOM! <</dialog>> <<dialog "Marika">>Yes, deeear? I'm in the kitchen! What do you need!? <</dialog>> <<dialog "You">>Fine! Fine! Fine! I'm leaving. <</dialog>> <<dialog "Erika">>Heh. That's what I thought. Bye, creep. <</dialog>> <div class="button-row"> <<regButton "erika1-8" "Leave">><</regButton>> </div> </div> <<backend>> [[erika1-8]] <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <<dialog "You">>She turned into such a bitch. <</dialog>> <div class="button-row"> <<regButton "erika1-9" "Meanwhile...">><</regButton>> </div> </div> <<backend>> [[erika1-9]] <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <<dialog "Erika">>... <</dialog>> <<dialog "Erika">>HAAAAAHHHH! Th-that was bad. He still knows what chocolate I like. No. No. Nooooo! He can never find out. He can never find out that... that... that I masturbated while thinking about him once! Gosh, this is so humiliating. I swear to god, Sawada $player.name. I will get back at you. <</dialog>> <div class="button-row"> <<regButton "corridor" "End">><</regButton>> </div> </div> <<backend>> <<set $erika.quest = 4>> <<set $erika.day = $dayIndex>> <<set $hidenav = 0>> <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <<dialog "You">>I'm gonna have a big breakfast today~ <</dialog>> <<dialog "Erika">><i>He's here! I'll lay down on the couch and flash him my panties. Hehe~ I'm going to make you masturbate while thinking about me then catch you in the act.</i> <</dialog>> <div class="button-row"> <<regButton "erika2a-2" "You notice her">><</regButton>> </div> </div> <<backend>> [[erika2a-2]] <<set $profile = "erika-profile">> <<set $hidenav = 1>> <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasea1.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Geez. I know we're cousins but isn't she too comfortable?</i> <</dialog>> <<dialog "Erika">><i>He noticed me!</i> <</dialog>> <<dialog "You">><i>D-do I tell her? Or would that be awkward?</i> <</dialog>> <<dialog "Erika">><i>He's just staring...</i> <</dialog>> <div class="button-row"> <<regButton "erika2a-3" "She calls you out">><</regButton>> </div> </div> <<backend>> [[erika2a-3]] <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasea2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>What are you looking at? <</dialog>> <<dialog "You">>Huh? A-ah. The uniform looks great on you. <</dialog>> <<dialog "Erika">>What? Weirdo. <</dialog>> <<dialog "You">>M-my bad. I'm just gonna leave now. <i>I guess I'll be having Convenience Store for breakfast.</i> <</dialog>> <<dialog "Erika">><i>F-fuck! He's just leaving? I need to be more aggresive.</i> <</dialog>> <div class="button-row"> <<regButton "home" "Leave">><</regButton>> </div> </div> <<backend>> <<set $erika.quest = 5>> <<set $hidenav = 0>> <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <<dialog "You">>Hahh~ Finally home. I'm starving. <</dialog>> <<dialog "Erika">><i>There he is. Let's give it another try.</i> <</dialog>> <div class="button-row"> <<regButton "erika2b-2" "You notice her again">><</regButton>> </div> </div> <<backend>> [[erika2b-2]] <<set $profile = "erika-profile">> <<set $hidenav = 1>> <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teaseb1.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Why do you keep looking at me? <</dialog>> <<dialog "You">>H-huh? I'm not. <</dialog>> <div class="button-row"> <<regButton "erika2b-3" "She approaches you">><</regButton>> </div> </div> <<backend>> [[erika2b-3]] <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teaseb2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Where were you looking? You've been staring since this morning. I'm not wearing my uniform this time. <</dialog>> <<dialog "You">>Nowhere. I'm not staring. <</dialog>> <div class="button-row"> <<regButton "erika2b-4" "She teases you">><</regButton>> </div> </div> <<backend>> [[erika2b-4]] <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teaseb3.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Don't tell me... You're perving at me? <</dialog>> <<dialog "You">>Jesus, Erika. You're my cousin. <</dialog>> <<dialog "Erika">>Tch. <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Erika">><i>Shit! I let my annoyance show.</i> <</dialog>> <<dialog "Erika">>Stop staring at me, creep! <</dialog>> <div class="button-row"> <<regButton "erika2b-5" "She storms off">><</regButton>> </div> </div> <<backend>> [[erika2b-5]] <</backend>>
<div class="bg dining"></div> <div class="content-panel"> <<dialog "You">>... The fuck was her problem? <</dialog>> <<dialog "Erika">><i>Damn... I lost my cool there. Maybe I should purposely seduce him?</i> <</dialog>> <div class="button-row"> <<regButton "dining" "End">><</regButton>> </div> </div> <<backend>> <<set $erika.quest = 6>> <<set $erika.day = $dayIndex>> <<set $hidenav = 0>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasec1.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Hey, $player.name. <</dialog>> <<dialog "You">>Wh-what are you doing? <</dialog>> <div class="button-row"> <<regButton "erika2c-2" "She complains">><</regButton>> </div> </div> <<backend>> [[erika2c-2]] <<set $profile = "erika-profile">> <<set $hidenav = 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasec2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Fanning myself. It's so hot in Kumine. <</dialog>> <<dialog "You">>I see that... But why are you using your skirt? I can see your underwear, you know? <</dialog>> <<dialog "Erika">>Then stop looking~ <</dialog>> <div class="button-row"> <<regButton "erika2c-3" "Continue">><</regButton>> </div> </div> <<backend>> [[erika2c-3]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasec3.mp4" type="video/mp4">'>> </video> <<dialog "You">>Uhm... Okay? Man, I'm hungry. <</dialog>> <h1>You leave.</h1> <<dialog "Erika">>Ugh... <</dialog>> <div class="button-row"> <<regButton "erika2d-1" "Continue">><</regButton>> </div> </div> <<backend>> [[erika2d-1]] <</backend>>
<div class="bg kitchen"></div> <div class="content-panel"> <<dialog "You">>Damn. I spilled some peanut butter. Where's the rag? <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teased1.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Where are the bowls~ <</dialog>> <<dialog "You">>Wh-wha? <</dialog>> <div class="button-row"> <<regButton "erika2d-2" "You look up and her crotch is pointed at your face">><</regButton>> </div> </div> <<backend>> [[erika2d-2]] <<time 0 5>> <</backend>>
<div class="bg kitchen"></div> <div class="content-panel"> <<dialog "You">><i>Woah.</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teased2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Wait a minuuute~ Are you peeking up my skirt? <</dialog>> <<dialog "You">>What? I was literally here first, wiping peanut butter off the floor. <</dialog>> <<dialog "Erika">>But did you see? <</dialog>> <<dialog "You">>W-well... <</dialog>> <<dialog "Erika">>Pervert~ <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "You">>Whatever. I'm going out. Fuck. My wallet's upstairs. <</dialog>> <div class="button-row"> <<regButton "erika2e-1" "You take your wallet and leave the room">><</regButton>> </div> </div> <<backend>> [[erika2e-1]] <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <<dialog "Erika">>$player.name~ <</dialog>> <<dialog "You">>Huh? <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasee1.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>I have something to show you~ <</dialog>> <<dialog "You">>What? What is it? And why are you crawling on the floor? <</dialog>> <div class="button-row"> <<regButton "erika2e-2" "She crawls to a chair">><</regButton>> </div> </div> <<backend>> [[erika2e-2]] <<time 0 5>> <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasee2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>I noticed you've been staring at these recently~ <</dialog>> <<dialog "You">>Dude. You've been laying around the house with your legs spread wide open. I get a bit stunned when I see you like that, but I'm not staring. <</dialog>> <<dialog "Erika">>You don't have to deny it~ <</dialog>> <<dialog "You">>What? <</dialog>> <div class="button-row"> <<regButton "erika2e-3" "She's desperate">><</regButton>> </div> </div> <<backend>> [[erika2e-3]] <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <<dialog "Erika">>You perving on me is a bit uncomfortable~ Why don't you go to your room and jerk off so you're not as horny~ Like this~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasee3.mp4" type="video/mp4">'>> </video> <<dialog "You">>What the fuck am I looking at? <</dialog>> <<dialog "Erika">>Do you need something to look at while you do it? <</dialog>> <div class="button-row"> <<regButton "erika2e-4" "She tells you to follow her">><</regButton>> </div> </div> <<backend>> [[erika2e-4]] <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <<dialog "Erika">>Follow me~ I'll show you my panties while you jerk off~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasee4.mp4" type="video/mp4">'>> </video> <<dialog "You">>... I'm not dealing with this shit. I have my wallet, my phone. Uhhh that's everything I need. I'm going out. <</dialog>> <div class="button-row"> <<regButton "erika2e-5" "5 minutes later">><</regButton>> </div> </div> <<backend>> [[erika2e-5]] <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Erika">>He's not coming, is he? That jerk! Hmmmmmm. Should I take things into my own hands? <</dialog>> <div class="button-row"> <<regButton "alley" "End">><</regButton>> </div> </div> <<backend>> <<time 0 5>> <<set $erika.quest = 7>> <<set $erika.day = $dayIndex>> <<set $hidenav = 0>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "You">>Finally~ Some time to relax~ <</dialog>> <<dialog "Erika">><i>He's here!</i> <</dialog>> <div class="button-row"> <<regButton "erika3-2" "Erika joins you">><</regButton>> </div> </div> <<backend>> [[erika3-2]] <<set $profile = "erika-profile">> <<set $hidenav = 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Erika">>What are you watching? <</dialog>> <<dialog "You">>Just whatever's on. <</dialog>> <<dialog "Erika">>Okay~ Don't mind me, I'm just going to scroll on my phone. <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef1.mp4" type="video/mp4">'>> </video> <div class="button-row"> <<regButton "erika3-3" "She spreads her legs">><</regButton>> </div> </div> <<backend>> [[erika3-3]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Erika">><i>Here's the first tease~</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef2.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>There she goes. She's been acting weird last time too. Damn. It's actually making me horny this time.</i> <</dialog>> <div class="button-row"> <<regButton "erika3-4" "She catches you staring">><</regButton>> </div> </div> <<backend>> [[erika3-4]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Erika">><i>Gotcha~</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef3.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>What are you staring at? <</dialog>> <<dialog "You">>Your panties. Can you not randomly spread your legs? It's a little weird. <</dialog>> <<dialog "Erika">>Urk... <</dialog>> <<dialog "Erika">><i>Who would have thought he'd go with such a brazen counterattack?</i> <</dialog>> <div class="button-row"> <<regButton "erika3-5" "Erika laughs it off">><</regButton>> </div> </div> <<backend>> [[erika3-5]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef4.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Haha~ It's because I'm comfortable around you. Like you said, we used to be close. <</dialog>> <<dialog "You">>Be honest. You're doing this on purpose, right? You've been acting weird. You even tried to make me masturbate while you watch last time. Is this some kind of a project for biology or something? <</dialog>> <<dialog "Erika">>Wh-what? No. I was just trying to be a good cousin. <</dialog>> <<dialog "You">>... I don't buy it but whatever. <</dialog>> <div class="button-row"> <<regButton "erika3-6" "Continue">><</regButton>> </div> </div> <<backend>> [[erika3-6]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Erika">>Okay~ I'm just going to turn around so you don't see~ <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef5.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>I can still see...</i> <</dialog>> <div class="button-row"> <<regButton "erika3-7" "She notices you">><</regButton>> </div> </div> <<backend>> [[erika3-7]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef6.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Stop staring~ <</dialog>> <<dialog "You">>Fine. <</dialog>> <div class="button-row"> <<regButton "erika3-8" "Continue watching TV">><</regButton>> </div> </div> <<backend>> [[erika3-8]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <h1>Five minutes go by...</h1> <<dialog "Erika">><i>He really did stop staring... What do I do?</i> <</dialog>> <div class="button-row"> <<regButton "erika3-9" "She suddenly gasps loudly">><</regButton>> </div> </div> <<backend>> [[erika3-9]] <<time 0 5>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "You">>Huh? <</dialog>> <<dialog "Erika">><i>Now!</i> <</dialog>> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef7.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Hey, you're still staring. <</dialog>> <<dialog "You">>That's because you gasped. <</dialog>> <div class="button-row"> <<regButton "erika3-10" "She teases you further">><</regButton>> </div> </div> <<backend>> [[erika3-10]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef8.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>I'm feeling generous~ You can look as much as you want~ <</dialog>> <<dialog "You">>Huh? <</dialog>> <div class="button-row"> <<regButton "erika3-11" "She gets comfortable">><</regButton>> </div> </div> <<backend>> [[erika3-11]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef9.mp4" type="video/mp4">'>> </video> <<dialog "Erika">><i>Get hard for me, $player.name~ After that, I'll blue ball you and catch you masturbating while thinking of me~</i> <</dialog>> <<dialog "You">><i>F-fuck... Why am I extra horny today?</i> <</dialog>> <div class="button-row"> <<regButton "erika3-12" "You get hard">><</regButton>> </div> </div> <<backend>> [[erika3-12]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef10.mp4" type="video/mp4">'>> </video> <<dialog "Erika">><i>He's hard!</i> <</dialog>> <<dialog "You">><i>Fuck. She saw it.</i> <</dialog>> <<dialog "Erika">>Ehhhh? Are you hard right now? <</dialog>> <<dialog "You">>I-I'm a guy too. You keep flashing me your panties. How can I not be? <</dialog>> <<dialog "Erika">>Let me give you a hand then~ <</dialog>> <<dialog "You">>What? <</dialog>> <div class="button-row"> <<regButton "erika3-13" "She grabs your dick">><</regButton>> </div> </div> <<backend>> [[erika3-13]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef11.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>You're really hard, $player.name. <</dialog>> <<dialog "You">>Th-this is weird... Is this really happening? <</dialog>> <<dialog "Erika">><i>Time to blue ball you~ I'll barge in your room with a camera while you jerk off~</i> <</dialog>> <<dialog "Erika">>Nope~ Not happening~ Have fun with that~ <</dialog>> <<dialog "You">>Wh-what? <</dialog>> <div class="button-row"> <<regButton "erika3-14" "She lets go">><</regButton>> </div> </div> <<backend>> [[erika3-14]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/tease/teasef12.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Pfft~ <</dialog>> <<dialog "You">><i>Damn. I guess I'm gonna have Orie and Anzu take care of this for me.</i> <</dialog>> <div class="button-row"> <<regButton "erika3-15" "Fuck the gals">><</regButton>> </div> </div> <<backend>> [[erika3-15]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odoga.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhhh~ Ahh~ <</dialog>> <<dialog "Anzu">>Lady Erika did what? <</dialog>> <<dialog "You">>For some reason... Ahhh~ She keeps trying to seduce me. <</dialog>> <div class="button-row"> <<regButton "erika3-16" "Harder">><</regButton>> </div> </div> <<backend>> [[erika3-16]] <<time 0 15>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odogb1.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhhh~ I~ Ahhhh~ Overheard her~ Ahhh~ Saying she wants tooo~ Ahhhh~ Get back at youuu~ <</dialog>> <<dialog "You">>For what? <</dialog>> <<dialog "Anzu">>Ohhhh! Pfft~ I remember now. <</dialog>> <div class="button-row"> <<regButton "erika3-17" "Anzu explains">><</regButton>> </div> </div> <<backend>> [[erika3-17]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odogb2.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>We caught her masturbating while thinking of you once. I think she's trying to catch you masturbating too. <</dialog>> <<dialog "Orie">>Ahhh~ Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>What the hell. <</dialog>> <div class="button-row"> <<regButton "erika3-18" "Orie cums">><</regButton>> </div> </div> <<backend>> [[erika3-18]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/odogc.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Ahhhhhhhhhhhhhhh~ <</dialog>> <<dialog "Anzu">>Oop. Orie came. <</dialog>> <<dialog "You">>Is that why she's been avoiding me? <</dialog>> <<dialog "Orie">>Hahhh~ Hahhh~ I think so~ Whenever she saw you, she was always beet red. I guess she's embarrassed. <</dialog>> <<dialog "Anzu">>Seriously though, young master. Did you get horny from her teasing? <</dialog>> <<dialog "Orie">>Yeah. You're so hard right now. Are you gonna fuck your cousin too? <</dialog>> <<dialog "You">>Wouldn't that be weird? <</dialog>> <<dialog "Anzu">>Some people are into that~ We're not gonna kink shame you. Anyway, Orie's done. I'm next~ <</dialog>> <div class="button-row"> <<regButton "erika3-19" "Fuck Anzu">><</regButton>> </div> </div> <<backend>> [[erika3-19]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/amisa.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Mmmm~ Let me move on my own~ <</dialog>> <<dialog "Orie">>This is so hot~ Think of Erika-jou while you fuck us, young master~ <</dialog>> <div class="button-row"> <<regButton "erika3-20" "Harder">><</regButton>> </div> </div> <<backend>> [[erika3-20]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/amisb.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahh~ Ahh~ Ahhhh~ <</dialog>> <<dialog "Orie">>You're too good at this, nee-san~ <</dialog>> <div class="button-row"> <<regButton "erika3-21" "Take the lead">><</regButton>> </div> </div> <<backend>> [[erika3-21]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/amisc'+random(1,2)+'.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Ahhhh~ Cum for meeee~ <</dialog>> <<dialog "You">>Open your mouth!! <</dialog>> <div class="button-row"> <<regButton "erika3-22" "Cum">><</regButton>> </div> </div> <<backend>> [[erika3-22]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/cum5.mp4" type="video/mp4">'>> </video> <<dialog "Anzu">>Mmm~ Delicious~ <</dialog>> <<dialog "You">>Clean me up, Orie. <</dialog>> <div class="button-row"> <<regButton "erika3-23" "Orie cleans you up">><</regButton>> </div> </div> <<backend>> [[erika3-23]] <<time 0 1>> <</backend>>
<div class="bg anzu-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/anzu/1/obj3.mp4" type="video/mp4">'>> </video> <<dialog "Orie">>Mmm~ You're right~ *Gkkk* It's delicious~ <</dialog>> <div class="button-row"> <<regButton "erika3-24" "Meanwhile...">><</regButton>> </div> </div> <<backend>> [[erika3-24]] <<time 0 1>> <</backend>>
<div class="bg bedroom"></div> <div class="content-panel"> <<dialog "Erika">>I've been hiding in his closet for 24 minutes... Where the heck is he???? <</dialog>> <div class="button-row"> <<regButton "anzu-room" "End">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $erika.quest = 8>> <<set $erika.day = $dayIndex>> <<set $hidenav = 0>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "You">>Hey, you guys going somewhere? <</dialog>> <<dialog "Marika">>Hi, dear. Hide-chan and I are going to get groceries. Do you need anything? <</dialog>> <<dialog "You">>I'm good. <</dialog>> <<dialog "Uncle">>Kid, can you go tell the girls? Ask her if they want anything. <</dialog>> <<dialog "You">>I think Anzu and Orie went out. I'll go call Erika. <</dialog>> <div class="button-row"> <<regButton "erika4-2" "Go to Erika">><</regButton>> </div> </div> <<backend>> [[erika4-2]] <<set $profile = "erika-profile">> <<set $hidenav = 1>> <</backend>>
<div class="bg corridor"></div> <div class="content-panel"> <h1>You hear a rumbling noise.</h1> <<dialog "You">>H-huh? What's that noise. C-could it be??? <</dialog>> <div class="button-row"> <<regButton "erika4-3" "Peek through the crack of the door">><</regButton>> </div> </div> <<backend>> [[erika4-3]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t1.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Oh... She's cleaning. I thought it was a vibrator or something. Although, this is pretty hot too. Her nipple is poking out. I guess I can watch for a little longer.</i> <</dialog>> <div class="button-row"> <<regButton "erika4-4" "Keep looking">><</regButton>> </div> </div> <<backend>> [[erika4-4]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t2.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Watching your cousin like this is a little weird, but who can blame me? She has teased me so much already. Besides, if she really did masturbate while thinking about me, then it should be fine, right?</i> <</dialog>> <div class="button-row"> <<regButton "erika4-5" "Her phone rings">><</regButton>> </div> </div> <<backend>> [[erika4-5]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t3.mp4" type="video/mp4">'>> </video> <<dialog "You">><i>Damn. This timing is the worst.</i> <</dialog>> <div class="button-row"> <<regButton "erika4-6" "She picks up">><</regButton>> </div> </div> <<backend>> [[erika4-6]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t4.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Hello? Hey, Ori-chan~ <</dialog>> <<dialog "You">><i>Damn you, Orie. I'm fucking your brains out later.</i> <</dialog>> <<dialog "Erika">>Did you buy it? <</dialog>> <<dialog "You">><i>Did she send Orie on an errand? So that's why those two are out.</i> <</dialog>> <div class="button-row"> <<regButton "erika4-7" "She keeps talking">><</regButton>> </div> </div> <<backend>> [[erika4-7]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t5.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Wh-what? No reason... I just need it. <</dialog>> <<dialog "You">><i>What are they talking about? I wish they talked on speaker...</i> <</dialog>> <<dialog "Erika">>Urk... Fine. Fine. I'll tell you. I'm trying to film $player.name while he's masturbating, so I've been trying to seduce him, but nothing's working. So I figured I'd just spike his drink with viagra to-- <</dialog>> <<dialog "You">>What the fuck did you just say? <</dialog>> <div class="button-row"> <<regButton "erika4-8" "She instantly drops the call">><</regButton>> </div> </div> <<backend>> [[erika4-8]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t6.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Why are you here? Are you spying on me? <</dialog>> <<dialog "You">>Uncle and Auntie are going to the grocery and asked me to come get you so you can tell them if you needed anything, but I guess you already asked Orie. <</dialog>> <div class="button-row"> <<regButton "erika4-9" "Start recording your conversation">><</regButton>> </div> </div> <<backend>> [[erika4-9]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t7.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>I don't know what you're talking about. <</dialog>> <<dialog "You">>I heard you say my name, Erika. I'm not stupid. Why are you doing this? <</dialog>> <div class="button-row"> <<regButton "erika4-10" "Hideo yells from downstairs">><</regButton>> </div> </div> <<backend>> [[erika4-10]] <<time 0 1>> <</backend>>
<div class="bg erika-room"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/t8.mp4" type="video/mp4">'>> </video> <<dialog "Uncle">>$player.name! Erika! We're leaving! <</dialog>> <<dialog "Erika">>Listen. If you tell anybody about this, I'll tell everyone you raped me. I already have footage of you with your dick out. I'm serious, $player.name. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "erika4-11" "See your aunt and uncle off">><</regButton>> </div> </div> <<backend>> [[erika4-11]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/1.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>They left. <</dialog>> <<dialog "You">>They did. <</dialog>> <div class="button-row"> <<regButton "erika4-12" "She threatens you again">><</regButton>> </div> </div> <<backend>> [[erika4-12]] <<time 0 3>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>I was being serious, $player.name. If you tell anybody what I did, I'll tell everyone you raped me. <</dialog>> <<dialog "You">>... You know phone calls are recorded, right? <</dialog>> <div class="button-row"> <<regButton "erika4-13" "Call Orie">><</regButton>> </div> </div> <<backend>> [[erika4-13]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Orie">>Osu! What do you need, boss? <</dialog>> <<dialog "You">>Send me the recording of your conversation with Erika. <</dialog>> <<dialog "Erika">>O-Ori-chan! <</dialog>> <<dialog "Orie">>Wh-what? Y-young master, th-there's no-- <</dialog>> <<dialog "You">>I'll kill you if you don't... <</dialog>> <<dialog "Orie">>I-I'm sorry. I'm sending it now... <</dialog>> <<dialog "You">>I also recorded you threatening me by telling people I raped you. <</dialog>> <div class="button-row"> <<regButton "erika4-14" "Play both recordings back to Erika">><</regButton>> </div> </div> <<backend>> [[erika4-14]] <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "Erika">>... <</dialog>> <<dialog "You">>You did not think this through. <</dialog>> <<dialog "Erika">>Fuck you. <</dialog>> <h1>She tries to storm off.</h1><h1 style="color: #f24;">Warning: This will affect the story. You should save here.</h1> <div class="button-row"> <<regButton "erika4-15a" "Let her">><</regButton>> <<regButton "erika4-15b" "Rape her">><</regButton>> </div> </div> <<backend>> [[erika4-15a]][[erika4-15b]] <<set $location = "Rape Erika?">> <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<dialog "You">>She really did turn into a bitch. <</dialog>> <div class="button-row"> <<regButton "living" "End">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $location = "Livingroom">> <<set $erika.quest = 9>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/penetrate.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Eh? Wh-what are you doing?? L-let me go! <</dialog>> <div class="button-row"> <<regButton "erika4-stand1" "Fuck her">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-stand1]] <<set $location = "Livingroom">> <<set $erika.rape = true>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/standa" 1 3>> <h1>I figured out how to make the stars clickable! You can now choose which clip you want to view. No more porn gacha!</h1> <<dialog "You">>You were going to accuse me anyway, right? <</dialog>> <<dialog "Erika">>S-stop! Ahhh~ I'm sorry! <</dialog>> <div class="button-row"> <<regButton "erika4-jacket" "Take her jacket off">><</regButton>> </div> </div> <<backend>> <<time 0 6>> [[erika4-jacket]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/jacket.mp4" type="video/mp4">'>> </video> <<dialog "You">>You must be feeling warm, right? You don't need the jacket. <</dialog>> <<dialog "Erika">>S-stop! Please! <</dialog>> <div class="button-row"> <<regButton "erika4-stand2" "Move">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-stand2]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/standb" 1 4>> <<dialog "You">>You've been asking for this, right? You kept flashing me. You even touched me, didn't you? <</dialog>> <<dialog "Erika">>Please! It was just a joke! Ahhhhh~ <</dialog>> <div class="button-row"> <<regButton "erika4-top" "Lift her top up">><</regButton>> </div> </div> <<backend>> <<time 0 4>> [[erika4-top]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/top.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>W-wait! Ahhh~ Stop moving, please! <</dialog>> <<dialog "You">>You were willing to accuse me of rape, right? You were even planning to record me masturbating. <</dialog>> <div class="button-row"> <<regButton "erika4-stand3" "Fuck her">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-stand3]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/standc" 1 4>> <<dialog "You">>This is what you get. <</dialog>> <<dialog "Erika">>Ahhh~ Please! <</dialog>> <div class="button-row"> <<regButton "erika4-stand4" "Pull her arms back">><</regButton>> </div> </div> <<backend>> <<time 0 8>> [[erika4-stand4]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/standd1.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhh~ N-nooo! I'm gonna cuuuum!!! <</dialog>> <<dialog "You">>Go ahead. <</dialog>> <div class="button-row"> <<regButton "erika4-standcum" "She cums">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-standcum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/standcum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhh... Ahhh... Hahhh... <</dialog>> <<dialog "You">>It's not over yet. <</dialog>> <div class="button-row"> <<regButton "erika4-kneel" "Push her down">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-kneel]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/kneel" 1 4>> <<dialog "Erika">>Ahhh~ Ahhhh~ Ahhh~ Stooop~ <</dialog>> <<dialog "You">>Your pussy is tight. <</dialog>> <div class="button-row"> <<regButton "erika4-kneelcum" "She cums">><</regButton>> </div> </div> <<backend>> <<time 0 8>> [[erika4-kneelcum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/kneelcum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Haaahhhh. Hahhhhh. P-please... <</dialog>> <<dialog "You">>What position should we try next? <</dialog>> <div class="button-row"> <<regButton "erika4-prone" "Prone">><</regButton>> <<regButton "erika4-leg" "Leg Raise">><</regButton>> <<regButton "erika4-side1" "Side">><</regButton>> <<regButton "erika4-sit" "Sitting">><</regButton>> <<regButton "erika4-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-prone]][[erika4-leg]][[erika4-side1]][[erika4-sit]][[erika4-mis1]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/prone" 1 4>> <<dialog "Erika">>Ahhhhhh~ Noooo~ <</dialog>> <div class="button-row"> <<regButton "erika4-pronecum" "She cums">><</regButton>> </div> </div> <<backend>> <<time 0 8>> [[erika4-pronecum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/leg" 1 3>> <<dialog "Erika">>Ahhhhhh~ I'm gonna craaamp!! <</dialog>> <div class="button-row"> <<regButton "erika4-legcum" "She cums">><</regButton>> </div> </div> <<backend>> <<time 0 6>> [[erika4-legcum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/sidea.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhhh~ Ahhhh~ Just get it over with... <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row"> <<regButton "erika4-side2" "Faster">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-side2]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/sit" 1 2>> <<dialog "Erika">>Nooo! Noooo! I'm gonna cuuum! <</dialog>> <div class="button-row"> <<regButton "erika4-sit" "Repeat">><</regButton>> <<regButton "erika4-sitcum" "She cums">><</regButton>> </div> </div> <<backend>> <<time 0 4>> [[erika4-sitcum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/misa" 1 4>> <<dialog "Erika">>Ahhh~ No! P-please stop moving! <</dialog>> <div class="button-row"> <<regButton "erika4-mis2" "Raise her hips">><</regButton>> </div> </div> <<backend>> <<time 0 8>> [[erika4-mis2]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/pronecum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhhh~ N-no more... <</dialog>> <<dialog "You">>Next. <</dialog>> <div class="button-row"> <<regButton "erika4-leg" "Leg Raise">><</regButton>> <<regButton "erika4-side1" "Side">><</regButton>> <<regButton "erika4-sit" "Sitting">><</regButton>> <<regButton "erika4-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/legcum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhh~ Haaahhhh~ <</dialog>> <<dialog "You">>You're pretty flexible~ <</dialog>> <div class="button-row"> <<regButton "erika4-prone" "Prone">><</regButton>> <<regButton "erika4-side1" "Side">><</regButton>> <<regButton "erika4-sit" "Sitting">><</regButton>> <<regButton "erika4-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <<vid "erika/rape/sideb" 1 3>> <<dialog "Erika">>Ahhhhhhh~ I-its too fast! I take it back!! P-please stooop! <</dialog>> <div class="button-row"> <<regButton "erika4-side3" "Continue">><</regButton>> </div> </div> <<backend>> <<time 0 6>> [[erika4-side3]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/sidec.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhhhhhh~ Stooop! <</dialog>> <div class="button-row"> <<regButton "erika4-sidecum" "She cums">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-sidecum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/sidecum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>N-no more... <</dialog>> <<dialog "You">>Your leg must be tired~ <</dialog>> <div class="button-row"> <<regButton "erika4-prone" "Prone">><</regButton>> <<regButton "erika4-leg" "Leg Raise">><</regButton>> <<regButton "erika4-sit" "Sitting">><</regButton>> <<regButton "erika4-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/sitcum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>*Gasp* Hahhh~ <</dialog>> <div class="button-row"> <<regButton "erika4-prone" "Prone">><</regButton>> <<regButton "erika4-leg" "Leg Raise">><</regButton>> <<regButton "erika4-side1" "Side">><</regButton>> <<regButton "erika4-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/misb.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>No way no way no wayyy! <</dialog>> <div class="button-row"> <<regButton "erika4-mis3" "Put her down">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-mis3]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/misc.mp4" type="video/mp4">'>> </video> <<dialog "You">>I think I'm gonna cum~ <</dialog>> <<dialog "Erika">>Please, don't cum inside! Please! <</dialog>> <div class="button-row"> <<regButton "erika4-prone" "Prone">><</regButton>> <<regButton "erika4-leg" "Leg Raise">><</regButton>> <<regButton "erika4-side1" "Side">><</regButton>> <<regButton "erika4-sit" "Sitting">><</regButton>> <<regButton "erika4-cum" "Cum">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-cum]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/cum.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Haaahhh... Hahhh... <</dialog>> <<dialog "You">>That was great. <</dialog>> <<dialog "Erika">>Fuck you... <</dialog>> <div class="button-row"> <<regButton "erika4-end" "Threaten her">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-end]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/end1.mp4" type="video/mp4">'>> </video> <<dialog "You">>Watch your words. I own you now, Erika. I can do whatever I want to you, and nobody will believe you. <</dialog>> <<dialog "Erika">>You're a creep. <</dialog>> <<dialog "You">>I don't think you've learned your lesson. <</dialog>> <div class="button-row"> <<regButton "erika4-end2" "Fuck her again">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-end2]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/end2.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>No! No! No! I'm sorry! I won't do it again! Nooo! <</dialog>> <div class="button-row"> <<regButton "erika4-end3" "Move">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-end3]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/misd'+random(1,3)+'.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Ahhh~ I'm sorryyy! <</dialog>> <div class="button-row"> <<regButton "erika4-end3" "Repeat">><</regButton>> <<regButton "erika4-end4" "You get interrupted">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-end4]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/end3.mp4" type="video/mp4">'>> </video> <<dialog "Marika">>Ehh? It's locked. ERIKAAAA! OPEN THE DOOOOR! <</dialog>> <<dialog "Uncle">>Sis, just leave the coupons behind. We're rich, you know? <</dialog>> <<dialog "Marika">>Hide-chan! It's not about the money. It's about the principle. <</dialog>> <<dialog "You">>Fuck. Not a word, you hear? <</dialog>> <<dialog "Erika">>I-I got it. <</dialog>> <div class="button-row"> <<regButton "erika4-end5" "Run">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-end5]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/end4.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>C-coming! <</dialog>> <<dialog "You">>Shit. <</dialog>> <div class="button-row"> <<regButton "erika4-end6" "Erika opens the door">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[erika4-end6]] <</backend>>
<div class="bg living"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/erika/rape/end5.mp4" type="video/mp4">'>> </video> <<dialog "Erika">>Wh-why are you back so early? <</dialog>> <<dialog "Marika">>I left my coupons. <</dialog>> <<dialog "Uncle">>We had to walk all the way back here for those damn coupons. <</dialog>> <div class="button-row"> <<regButton "bedroom" "End">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $erika.quest = 9>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>... <</dialog>> <<dialog "You">>Hi! Good $daystate! <</dialog>> <<dialog "Haru" "student">>... <</dialog>> <<dialog "You">>What's wrong? Why aren't you talking to me? <</dialog>> <<dialog "Haru" "student">>...Meet me at the roof after class. <</dialog>> <div class="button-row"> <<regButton "haru6-2" "Later...">><</regButton>> </div> </div> <<backend>> [[haru6-2]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru2/haru-roof4b.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>I'm disappointed in you. <</dialog>> <<dialog "You">>All of a sudden? Why? <</dialog>> <<dialog "Haru" "student">>All of a sudden!? I heard you went around and beat up the kids from Tekijime! You even joined the rankers, didn't you!? I hate thugs! They disturb students who actually go to school to learn and you've become one of them. <</dialog>> <<dialog "You">>Haru... I can explain. <</dialog>> <<dialog "Haru" "student">>Go ahead! Explain! <</dialog>> <div class="button-row"> <<regButton "haru6-3" "You explain">><</regButton>> </div> </div> <<backend>> <<set $hour = 17>> [[haru6-3]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>First... About joining the rankers. Let me call Seiya. <</dialog>> <<dialog "Haru" "student">>Seiya-kun? You mean Kuroki Seiya? He's the worst out of all of them and you're involving yourself with him? <</dialog>> <<dialog "You">>Why don't I call him here, then you can grill him. That way you know I'm not lying about anything. <</dialog>> <<dialog "Haru" "student">>...Fine. <</dialog>> <div class="button-row"> <<regButton "haru6-4" "Kuroki rushes to the rooftop">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-4]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Kuroki">>Good $daystate, Young Master! <</dialog>> <<dialog "Haru" "student">>Y-young master? <</dialog>> <<dialog "You">>Enough of that, Seiya. Haru has a couple questions for you. Answer her truthfully. <</dialog>> <<dialog "Kuroki">>Yes, sir. What are your questions, lady Haru? <</dialog>> <<dialog "Haru" "student">>L-lady Haru? First of all, what's with the knight act? <</dialog>> <<dialog "Kuroki">>Ah. Well. Actually, the Sawada Clan is the benefactor of the Kuroki Clan. We pledged servitude to the Sawada Clan, which makes Young Master $player.name my master. <</dialog>> <<dialog "Haru" "student">>A-ah... I see. <</dialog>> <div class="button-row"> <<regButton "haru6-5" "Haru starts grilling Kuroki">><</regButton>> </div> </div> <<backend>> <<time 0 7>> [[haru6-5]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru" "student">>O-okay. Tell me. Did he really beat up some Tekijime kids? <</dialog>> <<dialog "Kuroki">>Well... Yes. <</dialog>> <<dialog "Haru" "student">>See!? You did! <</dialog>> <<dialog "You">>Let him explain. <</dialog>> <<dialog "Kuroki">>Actually, my lady... <</dialog>> <<dialog "Haru" "student">>M-my lady? <</dialog>> <<dialog "Kuroki">>Those guys were harassing kids from our school. They even tried hurting that teacher Shizu at the school gate. <</dialog>> <div class="button-row"> <<regButton "haru6-6" "Haru brings up another point">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-6]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru" "student">>That's the other thing! I heard he has a relationship with Miss Shizu! You kissed her in the faculty room! A Student Council Officer saw it! <</dialog>> You give Kuroki a look. <<dialog "Kuroki">>Th-those are just rumors. I don't know if you've heard but the rankers attacked Tekijime recently. That's because they kidnapped and assaulted the teacher. <</dialog>> <<dialog "Haru" "student">>Wh-what? <</dialog>> <<dialog "Kuroki">>I guess rumors spread because of that. <</dialog>> <<dialog "Haru" "student">>But... Miss Shizu seemed fine... <</dialog>> <<dialog "Kuroki">>That... <</dialog>> <<dialog "You">>Let me answer this one. I brought her to our family doctor. I was told that the trauma made her forget what happened that night... I think it's best that it stays that way... <</dialog>> <div class="button-row"> <<regButton "haru6-7" "Haru asks one more question">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-7]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru" "student">>Then... Tell me. Why did you even join the rankers in the first place? <</dialog>> <<dialog "Kuroki">>Ah. Isn't it because of Izaki? <</dialog>> <<dialog "Haru" "student">>Izaki... Shun? <</dialog>> <<dialog "You">>Ah... One of the people I got close to after I transferred here was Yamane Emi. <</dialog>> <<dialog "Haru" "student">>Ah. She got you. <</dialog>> <<dialog "Kuroki">>I didn't know about this. <</dialog>> <<dialog "You">>So you know what she does, Haru? <</dialog>> <<dialog "Haru" "student">>Yes... She makes her boyfriend Izaki pick on other boys. <</dialog>> <div class="button-row"> <<regButton "haru6-8" "Continue">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-8]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Kuroki">>Heh. As if the Young Master would lose to Izaki. <</dialog>> <<dialog "You">>Well, that happened but I beat Izaki and they broke up. Apparently, Emi makes people fear Izaki so she doesn't get bullied. After news about their break up spread, she got bullied again... <</dialog>> <<dialog "Haru" "student">>So you took Izaki's place... <</dialog>> <<dialog "Kuroki">>As expected of the Young Master... So noble~ <</dialog>> <<dialog "You">>Enough of that, Seiya. <</dialog>> <<dialog "Haru" "student">>But still... I don't like that you're a ranker now, $player.name. They're so violent. No offense, Kuroki-kun. <</dialog>> <<dialog "Kuroki">>None taken, my lady. But actually, the young master is not a ranker anymore, and he made the violence stop after he beat Kyogaku. <</dialog>> <<dialog "Haru" "student">>You're not a ranker anymore? <</dialog>> <<dialog "You">>Seiya is the only ranker I'm formally acquainted with, so I don't hang around with Kyogaku and the others. I still am Rank 1, but that's just a title now. <</dialog>> <<dialog "Haru" "student">>How is that different? <</dialog>> <<dialog "You">>Well... A strawberry is called a strawberry but it isn't a berry. Eggplants are called eggplants because they used to be white and round, resembling an egg, but they're long and purple now. They're still called eggplants. <</dialog>> <<dialog "Haru" "student">>... <</dialog>> <div class="button-row"> <<regButton "haru6-9" "Ask Haru if she has any more questions">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-9]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Anything else you want to clarify? <</dialog>> <<dialog "Haru" "student">>N-no... <</dialog>> <<dialog "You">>I can't believe you'd sooner believe rumors than ask me straight up about these things... <</dialog>> <<dialog "Haru" "student">>I-I'm sorry... Why would Aodori-senpai say all of those things about you? <</dialog>> <<dialog "Kuroki">>You mean the moss head glasses guy in the student council? Isn't it obvious? <</dialog>> <<dialog "You">>What's obvious? <</dialog>> <<dialog "Kuroki">>Well... Aoba isn't actually unified. It's separated into two factions. The rankers and the Student Council. <</dialog>> <div class="button-row"> <<regButton "haru6-10" "Continue">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-10]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Really? <</dialog>> <<dialog "Haru" "student">>How is that possible? There are only five of us in the Student Council. <</dialog>> <<dialog "Kuroki">>The members of the Student Council are strong. Aodori, Kida and Aki are almost as strong as Kyogaku. <</dialog>> <<dialog "You">>Ohh? What about Seto Shiki? <</dialog>> <<dialog "Kuroki">>That guy... He's strong. I tried raising Kyogaku as the leader of the rankers so we could fight that guy and unify the school, but I don't think we can beat him even if we combined our strengths. Plus those three guard dogs. <</dialog>> <<dialog "Haru" "student">>How is that relevant to me? <</dialog>> <<dialog "Kuroki">>Well. With how beautiful Lady Haru is... Don't you think it's weird that nobody approaches you? <</dialog>> <div class="button-row"> <<regButton "haru6-11" "Continue">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-11]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru" "student">>Wh-what? <</dialog>> <<dialog "You">>I thought about that too. You don't really get approached by the guys. You're very approachable! <</dialog>> <<dialog "Kuroki">>Everybody knows that Aodori likes you, so no one dares to approach. <</dialog>> <<dialog "Haru" "student">>A-are you serious? <</dialog>> <<dialog "You">>Ah~ I'm being sabotaged, huh? <</dialog>> <<dialog "Haru" "student">>No way... <</dialog>> <div class="button-row"> <<regButton "haru6-12" "Meanwhile">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-12]] <<set $hidenav to 1>> <</backend>>
<<bg "trackfield" $hour>><</bg>> <div class="content-panel"> <h1>Aodori can see you from the Track Field.</h1> <<dialog "Aodori">>Is that Haru on the roof? <</dialog>> <<dialog "Aodori">>Who is she with? <</dialog>> <h1>He squints to see better</h1> <<dialog "Aodori">>K-kuroki Seiya!! Sawada $player.name! Sh-shit! <</dialog>> <div class="button-row"> <<regButton "haru6-13" "He rushes up">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-13]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Seiya. You're dismissed. Leave us. <</dialog>> <<dialog "Kuroki">>Yes, Young Master. <</dialog>> <h1>Kuroki leaves.</h1> <<dialog "You">>It's up to you if you believe me. I've already explained my side of the story, but I can't control what you believe. I should go too. I'll give you some time to think. <</dialog>> <<dialog "Haru" "student">>... <</dialog>> <<dialog "You">>Ah. Before you hear this somewhere... Yes, the Sawada Clan is a gang. The Kuroki Clan serve under us. Which is why Seiya calls me Young Master. <</dialog>> <<dialog "You">>That's my family though. It's not something I can control, so I don't mention it because I don't want that to define me. If I've shown you something thuggish or gangster-like, I sincerely apologize. <</dialog>> <<dialog "Haru" "student">>Wait! <</dialog>> <div class="button-row"> <<regButton "haru6-14" "You turn to her">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-14]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru2/haru-roof2.mp4" type="video/mp4"> </video> <<dialog "Haru" "student">>I'm sorry for doubting you... It's just... We're not officially dating, so I was afraid of demanding answers from you. <</dialog>> <<dialog "You">>Do you want us to officially date? <</dialog>> <<dialog "Haru" "student">>Well... We've already done it... But I can't date you for now... <</dialog>> <<dialog "You">>Why not? <</dialog>> <<dialog "Haru" "student">>Well... My parents are strict. I don't think they'll approve. <</dialog>> <<dialog "You">>...So does that mean we should stop seeing each other? <</dialog>> <<dialog "Haru" "student">>N-no! If possible... I want you to wait for me. I know that's asking for a lot so I don't mind if you date other girls for now, as long as I don't see it, but when I'm ready... <</dialog>> <<dialog "You">>Of course. Let's have a proper relationship once you're ready, but are you sure you're okay with my family being gangsters? <</dialog>> <<dialog "Haru" "student">>Honestly... I kind of already knew. I mean... I did meet your uncle. He's the most stereotypical gangster I've ever met. I chose to ignore it since... well... I love y-- <</dialog>> <div class="button-row"> <<regButton "haru6-15" "Someone barges in">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-15]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/haru-flip/0.jpg" style="width: 80%;"> <<dialog "Aodori">>Haru-chan! <</dialog>> <<dialog "Haru" "student">>A-aodori-senpai? <</dialog>> <<dialog "You">><i>Fucking nuisance...</i> <</dialog>> <<dialog "Haru" "student">>Wh-what are you doing here? <</dialog>> <<dialog "Aodori">>Get away from Haru-chan, thug. <</dialog>> <div class="button-row"> <<regButton "haru6-16" "Aodori grabs your bag">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-16]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/haru-flip/grab.jpg" style="width: 40%;"> <<dialog "You">>And I'm supposed to be the thug? <</dialog>> <<dialog "Haru" "student">>D-don't fight! <</dialog>> <h1>After staring at you with contempt for a while, he lets go.</h1> <<dialog "Aodori">>Let's get out of here, Haru. <</dialog>> <h1>He grabs her arm.</h1> <<dialog "You">>This fucker... <</dialog>> <<dialog "Haru" "student">>L-let me go, senpai! <</dialog>> <<dialog "Aodori">>Don't associate yourself with that thug. What would the other students think if they saw a Student Council Officer hanging around with a thug? <</dialog>> <div class="button-row"> <<regButton "haru6-17" "Provoke him">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-17]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>You keep saying I'm a thug. Are you also the one who spread rumors that I kissed Shizu-sensei at Tekijime? <</dialog>> <<dialog "Aodori">>...I did see you. You saved her and went on a childish war with Tekijime because you're lovers. <</dialog>> <<dialog "You">>Gotcha... <</dialog>> <<dialog "Haru" "student">>Wh-what? <</dialog>> <<dialog "Aodori">>Huh? <</dialog>> <<dialog "Haru" "student">>You said you saw them in the Faculty Room. <</dialog>> <<dialog "Aodori">>W-wait... I... <</dialog>> <<dialog "You">>It seems he knows the real reason why I had a fight with Tekijime kids too... <</dialog>> <<dialog "Aodori">>H-haru-chan... Let me explain... I-It's just because... Well... You're a Student Council Officer! You should maintain your image and not hang out with delinquents! I did it for your own good. <</dialog>> <<dialog "Haru" "student">>The Student Council, huh? <</dialog>> <div class="button-row"> <<regButton "haru6-18" "Haru gets mad">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-18]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/haru-flip/1.jpg" style="width: 60%;"> <<dialog "Aodori">>Eh? <</dialog>> <div class="button-row"> <<regButton "haru6-19" "She slams him to the ground">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-19]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <img src="img/misc/haru-flip/2.jpg" style="width: 60%;"> <<dialog "Aodori">>Ha...Haru-chan... <</dialog>> <<dialog "Haru" "student">>I've assaulted a Student Council Officer! That's not good for my image too so I fucking quit! <</dialog>> <<dialog "You">>D-damn... I've never seen you this mad. Well done, glasses, you brought out her wi-- <</dialog>> <<dialog "Haru" "student">>SHUT UP AND LET'S LEAVE! <</dialog>> <<dialog "You">>Y-yes, ma'am. <</dialog>> <div class="button-row"> <<regButton "haru6-20" "You follow Haru as she huffs and puffs">><</regButton>> </div> </div> <<backend>> <<time 0 1>> [[haru6-20]] <<set $hidenav to 1>> <</backend>>
<<bg "rooftop" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>So? Do you believe me now? I to-- <</dialog>> <<dialog "Haru" "student">>Don't say it. <</dialog>> <<dialog "You">>F-fine... I won't say it... But we both know what it is I was gonna say~ <</dialog>> <<dialog "Haru" "student">>I'll flip you next. <</dialog>> <h1>Note: Haru won't show up at the Student Council Clubroom anymore. She quit.</h1> <<dialog "Aodori">>Wow... Her form was a bit sloppy... There's not enough strength in the slam too. Compared to Aki's shoulder throw that feels like getting hit by a truck, this feels like a light tap... So, why? Why does this hurt so much more? <</dialog>> <div class="button-row"> <<regButton "school" "End">><</regButton>> </div> </div> <<backend>> <<time 0 1>> <<set $haru.quest = 7>> <<set $hidenav to 1>> <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru" "student">>Nope! <</dialog>> <<dialog "You">>What? But you don't have Student Council stuff anymore, right? <</dialog>> <<dialog "Haru" "student">>Hehe~ Well, I thought I'll get a part time job! I'm going there to train right now. <</dialog>> <<dialog "You">>Why? Do you need money? <</dialog>> <<dialog "Haru" "student">>Well... I want to get my own apartment. I did say you can see other girls, but that just doesn't sit right with me. I figured the sooner I could get my independence, the sooner we can be exclusive. <</dialog>> <<dialog "You">>Sooo... You want us to live together? <</dialog>> <<dialog "Haru" "student">>Ehhh? Are you crazy? No way! <</dialog>> <<dialog "You">>Geez. What a reaction. You hate the idea that much? <</dialog>> <<dialog "Haru" "student">>That's not what I meant, idiot. Me wanting my independence is not all about you, you know? Do you think you're some kind of protagonist in a dating sim? We're unofficially dating and I've given you a looot of freedom, didn't I? I deserve some freedom for myself too. <</dialog>> <<dialog "You">>Wh-what? Hey. What freedom? You mean seeing other people? <</dialog>> <div class="button-row"> <<regButton "haru8-2" "She ignores you">><</regButton>> </div> </div> <<backend>> <<set $hidenav to 1>> <<set $profile to "haru-profile">> [[haru8-2]] <</backend>>
<div class="bg classroom"></div> <div class="content-panel"> <<dialog "Haru" "student">>I should get changed into casual clothes for the interview. It might put off the boss if I show up in my uniform, right? <</dialog>> <<dialog "You">>Hey, by freedom, did you mean you want to see other guys too? <</dialog>> <<dialog "Haru" "student">>Huh? Hmmmmm. I should get changed~ I wouldn't want to be late~ <</dialog>> <<dialog "You">>H-haru! Suzuki Haru! <</dialog>> <<dialog "Haru" "student">>What? <</dialog>> <<dialog "You">>I'm gonna put some kind of tag on you, you know? <</dialog>> <<dialog "Haru" "student">>Pfft~ You are? Then you should work harder so we can be exclusive sooner, right? You can't enter the women's lockers by the way~ <</dialog>> <h1>She changes her clothes in the women's locker room.</h1> <<dialog "You">>...Is she really going to? Nahhh, she won't... <</dialog>> <<dialog "You">>Damn it. <</dialog>> <div class="button-row"> <<regButton "haru8-3" "You accompany her to her part time job">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-3]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>You're working here? <</dialog>> <<dialog "Haru">>Yup! It's close to school so it's great! <</dialog>> <<dialog "You">>R-right... <i>So she's gonna be working with Yuki? This can't be good...</i> <</dialog>> <<dialog "Haru">>Oh~ That's the owner~ <</dialog>> <div class="button-row"> <<regButton "haru8-4" "She approaches the owner">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-4]] <<time 0 15>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/konbini/1.mp4" type="video/mp4"> </video> <<enemy "konbini-owner" "Store Owner" "" "left">>Hello~ Suzuki Haru, right? You're the new part timer? <</enemy>> <<dialog "Haru">>Yes! That's me~ Nice to meet you sir! <</dialog>> <<enemy "konbini-owner" "Shibai Gyo" "" "left">>You can just call me Gyo-san~ But... H-how about you, young man? I don't think we're expecting another part-timer. <</enemy>> <<dialog "You">>Ah. N-no... I'm not a part-timer... <</dialog>> <<dialog "Haru">>*Sigh* Actually, Gyo-san. He's my boyfriend. He just came with me, but he's gonna leave now~ Bye, babe~ <</dialog>> <<dialog "You">>Ah. *Tsk* It's not good to chase customers away, Miss Part-Timer. <</dialog>> <div class="button-row"> <<regButton "haru8-5" "The owner laughs">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-5]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <<enemy "konbini-owner" "Store Owner" "" "left">>Haha~ It's nice to be young, isn't it? Well, Ms. Haru. You can go ahead and change into the uniform. You'll learn the job as you watch. <</enemy>> <<dialog "Haru">>Yes! Thank you, sir! <</dialog>> <h1>She goes inside.</h1> <<enemy "konbini-owner" "Shibai Gyo" "" "left">>Finally~ The store has some feminine presence again. <</enemy>> <<dialog "You">>Again? Excuse me, Gyo-san, but isn't there a female employee here? <</dialog>> <<enemy "konbini-owner" "Shibai Gyo" "" "left">>Huh? O-oh. She quit. <</enemy>> <<dialog "You">><i>She was just here yesterday...</i> <</dialog>> <div class="button-row"> <<regButton "haru8-6" "You follow Gyo inside">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-6]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/konbini/2.mp4" type="video/mp4"> </video> <<dialog "You">>Woow~ You're so pretty~ <</dialog>> <<dialog "Haru">>Stop that~ I-I'm sorry about him, Gyo-san... <</dialog>> <<enemy "konbini-owner" "Shibai Gyo" "" "left">>Oho~ I don't mind. <</enemy>> <<dialog "You">>What time will you get off work? I'll come get you. <</dialog>> <<dialog "Haru">>I'll be out by 9 today. I work 9-9 on weekends. I'll just be training today~ <</dialog>> <<dialog "You">>Ohh. Okay, I'll come by around 8:45pm. <</dialog>> <div class="button-row"> <<regButton "haru8-7" "You wait for her to clock out">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-7]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/konbini/4.mp4" type="video/mp4"> </video> <<dialog "You">>Good work, today~ <</dialog>> <<dialog "Haru">>Did you wait long? <</dialog>> <<dialog "You">>No. No. I got here at 8:45 like I said. <</dialog>> <<dialog "Haru">>Aww~ You waited for a quarter of an hour. <</dialog>> <<dialog "You">>Ehh. It's just a quarter. I'd wait for you for half an hour max. <</dialog>> <<dialog "Haru">>Wh-what? Just half an hour? I'd wait years for you, you know?? <</dialog>> <<dialog "You">>Ohhhh~ I see~ Years, huh? That's a long time. <</dialog>> <<dialog "Haru">>And here you are telling me you'd only wait for half an hour max. <</dialog>> <<dialog "You">>Yeah~ Since I'd worry about you otherwise. Instead of waiting a minute more, I'd come look for you. But I guess you'd wait years, huh? That's hurtful, Haru~ <</dialog>> <<dialog "Haru">>...Fine. I'll share you my location when I'm at work. So don't worry anymore. You're so annoying. Let's just go! <</dialog>> <div class="button-row"> <<regButton "haru8-8" "Leave">><</regButton>> </div> </div> <<backend>> <<set $hour = 21>> <<set $minute = 0>> <<set $profile to "haru-profile">> [[haru8-8]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/konbini/5.mp4" type="video/mp4"> </video> <<dialog "You">>Ahh~ I'm hungry. <</dialog>> <<dialog "Haru">>Let's go eat at my apartment! <</dialog>> <<dialog "You">>Wait, you already have an apartment? That was quick. <</dialog>> <<dialog "Haru">>I have some money saved up. I actually did some freelancing on weekends. Web design and some stuff I don't wanna tell you about right now. Since I'm quitting the Student Council, I can do freelance work after school. <</dialog>> <<dialog "You">>Wait... Doesn't that mean we can be official now? You're independent now. <</dialog>> <<dialog "Haru">>You think freelancing while studying is enough for a comfortable living? My parents are still paying for my utilities. If they find out I'm dating, they'll make me go home and cut off my utilities. <</dialog>> <<dialog "You">>Ah. Damn... <</dialog>> <<dialog "Haru">>Just be grateful we have a place to hangout at now~ We desperately need some privacy in this relationship. <</dialog>> <<dialog "You">>What? You had a lot of fun in the Student Council Room though~ <</dialog>> <<dialog "Haru">>Sh-shut up! <</dialog>> <h1>Meanwhile...</h1> <<enemy "konbini-owner" "Shibai Gyo" "" "left">>...Hello? Yes. I have another one... <</enemy>> <div class="button-row"> <<regButton "haru8-9" "Have Dinner with Haru">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-9]] <<time 0 1>> <</backend>>
<div class="bg campus"></div> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/misc/lotfpromo.mp4" type="video/mp4">'>> </video> <div style=" width: 90%; background: rgba(0, 0, 0, 0.7); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); margin: 0 auto; border: 10px; padding: 20px; border-radius: 10px;"> <h1>Hell is not a great place to be. The Seven Devils punish the damned with the sin they embody. Well... Six of them do. When Asmodeus, the Lord of Lust, was kicked out of hell for having orgies with the damned (which is not really punishment since all the damned in his domain are perverts and sexual deviants), he chooses you to be his avatar in earth. In exchange of enhancing your physical appearance and ridding you of all anxieties, he inhabits your soul. Unfortunately, you soon realize that you shouldn't make deals with the Devil as Asmodeus tries to corrupt you. Lucky for you, Beelzebub, the Lord of the Flies and the incarnation of Gluttony, wanted to see if one of the Seven Devils could embrace not being evil. He helps you suppress Asmodeus' corruption. Will you be able to make the Devil change, or will you succumb to lust? </h1> <<regButton "bedroom" "Back to Bedroom">><</regButton>><<siteClick "Try the Game" "https://safriscoffi.com">> </div> </div>
<div class="bg city"></div> <div class="content-panel"> <<dialog "You">>Where should I go? <</dialog>> <h1 style="font-weight: 500;"><<glow "0.5px cyan" "8px cyan" 24>>School<</glow>></h1><div class="button-row"> <<if $player.classIntro == 0 && $dayIndex % 7 < 6 && $dayIndex % 7 > 0>> <<imgButton "class-intro" "img/neon-buttons/classroom.jpg">> <<else>> <<imgButton "classroom" "img/neon-buttons/classroom.jpg">> <</if>> <<imgButton "faculty" "img/neon-buttons/faculty.jpg">> <<imgButton "council-room" "img/neon-buttons/council-room.jpg">> <<imgButton "track" "img/neon-buttons/trackfield.jpg">> <<imgButton "rooftop" "img/neon-buttons/rooftop.jpg">> </div> <h1 style="font-weight: 500;"><<glow "0.5px cyan" "8px cyan" 24>>Others<</glow>></h1><div class="button-row"> <<imgButton "park" "img/neon-buttons/park.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> <<imgButton "hospital" "img/neon-buttons/hospital.jpg">> </div> <h1 style="font-weight: 500;"><<glow "0.5px cyan" "8px cyan" 24>>Visit the Girls<</glow>></h1><div class="button-row"> <<if $miku.quest >= 3>><<imgButton "miku-room" "img/neon-buttons/miku-room.jpg">><</if>> <<if $shiori.quest > 6>><<imgButton "shiori-home" "img/neon-buttons/shiori-home.jpg">><</if>> <<if $haru.quest >= 9 && false>><<imgButton "haru-house" "img/neon-buttons/haru-home.png">><</if>> <<if $nirei.quest >= 5 && $nirei.quest != 6>><<imgButton "nirei-home" "img/neon-buttons/nirei-home.jpg">><</if>> <<if $erika.quest >= 2>> <<imgButton "anzu-room" "img/neon-buttons/anzu-room.png">> <<imgButton "erika-room" "img/neon-buttons/erika-room.png">> <<imgButton "marika-room" "img/neon-buttons/marika-room.png">> <</if>> </div> </div> <<backend>> <<set $location to "Business Area">> <<set $profile to "player-profile">> <<set $hidenav to 0>> <<set $inbattle = 0>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru8/1.mp4" type="video/mp4"> </video> <<dialog "You">>Woow~ It looks good, Haru. You're ready for marriage, huh? <</dialog>> <<dialog "Haru">>*Blushes* Go ahead and eat~ <</dialog>> <<dialog "You">>Yes, dear. <</dialog>> <<dialog "Haru">>Stooop~ <</dialog>> <<dialog "You">>Mmm~ It's delicious~ <</dialog>> <<dialog "Haru">>Really? I've never really cooked before. My parents won't let me... <</dialog>> <<dialog "You">>Wow. They're really strict. How did you even convince them to let you live alone? <</dialog>> <<dialog "Haru">>I kind of told them that my grades were suffering because I live too far away from school. <</dialog>> <<dialog "You">>They believed that? <</dialog>> <<dialog "Haru">>Yeah. Shiki-senpai... The Student Council President. I asked him to convince my parents. He says it's his way of apologizing to me for Aodori-senpai's behavior. I don't know how Shiki-senpai did it, but he managed to convince them. <</dialog>> <<dialog "You">>I guess I owe Seto Shiki a thank you~ <</dialog>> <div class="button-row"> <<regButton "haru8-10" "Finish eating and go to bed">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-10]] <<time 0 15>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru8/2.mp4" type="video/mp4"> </video> <<dialog "Haru">>This is nice~ It does feel like we're newlyweds~ <</dialog>> <<dialog "You">>Yes it does, dear. <</dialog>> <<dialog "Haru">>Hehe~ I kinda like it now, dear. <</dialog>> <<dialog "You">>Awww~ By the way, do you always sleep in your underwear? <</dialog>> <<dialog "Haru">>No, I don't. I'm trying to seduce you. <</dialog>> <div class="button-row"> <<regButton "haru8-11" "Continue">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-11]] <<time 0 38>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru8/3.mp4" type="video/mp4"> </video> <<dialog "You">>Oh, you are? <</dialog>> <<dialog "Haru">>I am~ Is it working? <</dialog>> <<dialog "You">>How would it now work? <</dialog>> <<dialog "Haru">>If we were newlyweds, this would be our honey moon~ <</dialog>> <div class="button-row"> <<regButton "haru8-kiss" "Make out">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-kiss]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru8/kiss.mp4" type="video/mp4"> </video> <<dialog "You">>Should we get married then? <</dialog>> <<dialog "Haru">>Pfft~ I don't know~ It's too early to say. <</dialog>> <div class="button-row"> <<regButton "haru8-bra" "Take her bra off">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-bra]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <source src="vids/haru/haru8/bra.mp4" type="video/mp4"> </video> <<dialog "You">>I'm positive I could look at these for the rest of my life though~ <</dialog>> <<dialog "Haru">>Pfft~ You like my boobs that much? <</dialog>> <div class="button-row"> <<regButton "haru8-grope" "Grope her">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-grope]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/grope" 1 2>> <<dialog "You">>I do~ <</dialog>> <<dialog "Haru">>Hehe~ Next time I want to seduce you, I should just flash you~ <</dialog>> <<dialog "You">>That would work~ <</dialog>> <div class="button-row"> <<regButton "haru8-rub1" "Rub her pussy">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-rub1]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/ruba" 1 3>> <<dialog "Haru">>Mmmm~ That feels good~ <</dialog>> <<dialog "You">>Should I make you feel even better? <</dialog>> <<dialog "Haru">>Yes, please~ <</dialog>> <div class="button-row"> <<regButton "haru8-panty" "Take her panties off">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-panty]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/haru/haru8/panty.mp4" type="video/mp4">'>></video> <<dialog "You">>It would feel better with direct contact~ <</dialog>> <<dialog "Haru">>I think so too... <</dialog>> <div class="button-row"> <<regButton "haru8-spread" "Spread her pussy lips open">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-spread]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/spread" 1 2>> <<dialog "You">>It's so pink~ <</dialog>> <<dialog "Haru">>Hey~ It's embarrassing~ <</dialog>> <div class="button-row"> <<regButton "haru8-rub2" "Finger her">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-rub2]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/rubb" 1 2>> <<dialog "Haru">>Ahhh~ Haaa~ <</dialog>> <<dialog "You">>You're already so wet~ <</dialog>> <div class="button-row"> <<regButton "haru8-rub3" "Harder">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-rub3]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/haru/haru8/rubc.mp4" type="video/mp4">'>></video> <<dialog "Haru">>Ahhh~ Ahhh~ Ahhh~ I'm gonna cum! I'm gonna cuum~ <</dialog>> <<dialog "You">>Go ahead~ <</dialog>> <div class="button-row"> <<regButton "haru8-hcum1" "She squirts">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hcum1]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <video controls width="640" height="360" autoplay loop> <<print '<source src="vids/haru/haru8/hcum1.mp4" type="video/mp4">'>></video> <<dialog "Haru">>Ahhh~ Mmmm~ <</dialog>> <<dialog "You">>The bed is so wet now~ <</dialog>> <div class="button-row"> <<regButton "haru8-hj" "Handjob">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hj]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hj" 1 2>> <<dialog "Haru">>Your turn~ <</dialog>> <<dialog "You">>Mmm~ You're so cute, looking at me like that~ <</dialog>> <div class="button-row"> <<regButton "haru8-bj" "Blowjob">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-bj]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/bj" 1 3>> <<dialog "Haru">>*Slurp* *Slurp* *Slurp* <</dialog>> <<dialog "You">>Ahh~ Haru~ That feels good~ <</dialog>> <div class="button-row"> <<regButton "haru8-penetrate" "Penetrate">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-penetrate]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/penetrate">> <<dialog "You">>Are you ready? <</dialog>> <<dialog "Haru">>Put it in~ <</dialog>> <div class="button-row"> <<regButton "haru8-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-mis1]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/misa" 1 2>> <<dialog "Haru">>Ahhh~ Ah~ Ah~ Nnn~ <</dialog>> <<dialog "You">>I'm gonna go faster, Haru~ <</dialog>> <div class="button-row"> <<regButton "haru8-mis2" "Faster">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-mis2]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/misb" 1 2>> <<dialog "Haru">>Ahhh~ Haaa~ Ahh~ Ahhh~ Ahhhhh~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row"> <<regButton "haru8-mis3" "Harder">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-mis3]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/misc" 1 2>> <<dialog "Haru">>Ahhhhh~ Ahhhh~ I'm gonna cum~ <</dialog>> <<dialog "You">>Go ahead~ <</dialog>> <div class="button-row"> <<regButton "haru8-hcum2" "She cums">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hcum2]] <<time 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hcum2">> <<dialog "Haru">>Ahhhhh~ That felt~ Amazing~ <</dialog>> <<dialog "You">>We're not done yet~ <</dialog>> <div class="button-row"> <<regButton "haru8-cow1" "Cowgirl">><</regButton>> <<regButton "haru8-dog1" "Doggy">><</regButton>> <<regButton "haru8-hard1" "Hard">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cow1]][[haru8-dog1]][[haru8-hard1]] <<time 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/cowa" 1 3>> <<dialog "Haru">>Ahhh~ Ahhh~ Lay down, let me do all the work~ <</dialog>> <<dialog "You">>Sure~ <</dialog>> <div class="button-row"> <<regButton "haru8-cow2" "Lay down">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cow2]] <<time 0 9>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/doga" 1 2>> <<dialog "You">>Ahh~ I love staring at your ass while I fuck you~ <</dialog>> <<dialog "Haru">>Hnnn~ Do you~ Ahhh~ Like it? Ahhh~ <</dialog>> <<dialog "You">>Of course~ <</dialog>> <div class="button-row"> <<regButton "haru8-dog2" "Harder">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-dog2]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/harda" 1 2>> <<dialog "Haru">>Ahhh~ Ahhh~ I love you~ <</dialog>> <<dialog "You">>I love you too. <</dialog>> <div class="button-row"> <<regButton "haru8-hard2" "Harder">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hard2]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/cowb" 1 2>> <<dialog "Haru">>Ahhh~ Ahhh~ It feels good~ <</dialog>> <<dialog "You">>Spread your legs open~ I wanna see your pussy eat me up~ <</dialog>> <div class="button-row"> <<regButton "haru8-cow3" "She spreads her legs open">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cow3]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/cowc" 1 2>> <<dialog "Haru">>Mmmn~ Ahhh~ Ahhh~ Can you~ Ahhh~ See? <</dialog>> <<dialog "You">>It's so hot~ <</dialog>> <div class="button-row"> <<regButton "haru8-cow4" "Fuck her hard">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cow4]] <<time 0 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/cowd">> <<dialog "Haru">>Ah~ Ah~ Ah~ I said let me~ Ah~ do all the woooork~ Ahhhhhhh~ <</dialog>> <<dialog "You">>Ahhh~ You're just so hot, I couldn't hold it anymore~ <</dialog>> <div class="button-row"> <<regButton "haru8-hcum3" "She cums">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hcum3]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hcum3">> <<dialog "Haru">>Hnnn~ My legs are getting tired~ <</dialog>> <<dialog "You">>Let me take over then~ <</dialog>> <div class="button-row"> <<regButton "haru8-mis1" "Missionary">><</regButton>> <<regButton "haru8-dog1" "Doggy">><</regButton>> <<regButton "haru8-hard1" "Hard">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cow1]][[haru8-dog1]][[haru8-hard1]] <<time 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/dogb">> <<dialog "Haru">>Ahhh~ Ahhh~ Ahhh~ Ahhh~ Ahhh~ Not too haaard~ Ahhhhhhhh~ <</dialog>> <<dialog "You">>Ahh~ Haru~ <</dialog>> <div class="button-row"> <<regButton "haru8-hcum4" "She cums">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hcum4]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hcum4">> <<dialog "Haru">>Ahhhhh~ Haaaaaaaaaaa~ <</dialog>> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Haru">>Yes~ <</dialog>> <div class="button-row"> <<regButton "haru8-cow1" "Cowgirl">><</regButton>> <<regButton "haru8-mis1" "Missionary">><</regButton>> <<regButton "haru8-hard1" "Hard">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cow1]][[haru8-dog1]][[haru8-hard1]] <<time 6>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hardb" 1 3>> <<dialog "Haru">>Ahhh~ Haa~ Haa~ Haa~ Ahhh~ <</dialog>> <<dialog "You">>You are so beautiful~ <</dialog>> <div class="button-row"> <<regButton "haru8-hard3" "Harder">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hard3]] <<time 0 9>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hardc" 1 3>> <<dialog "Haru">>Ahhh~ Ahhhh~ More beautiful than Emi-chan? <</dialog>> <<dialog "You">>Ahhh~ Yes~ <</dialog>> <<dialog "Haru">>Hahhh~ Shizu-sensei? <</dialog>> <<dialog "You">>Ahhh~ Yes~ <</dialog>> <<dialog "Haru">>Ahhhh~ Haaahhhh~ Even Shiori-chan? Ahhh~ <</dialog>> <<dialog "You">>You're the most beautiful! <</dialog>> <div class="button-row"> <<regButton "haru8-hard4" "Harder">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-hard4]] <<time 0 9>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/hardd">> <<dialog "Haru">>Ahhhhhhh~ I love you so muuuch~ <</dialog>> <<dialog "You">>Fuck! I'm cumming~ <</dialog>> <div class="button-row"> <<regButton "haru8-cum" "Cum on her face">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-cum]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/cum">> <<dialog "Haru">>Ahhhhh~ Hahhh~ Hnnnn~ Mmmm~ You came all over my face~ <</dialog>> <<dialog "You">>Don't worry~ You're still the prettiest~ <</dialog>> <div class="button-row"> <<regButton "haru8-clean" "She cleans you up">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-clean]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/clean">> <<dialog "Haru">>Mmmm~ <</dialog>> <<dialog "You">>Ahhh~ You're perfect~ <</dialog>> <div class="button-row"> <<regButton "haru8-end1" "Continue">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-end1]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/end1">> <<dialog "Haru">>I'm tired now~ <</dialog>> <<dialog "You">>Let's wash up then we can go to bed. <</dialog>> <div class="button-row"> <<regButton "haru8-end2" "Continue">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-end2]] <<time 0 1>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/end2">> <<dialog "Haru">>Will you sleep here? <</dialog>> <<dialog "You">>Should I not? <</dialog>> <<dialog "Haru">>No~ I want you to sleep here. <</dialog>> <<dialog "You">>Then I'll stay with you~ <</dialog>> <div class="button-row"> <<regButton "haru8-end3" "The next day">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-end3]] <<time 0 1>> <</backend>>
<<include "sleep-crud">><<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/end4">> <<dialog "Haru">>*Sigh* I love you. <</dialog>> <<dialog "You">>...I love you too~ <</dialog>> <div class="button-row"> <<regButton "haru8-end4" "She opens her eyes">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-end4]] <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/haru8/end5">> <<dialog "Haru">>Oh? You're awake? <</dialog>> <<dialog "You">>I am~ <</dialog>> <div class="button-row"> <<regButton "haru8-end5" "She smiles">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-end5]] <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<vid "haru/wake">> <<dialog "Haru">>Good Morning~ <</dialog>> <<dialog "You">>Good Morning~ <</dialog>> <div class="button-row"> <<if $day == "Saturday">> <<regButton "haru8-end6a" "Get up">><</regButton>> <<else>> <<regButton "haru8-end6b" "Get up">><</regButton>> <</if>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru8-end6a]][[haru8-end6b]] <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru">>Let's have breakfast before I go to work~ <</dialog>> <<dialog "You">>Sure. <</dialog>> <<dialog "You">><i>I tried looking for Yuki yesterday but I couldn't find her. There's something weird about that Gyo guy. I'm gonna look for Yuki again today, I hope Uncle has some leads. I should ask Seiya to look too.</i> <</dialog>> <h1>Check your phone.</h1> <<dialog "You">>Actually, I need to leave. I forgot to tell my Uncle I'm sleeping here today so he's all mad at me. I'm sorry! <</dialog>> <<dialog "Haru">>N-no! It's okay. You should have called them last night... <</dialog>> <<dialog "You">>I'm sorry! It's just... I was having such a great time with you that I forgot about everything else. I'll come get you after work again later, okay? <</dialog>> <<dialog "Haru">>Okay~ Let's have dinner again instead of breakfast~ I love you~ <</dialog>> <<dialog "You">>I love you too. <</dialog>> <div class="button-row"> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> [[haru8-end5]] <<set $haru.quest = 9>> <<set $yuki.quest = 10>> <</backend>>
<<bg "haru-home" $hour>><</bg>> <div class="content-panel"> <<dialog "Haru">>We should grab breakfast then head to class~ <</dialog>> <<dialog "You">>Sure. <</dialog>> <<dialog "You">><i>I tried looking for Yuki yesterday but I couldn't find her. There's something weird about that Gyo guy. I'm gonna look for Yuki again today, I hope Uncle has some leads. I should ask Seiya to look too.</i> <</dialog>> <h1>Check your phone.</h1> <<dialog "You">>Actually, I can't come to school today. My aunt is flying in today, and I need to come get them at the airport. It totally slipped my mind. My uncle is blowing up my phone. <</dialog>> <<dialog "Haru">>Awww. You should have called him last night... <</dialog>> <<dialog "You">>I know! It's just... I was having such a great time with you that I forgot about everything else. <</dialog>> <<dialog "Haru">>Okay~ I look forward to meeting your aunt. I'm sure your uncle's wife is as lovely as he is. <</dialog>> <<dialog "You">>Pfft~ That old man is gonna be single forever. Aunt Marika is my dad's younger sister. The youngest is Uncle Hideo by the way. <</dialog>> <<dialog "Haru">>Oh~ My comment must've been weird, huh? <</dialog>> <<dialog "You">>Nahh~ It's okay, you didn't know. I'll come visit you after school, okay? <</dialog>> <<dialog "Haru">>Okay~ I love you~ <</dialog>> <<dialog "You">>I love you too. <</dialog>> <div class="button-row"> <<regButton "res-area" "Leave">><</regButton>> </div> </div> <<backend>> <<set $profile to "yuki-profile">> [[haru8-end5]] <<set $haru.quest = 9>> <<set $yuki.quest = 10>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<dialog "You">>Hi, Yuki. You're looking cute again today. <</dialog>> <<dialog "Yuki">>I'm working... sir... <</dialog>> <<dialog "You">>How cold~ <</dialog>> <<if $yuki.chat <= 3>><h1><<glow "0.4px #e60036" "8px #f00" "18">>Relationship +1<</glow>></h1><</if>> <div class="button-row id-row"> <<regButton "yuki7-2" "Leave">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<if $yuki.chat <= 3>><<set $yuki.love = $yuki.love + 1>><</if>> <<set $yuki.chat = $yuki.chat + 1>> <<set $hidenav = 1>> [[yuki7-2]] <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <h1>You notice something on the ground.</h1> <img src="img/misc/konbini-shirt.jpg" style="max-width: 80%;"> <<dialog "You">>Why is there a uniform on the ground? <</dialog>> <h1>You pick it up.</h1> <<dialog "You">>Hmmm... Maybe I could... <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-3" "Find Yuki">><</regButton>> </div> </div> <<backend>> [[yuki7-3]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/1">> <<dialog "You">>Hey. <</dialog>> <<dialog "Yuki">>Hm? Hmmm!? Why are you wearing that? <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-4" "Take her away">><</regButton>> </div> </div> <<backend>> [[yuki7-4]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/2">> <<dialog "You">>Follow me~ <</dialog>> <<dialog "Yuki">>Ehhhh? I told you I was working~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-5" "Go inside the employee bathroom">><</regButton>> </div> </div> <<backend>> [[yuki7-5]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/3">> <<dialog "You">>Have fun with me for a bit~ <</dialog>> <<dialog "Yuki">>Heyy~ I need to go back to work~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-6" "Kiss her">><</regButton>> </div> </div> <<backend>> [[yuki7-6]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/kissa" 1 2>> <<dialog "Yuki">>Mmmm~ I want this too, but I have to work~ <</dialog>> <<dialog "You">>We'll be quick~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-7" "Lift her shirt up">><</regButton>> </div> </div> <<backend>> [[yuki7-7]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/bra">> <<dialog "Yuki">>J-just one position, okay? <</dialog>> <<dialog "You">>Umm... We'll be quick~ <</dialog>> <<dialog "Yuki">>H-heyyy~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-8" "Kiss her again">><</regButton>> </div> </div> <<backend>> [[yuki7-8]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/kissb" 1 2>> <<dialog "Yuki">>Mmmm~ <</dialog>> <<dialog "You">>Bend over~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-9" "Turn her around">><</regButton>> </div> </div> <<backend>> [[yuki7-9]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/bend">> <<dialog "Yuki">>Heyy~ What if there's a customer? <</dialog>> <<dialog "You">>It'll be okay~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-10" "Pull her bottoms down">><</regButton>> </div> </div> <<backend>> [[yuki7-10]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/bottoms">> <<dialog "Yuki">>Wh-whatever... Just be quick, okay? <</dialog>> <<dialog "You">>I'll be quick~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-dog1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[yuki7-dog1]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/dog1">> <<dialog "Yuki">>Mmm~ Hnnnng~ <</dialog>> <<dialog "You">>I'll go harder, okay? <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-dog2" "Harder">><</regButton>> </div> </div> <<backend>> [[yuki7-dog2]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/dog2">> <<dialog "Yuki">>Hnnngg~ Ahhh~ Haaa~ Haaa~ Ahhhh~ <</dialog>> <<dialog "You">>Keep your voice down~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-dog3" "She cums">><</regButton>> </div> </div> <<backend>> [[yuki7-dog3]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/cum">> <<dialog "Yuki">>Ahhh~ Haaa~ Haaa~ <</dialog>> <<dialog "You">>Did you cum? <</dialog>> <<dialog "Yuki">>Y-yes... <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-end1" "Turn her around">><</regButton>> </div> </div> <<backend>> [[yuki7-end1]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki7/end">> <<dialog "You">>Turn around~ I wanna see your face when I cum~ <</dialog>> <<dialog "Yuki">>Haahhh~ Okay~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki7-end2" "You get interrupted">><</regButton>> </div> </div> <<backend>> [[yuki7-end2]] <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<enemy "konbini-owner" "Store Owner" "" "left">>Yuki-chaaan~ Come to the counter when you're done~ There are a lot of customers~ <</enemy>> <<dialog "You">>Shit... <</dialog>> <<dialog "Yuki">>Y-yes sir! I'll be out in a bit! <</dialog>> <<enemy "konbini-owner" "Store Owner" "" "left">>It's fine~ Just hurry, okay? <</enemy>> <<dialog "Yuki">>Y-yes! <</dialog>> <h1>She turns to you.</h1> <<dialog "Yuki">>I gotta go. Let's continue this on my break, okay? 6PM. <</dialog>> <<dialog "You">>Fuck. Fine... I'll come back, okay? <</dialog>> <div class="button-row id-row"> <<regButton "konbini-int" "Leave">><</regButton>> </div> </div> <<backend>> <<set $yuki.quest = 8>> <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/1">> <<dialog "You">>I'm back~ <</dialog>> <<dialog "Yuki">>Pfft~ You're still wearing the uniform. <</dialog>> <<dialog "You">>I needed to sneak in here somehow~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-2" "She offers you some candy">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-2]] <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/2">> <<dialog "You">>That's your dinner? <</dialog>> <<dialog "Yuki">>Nah~ I'll eat something decent later. You want some? <</dialog>> <<dialog "You">>I want the one in your mouth~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-kiss1" "Kiss her">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-kiss1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/kissa">> <<dialog "You">>Sour~ <</dialog>> <<dialog "Yuki">>You don't like it? <</dialog>> <<dialog "You">>I like your lips. <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-kiss2" "Keep making out">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-kiss2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/kissb" 1 2>> <h1>I figured out how to make the stars clickable! You can now choose which clip you want to view. No more porn gacha!</h1> <<dialog "You">>Your lips are sweeter than candy~ <</dialog>> <<dialog "Yuki">>They're all yours. <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-kiss3" "Use more tongue">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-kiss3]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/kissc" 1 2>> <<dialog "You">>Mmm~ <</dialog>> <<dialog "Yuki">>You know... Mmm~ I only have an hour of break. Mmm~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-top1" "Lift up her top">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-top1]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/top1">> <<dialog "You">>I want to enjoy it~ <</dialog>> <<dialog "Yuki">>But what if someone comes in? <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-lick" "Suck on her nipples">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-lick]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/lick" 1 2>> <<dialog "You">>I perform better with an audience~ <</dialog>> <<dialog "Yuki">>Hnnnnggg~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-pants" "Take her pants off">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-pants]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/pants">> <<dialog "Yuki">>Ahh~ I don't care anymore~ <</dialog>> <<dialog "You">>That's my girl~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-kiss4" "Kiss her">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-kiss4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/kissd">> <<dialog "Yuki">>Yes~ Keep touching me~ <</dialog>> <<dialog "You">>Get on top of the table~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-table" "She gets on the table">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-table]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/table">> <<dialog "You">>You look good in black~ <</dialog>> <<dialog "Yuki">>I'd look even better if you took that off though. <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-panties" "Take it off">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-panties]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/panties">> <<dialog "You">>Look at you being all forward~ <</dialog>> <<dialog "Yuki">>Just eat me out already~ <</dialog>> <<dialog "You">>You're already so wet though~ <</dialog>> <<dialog "Yuki">>Should I not go down on you, then? <</dialog>> <<dialog "You">>Thanks for the meal~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cun1" "Cunnilingus">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cun1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cuna" 1 2>> <<dialog "Yuki">>Hnnnnggg~ Ahhh~ Yes~ It feels so goood~ <</dialog>> <<dialog "You">>*Slurp* <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-polo" "She gets up">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-polo]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/polo">> <<dialog "Yuki">>I should wear this so we can pretend nothing's happening if someone walks in~ <</dialog>> <<dialog "You">>Heh~ Why are you being all shy? <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-fin1" "Kiss her">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-fin1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/fin1">> <<dialog "Yuki">>*Slurp* Ahhh~ <</dialog>> <<dialog "You">>I'm going to make you scream so loud, it wouldn't matter whether you're naked or in full uniform~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-fin2" "Finger her intensely">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-fin2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/fin2">> <<dialog "Yuki">>Ahhhhhhhh~ Oh my goooooood~ <</dialog>> <<dialog "You">>Suck my dick. <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-bj" "Blowjob">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-bj]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/bj" 1 2>> <<dialog "Yuki">>*Gkk* *Gkk* *Gkk* <</dialog>> <<dialog "You">>Ahh~ You're gonna make me cum~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cum1" "Cum">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cum1]] <<time 0 5>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cum1">> <<dialog "Yuki">>*Gkk* Mmppphhh~ Mmmm~ <</dialog>> <<dialog "You">>Ahhhhh~ Let me see it~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-spit" "She spits it out">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-spit]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/spit">> <<dialog "Yuki">>Hehe~ You came~ <</dialog>> <<dialog "You">>We're not done yet though. <</dialog>> <<dialog "Yuki">>H-huh? M-my break is gonna be over soon~ <</dialog>> <<dialog "You">>I haven't fucked you yet~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-bed" "Move to the bench">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-bed]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/bench">> <<dialog "Yuki">>H-heyy~ <</dialog>> <<dialog "You">>We'll be quick~ <</dialog>> <<dialog "Yuki">>Ugh. F-fine. <</dialog>> <<dialog "You">>Hehe~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-69" "69">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-69]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/69" 1 2>> <<dialog "Yuki">>*Gkk* Mmmpphh~ *Gkk* *Slurp* Hnnnggg~ <</dialog>> <<dialog "You">>*Slurp* *Slurp* *Slurp* <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-dog1" "Fuck her">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-dog1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/doga" 1 2>> <<dialog "Yuki">>Ahhh~ This is bad~ It feels too good~ <</dialog>> <<dialog "You">>We're not even there yet~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-dog2" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-dog2]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/dogb" 1 2>> <<dialog "Yuki">>Ahhhhhh~ I'm gonna cuuuum~ <</dialog>> <<dialog "You">>Already? <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-dog3" "Stop">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-dog3]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/dogc" 1 3>> <<dialog "Yuki">>E-eh? Ahhh~ Wh-why did you stop? <</dialog>> <<dialog "You">>You're going to cum too early~ <</dialog>> <<dialog "Yuki">>P-pleease~ Ahhh~ I want to cum~ <</dialog>> <<dialog "You">>You really want to cum? <</dialog>> <<dialog "Yuki">>Yeeess~ Ahhhh~ Pleaase~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-dog4" "Start moving">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-dog4]] <<time 0 5>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/dogd">> <<dialog "Yuki">>Ahhhh~ Make me cuuum~ <</dialog>> <<dialog "You">>Yes, maam~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-ycum1" "She cums">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-ycum1]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/ycum1">> <<dialog "Yuki">>Hahhh~ Hahhh~ Hahhh~ <</dialog>> <<dialog "You">>We're not done yet~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-undress" "Take her clothes off">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-undress]] <<time 0 5>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/undress">> <<dialog "Yuki">>Ahhh~ If I lose my job, you're gonna be my sugar daddy~ <</dialog>> <<dialog "You">>I'm pretty sure you're older than me, but I'll take care of you~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cow1" "Cowgirl">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cow1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cowa" 1 3>> <<dialog "Yuki">>Ahhhh~ It's so deep~ <</dialog>> <<dialog "You">>Ahhh~ Keep riding~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-ycum2" "She cums">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-ycum2]] <<time 0 6>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/ycum2">> <<dialog "Yuki">>Hnnggg~ Ahhh~ <</dialog>> <<dialog "You">>You get so tight when you cum~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-mis1" "Missionary">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-mis1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/misa" 1 2>> <<dialog "Yuki">>Ahhhh~ Hahhh~ Hahhhh~ Hahhh~ <</dialog>> <<dialog "You">>It feels so good, Yuki~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-mis2" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-mis2]] <<time 0 4>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/misb" 1 2>> <<dialog "Yuki">>Ahhhhhhhhhh~ Right there~ It feels so good right there~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-mis3" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-mis3]] <<time 0 4>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/misc">> <<dialog "Yuki">>Ahhh~ Yeees~ That's it~ Cum inside me~ <</dialog>> <<dialog "You">>Fuck, I'm cumming~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cum2" "Cum">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cum2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cum2">> <<dialog "Yuki">>Ahh~ Mmmm~ <</dialog>> <<dialog "You">>That felt good~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-taste" "She has a taste">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-taste]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/taste">> <<dialog "Yuki">>Mmm~ Ahh~ It's so good~ <</dialog>> <<dialog "You">>That felt good~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-more" "She wants more">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-more]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/more">> <<dialog "Yuki">>Hnnnggg~ I said I wanted it inside~ <</dialog>> <<dialog "You">>Heh~ It would have been over if I came inside~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cow2" "Cowgirl">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cow2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cowb" 1 3>> <<dialog "You">>Ahh~ I thought you don't want us to get caught~ <</dialog>> <<dialog "Yuki">>Ahh~ I don't care anymore~ If we get caught~ Ahhhh~ You can just be my~ Ahhh~ Sugardaddy~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cow3" "She puts her knees down">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cow3]] <<time 0 6>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cowc" 1 2>> <<dialog "Yuki">>Ahhhh~ I can feel it~ You're gonna make me cum again~ <</dialog>> <<dialog "You">>I need it deeper~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cow4" "She moves her hand forward">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cow4]] <<time 0 4>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cowd" 1 2>> <<dialog "Yuki">>Ahhh~ I'm gonna cuuum~ <</dialog>> <<dialog "You">>Cum for me, Yuki~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-ycum3" "She cums">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-ycum3]] <<time 0 4>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/ycum3">> <<dialog "Yuki">>Hnnngggggg~ Ahhh~ <</dialog>> <<dialog "You">>It's so tight~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-rcow1" "Reverse Cowgirl">><</regButton>> <<regButton "yuki8-hard1" "Missionary">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-rcow1]][[yuki8-hard1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/rcowa" 1 3>> <<dialog "Yuki">>Ahh~ Yes~ Right there~ Right there~ <</dialog>> <<dialog "You">>Harder~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-rcow2" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-rcow2]] <<time 0 6>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/hard1">> <<dialog "Yuki">>Ahhhhh~ Oh my goood! <</dialog>> <<dialog "You">>Ahhh~ Hnggg~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-hard2" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-hard2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/rcowb">> <<dialog "Yuki">>Ah~ Hahhh~ I'm gonna cum agaaaain~ <</dialog>> <<dialog "You">>Go ahead~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-ycum4" "She cums">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-ycum4]] <<time 0 6>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/ycum4">> <<dialog "Yuki">>Hnnngggggg~ Ahhh~ <</dialog>> <<dialog "You">>It's so tight~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cow2" "Cowgirl">><</regButton>> <<regButton "yuki8-hard1" "Missionary">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/hard2">> <<dialog "Yuki">>Hnggggg~ It feels so gooooooooood~ Ahhhhh~ <</dialog>> <<dialog "You">>Shit~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-ycum5" "She cums">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-ycum5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/ycum5">> <<dialog "Yuki">>Ahh~ Haaahhh~ Haahhh~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cow2" "Cowgirl">><</regButton>> <<regButton "yuki8-rcow1" "Reverse Cowgirl">><</regButton>> <<regButton "yuki8-hard3" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<time 0 1>>[[yuki8-hard3]] <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/hard3">> <<dialog "Yuki">>Ahh~ Haahhh~ Hahhh~ Haahhhh~ Don't stop~ Don't stop~ <</dialog>> <<dialog "You">>*Huff* *Huff* Ahh~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-hard4" "Harder">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-hard4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/hard4">> <<dialog "Yuki">>Ahhh~ This feels good~ Cum inside meee~ <</dialog>> <<dialog "You">>Fuuuck~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cum3" "Cum Inside">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cum3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cum3">> <<dialog "Yuki">>Ahhh~ Oh my god~ You're filling me up~ It's so warm~ <</dialog>> <<dialog "You">>Oh my god~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-cream" "Pull out">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-cream]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/cream">> <<dialog "Yuki">>Hahhh~ I can feel it oozing out~ <</dialog>> <<dialog "You">>That looks hot~ <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-end1" "Continue">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-end1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/end1">> <<dialog "Yuki">>Hahhh~ Nobody caught us~ <</dialog>> <<dialog "You">>You were being loud too. I guess they're used to it. We do have sex here a lot. <</dialog>> <<dialog "Yuki">>You are pretty well known. I just remembered something... <</dialog>> <div class="button-row id-row"> <<regButton "yuki8-end2" "What is it?">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> [[yuki8-end2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<div class="bg konbini-int"></div> <div class="content-panel"> <<vid "yuki/yuki8/end2">> <<dialog "Yuki">>Well~ There were these 2 guys who were asking for my number. One of them were getting aggressive so I told him we were dating... My bad. <</dialog>> <<dialog "You">>No. You did the right thing. Did that scare them off? <</dialog>> <<dialog "Yuki">>It did~ <</dialog>> <<dialog "You">>Who were they? <</dialog>> <<dialog "Yuki">>I don't really know. One of them got really aggressive. The guy with the black hair with red streaks... The other guy, did come back. I think he had a fight with the aggressive guy because he was showing gangsters his photo and telling them he lives in Arik-- <</dialog>> <<enemy "konbini-owner" "Store Owner" "" "left">>Yuki? Are you here? <</enemy>> <<dialog "Yuki">>Sh-shit. You should go. My shift isn't done yet. I'll see you next time, okay? <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row id-row"> <<regButton "konbini" "Sneak out">><</regButton>> </div> </div> <<backend>> <<set $location to "Convenience Store">> <<set $profile to "yuki-profile">> <<time 0 1>> <<set $hidenav = 1>> <<set $yuki.quest = 9>> <</backend>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Any news about Yuki? <</dialog>> <<dialog "Uncle">>Ride with me. <</dialog>> <<dialog "You">>Where? <</dialog>> <<dialog "Uncle">>Ariku. <</dialog>> <h1>Please save here. Buy lots of tonic from Akane~</h1> <div class="button-row"> <<regButton "yuki9-2" "Get in the car">><</regButton>> </div> </div> <<backend>> [[yuki9-2]] <<set $location to "Home">> <<set $profile to "player-profile">> <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Seriously? Ariku? Yuki did mention guys from Ariku approaching her. <</dialog>> <<dialog "Uncle">>What did she do? <</dialog>> <<dialog "You">>She told them I was her boyfriend... Do you think that maybe... They took her because of me? <</dialog>> <<dialog "Uncle">>Stop that thought. They approached her without knowing she had a relationship with you. It's not your fault. The important thing right now is to hurry up and find her. <</dialog>> <<dialog "You">>Okay. Lets hurry. <</dialog>> <div class="button-row"> <<regButton "yuki9-3" "You arrive">><</regButton>> </div> </div> <<backend>> [[yuki9-3]] <<time 0 1>> <<set $location to "Home">> <<set $profile to "player-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Are you sure this is it? <</dialog>> <<dialog "Uncle">>Yeah. Let's wait for back up. <</dialog>> <<dialog "You">>No. You wait. I'm going in. <</dialog>> <<dialog "Uncle">>It's too dangerous, kid. <</dialog>> <<dialog "Uncle">>!!! <</dialog>> <div class="button-row"> <<regButton "yuki9-4" "Your uncle looks at you">><</regButton>> </div> </div> <<backend>> [[yuki9-4]] <<time 0 45>> <<set $location to "Ariku">> <<set $profile to "player-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/yuki-save/1.jpg" style="width: 45%;"> <<dialog "You">>Yuki could be dead by now. <</dialog>> <<dialog "Uncle">>Y-you're right. <</dialog>> <<dialog "Uncle">><i>I thought he was big bro Isao for a second. They really are father and son.</i> <</dialog>> <<dialog "You">>I'll go alone for now. If they underestimate me, they'd be less careful. If we go in together now, they might run off with Yuki. <</dialog>> <<dialog "Uncle">>S-sure. Don't die on me, kid. <</dialog>> <div class="button-row"> <<regButton "yuki9-5" "Charge">><</regButton>> </div> </div> <<backend>> [[yuki9-5]] <<time 0 1>> <<set $location to "Ariku">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <img id="title-image" src="img/misc/yuki-save/2.jpg" style="width: 60%;"> <<dialog "You">>Where is she? <</dialog>> <<enemy "arigoon2" "Sergei" "" "left">>Who knows? <</enemy>> <<enemy "arigoon" "Peter" "" "left">>You! I remember you. Th-this is bad... <</enemy>> <<dialog "You">>Oh? Didn't you kidnap Miku? I see. <</dialog>> <div class="button-row"> <<regButton "yuki9-5-battlecrud" "Attack">><</regButton>> </div> </div> <<backend>> [[yuki9-5-battlecrud]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "yuki9-5">> <<set $enemy = { level: 80, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "arigoon">><<set $ename = "Peter">> <<set $profile = "player-profile">> <<set $pspeech = "Yeah. You die today.">> <<set $espeech = "It's not going to end like last time.">> <<goto "battle-crud2">> [[yuki9-5-battle]] <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "dungeon">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[yuki9-5-win]][[yuki9-5-lose]] <<set $dmgres = "">> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg dungeon"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "arigoon" "Peter" "" "left">>Ugk. <</enemy>> <<enemy "arigoon2" "Sergei" "" "left">>It's not over yet, fucker. Get him all at once! <</enemy>> <div class="button-row"> <<regButton "yuki9-6-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[yuki9-6-battlecrud]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "yuki9-5" "Nah~ I'll fight again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> <<set $location = "Ariku">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "yuki9-6">> <<set $enemy = { level: 90, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "idiotb">><<set $ename = "Random Guard">> <<set $profile = "player-profile">> <<set $pspeech = "...">> <<set $espeech = "Die!">> <<goto "battle-crud2">> [[yuki9-6-battle]] <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "dungeon">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[yuki9-6-win]][[yuki9-6-lose]] <<set $dmgres = "">> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg dungeon"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "arigoon2" "Sergei" "" "left">>Kill him! <</enemy>> <div class="button-row"> <<regButton "yuki9-7-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[yuki9-7-battlecrud]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "yuki9-5" "Nah~ I'll fight again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> <<set $location = "Ariku">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "yuki9-7">> <<set $enemy = { level: 100, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "creep-leader">><<set $ename = "Random Guard">> <<set $profile = "player-profile">> <<set $pspeech = "...">> <<set $espeech = "Die!">> <<goto "battle-crud2">> [[yuki9-7-battle]] <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "dungeon">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[yuki9-7-win]][[yuki9-7-lose]] <<set $dmgres = "">> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg dungeon"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "arigoon2" "Sergei" "" "left">>You useless fuckers! He's just one guy! <</enemy>> <div class="button-row"> <<regButton "yuki9-8-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[yuki9-8-battlecrud]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "yuki9-5" "Nah~ I'll fight again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> <<set $location = "Ariku">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "yuki9-8">> <<set $enemy = { level: 110, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "random-punk">><<set $ename = "Random Guard">> <<set $profile = "player-profile">> <<set $pspeech = "...">> <<set $espeech = "Die!">> <<goto "battle-crud2">> [[yuki9-8-battle]] <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "dungeon">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[yuki9-8-win]][[yuki9-8-lose]] <<set $dmgres = "">> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "yuki9-5" "Nah~ I'll fight again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> <<set $location = "Ariku">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg dungeon"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "arigoon2" "Sergei" "" "left">>Idiots. I'm gonna have to kill you myself, then. <</enemy>> <div class="button-row"> <<regButton "yuki9-9-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[yuki9-9-battlecrud]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "yuki9-9">> <<set $enemy = { level: 130, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "arigoon2">><<set $ename = "Sergei">> <<set $profile = "player-profile">> <<set $pspeech = "...">> <<set $espeech = "You should have just let them fuck you up. I'm not as nice as them. I will make this as painful as possible.">> <<goto "battle-crud2">> [[yuki9-9-battle]] <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "dungeon">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[yuki9-9-win]][[yuki9-9-lose]] <<set $dmgres = "">> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <h1>You lost. Level up a bit and retry.</h1> <div class="button-row"> <<regButton "yuki9-5" "Nah~ I'll fight again">><</regButton>> <<regButton "bedroom" "Back to bedroom">><</regButton>> </div> </div> <<backend>> <<set $location = "Ariku">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg dungeon"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <img id="title-image" src="img/misc/yuki-save/3.jpg" style="width: 80%;"> <div class="button-row"> <<regButton "yuki9-10" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki9-10]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<dialog "You">>Ah. I forgot to ask where she was. Hey. <</dialog>> <<enemy "arigoon2" "Sergei" "" "left">>... <</enemy>> <<dialog "You">>He's out cold. Fuck. I guess I can explore this... dungeon. <</dialog>> <div class="button-row"> <<regButton "yuki9-11" "You walk around and find Yuki">><</regButton>> </div> </div> <<backend>> [[yuki9-11]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/1">> <<dialog "You">>Y-yuki! <</dialog>> <<dialog "Yuki">>$player.name? I-is that really you? *Sob* <</dialog>> <<dialog "You">>Y-yuki! It's me! D-did they... rape you? I'm going to ki-- <</dialog>> <<dialog "Yuki">>Fuck me! *Sob* Please, fuck me! *Sob* <</dialog>> <<dialog "You">>W-wait. What? <</dialog>> <<dialog "Yuki">>Th-they didn't rape me. B-but they drugged me... I can't take it anymore! Please fuck me! *Sob* <</dialog>> <<dialog "You">>W-wait! <</dialog>> <<dialog "Yuki">>Do it now! *Sob* Please! <</dialog>> <div class="button-row"> <<regButton "yuki9-fin1" "Stick your finger in her">><</regButton>> </div> </div> <<backend>> [[yuki9-fin1]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/fina" 1 3>> <<dialog "Yuki">>Ahhh~ Yes~ That feels gooood~ <</dialog>> <<dialog "You">>Tell me what happened first. <</dialog>> <<dialog "Yuki">>Hnnnggg~ The store owner~ Ahhh~ Sold me to~ Ahhhh~ Prostitution ring~ *Sob* <</dialog>> <<dialog "You">>Sh-shit! Haru's working there right now. <</dialog>> <<dialog "Yuki">>Ahhh~ Please use two fingers~ *Sob* <</dialog>> <div class="button-row"> <<regButton "yuki9-fin2" "Use two fingers">><</regButton>> </div> </div> <<backend>> [[yuki9-fin2]] <<time 0 6>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/finb" 1 3>> <<dialog "Yuki">>Hnnnngggg~ <</dialog>> <<dialog "You">>Are you sure they didn't rape you? <</dialog>> <<dialog "Yuki">>Y-yes~ They wanted me to break so they drugged me with an aphrodisiac~ Ahhhh~ Keep going~ *Sob* <</dialog>> <<dialog "You">>Fucking bastards. <</dialog>> <<dialog "Yuki">>Use the vibrators! <</dialog>> <div class="button-row"> <<regButton "yuki9-toy" "Use the vibrators">><</regButton>> </div> </div> <<backend>> [[yuki9-toy]] <<time 0 6>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/toy" 1 2>> <<dialog "Yuki">>Yeeeeeees~ <</dialog>> <<dialog "You">>Fuck... <</dialog>> <<dialog "Yuki">>Fuck meeee! *Sob* <</dialog>> <<dialog "You">><i>Shit. Who'd be in the mood for sex in this situation? Whatever.</i> <</dialog>> <div class="button-row"> <<regButton "yuki9-mis1" "Fuck her">><</regButton>> </div> </div> <<backend>> [[yuki9-mis1]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/misa" 1 2>> <<dialog "Yuki">>Ahhh~ <</dialog>> <<dialog "You">>Tell me what you remember. Ahhh~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis2" "Fuck her">><</regButton>> </div> </div> <<backend>> [[yuki9-mis2]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/misb" 1 4>> <<dialog "Yuki">>Ahhh~ Th-the owner was~ Ahhhh~ Talking to some guys~ Ahhh~ On the phone and told them~ Ahhh~ "The girl is alone" Ahhh~ Oh my good~ I'm cummiiiing~ <</dialog>> <<dialog "You">>Fuck. <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum1" "She cums">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum1]] <<time 0 8>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum1">> <<dialog "Yuki">>Haaahhhh~ More~ More~ Fuck me more~ <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Yuki">>Yes~ Pleeease~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis3" "Fuck her again">><</regButton>> </div> </div> <<backend>> [[yuki9-mis3]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/misc" 1 2>> <<dialog "You">>Ahh~ Okay~ What else can you remember? <</dialog>> <<dialog "Yuki">>I got~ Ahhhh~ Taken by 2 guys~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis4" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki9-mis4]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/misd" 1 2>> <<dialog "Yuki">>Ahhhh~ I don't want to think about them anymore~ *Sobs* Please just fuck meeee~ <</dialog>> <<dialog "You">>O-okay. <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum2" "She cums">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum2]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum2">> <<dialog "Yuki">>Ahhhhhhhhhh~ Moooore~ <</dialog>> <<dialog "You">>You just came... <</dialog>> <<dialog "Yuki">>Mooore~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis5" "Fuck her again">><</regButton>> </div> </div> <<backend>> [[yuki9-mis5]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/mise" 1 2>> <<dialog "Yuki">>Oh my goood~ Yeees~ <</dialog>> <<dialog "You">>Fuck, it's starting to feel really good. <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum3" "Make her squirt">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum3]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum3">> <<dialog "Yuki">>Ahhhhhhhhh~ Oh my god~ <</dialog>> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Yuki">>M-more~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis6" "Fuck her again">><</regButton>> </div> </div> <<backend>> [[yuki9-mis6]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/misf2">> <<dialog "Yuki">>Ahh~ Haaahhhh~ <</dialog>> <<dialog "You">>Does it feel good? <</dialog>> <<dialog "Yuki">>Yess~ <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum4a" "Speed up">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum4a]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum4a">> <<dialog "Yuki">>Ahhhhhhhhh~ <</dialog>> <<dialog "You">>Ah~ Yuki, it feels so good~ <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum4b" "Faster">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum4b]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum4b">> <<dialog "Yuki">>Haaahhhhh! Haaaaaaaahhhhh! I'm cumming~ <</dialog>> <<dialog "You">>Ah~ Yuki, it feels so good~ <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum4c" "She cums">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum4c]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum4c">> <<dialog "Yuki">>Ahhhhhhhhh~ Oh my god~ <</dialog>> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Yuki">>M-more~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis7" "Fuck her again">><</regButton>> </div> </div> <<backend>> [[yuki9-mis7]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/misg" 1 2>> <<dialog "Yuki">>Ahhhh~ *Sobs* <</dialog>> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Yuki">>N-no. *Sobs* <</dialog>> <<dialog "You">>Should I stop? <</dialog>> <<dialog "Yuki">>No! Ahhh~ I'm gonna cum agaain~ Fuck me until you cum too~ <</dialog>> <div class="button-row"> <<regButton "yuki9-ycum5" "She cums">><</regButton>> </div> </div> <<backend>> [[yuki9-ycum5]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/ycum5">> <<dialog "Yuki">>Hnnnnnggg~ Ahhh~ <</dialog>> <<dialog "You">>I'm close too, Yuki~ <</dialog>> <<dialog "Yuki">>Ahh~ Okay~ <</dialog>> <div class="button-row"> <<regButton "yuki9-mis8" "Fuck her again">><</regButton>> </div> </div> <<backend>> [[yuki9-mis8]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/mish" 1 2>> <<dialog "Yuki">>Ahhhhhhh~ <</dialog>> <<dialog "You">>Fuck! I'm cumming~ <</dialog>> <div class="button-row"> <<regButton "yuki9-cum" "Cum">><</regButton>> </div> </div> <<backend>> [[yuki9-cum]] <<time 0 4>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/cum">> <<dialog "Yuki">>Hahhhh~ *Gasp* Hahhhhhh~ <</dialog>> <<dialog "You">>Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "yuki9-end1" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki9-end1]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/end1">> <<dialog "Yuki">>Huhu~ *Sobs* <</dialog>> <<dialog "You">>I-I'm sorry. Don't cry. <</dialog>> <<dialog "Yuki">>Why did it take you so long to find me!? I was so scared. <</dialog>> <<dialog "You">>Yuki... <</dialog>> <<dialog "Yuki">>They tortured me with sex toys, but I wouldn't break so they made me drink aphrodisiac. *Sobs* I was so close to letting them have their way with me. <</dialog>> <<dialog "You">>It's okay now. The important thing is they didn't have their way with you. <</dialog>> <<dialog "Yuki">>W-we should run now. *Sobs* They might come back. <</dialog>> <<dialog "You">>Don't worry. I already knocked all of them down. <</dialog>> <div class="button-row"> <<regButton "yuki9-end2" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki9-end2]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<div class="bg dungeon"></div> <div class="content-panel"> <<vid "yuki/yuki9/end2">> <<dialog "Yuki">>Hehe~ *Sobs* I knew you'd come. <</dialog>> <<dialog "You">>Of course. Now you know you can't just disappear on me. I'd look for you even if you skip town. <</dialog>> <<dialog "Yuki">>Of course~ <</dialog>> <<dialog "You">>You don't have to worry, okay? I'm here. <</dialog>> <<dialog "Yuki">>My hero~ <</dialog>> <<dialog "You">>Let's get you covered up and go home. <</dialog>> <<dialog "Yuki">>Okay... I... love... you... Zzz... <</dialog>> <<dialog "You">>She fell asleep. <</dialog>> <div class="button-row"> <<regButton "yuki9-end3" "Take one of the guards' clothes and put it on Yuki">><</regButton>> </div> </div> <<backend>> [[yuki9-end3]] <<time 0 1>> <<set $location to "Dungeon">> <<set $profile to "player-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "You">>Uncle. <</dialog>> <<dialog "Uncle">>You're back. You got the girl too. I'm still waiting for backup, but I guess there aren't too many people in there. <</dialog>> <<dialog "You">>Yeah. This feels like a trap. I have an idea about who's behind this. <</dialog>> <<dialog "Uncle">>Hmmm. Let's talk about that later. Let's deal with this first. <</dialog>> <<dialog "You">>Right. Can you take care of Yuki for me? You can let her sleep in my room. I need to go. <</dialog>> <<dialog "Uncle">>Go where? <</dialog>> <<dialog "You">>The Convenience Store owner sold Yuki to these traffickers. I need to catch him. <</dialog>> <div class="button-row"> <<regButton "yuki9-end4" "Continue">><</regButton>> </div> </div> <<backend>> [[yuki9-end4]] <<time 0 1>> <<set $location to "Ariku">> <<set $profile to "player-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>Just do that after this. It's not like he's going away right now. We caught all of their guys, nobody will know about what happened here. Take care of Yuki first. <</dialog>> <<dialog "You">>I can't. Haru is working there right now. She could be in danger. <</dialog>> <<dialog "Uncle">>Shit. How are you gonna get there? <</dialog>> <<dialog "You">>Taxi? <</dialog>> <<dialog "Uncle">>No. <</dialog>> <div class="button-row"> <<regButton "yuki9-end5" "He hotwires a motorcycle">><</regButton>> </div> </div> <<backend>> [[yuki9-end5]] <<time 0 1>> <<set $location to "Ariku">> <<set $profile to "player-profile">> <</backend>>
<<bg "business-area" $hour>><</bg>> <div class="content-panel"> <<dialog "Uncle">>Ride this. <</dialog>> <<dialog "You">>Woah. How did you do that? <</dialog>> <<dialog "Uncle">>I cut the wires to the ignition switch. Just twist it to start the engine. <</dialog>> <<dialog "You">>Alright. Take care of Yuki for me. <</dialog>> <<dialog "Uncle">>Sure, kid. <</dialog>> <div class="button-row"> <<regButton "haru9-1" "Drive to the Convenience Store">><</regButton>> </div> </div> <<backend>> [[haru9-1]] <<time 0 1>> <<set $location to "Ariku">> <<set $profile to "player-profile">> <<set $yuki.quest = 11>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/1.jpg" style="width: 60%;"> <<dialog "You">>Huh? Who is she talking to? Is that... Haku? <</dialog>> <div class="button-row"> <<regButton "haru9-2" "Someone gets in your way">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-2]] <<time 0 45>> <<set $location = "Convenience Store">> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/2.jpg" style="width: 60%;"> <<dialog "You">>...Ken. <</dialog>> <<dialog "Ken">>I had a feeling you were involved in this. <</dialog>> <<dialog "You">>What are you talking about? <</dialog>> <<dialog "Ken">>The kidna-- <</dialog>> <h1>You hear a screeching sound.</h1> <img id="title-image" src="img/misc/haru-save/3.jpg" style="width: 60%;"> <div class="button-row"> <<regButton "haru9-3" "You get run over">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-3]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/4.jpg" style="width: 60%;"> <<dialog "You">>Ugk! <</dialog>> <<dialog "Ken">>Urk! <</dialog>> <img id="title-image" src="img/misc/haru-save/5.jpg" style="width: 60%;"> <h1>Your hp is halved.</h1> <<dialog "You">>H-haru! <</dialog>> <<dialog "Ken">>!! <</dialog>> <div class="button-row"> <<regButton "haru9-4" "Confront Ken">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-4]] <<set $stats.hp = $stats.hp / 2>> <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/6.jpg" style="width: 60%;"> <<dialog "You">>Me? You're the weird one here. I just got back from Ariku after saving Yuki. You live in Ariku and now you're here. Yuki told me you asked for her number last time. Black hair with red streaks. That's you, motherfucker. <</dialog>> <<dialog "Ken">>...I understand. <</dialog>> <<dialog "You">>What do you mean you understand? Where are you taking them? <</dialog>> <<dialog "Ken">>I didn't take them. I bet you found this... Yuki in a prostitution ring. <</dialog>> <<dialog "You">>You can explain more later. <</dialog>> <div class="button-row"> <<regButton "haru9-5" "Leave">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-5]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/7.jpg" style="width: 60%;"> <<dialog "Ken">>Where are you going? <</dialog>> <<dialog "You">>I'm going to follow them. <</dialog>> <<dialog "Ken">>How? <</dialog>> <<dialog "You">>Haru shares her location to me when she goes to work. <</dialog>> <<dialog "Ken">>Alone? <</dialog>> <div class="button-row"> <<regButton "haru9-6" "Get on the bike">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-6]] <<time 0 1>> <</backend>>
<<bg "konbini" $hour>><</bg>> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/8.jpg" style="width: 60%;"> <<dialog "You">>I can take them all. <</dialog>> <<dialog "Ken">>Fucking arrogant piece of shit. Let me ride on the back. <</dialog>> <<dialog "You">>I don't have an extra helmet so if you crack your skull, I'm leaving you on the road. <</dialog>> <<dialog "Ken">>As if I'd fall off. <</dialog>> <div class="button-row"> <<regButton "haru9-7" "Drive">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> <<set $location = "Warehouse">> [[haru9-7]] <<time 0 1>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/9.jpg" style="width: 60%;"> <<dialog "You">>What? You're afraid of fighting them all at once? <</dialog>> <<dialog "Ken">>You really are an immature dumbass. If they hear you, the girls die. Slowly taking them down one by one is way easier than a hostage situation. <</dialog>> <<dialog "You">>...I knew that. <</dialog>> <<dialog "Ken">>Musclebrain. <</dialog>> <div class="button-row"> <<regButton "haru9-8" "Slowly take every guard out">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-8]] <<time 0 15>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/10.jpg" style="width: 60%;"> <<dialog "You">>How many did you get? <</dialog>> <<dialog "Ken">>Does it matter? <</dialog>> <<dialog "You">>There are 14 guys. We need to check if we're in the clear. <</dialog>> <<dialog "Ken">>...Four. <</dialog>> <<dialog "You">>Heh. I got seven guys. That means there are three more. <</dialog>> <<dialog "Ken">>...Fucking bitch. <</dialog>> <div class="button-row"> <<regButton "haru9-9" "Continue">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-9]] <<time 0 15>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/11.jpg" style="width: 60%;"> <<dialog "You">>We need to find them fast. Yuki was drugged when I found her. They could drug the girls too. <</dialog>> <<dialog "Ken">>Just... Don't order me around. <</dialog>> <<dialog "You">>Fuck you. <</dialog>> <div class="button-row"> <<regButton "haru9-10" "Split up">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-10]] <<time 0 1>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<dialog "You">>I need to get rid of all the guards first. It would be difficult if we get surrounded. <</dialog>> <div class="button-row"> <<regButton "haru9-11" "Continue">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-11]] <<time 0 1>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<enemy "robber" "Thug" "warehouse" "left">>I found a rat~ Where are you going little rat? <</enemy>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "haru9-11-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-11-battlecrud]] <<time 0 1>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "haru9-11">> <<set $enemy = { level: 60, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "robber">><<set $ename = "Thug">> <<set $profile = "player-profile">> <<set $pspeech = "You'll be sleeping, you don't have to know.">> <<set $espeech = "Where ya goin?">> <<goto "battle-crud2">> [[haru9-11-battle]] <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "warehouse">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[haru9-11-win]][[haru9-11-lose]] <<set $dmgres = "">> <<set $location to "Warehouse">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg warehouse"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "robber" "Thug" "" "left">>H-he took out one of us! <</enemy>> <div class="button-row"> <<regButton "haru9-12-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[haru9-12-battlecrud]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <h1>You lost. Try again. You can't go back~</h1> <div class="button-row"> <<regButton "haru9-11" "Fight again">><</regButton>> </div> </div> <<backend>> <<set $location = "Warehouse">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "haru9-12">> <<set $enemy = { level: 60, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "robber">><<set $ename = "Thug">> <<set $profile = "player-profile">> <<set $pspeech = "Two to go.">> <<set $espeech = "F-fuck!">> <<goto "battle-crud2">> [[haru9-12-battle]] <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "warehouse">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[haru9-12-win]][[haru9-12-lose]] <<set $dmgres = "">> <<set $location to "Warehouse">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg warehouse"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "robber" "Thug" "" "left">>F-fuck. One on one then. <</enemy>> <div class="button-row"> <<regButton "haru9-13-battlecrud" "Fight">><</regButton>> </div> </div> <<backend>> [[haru9-13-battlecrud]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <h1>You lost. Try again. You can't go back~</h1> <div class="button-row"> <<regButton "haru9-11" "Fight again">><</regButton>> </div> </div> <<backend>> <<set $location = "Warehouse">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "haru9-13">> <<set $enemy = { level: 60, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "robber">><<set $ename = "Thug">> <<set $profile = "player-profile">> <<set $pspeech = "You should have run.">> <<set $espeech = "Heh. The people inside are way scarier than you.">> <<goto "battle-crud2">> [[haru9-13-battle]] <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "warehouse">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[haru9-13-win]][[haru9-13-lose]] <<set $dmgres = "">> <<set $location to "Warehouse">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <h1>You lost. Try again. You can't go back~</h1> <div class="button-row"> <<regButton "haru9-11" "Fight again">><</regButton>> </div> </div> <<backend>> <<set $location = "Warehouse">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg warehouse"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <<enemy "robber" "Thug" "" "left">>Urk... <</enemy>> <<dialog "You">>That was easy. I took all of the enemies, Kenny. I could have done this alone. <</dialog>> <div class="button-row"> <<regButton "haru9-14" "Meanwhile...">><</regButton>> </div> </div> <<backend>> [[haru9-14]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/12.jpg" style="width: 60%;"> <<dialog "Ken">>Urgh... <</dialog>> <<dialog "Haku">>K-ken! <</dialog>> <<enemy "napper1" "Kidnapper" "" "left">>Keke~ Why would you rush here unarmed? Are you underestimating us? <</enemy>> <<enemy "napper2" "Leader" "" "left">>I guess we can sell your organs too~ <</enemy>> <div class="button-row"> <<regButton "haru9-15" "Ken gets stabbed">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-15]] <<time 0 1>> <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/13.jpg" style="width: 60%;"> <<dialog "Ken">>Sh-shit. Wh-where the hell is $player.name? <</dialog>> <<dialog "Haru">>$player.name? I-is he here? N-no! <</dialog>> <<dialog "Haku">>M-maybe we can be saved... <</dialog>> <<enemy "napper2" "Leader" "" "left">>Nobody will save you~ <</enemy>> <div class="button-row"> <<regButton "haru9-16" "Barge inside">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-16]] <<time 0 1>> <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/14.jpg" style="width: 60%;"> <<dialog "Ken">>Hahhh. God damn it. <</dialog>> <<dialog "You">>You don't look too good, Kenny~ <</dialog>> <<dialog "Ken">>Fuck you. <</dialog>> <<dialog "Haru">>$player.name! No! Run away!!! <</dialog>> <<dialog "Haku">>Wh-why should he? He should save us! <</dialog>> <<enemy "napper2" "Leader" "" "left">>Haha! Another kid. Kill him. <</enemy>> <<enemy "napper1" "Kidnapper" "" "left">>Yes sir~ <</enemy>> <<dialog "You">>You're about to see something bad, Haru. I hope you don't judge me after this. <</dialog>> <div class="button-row"> <<regButton "haru9-17" "Take the knife">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-17]] <<time 0 1>> <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/15.jpg" style="width: 60%;"> <<enemy "napper1" "Kidnapper" "" "left">>HAAAAAAAAAARRRRGGGGGHHHHHHHH! <</enemy>> <<dialog "Ken">>Sh-show off... <</dialog>> <<dialog "You">>... <</dialog>> <<enemy "napper2" "Leader" "" "left">>Wh-what? <</enemy>> <<dialog "Haru">>H-how? <</dialog>> <<dialog "Haku">>W-were saved! <</dialog>> <div class="button-row"> <<regButton "haru9-17-battlecrud" "Attack the other guy">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-17-battlecrud]] <<time 0 1>> <</backend>>
<<backend>> <<set $battlestart = true>> <<set $battlesetting = "haru9-17">> <<set $enemy = { level: 130, hp: 100, maxhp: 100, str: 0, agi: 0, int: 0 }>> <<set $enemy.str to $stats.str>> <<set $enemy.agi to $stats.agi>> <<set $enemy.int to $stats.int>> <<set $enemy.maxhp to $stats.maxhp>> <<set $enemy.hp to $enemy.maxhp>> <<set $eid = "napper2">><<set $ename = "Leader">> <<set $profile = "player-profile">> <<set $pspeech = "You don't know who you messed with.">> <<set $espeech = "M-motherfucker.">> <<goto "battle-crud2">> [[haru9-17-battle]] <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <<if $battlestart == false>><<print $commentary>><</if>> <<enemy $eid $ename "warehouse-int">>$espeech $oddsText<</enemy>> <<dialog "You" "avatar" "battle">>$pspeech <</dialog>> <div class="button-row"> <<action "Punch">><</action>> <<action "Kick">><</action>> <<action "Grab">><</action>> <<action "Reroll Odds">><</action>> </div> </div> <<backend>> [[haru9-17-win]][[haru9-17-lose]] <<set $dmgres = "">> <<set $location to "Warehouse">> <<set $profile to "player-profile">> <<set $hidenav to 1>> <style> #ui-bar-history { display: none; } </style> <</backend>>
<<backend>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($stats.int * random(35,75) * 0.01))>> <</backend>> <div class="bg warehouse"></div> <div class="content-panel"> You get <<print $rewxp>> exp. <div><<exp $rewxp>><</exp>></div> <img id="title-image" src="img/misc/haru-save/16.jpg" style="width: 60%;"> <<enemy "napper2" "Leader" "" "left">>Ggggghhhhh! <</enemy>> <<dialog "You">>H-haru! <</dialog>> <div class="button-row"> <<regButton "haru9-18" "Check up on her">><</regButton>> </div> </div> <<backend>> [[haru9-18]] <<set $inbattle = 0>> <<time 0 5>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <h1>You lost. Try again. You can't go back~</h1> <div class="button-row"> <<regButton "haru9-17" "Fight again">><</regButton>> </div> </div> <<backend>> <<set $location = "Warehouse">> <<set $stats.hp = $stats.maxhp>> <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <img id="title-image" src="img/misc/haru-save/17.jpg" style="width: 60%;"> <<dialog "Haru">>I-I thought I was gonna die. *Sobs* <</dialog>> <<dialog "Haku">>... <</dialog>> <<dialog "You">>I'm here now, okay? <</dialog>> <<dialog "Haku">><i>Poor Miku... Well... I guess that girl is fine with this.</i> <</dialog>> <div class="button-row"> <<regButton "haru9-19" "Talk to Haku">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-19]] <<time 0 1>> <</backend>>
<div class="bg warehouse-int"></div> <div class="content-panel"> <<dialog "You">>Explain. <</dialog>> <<dialog "Haku">>I'm not related to this! Our girls are getting kidnapped one by one. I just warned this one about the Convenience Store owner. <</dialog>> <<dialog "Haru">>Th-that's true. She did... We just suddenly got taken. <</dialog>> <<dialog "You">>How did you know it was the Convenience Store owner? <</dialog>> <<dialog "Haku">>We have the Broker, don't we? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Ken">>I'm sorry. Can we end the conversation here? I'm bleeding out... <</dialog>> <div class="button-row"> <<regButton "haru9-20" "Take Haru with you">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-20]] <<time 0 1>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<dialog "Haru">>W-will they be okay? <</dialog>> <<dialog "You">>Yep. We can just leave. <</dialog>> <<dialog "Haru">>Thank you for saving me. I love you so much. <</dialog>> <<dialog "You">>Thank god you sent me your location. <</dialog>> <<dialog "Haku">>$player.name! You know where to find me. I'll be sure to thank you properly. <</dialog>> <<dialog "Haru">>H-how do you know her? <</dialog>> <<dialog "You">>W-w-well... Uhh... <</dialog>> <<dialog "Haru">>Well? Is she another girlfriend? You know, I don't mind... <</dialog>> <<dialog "You">>No. No. It was just awkward because Ken is actually a member of our family's enemy... gang. He thinks I'm his rival or something so I see him a lot. Haku is a member too so I see her often too. <</dialog>> <<dialog "Haru">>O-okay. <</dialog>> <div class="button-row"> <<regButton "haru9-21" "Ask if she's okay">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> [[haru9-21]] <<time 0 1>> <</backend>>
<div class="bg warehouse"></div> <div class="content-panel"> <<dialog "You">>Are you hurt? <</dialog>> <<dialog "Haru">>N-no... The rope burns on my wrist just sting a little. *Sobs* <</dialog>> <<dialog "You">>I'll take you home. Are you gonna sleep in your parents' house? <</dialog>> <<dialog "Haru">>Y-yes. I want to stay with you, but you need to go to the hospital. You're hurt... *sobs* <</dialog>> <<dialog "You">>Oh. Right... I got hit by a car. <</dialog>> <<dialog "Haru">>YOU GOT HIT BY A CAR? Wh-why?? Are you okay? <</dialog>> <<dialog "You">>I had to save you. <</dialog>> <<dialog "Haru">>O-okay. D-don't worry about me for now, and go to the hospital, okay? <</dialog>> <<dialog "You">>I'll take you home first. If anything happens to you, I might have to come get you again, and I'm injured. <</dialog>> <<dialog "Haru">>...Okay. When did you get a motorcycle, by the way? <</dialog>> <<dialog "You">>...I stole it. <</dialog>> <<dialog "Haru">>You st-- Fine. Fine. You had to do it to save me. Let's talk about this later. <</dialog>> <div class="button-row"> <<regButton "hospital" "Take her home and go to the hospital">><</regButton>> </div> </div> <<backend>> <<set $profile to "haru-profile">> <<set $haru.quest = 10>> <<time 0 1>> <</backend>>