@@.delayed;<center><video autoplay loop muted><source @src='"Video/intros/"+either("intros")+".mp4"' type="video/mp4"></video></center>@@
@@.delayed;<div class="content">\
<h4><center>All the characters in the game are fictitious authors of the game and have nothing to do with reality and how the events that occur in the game.
<span class="redtext">Important:</span> the game has censorship in the sex scenes with the characters due to the peculiarity of the video content of the game.</center></h4><h4><center><<speech "<h3>Game menu</h3>" >>
<<button 'Start new game' `either('Prologue')`>><</button>>
<<button 'Load save'>><<script>>UI.saves();<</script>><</button>><</speech>></center></h4>
</div>@@<<nobr>>
<<set $Prologue to 0>>
<<set $SuccubusEnergy to 3>>
<<set $SuccubusPower to 0>>
<<set $HaremStats to 0>>
<</nobr>><h3>Game version 0.2.5</h3><h4><<button 'FULL SCREEN' >><<script>>
Fullscreen.toggle()
<</script>><</button>></h4><<if $Prologue is 1>><center><h4><img src="Images/System/Logo.jpg" style="max-width: 90%;"><hr>/*==================================================*/<<nobr>><<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 12>><img src="Images/System/1.jpg" style="max-width: 79%;"><</if>>
<<if $gameDate.getUTCHours() gte 13 and $gameDate.getUTCHours() lte 16>><img src="Images/System/2.jpg" style="max-width: 79%;"><</if>>
<<if $gameDate.getUTCHours() gte 17 and $gameDate.getUTCHours() lte 20>><img src="Images/System/3.jpg" style="max-width: 79%;"><</if>>
<<if $gameDate.getUTCHours() gte 21 and $gameDate.getUTCHours() lte 23>><img src="Images/System/4.jpg" style="max-width: 79%;"><</if>><</nobr>>
''Date:'' <<date>>
''Time:'' <<time24h>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Skip time' >><<addhours 1>><<run Engine.show()>><</button>><</if>>
<<button 'Hints'>><<run slideWin("Help")>><</button>>
Succubus Energy <progress @value="$SuccubusEnergy" max="3"></progress>
Succubus Power <progress @value="$SuccubusPower" max="6"></progress></h4></center><</if>>
<<link "<img src='Images/System/Banner.png' width=80%>">><<script>>window.open('https://f95zone.to/threads/forbidden-book-of-pleasures-development-theme.170770/')<</script>><</link>>/*
Date & Time Widget Setup
*/
<<set
/* This must be set to whatever the initial game date/time should be. */
$gameDate to new Date("2005-01-17T08:00Z"); /* Must use UTC time. */
>>
<<set
window.GameDays to [
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
];
window.GameMonths to [
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
>>
/*
Date & Time Advancement Widget Definitions
*/
/* Adds the specified number of minutes. */
<<widget "addmins">>\
<<run $gameDate.setUTCMinutes($gameDate.getUTCMinutes() + $args[0])>>\
<</widget>>
/* Adds the specified number of hours. */
<<widget "addhours">>\
<<run $gameDate.setUTCHours($gameDate.getUTCHours() + $args[0])>>\
<</widget>>
/* Adds the specified number of days. */
<<widget "adddays">>\
<<run $gameDate.setUTCHours($gameDate.getUTCHours() + $args[0] * 24)>>\
<</widget>>
/*
Date & Time Printing Widget Definitions
*/
/* Prints the current date ("{weekday} {month} {day}, {year}"). */
<<widget "date">>\
<<print String.format("{0} {1} {2}, {3}",
GameDays[$gameDate.getDay()],
GameMonths[$gameDate.getMonth()],
$gameDate.getDate(),
$gameDate.getFullYear()
)>>\
<</widget>>
/* Prints the current time (12H). */
<<widget "time12h">>\
<<if $gameDate.getUTCHours() eq 0>>\
12\
<<elseif $gameDate.getUTCHours() gt 12>>\
<<print $gameDate.getUTCHours() - 12>>\
<<else>>\
<<print $gameDate.getUTCHours()>>\
<</if>>:\
<<if $gameDate.getUTCMinutes() lt 10>>0<</if>><<print $gameDate.getUTCMinutes()>> \
<<if $gameDate.getUTCHours() gte 12>>PM<<else>>AM<</if>>\
<</widget>>
/* Prints the current time (24H). */
<<widget "time24h">>\
<<if $gameDate.getUTCHours() lt 10>>0<</if>><<print $gameDate.getUTCHours()>>:\
<<if $gameDate.getUTCMinutes() lt 10>>0<</if>><<print $gameDate.getUTCMinutes()>>\
<</widget>>
/* Prints the current date and time (12H). */
<<widget "datetime">><<date>> <<time12h>><</widget>>
<<button 'тест времени' >><<addhours 5>><<run Engine.show()>><</button>>
<<button 'тест силы +' >><<set $SuccubusPower += 1>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><<run Engine.show()>><</button>>
<<button 'тест силы -' >><<set $SuccubusPower -= 1>><<run Engine.show()>><</button>>
<<if $gameDate.getDay() gte 1 and $gameDate.getDay() lte 5 and $gameDate.getUTCHours() gte 9 and $gameDate.getUTCHours() lte 17>>Open<<else>>Closed<</if>>
<<button 'включить пролог' >><<set $Prologue += 1>><<run Engine.show()>><</button>>
<<if $HaremStats ==0 and $SuccubusPower ==6>><<button 'тест 1' `either('тест 2')`>><</button>><<else>>работает<</if>>
<<button 'тест времени 2' >><<set $gameDate.getUTCHours() to 17>><<run Engine.show()>><</button>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Skip time' >><<addhours 1>><<run Engine.show()>><</button>><<else>><<button 'Go to your bedroom' `either('Your Room')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Sleep' `either('Sleep')`>><<addhours 9>><</button>><</if>>
<progress @value="$cop3" max="60"></progress>
<meter @value="$SuccubusEnergy" min="0" max="3"></meter>
<meter @value="$SuccubusPower" min="0" max="6"></meter>
<progress @value="$SuccubusEnergy" max="3"></progress>
<progress @value="$SuccubusPower" max="6"></progress>
<img src="images/System/Logo.jpg">
<<speech "ты" >>Hey, sis!<</speech>>
<img src="Images/System/Fullscreen.png' style="max-width: 80%;">
<center><img src="Images/Home/Your home/1.jpg" style="max-width: 80%;"></center>
<<set $SuccubusPower += 1>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>>
Ruby
Kira
Mia and Mika
<<button 'Go to your bedroom' `either('Your Room')`>><</button>>
<img @src="'img/WORLD/' + either('6', '7', '8', '9', '10') + '.jpg'">
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Katsumi and Koheku' `either('Katsumi and Koheku')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Izumi' `either('Izumi')`>><</button>><</if>>
<<button 'full screen' >><<script>>
Fullscreen.toggle()
<</script>><</button>><center><h5><img src="Images/Home/Your home/1.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Your Room' `either('Your Room')`>><</button>>
<<button 'Sister Room' `either('Sister Room')`>><</button>>
<<button 'Mother Room' `either('Mother Room')`>><</button>>
<<button 'Bathroom' `either('Bathroom')`>><</button>>
<<button 'Kitchen' `either('Kitchen')`>><</button>>
<<button 'Get out of the house' `either('My street')`>><</button>></h5></center><h5><center><h2><img src="Images/System/SB.png" style="max-width: 10%;"> Prologue: the beginning of the journey <img src="Images/System/SB.png" style="max-width: 10%;"></h2>
<hr>/*==================================================*/
@@.delayed;Usually all the adult games I played were just boring static grind or boring waiting for the author to finish doing another short update for his novel. I never thought that one day my love for porn games and my dream to create my own harem would turn out to be true!
Although what kind of harem of girls can you dream of when 4 succubus fell on your head, which made you their errand boy and demands to seduce the whole city! Of course, I am glad that one of my secret desires came true, I can’t think that fate would decide to put me in such an uncomfortable position when I had a chance to finally turn my desire into reality.
Although I think it’s better to start my story from the beginning in order to understand how I got into such a situation and became such a perverted otaku who always sits at home playing porn games and secretly masturbates on his relatives.
First I think I need to introduce myself my name is Takeshi who recently turned 18 I recently graduated from high school with terrible results I think I should not tell you when my parents found out about this that they arranged for me. By the way, I forgot to add that in addition to the fact that I failed my studies, well, I also broke the seal that held back the succubi for many centuries, well, about everything in order.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("1")+".webm"' type="video/webm"></video>
As an ordinary guy, we liked to talk to friends at school on various topics, but in high school our interests changed from ordinary video games and other garbage to more adult topics. As an example, who has the biggest breasts in school or who got a girlfriend and managed to sleep with her and all that garbage. Well, even here our company managed to excel among the guys. We, as the brightest idiot of the class, discussed porn games! All normal guys did what I said before, and we, like a special kind, sat and discussed porn games, God, what nonsense!
Well, for that, I now understand why all the girls of the school and class looked at us like that.
Well, the fun days of school are over and the harsh adult life has begun as my ancestors said until they saw my results as I graduated from school. I think my boring life would have passed like this if not one case of which everything changed it forever. On one of the days when I, as usual, went through another porn game, my mother came to me and brought a package.
<<speech "Mother" >>Dear, a package came to you from your grandfather.<</speech>>
<<speech "Takeshi" >>Mom,wait, a package from granfather?<</speech>>
<<speech "Mother" >>I was also shocked when I received this parcel, because he had died a long time ago.<</speech>>
<<speech "Takeshi" >>Maybe this is someone's joke?<</speech>>
<<speech "Mother" >>It can't be, the letter that was inside the parcel was clearly written by him.<</speech>>
I took the letter that my mother gave me and quickly read it.
<<speech "Mother" >>Then I'll leave the box in your room?<</speech>>
<<speech "Takeshi" >>Yes of course mom.<</speech>>
After that, my mother left my room and I decided to continue the game from where I left off. Well, I finished playing the next game, or rather a piece of the update, which the author did for a whole month and then kept the current for supporters of Patreon for a whole month, God, this stupid monitization in games infuriates!
Why can't they just release the game for purchase on Steam or other stores? Although then they won't be able to make money off of idiots on patreon who subscribe every month and in fact buy the game every month.
<img src="Images/Prologue/1.png" style="max-width: 80%;">
Okay, it's time to deal with the package that my grandfather sent me. Damn, how many different antiques are in the box, what do I need all this for? I remember that my grandfather was still that lover of rare things, okay, let's continue.
Wait, is this a book? Quite a strange book.
<img src="Images/Prologue/2.png" style="max-width: 80%;">
Letter ?
<<speech "Letter" >>If you are reading this letter, my dear grandson, it means that I am no longer among the living. I have chosen you to be the next custodian of this book. Even though I didn't manage to prepare you for this mission. Just remember one thing, my dear grandson, never try to use this book! End. <</speech>>
What kind of nonsense?! No, this book cannot be magical. I'll just look and read, nothing terrible will happen.
<img src="Images/Prologue/3.png" style="max-width: 80%;">
Damn I can't even read this book! What is the language of this book? Judging by the condition of the paper and the pictures in the book, this book is indeed ancient. Since I can't read this book, maybe I can find answers on the Internet? Need to try.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("2")+".webm"' type="video/webm"></video>
Even on the Internet there is nothing about this book, is it really magical? No, it can't be true. We live in the real world, and all fantasy and magic are usually in games and films, and even that is not real.
<<speech "Mystery voice" >>On the last page find your answers and your destiny!<</speech>>
What was that voice now?
After a short pause and a little breath.
<<speech "Takeshi" >>Who or what are you? What answers should I find on the last page?<</speech>>
After a short pause, you again heard the same words.
<<speech "Mystery voice" >>On the last page find your answers and your destiny!<</speech>>
Okay, to hell with him, let's see what's on the last page.
You take the book and opens the last page. To your surprise, everything here has been translated into your language.
Succubus summoning spells? I wonder if this one really works?
Although you can try, the current I do not understand is not a damn thing.
You hear the mysterious voice again.
<<speech "Mystery voice" >>I will help you.<</speech>>
<<speech "Takeshi" >>Really? Interesting how?<</speech>>
<<speech "Mystery voice" >>Do what I tell you and get your reward!<</speech>>
Reward? Is it possible that my wish will become a reality?
The opportunity to squeeze mother's tits or fuck your sister. My not pipe dreams.
<<speech "Mystery voice" >>Is this all you want? What shameful dreams you have.<</speech>>
<<speech "Takeshi" >>Stop ! Can you read minds?<</speech>>
<<speech "Mystery voice" >>Sure. Do you still think that I'm your sick fantasy?<</speech>>
Stop, am I really talking to him?
And if right now my mother, sister or father comes into my room ?!
<<speech "Mystery voice" >>Calm down your mother is in her room now having sex with your father, sister left home.<</speech>>
What ?! My mom and dad are having sex?! I want to see this!
<<speech "Mystery voice" >>Really? I thought you yourself would like to be in the place of your father or not?<</speech>>
Damn, this bullshit hits the sickest!
<<speech "Takeshi" >>Okay to hell with you! Well remember I still think you're a sick fantasy!<</speech>>
<<speech "Mystery voice" >>Perfect ! Let's start then.<</speech>>
After this strange voice began to teach me how to summon a succubus.
We started, oddly enough, with simple things. How to draw a pentagram correctly.
<<speech "Mystery voice" >>Remember one thing Takeshi the more skillfully the pentagram is drawn, the more powerful succubus you can summon into the world.<</speech>>
<<speech "Takeshi" >>Wait a minute! If I summon a strong demon, how will I be able to control it?!<</speech>>
<<speech "Mystery voice" >>That's why I'm teaching you, Takeshi. Relax and trust me, you want to know the raft of forbidden desires, don't you?<</speech>>
Well, here it hits the sick again!
<<speech "Takeshi" >>Yes, Master! Please, teach me!<</speech>>
<<speech "Mystery voice" >>Master? I like it. Then let's continue my student.<</speech>>
After that, the voice continued to teach me the art of summoning a succubus.
During my studies, I already forgot about my grandfather's letter and the last phrase, the desire for lust took possession of me, although I had little faith in this idea of a succubus, well, the desire to try it took over!
<<speech "Mystery voice" >>Now for the most difficult part of the ritual, my apprentice.<</speech>>
<<speech "Takeshi" >>Is it necessary to make a sacrifice?<</speech>>
<<speech "Mystery voice" >>So you want to fuck mother and sister?<</speech>>
<<speech "Takeshi" >>Yes teacher!<</speech>>
<<speech "Mystery voice" >>Then do not interrupt me and listen silently and your wish will be fulfilled!<</speech>>
<<speech "Takeshi" >>Yes teacher!<</speech>>
<<speech "Mystery voice" >>Then let's continue, right now, carefully remember what I'm going to tell you.<</speech>>
First he said.
Ego sum custos sigilli! Rituale amovendi sigillum incipio!
Then he continued.
Ego sum custos sigilli! De te capio compedes! Appare Lamia regina libidinis et mater omnium succubi!
<<speech "Mystery voice" >>Remember these words, Takeshi, when you start the ritual repeat them strictly as I told you.<</speech>>
<<speech "Takeshi" >>Yes teacher!<</speech>>
<<speech "Mystery voice" >>Let's get started then? I know you want to get your prize, right?<</speech>>
Damn, here again to put pressure on a sore point! Okay, for the sake of my dreams, I'll suffer.
<<speech "Takeshi" >>Then let's get started teacher!<</speech>>
We started the ritual.
I began to perform the ritual as taught to me by the mysterious voice.
We draw a pentagram. At the same time, we say the first part of the spell.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Ego sum custos sigilli! Rituale amovendi sigillum incipio!<</speech>>
<<speech "Mystery voice" >>Great, Takeshi, proceed to the second part of the ritual!<</speech>>
We take the book and say the last part of the spell.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("4")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Ego sum custos sigilli! De te capio compedes! Appare Lamia regina libidinis et mater omnium succubi!<</speech>>
A second later, the room was filled with a mysterious color of smoke. An abrupt flash of light.
<<speech "Mystery voice" >>Yes ! Freedom !<</speech>>
<video autoplay loop muted><source @src='"Video/Prologue/"+either("5")+".webm"' type="video/webm"></video>
Not being able to understand what happened. You were thrown sharply towards the wall. After a while, I tried to open my eyes. There was so much smoke in the room that my eyes couldn't make out what had happened.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("6")+".webm"' type="video/webm"></video>
One thing is clear, this bullshit worked!
After a while, your eyes adapted to the smoke that was in the room, I was able to catch a slight silhouette that appeared in front of me.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("7")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Who the hell are you?!<</speech>>
<<speech "???" >>Come on, Takeshi, don't you understand yet? I certainly knew that you were a complete idiot, well, not to that extent.<</speech>>
Wait, if the ritual worked, then I was able to subdue the demon?
<<speech "???" >>I want to disappoint you, Takeshi. All you did was break the seal and set me free.<</speech>>
So she used me?! The ritual and other bullshit was all for me to free her?!
<<speech "???" >>Well, at last you understand everything.<</speech>>
Damn why didn't I listen to what Grandpa said in the letter. Especially the last part.
This means that magic really exists in our world. I'm the idiot who freed the ancient demon, right now I will see the last moments of this world.
You noticed that the demon approached you.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("8")+".webm"' type="video/webm"></video>
<<speech "???" >>Stop inventing all sorts of nonsense, Takeshi.<</speech>>
<<speech "Takeshi" >>Well you are a demon!<</speech>>
<<speech "???" >>First of all, to be precise, I'm a succubus! What is this called in your world? Exactly! Political correctness!<</speech>>
<<speech "Takeshi" >>What?!<</speech>>
How does she know such words?
<<speech "???" >>Of course, I sat in this cage for several centuries, but this did not prevent me from getting to know the world.<</speech>>
<<speech "Takeshi" >>Then go to the women's rights court and demand that the person who sealed you in this book pay you moral damages.<</speech>>
<<speech "???" >>I see even from your stupid head sometimes there are smart things, besides lust. Current you did not take into account one thing! He's long dead!<</speech>>
Damn! I forgot that people of the drain do not live. Stop?! What am I doing? There's a demon standing in front of me at the moment, I'm trying to laugh it off in this situation?! More precisely, he is already sitting next to me ...
<video autoplay loop muted><source @src='"Video/Prologue/"+either("9")+".webm"' type="video/webm"></video>
<<speech "???" >>Takeshi can you even hear me?<</speech>>
<<speech "Takeshi" >>Yes!<</speech>>
<<speech "???" >>Sounds like you can't hear well. I repeat once again I am not going to do anything with this world.<</speech>>
<<speech "Takeshi" >>What about Grandpa's warning?<</speech>>
<<speech "???" >>Are you stupid? It clearly says not to use the book for your own good.<</speech>>
<<speech "Katsumi" >>Then what are you going to do?<</speech>>
<<speech "???" >>Let me think. Exactly! I want to find out how much the world has changed since I was sealed. Well, you, as the culprit of this event, will help me, won't you?<</speech>>
Damn she's right! So stop! My reward! Since she's such a noble demon, she should keep her word.
<<speech "???" >>Yes, I remember my promises to Takeshi.<</speech>>
<video autoplay loop muted><source @src='"Video/Prologue/"+either("10")+".webm"' type="video/webm"></video>
<<speech "???" >>Well, do you agree to my suggestions, Takeshi?<</speech>>
She began to snuggle closer to me, damn it too close!
<<speech "Takeshi" >>Yes, I agree!<</speech>>
When I agreed, I noticed that her facial expressions had changed.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("11")+".webm"' type="video/webm"></video>
<<speech "???" >>Great then let's get started. Ruby, Kira, Mia and Mika! Ad me liberos meos!<</speech>>
The familiar language in which she speaks these words! Is there going to be an explosion again? You closed your eyes. A moment later you heard a familiar voice.
<<speech "???" >>Relax Takeshi, you can open your eyes.<</speech>>
You opened your eyes. What?! 4 more succubus!
<video autoplay loop muted><source @src='"Video/Prologue/"+either("12")+".webm"' type="video/webm"></video>
<<speech "Ruby" >>Finally freedom! Thank you my queen!<</speech>>
<video autoplay loop muted><source @src='"Video/Prologue/"+either("13")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Ruby are you trying to suck up to our mistress like always? God, you never change you stupid whore.<</speech>>
<<speech "Ruby" >>Am I a whore? Look at yourself you stupid cow!<</speech>>
<<speech "Kira" >>Of course, I understand Ruby, you have a complex in terms of the size of your chest, or maybe more precisely the board? (Devil's laughter)<</speech>>
The main thing is that they don’t destroy my house to hell because of a dispute over breast size. After these thoughts, I noticed that 2 more succubus appeared in the room.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("14")+".webm"' type="video/webm"></video>
<<speech "Mia" >>Damn it, can they just try not to kill each other for once?<</speech>>
<<speech "Mika" >>I think this one is too hard for them, sister.<</speech>>
Well, at least someone has common sense.
<<speech "Mia" >>My queen, I have a question for you, what is this man doing here?<</speech>>
Too much common sense!
<<speech "Mika" >>Is this person going to be our new toy?<</speech>>
Mom, dad, sister, farewell.
<<speech "???" >>No, these are you, his new toys.<</speech>>
After that, the room fell into a dead silence. Well, it didn't last long.
<<speech "Mia" >>Are you serious now, my queen?!<</speech>>
<<speech "Kira" >>So that we supreme succubi would fall to such baseness?!<</speech>>
<<speech "Ruby" >>Finally the cow will be used for its intended purpose. (Devil's laughter)<</speech>>
<<speech "Kira" >>The opinions of the washing board are of no interest to anyone!<</speech>>
After that, the two began to argue again on their topic.
<<speech "???" >>Everyone be silent! This is my order to you!<</speech>>
After that, there was again a deathly silence.
<<speech "???" >>That is great.<</speech>>
Then they bowed to their queen and left.
<video autoplay loop muted><source @src='"Video/Prologue/"+either("15")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Finally, this children's circus is over. By the way, I forgot to introduce myself, Lilith.<</speech>>
<<speech "Takeshi" >>My name you already know.<</speech>>
<<speech "Lilith" >>Okay, you got your reward. It's time to move on to our deal.<</speech>>
<<speech "Takeshi" >>Wait, my reward? You mean those succubi?<</speech>>
<<speech "Lilith" >>This is your prize, for my liberation.<</speech>>
Okay, I won’t rush, suddenly she changes her mind, I’ll definitely be left without a reward.
<<speech "Lilith" >>Here, hold Takeshi, you'll need this.<</speech>>
<img src="Images/Prologue/4.png" style="max-width: 80%;">
<<speech "Takeshi" >>Medallion? Why is he to me?<</speech>>
<<speech "Lilith" >>You'll need it to fulfill our deal.<</speech>>
Outwardly, the medallion is very old and a very strange aura clearly comes from it.
<<speech "Takeshi" >>Okay, I'm listening to you carefully.<</speech>>
<video autoplay loop muted><source @src='"Video/Prologue/"+either("16")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>You corrupt people with this medallion, I get their souls.<</speech>>
<<speech "Takeshi" >>What do I get in return? After all, this is a deal.<</speech>>
<<speech "Lilith" >>I see you are getting smarter. Having sex with them, isn't that the one you wanted?<</speech>>
<<speech "Takeshi" >>Anyway, I have no choice, I agree.<</speech>>
<<speech "Lilith" >>Well, that's great.<</speech>>
After that, she began to explain how the medallion works.
<<speech "Lilith" >>When you interact with the girl, the medallion will charge energy. Well, don't forget that this will use up some of my energy in the medallion.<</speech>>
<<speech "Takeshi" >>What will I need to do when the energy is used up?<</speech>>
<<speech "Lilith" >>Summon me and I will restore the energy of the medallion.<</speech>>
<<speech "Takeshi" >>Can you find out how?<</speech>>
<<speech "Lilith" >>By my strength and your lust. <</speech>>
Really sex?!
<<speech "Lilith" >>Too long and the flow of energies will be too much for the medallion. Normal manual work will suffice. <</speech>>
Damn! I so wanted to fuck this bitch so she knew how to use me!
<<speech "Lilith" >>I'll pretend I didn't hear this. Most importantly, did you understand everything Takeshi?<</speech>>
<<speech "Takeshi" >>Yes, I understood everything.<</speech>>
<<speech "Lilith" >>Then let's start this fun journey.<</speech>>
After these words, my life changed completely.
Here is a little backstory on how these 4 succubus fell on my head. What happened next? This one you will have to see for yourself.
My story is about to begin. I ask you to remove children and other persons from the screens. Is everyone ready? Then let's start.@@
<<button 'Start game' `either('Home')`>><<set $Prologue += 1>><</button>></center></h5><center><h5><img src="Images/Home/Your home/2.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<button 'Sleep' `either('Sleep')`>><<addhours 9>><</button>><</if>><<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Turn on computer' `either('PC')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Lilith' `either('Lilith')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Ruby' `either('Ruby')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Kira' `either('Kira')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Mia and Mika' `either('Mia and Mika')`>><</button>><</if>>
<<button 'Get out of your room' `either('Home')`>><</button>></h5></center><center><h5><img src="Images/Home/Your home/3.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Get out of your sister room' `either('Home')`>><</button>></h5></center><center><h5><img src="Images/Home/Your home/6.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 10 and $gameDate.getUTCHours() lte 17>><<button 'Summon Kira' `either('KiraKitchen')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 10 and $gameDate.getUTCHours() lte 17>><<button 'Summon Mia and Mika' `either('Mia and MikaKitchenSex')`>><</button>><</if>>
<<button 'Get out of the kitchen' `either('Home')`>><</button>></h5></center><center><h5><img src="Images/Home/Your home/5.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 10 and $gameDate.getUTCHours() lte 17>><<button 'Summon Kira' `either('Kirabathroom')`>><</button>><</if>>
<<button 'Get out of the bathroom' `either('Home')`>><</button>></h5></center><center><h5><img src="Images/Home/Your home/4.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Get out of your mother room' `either('Home')`>><</button>></h5></center><<button 'тест 1' `either('тест 1')`>><<set $HaremStats += 1>><<set $SuccubusPower -= 6>><<run Engine.show()>><</button>>
<<button 'тест силы -' >><<set $SuccubusEnergy -= 1>><<if $SuccubusEnergy lt 0>><<set $SuccubusEnergy to 0>><<elseif $SuccubusEnergy gt 3>><<set $SuccubusEnergy to 3>><</if>><<run Engine.show()>><</button>>
<<if $SuccubusEnergy >0>><<button 'Ask her to charge the medallion' `either('Charging energies')`>><</button>><</if>>
<<button 'включить пролог' >><<set $Prologue += 1>><<run Engine.show()>><</button>>
<<if $SuccubusPower ==6>><<button 'Use locket before leaving' `either('Work')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<if $gameDate.getDay() gte 7 and $gameDate.getDay() lte 6 and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<addhours 1>><<button 'You spotted the girl at the hot spring' `either('RelaxGirl3')`>><</button>><</if>>
<<elseif $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'You spotted the girl at the hot spring' `either('RelaxGirl3')`>><<addhours 1>><</button>><</if>>
<<button 'Close' >><<run slideWin("hide")>><</button>><center><h5><video autoplay loop muted><source @src='"Video/Sleep/"+either("1","2")+".webm"' type="video/webm"></video>
You thought about getting some more sleep. As the damn alarm clock rang at that moment.
<<speech "Takeshi" >>Damn alarm clock, knows how to ruin the moment.<</speech>>
<<speech "Lilith" >>Stop sleeping, if you sleep all the time, who will seduce girls in this city? So get your lazy ass up.<</speech>>
<<speech "Takeshi" >>Yes, I got you. I'm getting up already.<</speech>>
<<if $HaremStats >=2>><<button 'Maybe get some more sleep?' `either('Lilithmorning')`>><</button>><</if>>
<<button 'Get up' `either('Home')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Ruby/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Ruby" >>Yes, my master? Do you want to fuck Ruby?<</speech>>
<<button 'Have sex with her' `either('Rubysex')`>><</button>>
<<button 'Finish talking to them' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Takeshi, have you decided to look at the beautiful Lilith? Okay naughty watch all you want.<</speech>>
<<speech "Takeshi" >>No, I'm on business.<</speech>>
<<speech "Lilith" >>Damn, you know how to break off the whole buzz for a girl.<</speech>>
<<button 'Ask about the medallion' `either('Lilith talk')`>><</button>>
<<if $HaremStats >=1>><<button 'Find out about the relationship with Tamamo no Mae' `either('Lilith talk2')`>><</button>><</if>>
<<nobr>><<if $HaremStats ==1>><<button 'Find out what to do next' `either('Lilithevent')`>><</button>><</if>>
<<if $HaremStats >=2>><<button 'Have sex with her' `either('Lilithsex')`>><</button>><</if>><</nobr>>
<<nobr>><<if $HaremStats ==2>><<button 'Discuss her good mood' `either('Hell events')`>><</button>><</if>>
<<if $HaremStats >=3>><<button 'Ask her to open a portal to hell' `either('Hell')`>><</button>><</if>><</nobr>>
<<if $SuccubusEnergy ==0>><<button 'Ask her to charge the medallion' `either('Charging energies')`>><</button>><</if>>
<<button 'Finish talking to them' `either('Your Room')`>><</button>></h5></center><center><h5><img src="Images/Street/My street.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'My house' `either('Home')`>><</button>>
<<button 'Go to the other side of the street' `either('Street')`>><</button>>
<<button 'Go to town' `either('City')`>><</button>></h5></center><center><h5>Tokyo
<hr>/*==================================================*/<img @src="'images/City/' + either('1', '2', '3', '4', '5') + '.jpg'">
<hr>/*==================================================*/
<<if $gameDate.getDay() gte 1 and $gameDate.getDay() lte 5 and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 17>><<button 'Your father company' `either('Work')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 19>><<button 'Manga store' `either('Manga store')`>><</button>><</if>>
<<button 'Go to the train station' `either('Subway Station')`>><</button>>
<<button 'Go to a residential area' `either('Residential area')`>><</button>>
<<button 'Back on your street' `either('My street')`>><</button>></h5></center><center><h5><img src="Images/City/Work.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<nobr>><<if $HaremStats ==3 and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 18>><<button 'Get to know the new boss' `either('KiraEventWork')`>><</button>><</if>>
<<if $HaremStats >=4 and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 18>><<button 'Go to Kira office' `either('Kira office')`>><</button>><</if>><</nobr>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 18>><<button 'Go to Mizuki office' `either('Mizuki office')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 18>><<button 'Go to Fumiko office' `either('Fumiko office')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'Summon Kira' `either('Kirawork')`>><</button>><</if>>
<<button 'Go to town' `either('City')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Fumiko/"+either("1","2")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Ms. Fumiko I finished everything.<</speech>>
<<speech "Fumiko" >>Well done Takeshi did a good job today, you can go home calmly.<</speech>>
<<speech "Takeshi" >>Thank you Ms. Fumiko, have a nice day.<</speech>>
<<if $SuccubusEnergy >0>><<button 'Use locket before leaving' `either('Work')`>><<set $SuccubusEnergy -= 1>><<if $SuccubusEnergy lt 0>><<set $SuccubusEnergy to 0>><<elseif $SuccubusEnergy gt 3>><<set $SuccubusEnergy to 3>><</if>><<set $SuccubusPower += 1>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'Finish your work shift' `either('Work')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>So you want to know more about the medallion, Takeshi?<</speech>>
<<speech "Takeshi" >>Yes, full information is desirable.<</speech>>
<<speech "Lilith" >>The main thing to remember Takeshi is that even after the effect of the medallion, the victim will treat you the same before the medallion.<</speech>>
<<speech "Takeshi" >>What's the point then?<</speech>>
<<speech "Lilith" >>You can fuck them anytime you idiot! I deliberately limited the power of the medallion so that it does not completely break the will of the victim.<</speech>>
<<speech "Takeshi" >>Why did it have to be done?<</speech>>
<<speech "Lilith" >>In order not to attract too much attention! Do you want me to be found and sealed again? Now leave me alone, I want to take a break from your stupidity.<</speech>>
<<button 'Finish talking to them' `either('Lilith')`>><</button>></h5></center><center><h5><img src="Images/System/PC.png" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Play on computer' `either('PC Games')`>><</button>>
<<button 'Watch hentai' `either('Hentai')`>><</button>>
<<button 'Turn off computer' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Games/"+either("1","2","3","4","5")+".webm"' type="video/webm"></video>
You decided to kill some time and play on your computer.
You notice that during your process, Ruby has appeared behind you.
<<speech "Takeshi" >>We can play together if you want.<</speech>>
<<speech "Ruby" >>Truth? I want very much!<</speech>>
<<button 'Play with her' `either('RubyWin', 'RubyLos')`>><</button>>
<<button 'Next time' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Games/RubyWin/"+either("1","2")+".webm"' type="video/webm"></video>
Damn I managed to lose to her?
<<speech "Ruby" >>Bow down before me you damned man!<</speech>>
<<speech "Takeshi" >>I want a rematch!<</speech>>
<<speech "Ruby" >>Well, I'll think. Well, not this time a loser.<</speech>>
<<button 'Finish playing' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Games/RubyLos/"+either("1")+".webm"' type="video/webm"></video>
The last few rounds I was able to win.
<<speech "Ruby" >>That's not fair, Takeshi! I want to win back!<</speech>>
<<speech "Takeshi" >>Next time.<</speech>>
<<button 'Finish playing' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Ruby/Rubysex/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Ruby" >>Let's free your friend.<</speech>>
<<button 'Start sex scene' `either('Rubysex1')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Ruby/Rubysex/"+either("2","3","4","5","6")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('Rubysex1')`>><</button>>
<<button 'Go to sex' `either('Rubysex2')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Ruby/Rubysex/"+either("7","8","9","10","11","12","13","14")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Rubysex2')`>><</button>>
<<button 'Cum in her' `either('Rubysex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Ruby/Rubysex/"+either("15","16")+".webm"' type="video/webm"></video>
<<speech "Ruby" >>I am in heaven! So many cum!<</speech>>
Damn I need a rest...
<<button 'Finish sex' `either('Your Room')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Well, what are we going to have fun?<</speech>>
<<button 'Have sex with her' `either('Kirasex')`>><</button>>
<<button 'Finish talking to them' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirasex/"+either("1","2")+".webm"' type="video/webm"></video>
<<speech "Kira" >>I see your friend is already ready for sex.<</speech>>
Damn! I have to fuck those boobs!
<<button 'Start sex scene' `either('Kirasex1')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirasex/"+either("3","4")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kirasex1')`>><</button>>
<<button 'Let her suck your dick' `either('Kirasex2')`>><</button>>
<<button 'Go to sex' `either('Kirasex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirasex/"+either("5","6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kirasex1')`>><</button>>
<<button 'Let her suck your dick' `either('Kirasex2')`>><</button>>
<<button 'Go to sex' `either('Kirasex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirasex/"+either("9","10","11","12","13","14","15")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Kirasex3')`>><</button>>
<<button 'Cum in her' `either('Kirasex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirasex/"+either("16")+".webm"' type="video/webm"></video>
<<speech "Kira" >>It will have to be repeated somehow.<</speech>>
I need some rest! Although it was worth it to fuck those boobs.
<<button 'Finish sex' `either('Your Room')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Lie still, I'll do everything quickly right now.<</speech>>
You did not notice how quickly you began to finish in her mouth.
<<speech "Lilith" >>I said I'll do it quickly.<</speech>>
I have the feeling that I was completely squeezed dry like a lemon. I can't even say anything.
<<speech "Lilith" >>Okay, don't worry, rest for a couple of minutes and you'll be as good as new.<</speech>>
<<button 'Rest for a couple of minutes' `either('Lilith')`>><<set $SuccubusEnergy += 3>><<if $SuccubusEnergy lt 0>><<set $SuccubusEnergy to 0>><<elseif $SuccubusEnergy gt 3>><<set $SuccubusEnergy to 3>><</if>><</button>></h5></center><center><h5><img src="Images/City/Hot Springs.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 19>><<button 'Relax at the hot springs' `either('Relax')`>><<addhours 1>><</button>><</if>>
<<nobr>><<if $gameDate.getDay() gte 1 and $gameDate.getDay() lte 5 and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'You spotted the girl at the hot spring' `either('RelaxGirl1')`>><<addhours 1>><</button>><</if>>
<<if $gameDate.getDay() gte 1 and $gameDate.getDay() lte 5 and $gameDate.getUTCHours() gte 18 and $gameDate.getUTCHours() lte 18>><<button 'You spotted the girl at the hot spring' `either('RelaxGirl2')`>><<addhours 1>><</button>><</if>>
<<if GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'You spotted the girl at the hot spring' `either('RelaxGirl3')`>><<addhours 1>><</button>><</if>>
<<if GameDays[$gameDate.getDay()] is "Sun" and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'You spotted the girl at the hot spring' `either('RelaxGirl3')`>><<addhours 1>><</button>><</if>><</nobr>>
<<button 'Get out of the hot springs' `either('Village')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/"+either("1")+".webm"' type="video/webm"></video>
How nice to relax in hot springs.
<<speech "Lilith" >>It's good, of course, but have you forgotten what you have to do?<</speech>>
<<speech "Takeshi" >>Lilith yes I remember, now let me rest.<</speech>>
<<speech "Lilith" >>What a lazy ass you are.<</speech>>
I decided to ignore her insult and continued to rest.
<<button 'Finish resting' `either('Hot Springs')`>><</button>></h5></center><center><h5><img src="Images/City/Residential area.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 19 and $gameDate.getUTCHours() lte 19>><<button 'Walk around the residential area' `either('Event Street 1')`>><</button>><</if>>
<<button 'Go to town' `either('City')`>><</button>></h5></center><center><h5><img src="Images/Street/Street.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Back on your street' `either('My street')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl1/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Do you mind if I join you?<</speech>>
<<speech "Girl" >>Yes, of course, this is a public bath.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('RelaxGirl1sex')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'Finish resting' `either('Hot Springs')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl2/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Do you mind if I join you?<</speech>>
<<speech "Girl" >>Yes, sure. By the way, would you mind giving me a massage?<</speech>>
<<speech "Takeshi" >>No problem.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('RelaxGirl2sex')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'Finish resting' `either('Hot Springs')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl1/"+either("2")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Takeshi" >>Listen, are you not afraid that someone will come in?<</speech>>
<<speech "Girl" >>I don't care, I want you to fuck me right now!<</speech>>
<<button 'Start sex scene' `either('RelaxGirl1sex1')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl1/"+either("3","4","5","6")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('RelaxGirl1sex1')`>><</button>>
<<button 'Go to sex' `either('RelaxGirl1sex2')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl1/"+either("7","8","9","10","11","12","13","14","15")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('RelaxGirl1sex2')`>><</button>>
<<button 'Cum in her' `either('RelaxGirl1sex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl2/"+either("2")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Girl" >>Thank you for the massage, let me thank you.<</speech>>
<<speech "Takeshi" >>Since you insist, I do not mind.<</speech>>
<<button 'Start sex scene' `either('RelaxGirl2sex1')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl2/"+either("3","4")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('RelaxGirl2sex1')`>><</button>>
<<button 'Go to sex' `either('RelaxGirl2sex2')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl2/"+either("15")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Satisfied with your reward?<</speech>>
<<speech "Takeshi" >>Of course.<</speech>>
After that she fell unconscious. Gotta get out before she wakes up.
<<button 'Finish sex' `either('Hot Springs')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl1/"+either("16")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Damn I haven't been fucked like this in a long time.<</speech>>
<<speech "Takeshi" >>Always happy to help.<</speech>>
After that she fell unconscious. Gotta get out before she wakes up.
<<button 'Finish sex' `either('Hot Springs')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl2/"+either("5","6","7","8","9","10","11","12","13","14")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('RelaxGirl2sex2')`>><</button>>
<<button 'Cum in her' `either('RelaxGirl2sex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hentai/"+either("1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20")+".webm"' type="video/webm"></video>
You decide to fap a little and turn on hentai on your computer. At that moment, Kira appeared behind you and began to observe your process.
<<speech "Takeshi" >>Kira, have you ever heard of such an expression as personal space?<</speech>>
<<speech "Kira" >>Imagine that I'm not here. Keep on doing your lustful business.<</speech>>
Damn, I can't even fap properly!
<<button 'Finish watching hentai' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/KiraKitchenSex/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Well, what are we going to have fun?<</speech>>
<<button 'Have sex with her' `either('KiraKitchenSex1')`>><</button>>
<<button 'Finish talking to them' `either('Kitchen')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/KiraKitchenSex/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Kira" >>I see your friend is already ready for sex.<</speech>>
<<button 'Start sex scene' `either('KiraKitchenSex2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/KiraKitchenSex/"+either("3","4","17")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('KiraKitchenSex2')`>><</button>>
<<button 'Let her suck your dick' `either('KiraKitchenSex3')`>><</button>>
<<button 'Go to sex' `either('KiraKitchenSex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/KiraKitchenSex/"+either("5","6","7","18")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('KiraKitchenSex2')`>><</button>>
<<button 'Let her suck your dick' `either('KiraKitchenSex3')`>><</button>>
<<button 'Go to sex' `either('KiraKitchenSex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/KiraKitchenSex/"+either("8","9","10","11","12","13","19","20","21","22")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('KiraKitchenSex4')`>><</button>>
<<button 'Cum in her' `either('KiraKitchenSex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/KiraKitchenSex/"+either("14","15","16")+".webm"' type="video/webm"></video>
<<speech "Kira" >>It will have to be repeated somehow.<</speech>>
<<button 'Finish sex' `either('Kitchen')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl3/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Do you mind if I join you?<</speech>>
<<speech "Girl" >>Yes, of course, this is a public bath.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('RelaxGirl3sex')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'Finish resting' `either('Hot Springs')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl3/"+either("2","3")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Takeshi" >>Listen, are you not afraid that someone will come in?<</speech>>
<<speech "Girl" >>I don't care, I want you to fuck me right now!<</speech>>
<<button 'Start sex scene' `either('RelaxGirl3sex1')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl3/"+either("4","5","6")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('RelaxGirl3sex1')`>><</button>>
<<button 'Go to sex' `either('RelaxGirl3sex2')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl3/"+either("7","8","9","10","11","12","13","14","15","16")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('RelaxGirl3sex2')`>><</button>>
<<button 'Cum in her' `either('RelaxGirl3sex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hot Springs/Girl3/"+either("17")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Damn I haven't been fucked like this in a long time.<</speech>>
<<speech "Takeshi" >>Always happy to help.<</speech>>
After that she fell unconscious. Gotta get out before she wakes up.
<<button 'Finish sex' `either('Hot Springs')`>><</button>></h5></center><center><h5><img src="Images/City/Subway Station.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Go to the Okutama' `either('Train')`>><</button>>
<<button 'Exit the stations' `either('City')`>><</button>></h5></center><center><h5>Okutama
<hr>/*==================================================*/<img @src="'images/City/' + either('6', '7') + '.jpg'">
<hr>/*==================================================*/
<<nobr>><<if $HaremStats ==0 and $gameDate.getUTCHours() gte 18 and $gameDate.getUTCHours() lte 22>><<button 'Go in search of the sanctuary' `either('Forest')`>><</button>><</if>>
<<if $HaremStats >=1>><<button 'Go to the sanctuary' `either('Sanctuaries2')`>><</button>><</if>><</nobr>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 19>><<button 'Hot Springs' `either('Hot Springs')`>><</button>><</if>>
<<button 'Go to the train station' `either('Subway Station2')`>><</button>></h5></center><center><h5><img src="Images/City/Subway Station2.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Return to Tokyo' `either('Train2')`>><</button>>
<<button 'Exit the stations' `either('Village')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("1")+".webm"' type="video/webm"></video>
As you approached the sanctuary, the sky suddenly darkened and fog arose around you.
<<speech "Lilith" >>So she already knows we're here.<</speech>>
<<speech "Takeshi" >>Sanctuary master?<</speech>>
<<speech "Lilith" >>Yes, judging by the fact that she arranged for us right now, she clearly has no mood.<</speech>>
You reached the sanctuary and were about to enter it, as at that moment Lilith mentally warned you.
<<speech "Lilith" >>Takeshi, be careful because whoever you're facing right now is going to be a half-demon half-god.<</speech>>
<<speech "Takeshi" >>Do you fear her?<</speech>>
<<speech "Lilith" >>It doesn't matter, come on in already.<</speech>>
I did not put pressure on Lilith and entered the sanctuaries.
<video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("2")+".webm"' type="video/webm"></video>
You went inside and you were greeted by a pretty woman.
<<speech "???" >>Welcome traveler. If you're tired, I can offer you shelter until the weather calms down outside.<</speech>>
At that moment, you felt mentally how Lilith was furious and could no longer seem to restrain herself.
<<speech "Lilith" >>Listen, old woman, how many people have already fallen for this old trick of yours?<</speech>>
You noticed how the girl in front of you, when she heard Lilith's voice, also became furious. Even though she tried hard not to show it.
<<speech "???" >>You seem to have confused me with someone, I don’t understand what kind of trick and old woman we are talking about. Did you get sick while traveling or did you catch a cold? I can help you.<</speech>>
It can be seen that Lilith's words hurt her and she tries to hide it and say any garbage so as not to show it. Yes, I see Lilith herself is not particularly happy that her words did not work as well as she expected and began to continue.
<<speech "Lilith" >>Maybe enough Tamamo no Mae? Take off your mask old fox.<</speech>>
It can be seen that the woman tried to keep calm even after such words of Lilith.
<<speech "Lilith" >>Takeshi, I'm sorry, but right now you're going to hurt a little.<</speech>>
After these words, hellish pain ran through your body. Damn Lilith doesn't seem to know the difference between a little and hellish pain!
When the pain subsided, you got up from the floor and saw another girl already.
<video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>All the end of your game, Tamamo no Mae.<</speech>>
<<speech "Tamamo no Mae" >>Okay, enough of Lilith, I already understood. God, what a bitch was 1000 years ago, it has remained so.<</speech>>
<<speech "Lilith" >>I missed you too my love. <</speech>>
<<speech "Tamamo no Mae" >>Let's go to a more comfortable place and discuss all the details. By the way, Lilith, take your spell off the boy. I'm afraid a couple more minutes and the boy will lose his sight.<</speech>>
Damn stupid Lilith!
<video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("5")+".webm"' type="video/webm"></video>
After Lilith removed her stupid spell from me, we went to get Tamamo no Mae.
<<speech "Tamamo no Mae" >>Please feel at home. I take it you're the not-so-smart person who freed that stupid bitch?<</speech>>
At that moment, I felt like Lilith wanted to say something to Tamamo no Mae. But Tamamo no Mae quickly interrupted her and continued speaking.
<<speech "Tamamo no Mae" >>You don't have to say, I already knew who this boy was when I heard your damned voice Lilith.<</speech>>
Damn, I have no idea what they're talking about.
<<speech "Tamamo no Mae" >>Okay, Takeshi. To get acquainted with the mother of that person who sealed Lilith.<</speech>>
<<speech "Lilith" >>She also forgot to say that she is your distant cousin. <</speech>>
Now it's clear how my grandfather got that book.
<<speech "Takeshi" >>Okay enough! I more or less understood the situation. I don't understand why you can't lead adequately for a couple of minutes?<</speech>>
<<speech "Lilith" >>Let you this old maid tell.<</speech>>
<<speech "Tamamo no Mae" >>Okay, this was during the beginning of the Heian Period. At that time in Japan there were strong transformations of the country. New laws were written, and it can be said that in this era, the samurai, beloved by everyone, appeared right now.<</speech>>
<<speech "Lilith" >>She forgot to add, as usual, a very important one. During this period, demons raged violently. At the head of this banquet was Lilith, beloved by everyone.<</speech>>
<<speech "Tamamo no Mae" >>Can you stop interrupting, you stupid bitch? Yes, exactly as she said.<</speech>>
<<speech "Lilith" >>She also forgot to say that we were mistresses. I miss those days.<</speech>>
<<speech "Tamamo no Mae" >>Enough Lilith!<</speech>>
<<speech "Lilith" >>Okay, for the sake of you, my love, I'll keep quiet.<</speech>>
<<speech "Tamamo no Mae" >>God, how she annoys me. Let's finish?<</speech>>
<<speech "Takeshi" >>Well, I got the gist of it, so we can finish.<</speech>>
<<speech "Tamamo no Mae" >>Thanks Takeshi. So can you tell me why you came here?<</speech>>
<<speech "Takeshi" >>I don't know it was Lilith's advice, maybe she can tell us better?<</speech>>
<<speech "Lilith" >>Okay, in short. Do you remember my medallion? We must restore its former power.<</speech>>
<<speech "Tamamo no Mae" >>No! I know what it takes so my answer is no!<</speech>>
<<speech "Lilith" >>Don't worry girlfriend! I don't plan to have an orgy here like in the Heian period.<</speech>>
<<speech "Tamamo no Mae" >>Are you a fool Lilith? I know how your thing works!<</speech>>
<<speech "Lilith" >>Are you so reluctant to have sex with Takeshi? Well, he's your relative. Well, I don't see any problem here.<</speech>>
<<speech "Tamamo no Mae" >>That's the problem! To charge the medallion he must receive the lust of humans and a demon!<</speech>>
Suddenly, I felt devilish laughter inside Lilith's soul.
<<speech "Lilith" >>Listen, Tamamo no mae, well, if you don't want to help us, we'll leave in peace. It's just that anything can happen and the time you hate right now will come to this world again. Well, the trouble is, girlfriend, you decided to refuse.<</speech>>
At that moment, you felt hellish fury in Tamamo no mae's eye.
<<speech "Tamamo no Mae" >>Alright Lilith! You won dumb bitch!<</speech>>
<<speech "Lilith" >>I always get mine, remember?<</speech>>
At that moment, Tamamo no mae said some words and Lilith's presence abruptly disappeared into the room.
<<speech "Takeshi" >>What did you do?<</speech>>
<<speech "Tamamo no Mae" >>Doesn't matter! Remember the main thing Takeshi, learn to control the medallion and don't let him take over! Now I need rest.<</speech>>
<video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("6")+".webm"' type="video/webm"></video>
After these words. I abruptly ended up in Okutama where I started my search. Okay, we've done the first task, it's time to return home.
<<button 'End the conversation' `either('Village')`>><<set $HaremStats += 1>><</button>></h5></center><center><h5><img src="Images/City/Temple.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<nobr>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<button 'Sleep' `either('Tamamo no Mae sleep')`>><<addhours 9>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Summon Tamamo no Mae' `either('Tamamo no Mae')`>><</button>><</if>><</nobr>>
<<button 'Come out of the sanctuary' `either('Village')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Sleep/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>Time to wake up, Takeshi.<</speech>>
<<speech "Takeshi" >>Give me a couple more minutes.<</speech>>
<<speech "Tamamo no Mae" >>Takeshi I will not repeat twice.<</speech>>
I didn't particularly want to experience the evil nature, Tamamo no Mae.
<<button 'Get up' `either('Tamamo no Mae home')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("4","8","7")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>What did Takeshi want?<</speech>>
<<button 'Discuss the situation about your origin' `either('Tamamo no Mae Talk')`>><</button>>
<<button 'Have sex with her' `either('Tamamo no Mae sex')`>><</button>>
<<nobr>><<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 18>><<button 'Invite her for a walk' `either('Tamamo no Mae Walk')`>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 19 and $gameDate.getUTCHours() lte 22>><<button 'Invite her for a walk' `either('Tamamo no Mae Walk2')`>><</button>><</if>><</nobr>>
<<button 'Finish talking to them' `either('Tamamo no Mae home')`>><</button>></h5></center><center><h5><img src="Images/City/Forest9.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest2')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Walk along the stone path' `either('Forest10')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest8')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest4.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest1')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest6')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest7.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest11')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest5')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest2.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest3')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest2')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go deep into the forest' `either('Forest4')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest1')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest3.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest5')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go deep into the forest' `either('Forest7')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest3')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest6.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest8')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest6')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest5.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest7')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest3')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest8.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest9')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest5')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest9.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Walk along the stone path' `either('Forest11')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest9')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest10.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go stone path up' `either('Sanctuaries')`>><</button>>
<<button 'Go to the left side of the forest' `either('Forest2')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Forest8.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<if $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 22>><<button 'Go to the right side of the forest' `either('Forest10')`>><<addhours 1>><<run Engine.show()>><</button>>
<<button 'Go to the left side of the forest' `either('Forest8')`>><<addhours 1>><<run Engine.show()>><</button>><</if>><<if $gameDate.getUTCHours() gte 23 and $gameDate.getUTCHours() lte 23>><<speech "Takeshi" >>Damn, it's too late, time to go home. Better continue tomorrow at this time.<</speech>><</if>>
<<button 'leave the forest' `either('Village')`>><</button>></h5></center><center><h5><img src="Images/City/Sanctuaries.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
Damn, I finally found it! I didn't think what Grandpa's story would turn out to be true.
<<speech "Lilith" >>Are you going to stand like that? Stop resting, we need to take our prize!<</speech>>
<<speech "Takeshi" >>Lilith, you need to learn patience.<</speech>>
<<button 'Enter the sanctuaries' `either('Tamamo no Mae event')`>><</button>></h5></center><center><h5><img src="Images/City/Sanctuaries.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
When you approached the sanctuary. Tamamo no Mae has made a mental connection with you. She made sure that it was me and gave a mental answer.
<<speech "Tamamo no Mae" >>You can come in, Takeshi.<</speech>>
<<button 'Enter the sanctuaries' `either('Tamamo no Mae home')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>What are we going to do next?<</speech>>
<<speech "Lilith" >>We were able to increase the power of the medallion, although it is far from its former power. Therefore, we will start small things.<</speech>>
After that, she began to think for a couple of minutes.
<<speech "Lilith" >>Okay, let's start with your work, Takeshi.<</speech>>
<<speech "Takeshi" >>Isn't it easier to start from my house?<</speech>>
<video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("3")+".webm"' type="video/webm"></video>
After my words, she approached me and put her hand on my face.
<<speech "Lilith" >>I know how much you want to fuck your mother and sister. Right now, the medallion is unable to give the desired.<</speech>>
<<speech "Takeshi" >>Okay, I got you Lilith.<</speech>>
<<speech "Lilith" >>Well don't worry my little pervert Takeshi. Kind Lilith to give all the delights of sex for her slave at any time when he wishes.<</speech>>
Fucking bitch!
<<button 'End the conversation' `either('Lilith')`>><<set $HaremStats += 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>So you want to know what happened between us back then?<</speech>>
<<speech "Takeshi" >>Yes!<</speech>>
<<speech "Lilith" >>Well, yes, I almost drowned Japan in the agony of lust, a nice bonus was to fuck Tamamo no Mae's husband. Agree, not such a terrible to-do list to seal me?<</speech>>
<<speech "Takeshi" >>Not a drop of regret for your actions.<</speech>>
<<speech "Lilith" >>Come on Takeshi, you flatter me.<</speech>>
<<button 'Finish talking to them' `either('Lilith')`>><</button>></h5></center><span class="redtext">Story progression:</span>
@media screen and (min-width: 1920px) {
#ui-bar {
width: 18em;
}
#story {
margin-left: 15em;
}
#passages {
max-width: 58em;
margin: 0 auto;
}
}
.transition-in {
opacity:0;
position:absolute;
}
.passage:not(.transition-out) {
transition: none;
-webkit-transition: none;
}
.transition-out {
opacity:0 !important;
position:absolute;
}
#passages {
margin: 1px;
max-width: 54em;
}
#ui-bar {
background-color: #111;
border-right: none;
text-align: center;
height: auto;
left: 0;
margin: 0;
padding: 0;
position: fixed;
top: 0;
transition: left 0.2s ease-in 0s;
width: 100%;
z-index: 50;
}
#ui-bar-body {
height: calc(100% - 2.5em);
margin: 0 0;
padding: 0 0.5em;
}
#ui-bar-body > *:not(:first-child) {
margin-top: -2em;
}
#ui-bar-toggle::before {
content: "";
}
#ui-bar.stowed #ui-bar-toggle::before {
content: "";
}
#ui-bar-toggle {
border: none;
display: block;
padding: 0.3em 0.45em 0.25em;
position: absolute;
right: 0;
top: 0;
}
#ui-bar.stowed {
top: -4.5em;
left: 0
}
#ui-bar.stowed ~ #story {
margin-left: 20em;
margin-top: 0em;
}
#story {
margin-left: 20em;
margin-top: 5em;
}
#ui-bar.stowed {
left: 0;
top: -4.5em;
}
#ui-bar.stowed #ui-bar-toggle {
padding: 3.3em 0.35em 0.25em 0.55em;
}
#ui-bar-history {
margin-left: 0 auto;
margin-left: 90%;
}
#menu ul {
border: medium none;
list-style: outside none none;
margin: -2em 0 0;
padding: 0;
display: inline-flex;
}
#menu li:not(:first-child) {
border-top: none;
}
#ui-bar-body>:not(:first-child) {
margin-top: 2em;
}
#ui-bar-body {
margin-top: 0;
}<center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithsex/"+either("1","2","3")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Well, is the servant ready to satisfy the hunger of his mistress?<</speech>>
<<button 'Start sex scene' `either('Lilithsex2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithsex/"+either("4","5")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Work your tongue slave and please me.<</speech>>
After a short time she pushed you away from her pussy.
<<speech "Lilith" >>Useless slave! Let's see if your dick can satisfy my hunger.<</speech>>
<<button 'Continue' `either('Lilithsex3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithsex/"+either("6","7","8","9")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her suck your dick' `either('Lilithsex3')`>><</button>>
<<button 'Go to sex' `either('Lilithsex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithsex/"+either("10","11","12","13","14","15","16","17","18","19")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Lilithsex4')`>><</button>>
<<button 'Cum in her mouth' `either('Lilithsex6')`>><</button>>
<<button 'Cum in her' `either('Lilithsex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithsex/"+either("20")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Okay, you're not that useless after all.<</speech>>
Damn bitch! I'm alive ! I need some rest..
<<button 'Finish sex' `either('Your Room')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithsex/"+either("21")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Damn Takeshi! Haven't you been taught that it's impolite to cum in a girl's mouth?<</speech>>
Damn bitch! I'm alive ! I need some rest..
<<button 'Finish sex' `either('Your Room')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae sex/"+either("1","2","3","4")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>Right now, I'll show you Takeshi what the most skillful Kitsune are capable of.<</speech>>
<<button 'Start sex scene' `either('Tamamo no Mae sex2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae sex/"+either("5","6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her suck your dick' `either('Tamamo no Mae sex2')`>><</button>>
<<button 'Go to sex' `either('Tamamo no Mae sex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae sex/"+either("25","26")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>Satisfied with Takeshi?<</speech>>
I certainly knew that sex with magical beings was different from sex with a normal person. I can’t even answer anything, my body needs rest.
<<button 'Finish sex' `either('Tamamo no Mae home')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae sex/"+either("9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Tamamo no Mae sex3')`>><</button>>
<<button 'Cum in her' `either('Tamamo no Mae sex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/"+either("7")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>So you are our relative Tamamo no Mae?<</speech>>
<<speech "Tamamo no Mae" >>I am the ancestor of our family. You are all my heirs, your blood is part of my blood.<</speech>>
<<speech "Takeshi" >>Even your strength?<</speech>>
<<speech "Tamamo no Mae" >>No, after long generations, almost nothing remains of her. My son and his descendants had a part of my power. Later generations have already lost it all.<</speech>>
<<speech "Takeshi" >>Last question, did my grandfather know about you?<</speech>>
<<speech "Tamamo no Mae" >>Yes, I knew. I am very sad that he did not manage to prepare a more experienced successor.<</speech>>
<<speech "Takeshi" >>Forgive me.<</speech>>
<<speech "Tamamo no Mae" >>Everything is fine. As long as you control the locket and keep Lilith in check, our world will not be threatened.<</speech>>
<<speech "Takeshi" >>It will be quite difficult to keep Lilith in check...<</speech>>
<<speech "Tamamo no Mae" >>You cope my heir.<</speech>>
<<button 'Finish talking to them' `either('Tamamo no Mae home')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Yes, master?<</speech>>
<<speech "Mia" >>Sister can stop referring to this idiot like that?<</speech>>
<<speech "Mika" >>Have you forgotten the queen's command, sister?<</speech>>
After that, Mia fell silent and began to hold herself in her arms.
<<button 'Have sex with them' `either('Mia and Mikasex')`>><</button>>
<<button 'Finish talking to them' `either('Your Room')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and Mikasex/"+either("1","2","3","4")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Right now we will squeeze you dry, Takeshi.<</speech>>
<<speech "Mia" >>Listen, sister, I like this idea.<</speech>>
I am a corpse!
<<button 'Continue' `either('Mia and Mikasex2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and Mikasex/"+either("5","6","7","8","9","10","11","12")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let them continue to suck your cock' `either('Mia and Mikasex2')`>><</button>>
<<button 'Go to sex' `either('Mia and Mikasex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and Mikasex/"+either("13","14","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking them up' `either('Mia and Mikasex3')`>><</button>>
<<button 'Cum in Mika' `either('Mia and Mikasex4')`>><</button>>
<<button 'Let them make you cum with their hands' `either('Mia and Mikasex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and Mikasex/"+either("31")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Come on takeshi release all the lust into me!<</speech>>
<<speech "Mia" >>Why do you need this useless lust, sister?<</speech>>
<<speech "Mika" >>Then she's all mine!<</speech>>
After that, they began to argue about something there. I decided to rest a bit and ignore their dispute.
<<button 'Finish sex' `either('Your Room')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and Mikasex/"+either("32")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Come on takeshi give us your seed!<</speech>>
<<speech "Mia" >>Sister how could you agree to this humiliation!<</speech>>
Although I understand that right now I’m powerless, well, the feelings to make Mia make such a humiliating act warmed my soul a little.
<<button 'Finish sex' `either('Your Room')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>Takeshi, are we just walking or do you have a naughty plan for this walk?<</speech>>
<<speech "Takeshi" >>Yes, it didn't seem to be.<</speech>>
<<speech "Tamamo no Mae" >>Are you sure about that, Takeshi?<</speech>>
<<button 'Play along with her' `either('Tamamo no Mae Walksex')`>><</button>>
<<button 'Refuse her hint and calmly finish the walk.' `either('Tamamo no Mae home')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk2/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>What a lovely evening. Listen, do you want to extend this evening a little?<</speech>>
<<speech "Takeshi" >>For example?<</speech>>
<<speech "Tamamo no Mae" >>Yes, there is one place where we can be alone.<</speech>>
<<button 'Accept her offer' `either('Tamamo no Mae Walk2sex')`>><</button>>
<<button 'Refuse her hint and calmly finish the walk.' `either('Tamamo no Mae home')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>I knew you were having mischievous thoughts about this walk, Takeshi.<</speech>>
<<button 'Start sex scene' `either('Tamamo no Mae Walksex1')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk2/"+either("2","12","13","14","15","16")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>Come on, let's make this evening more interesting.<</speech>>
<<button 'Start sex scene' `either('Tamamo no Mae Walk2sex2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk2/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>Come on, let's get your buddy ready for the fun.<</speech>>
<<button 'Go to sex' `either('Tamamo no Mae Walk2sex3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk/"+either("18")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>This was a good finale to our walk.<</speech>>
After that, we quickly packed up and went back to her sanctuary.
<<button 'Finish sex' `either('Tamamo no Mae home')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk/"+either("3","4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her suck your dick' `either('Tamamo no Mae Walksex1')`>><</button>>
<<button 'Go to sex' `either('Tamamo no Mae Walksex2')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk/"+either("6","7","8","9","10","11","12","13","14","16","17")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Tamamo no Mae Walksex2')`>><</button>>
<<button 'Cum in her' `either('Tamamo no Mae Walksex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk2/"+either("4","5","6","7","8","9","10")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Tamamo no Mae Walk2sex3')`>><</button>>
<<button 'Cum in her' `either('Tamamo no Mae Walk2sex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Tamamo no Mae/Tamamo no Mae Walk2/"+either("11")+".webm"' type="video/webm"></video>
<<speech "Tamamo no Mae" >>A good ending to a wonderful evening. You do not think so?<</speech>>
<<speech "Takeshi" >>I won't deny it.<</speech>>
After that, we quickly packed up and went back to her sanctuary.
<<button 'Finish sex' `either('Tamamo no Mae home')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>So you don't want to get up?<</speech>>
<<speech "Takeshi" >>Yes! I want to get some more sleep.<</speech>>
<<speech "Lilith" >>Are you sure about your answer, Takeshi?<</speech>>
<<speech "Takeshi" >>Yes, I'm 100% sure! Now let me sleep a little more.<</speech>>
<<button 'Continue' `either('Lilithmorning2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("4","5")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Work your language better slave! You don't know how to do good cunnilingus at all!<</speech>>
<<speech "Takeshi" >>Sorry! Give me another chance!<</speech>>
<<speech "Lilith" >>Okay, let's see your dick satisfy my lust.<</speech>>
<<button 'Continue' `either('Lilithmorning5')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("2")+".webm"' type="video/webm"></video>
You decided to continue sleeping, well, suddenly you saw that Lilith was watching porn on your TV.
<<speech "Takeshi" >>What are you doing?! What if someone enters my room?<</speech>>
<<speech "Lilith" >>You don't like porn, Takeshi? Maybe you don't have enough sound?<</speech>>
<<speech "Takeshi" >>Stop Lilith! I surrender, you won, Lilith.<</speech>>
<<button 'Continue' `either('Lilithmorning3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>For his disobedience, the slave must be punished. Are you ready for your punishment, Takeshi?<</speech>>
<<speech "Takeshi" >>Yes ! Just don't turn the sound on!<</speech>>
<<button 'Continue' `either('Lilithmorning4')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her suck your dick' `either('Lilithmorning5')`>><</button>>
<<button 'Go to sex' `either('Lilithmorning6')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("9","10","11","12","13")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Lilithmorning6')`>><</button>>
<<button 'Cum in her' `either('Lilithmorning7')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/Lilithmorning/"+either("14","15")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Okay live, next time think well if you argue with your queen.<</speech>>
Damned Lilith!
<<button 'Finish sex' `either('Your Room')`>><</button>></h5></center>@@.delayed;<div class="content">\
<h2><center><img src="Images/System/SB.png" style="max-width: 10%;"> <span class="redtext">License Agreement and Player Warning</span> <img src="Images/System/SB.png" style="max-width: 10%;"></center></h2><h4><center>The game is created using illegal content that was received from third-party resources. This means that all content in the game is pirated and cannot be used to sell and make money to the author of the game.
So if you see all this content in another game and where the authors of the game will demand money from you in any form! Immediately report violations to the platform on which the process of collecting illegal money takes place!
Do not be fooled and do not try to justify the illegal way the author makes money on your stupidity and ignorance! Any game created on real porn rollers is not legal and has no right to take money from you in any form! Even earlier access to the game, which the authors of the game are trying to inflict on you, is also an illegal way to earn money on you!
Think with your head, not with your dick!
<<speech "<h3>Did I read the agreements?</h3>" >>
<<button 'Yes' `either('Game start screen')`>><</button>>
<<button 'No' >><<script>>window.close()<</script>><</button>><</speech>></center></h4>
</div>@@<center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirawork/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Kira" >>So you want to get a little naughty before work, Takeshi?<</speech>>
<<button 'Have sex with her' `either('Kirawork2')`>><</button>>
<<button 'Finish talking to them' `either('Work')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirawork/"+either("18")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Don't rush Takeshi, we still have plenty of time before the people come here.<</speech>>
<<button 'Start sex scene' `either('Kirawork3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirabathroom/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Kira" >>I love to take baths, after them I feel that I was born again.<</speech>>
<<speech "Takeshi" >>I will not deny.<</speech>>
<<speech "Kira" >>And I also love to have sex during this pleasant process. How do you look to combine pleasant with useful Takeshi?<</speech>>
<<button 'Have sex with her' `either('Kirabathroom2')`>><</button>>
<<button 'Finish talking to them' `either('Home')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirawork/"+either("2","3")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kirawork3')`>><</button>>
<<button 'Let her suck your dick' `either('Kirawork4')`>><</button>>
<<button 'Go to sex' `either('Kirawork5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirawork/"+either("4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kirawork3')`>><</button>>
<<button 'Let her suck your dick' `either('Kirawork4')`>><</button>>
<<button 'Go to sex' `either('Kirawork5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirawork/"+either("6","7","8","9","10","11","12","13","14","15","16")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Kirawork5')`>><</button>>
<<button 'Cum in her' `either('Kirawork6')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirawork/"+either("17")+".webm"' type="video/webm"></video>
<<speech "Kira" >>If you want to fool around again, just summon me before work one more time.<</speech>>
<<button 'Finish sex' `either('Work')`>><<addhours 1>><</button>></h5></center>*Щелкает жвалами* Королева *Щёлкает жвалами* Королева, ты вернулась, ты не покинула нас!*Щёлкает жвалами*
<<speech "Nega" >>Quit hiding Nega!<</speech>>
<<speech "Barbatos" >>Fucking useless sinful souls! Damn, my queen, why did you leave us!?<</speech>>
<<speech "Amelia" >>Whatever you say my queen. Queen, I think Nega missed you more than anyone, I think you should visit her.<</speech>>
$gameDate.getDay() gte "Sat" and $gameDate.getDay() lte "Sun">
width: 100%;
height: 100%;
max-width: 1500px;
overflow-y: auto;
overflow-x: hidden;
margin: 2em auto;
box-sizing: border-box;
padding: 0em 5em;
letter-spacing: 0.5px;
line-height: 1.5;
scrollbar-width: thin;
@media screen and (min-width: 1920px) {
#ui-bar {
width: 18em;
}
#story {
margin-left: 15em;
}
#passages {
max-width: 58em;
margin: 0 auto;
}
}<center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirabathroom/"+either("2","3","4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kirabathroom2')`>><</button>>
<<button 'Let her suck your dick' `either('Kirabathroom3')`>><</button>>
<<button 'Go to sex' `either('Kirabathroom4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirabathroom/"+either("6","7","8","9")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kirabathroom2')`>><</button>>
<<button 'Let her suck your dick' `either('Kirabathroom3')`>><</button>>
<<button 'Go to sex' `either('Kirabathroom4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirabathroom/"+either("17")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Just awesome, if you want to repeat, you know what to do, Takeshi.<</speech>>
<<button 'Finish sex' `either('Home')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kirabathroom/"+either("10","11","12","13","14","15","16")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Kirabathroom4')`>><</button>>
<<button 'Cum in her' `either('Kirabathroom5')`>><</button>><</speech>></h5></center><center><h5><img src="Images/City/Manga store.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<nobr>><<if $gameDate.getDay() gte 1 and $gameDate.getDay() lte 5 and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'Did you spot the girl in the shop' `either('Manga store Gril sex')`>><<addhours 1>><</button>><</if>>
<<if $gameDate.getDay() gte 1 and $gameDate.getDay() lte 5 and $gameDate.getUTCHours() gte 18 and $gameDate.getUTCHours() lte 18>><<button 'Did you spot the girl in the shop' `either('Manga store Gril2 sex')`>><<addhours 1>><</button>><</if>>
<<if GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'Did you spot the girl in the shop' `either('Manga store Gril3 sex')`>><<addhours 1>><</button>><</if>>
<<if GameDays[$gameDate.getDay()] is "Sun" and $gameDate.getUTCHours() gte 8 and $gameDate.getUTCHours() lte 8>><<button 'Did you spot the girl in the shop' `either('Manga store Gril3 sex')`>><<addhours 1>><</button>><</if>><</nobr>>
<<button 'Go to town' `either('City')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Do you need help?<</speech>>
<<speech "Girl" >>Thanks for the offer, but I'll probably decline.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('Manga store Gril sex2')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'End conversation' `either('Manga store')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl2/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Do you need help?<</speech>>
<<speech "Girl" >>Thanks for the offer, but I'll probably decline.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('Manga store Gril2 sex2')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'End conversation' `either('Manga store')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl/"+either("2")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Girl" >>Though I think you can help with something baby.<</speech>>
<<button 'Start sex scene' `either('Manga store Gril sex3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl/"+either("6","7","8","9","10","11","12","13")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Manga store Gril sex5')`>><</button>>
<<button 'Cum on breasts' `either('Manga store Gril sex6')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl/"+either("4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Manga store Gril sex3')`>><</button>>
<<button 'Let her suck your dick' `either('Manga store Gril sex4')`>><</button>>
<<button 'Go to sex' `either('Manga store Gril sex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Manga store Gril sex3')`>><</button>>
<<button 'Let her suck your dick' `either('Manga store Gril sex4')`>><</button>>
<<button 'Go to sex' `either('Manga store Gril sex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl/"+either("14")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Thank you, handsome. I haven't been fucked like this in a long time.<</speech>>
<<speech "Takeshi" >>Always happy to help.<</speech>>
<<button 'Finish sex' `either('Manga store')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl2/"+either("2")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Girl" >>Though I think you can help with something baby.<</speech>>
<<button 'Start sex scene' `either('Manga store Gril2 sex3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl2/"+either("3","4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her suck your dick' `either('Manga store Gril2 sex3')`>><</button>>
<<button 'Go to sex' `either('Manga store Gril2 sex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl2/"+either("6","7","8","9","10","11","12","13")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Manga store Gril2 sex4')`>><</button>>
<<button 'Cum on breasts' `either('Manga store Gril2 sex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl2/"+either("14")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Thank you, handsome. I haven't been fucked like this in a long time.<</speech>>
<<speech "Takeshi" >>Always happy to help.<</speech>>
<<button 'Finish sex' `either('Manga store')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("4")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Listen Lilith, I still want to ask you, why are you so joyful after the events in the sanctuary?<</speech>>
<<speech "Lilith" >>This one is so sweet of you, Takeshi.<</speech>>
<<speech "Takeshi" >>I'm seriously Lilith! Knowing you, this is clearly something terrible.<</speech>>
<<speech "Lilith" >>Don't be so serious Takeshi. In truth, I have very good news.<</speech>>
I'm afraid to imagine what she's up to again.
<<speech "Lilith" >>I can congratulate you today, you will be the first person to go to hell while still alive!<</speech>>
<video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("6")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>What?! I immediately say my answer is no!<</speech>>
<<speech "Lilith" >>Listen, my dear, do you think you have a choice?<</speech>>
<<speech "Takeshi" >>Yes, at least a million times punish me! I'll still say no!<</speech>>
<<speech "Lilith" >>Are you sure you want to experience what you said, Takeshi? You forgot that I can take and pick up what I gave you and your fantasies will immediately fall into the abyss of despair!<</speech>>
<<speech "Takeshi" >>Okay, forgive me stupid!<</speech>>
<video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("5")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Good dog, remembered his place. Now let's start the ritual.<</speech>>
Damn bitch!
<<speech "Takeshi" >>Stop! I have a question, how safe is this for our world?!<</speech>>
<<speech "Lilith" >>Well, I think it's about 1 percent somewhere.<</speech>>
<<speech "Takeshi" >>Stop! Stop! 1 percent that we'll stay alive?!<</speech>>
<<speech "Lilith" >>Damn, you should have seen your face right now, Takeshi. (Devilish laughter)<</speech>>
<<speech "Lilith" >>Okay, just forget it, close your eyes and we're going to my world.<</speech>>
I have a very bad feeling about her ideas.
<<button 'Close eyes' `either('Hell events2')`>><</button>></h5></center><center><h5><img src="Images/Hell/2.jpg" style="max-width: 80%;">
<hr>/*==================================================*/
<<button 'Go to the hall of the gatekeeper' `either('HellSex31')`>><</button>>
<<button 'Go to the hall of pain' `either('HellSex21')`>><</button>>
<<button 'Go to the Nega' `either('HellSex')`>><</button>>
<<button 'Leave hell' `either('Home')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Nega" >>*Clicks her mandibles* Queen *Clicks her mandibles* Queen, you're back, did you decide to give your servant to me for dinner? *Clicks her mandibles*<</speech>>
<<speech "Lilith" >>No, I have an idea that is more interesting. Listen, slave, do you want to try to experience new sensations?<</speech>>
It means she offers me to fuck Nega, what should I do?
<<button 'Agree to have sex with Nega' `either('HellSex2')`>><</button>>
<<button 'I think I will refuse' `either('Hell')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex2/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Amelia" >>My queen, I'm glad to see you. Did you come here on business or do you want to see how I deal with another sinful soul?<</speech>>
<<speech "Lilith" >>A tempting offer, but no. By the way, you don't mind if my slave has a little fun with this soul, do you?<</speech>>
<<speech "Amelia" >>Of course my queen.<</speech>>
<<button 'Accept offer' `either('HellSex22')`>><</button>>
<<button 'Refuse offer' `either('Hell')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex3/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Barbatos" >>My queen! You are just in time! Don't want to stay and watch the punishment of these sinful souls?<</speech>>
<<speech "Lilith" >>What do you say, servant, don't you want to see?<</speech>>
What should I answer?
<<button 'Yes' `either('HellSex32')`>><</button>>
<<button 'No' `either('Hell')`>><</button>></h5></center><center><h5><img src="Images/Hell/1.jpg" style="max-width: 80%;">
<<speech "Lilith" >>You can open your eyes, Takeshi.<</speech>>
<<speech "Takeshi" >>What is this?!<</speech>>
<<speech "Lilith" >>The gates of hell that separate your world between my world.<</speech>>
<<speech "Takeshi" >>Let me guess, you want to open them and let all the chaos into our world?<</speech>>
<<speech "Lilith" >>You're a fool? How will I collect fallen souls then? If you do not know the principles of the universe, it is better to be silent, Takeshi.<</speech>>
<<speech "Takeshi" >>If I'm such a fool, can you explain then?<</speech>>
<<speech "Lilith" >>Listen and remember carefully, Takeshi. We demons, the watchdogs of heaven, were created for one purpose only, to make the beautiful garden of our creator beautiful and innocent. When those who decided to break the system and live with their own heads appeared in it, we, as chain dogs, had to take him to hell and torture him until the end of his centuries. So that the system which the creator created was not violated.<</speech>>
<<speech "Takeshi" >>Stop! How about the bible? About God and the fall of Lucifer?<</speech>>
<<speech "Lilith" >>Do you believe this bullshit, Takeshi? You were both managed from the shadows and continue to be managed further. Previously, this was the angels, right now the government, nothing has changed. Well, if this consoles you, then I am Lucifer with boobs.<</speech>>
<<speech "Takeshi" >>Then where are the angels?!<</speech>>
<<speech "Lilith" >>The devil knows, they must have been tired of their creations and they decided to leave him. Found a new entertainment and are engaged in it.<</speech>>
<<speech "Takeshi" >>Does that mean they dumped you too?<</speech>>
<<speech "Lilith" >>Yes. Well, don't worry, after they left, the world quickly adapted. Religion, wars and other shit is the result of the greed of some people to rule this world. I would say that we have even more work here than before when people became freer.<</speech>>
<<speech "Takeshi" >>Why didn't you tell me this before?<</speech>>
<<speech "Lilith" >>First you are stupid, secondly you would not believe because stupid.<</speech>>
How does she piss me off! Although there is a harsh truth in her words.
<img src="Images/Hell/2.jpg" style="max-width: 80%;">
<<speech "Lilith" >>Remember what I'm going to say right now, Takeshi. Don't talk to anyone in hell and listen to me! Then you will be completely safe.<</speech>>
<<speech "Takeshi" >>What happens if I don't listen to you?<</speech>>
<<speech "Lilith" >>Demons are a rather nervous race, and they obviously won't like your free behavior. Do you understand, Takeshi?!<</speech>>
<<speech "Takeshi" >>Understood!<</speech>>
<video autoplay loop muted><source @src='"Video/Hell/"+either("1")+".webm"' type="video/webm"></video>
After that, we went into some kind of hall where a demon stood and there were several girls around him.
At that moment, a voice sounded inside your head.
<<speech "Mystery voice" >>This demon is the gatekeeper of hell Barbatos.<</speech>>
This one was clearly not Lilith, but who was it? Okay, I'll try to find out later, right now it's better to do as Lilith said.
<<speech "Barbatos" >>Fucking useless sinful souls! Damn, my queen, why did you leave us!?<</speech>>
<<speech "Lilith" >>Watch out for Barbatos' words!<</speech>>
At that moment, the demon's face seemed to glow with happiness.
<<speech "Barbatos" >>My queen! You're back! Allow me to your faithful servant to welcome you!<</speech>>
<<speech "Lilith" >>Spare me your henpecked Barbatos manners!<</speech>>
<<speech "Barbatos" >>Forgive me queen! Current I have a question that a living person forgot in hell?!<</speech>>
<<speech "Lilith" >>This is my personal hand toy from the human world, do you have something against Barbatos?<</speech>>
<<speech "Barbatos" >>Forgive my insolence my queen! I beg you not to punish me!<</speech>>
After that, I watched for several more hours as Lilith verbally punished Barbatos. After that we moved on.
<<speech "Lilith" >>Useless trash Barbatos! Nothing can be left!<</speech>>
<<speech "Takeshi" >>Where are we going next?<</speech>>
<<speech "Lilith" >>I think I need to go to one of my favorite places.<</speech>>
After we got into some abandoned buildings reminiscent of our houses from the real world.
<video autoplay loop muted><source @src='"Video/Hell/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Mystery voice" >>Amelia, Mistress of Pain.<</speech>>
That voice again! Can't Lilith not hear him?
<<speech "Lilith" >>Good to see you, Amelia.<</speech>>
<<speech "Amelia" >>My queen?! You're back!<</speech>>
<<speech "Lilith" >>Yes, I'm back, let's do without tenderness, okay?!<</speech>>
<<speech "Amelia" >>I apologize my queen! Well, if you knew what we experienced here while this stupid Barbatos was instead of you!<</speech>>
<<speech "Lilith" >>Don't remind me of him!<</speech>>
<<speech "Amelia" >>I see you have found yourself a new toy in the human world.<</speech>>
<<speech "Lilith" >>Yes, a good toy, the current still teach him obedience.<</speech>>
Bitch!
<<speech "Amelia" >>Well then let me help you my queen. I will gladly teach obedience to this lower life form.<</speech>>
I am a corpse!
<<speech "Lilith" >>It’s not worth it, I think I myself can teach obedience.<</speech>>
Am I saved?! Thanks God!
<<speech "Lilith" >>Okay Amelia, I think it's time for us to leave.<</speech>>
<<speech "Amelia" >>Whatever you say my queen. Queen, I think Nega missed you more than anyone, I think you should visit her.<</speech>>
<<speech "Lilith" >>I think I will do that.<</speech>>
After that we left Amelia. Well, I was all worried about the question, is it really Lilith not to hear these voices? Stop ! Maybe I can only hear them? This one reminds me of that moment with the book when Lilith manipulated me through the same technique.
As I continued to try to understand what this was, Lilith interrupted me abruptly.
<<speech "Lilith" >>Takeshi now better be extremely careful! If other demons have at least a drop of sanity, then Nega is a special case.<</speech>>
<<speech "Takeshi" >>Understood! Is she dangerous? or even worse?<</speech>>
<<speech "Lilith" >>Just always be behind me and maybe you will stay alive today.<</speech>>
You entered one of the destroyed houses. The further you went, the more you realized that someone had been following you from the shadows all this time.
The air here was too heavy, it was even hard for you to breathe.
<<speech "Mystery voice" >>I will help you!<</speech>>
After these words, you felt that it really became easier for you to breathe. Well, who was this? My little experience with such garbage showed that you should not expect good from them.
<video autoplay loop muted><source @src='"Video/Hell/"+either("4")+".webm"' type="video/webm"></video>
You noticed that everything around was shrouded in cobwebs, and the air stank with the smell of death and rot. At one point, you saw a shadow near the cobweb, is it really this Nega?
<<speech "Lilith" >>Quit hiding Nega!<</speech>>
At that moment, you heard what an incomprehensible sound and voice from the web.
<<speech "Nega" >>*Clicks her mandibles* Queen *Clicks her mandibles* Queen, you're back, you haven't left us! *Clicks her mandibles*<</speech>>
<<speech "Lilith" >>Yes, I'm here, Nega. Enough hiding.<</speech>>
At that moment, you saw part of her face. My God! Is she a spider?
<<speech "Mystery voice" >>Calm down Takeshi! Nega is a very dangerous demon, she can feel the fears of people and for her this one is like an aphroadisiac!<</speech>>
Gotta calm down! I don't want to become this spider's dinner!
<video autoplay loop muted><source @src='"Video/Hell/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Nega" >>*Clicks mandibles* Queen *Clicks mandibles* Queen, did you bring this sweet person to me as a gift? *Clicks mandibles* What a delicious and appetizing person *Clicks mandibles*<</speech>>
<<speech "Lilith" >>Don't you dare touch him! He is my toy and current I can decide his fate, you understand Nega?<</speech>>
I seem to be saved!
<<speech "Nega" >>*Clicks her mandibles* Queen *Clicks her mandibles* Queen, please don't offend Nega! *Clicks her mandibles*<</speech>>
<<speech "Lilith" >>I have no time for such a useless activity, now get out of my sight!<</speech>>
After these words, the spider demon disappeared into the web and we were left alone with Lilith.
<<speech "Lilith" >>Okay, time to go back to the human world.<</speech>>
After these words, she uttered something in a demonic language and we ended up in my room.
<<button 'Continue' `either('Hell events3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Prologue/"+either("16")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>You know, you surprised me. I thought you'd pee your pants out of fear and I'd have to save your useless ass.<</speech>>
I think you shouldn't tell her about that voice which helped me not to get my pants dirty!
<<speech "Takeshi" >>I think you should reconsider your attitude towards me after such courage.<</speech>>
<<speech "Lilith" >>I think I should upgrade you from -100 on the utility scale to -99.<</speech>>
<<speech "Takeshi" >>This is what it turns out I'm useless anyway 0?<</speech>>
<<speech "Lilith" >>Well, you became 1 point less useless, rejoice.<</speech>>
Damn bitch! By just 1 point did I become useful? Take me to Spider Woman and let her eat me!
<video autoplay loop muted><source @src='"Video/Succubus/Lilith/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Okay, if you're done with self-flagellation, let's get down to business.<</speech>>
<<speech "Takeshi" >>I understand you're talking about starting to seduce people in the city?<</speech>>
<<speech "Lilith" >>Yes, it's time to start my harvest of souls! By the way, if you want to go to hell again, ask me and I will walk you there my dear sand.<</speech>>
How does she piss me off! Well, all the same, one moment haunts, what kind of voice did I hear? I think later I will find out what kind of voice it was.
<<button 'End the conversation' `either('Your Room')`>><<set $HaremStats += 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex/"+either("7","8","9","10","11","12")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('HellSex3')`>><</button>>
<<button 'Cum in her face' `either('HellSex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex/"+either("2","3","4","5","6")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('HellSex2')`>><</button>>
<<button 'Go to sex' `either('HellSex3')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex/"+either("13")+".webm"' type="video/webm"></video>
<<speech "Lilith" >>Open your mouth. Enjoyed your dinner, Nega?<</speech>>
<<speech "Nega" >>*Clicks his mandibles* Yes, my queen *Clicks his mandibles*<</speech>>
<<speech "Lilith" >>Good girl.<</speech>>
<<button 'Finish sex' `either('Hell')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex2/"+either("8","9","10","11","12","13")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('HellSex23')`>><</button>>
<<button 'Cum in her face' `either('HellSex24')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex2/"+either("2","3","4","5","6","7")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('HellSex22')`>><</button>>
<<button 'Go to sex' `either('HellSex23')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex2/"+either("14")+".webm"' type="video/webm"></video>
<<speech "Amelia" >>I can tell your servant has great potential.<</speech>>
<<speech "Lilith" >>If you're referring to his dick, maybe. Well, as a servant, he is completely useless.<</speech>>
How annoying she is!
<<button 'Finish sex' `either('Hell')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex3/"+either("2","3","4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Watching girls service his cock' `either('HellSex32')`>><</button>>
<<button 'Continue' `either('HellSex33')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex3/"+either("6","7","8","9","10","11","12","13","14")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Watch further as he fucks girls' `either('HellSex33')`>><</button>>
<<button 'Continue' `either('HellSex34')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Hell/HellSex3/"+either("15")+".webm"' type="video/webm"></video>
<<speech "Barbatos" >>Here is your reward my sinful bitches!<</speech>>
<<speech "Lilith" >>Okay servant let's get out of here.<</speech>>
<<button 'Leave the hall' `either('Hell')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Yes, master?<</speech>>
<<speech "Mia" >>Don't even think about it, I'll never call you a master!<</speech>>
<<button 'Have some fun in the living room' `either('Mia and MikaKitchenSex2')`>><</button>>
<<button 'Finish talking to them' `either('Kitchen')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and MikaKitchenSex/"+either("1","2")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Yes, let's have fun master.<</speech>>
<<speech "Mia" >>Okay let's do this quickly.<</speech>>
<<button 'Continue' `either('Mia and MikaKitchenSex3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and MikaKitchenSex/"+either("4","5","6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let them serve your dick with their breasts' `either('Mia and MikaKitchenSex3')`>><</button>>
<<button 'Let them continue to suck your cock' `either('Mia and MikaKitchenSex4')`>><</button>>
<<button 'Go to sex' `either('Mia and MikaKitchenSex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and MikaKitchenSex/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let them serve your dick with their breasts' `either('Mia and MikaKitchenSex3')`>><</button>>
<<button 'Let them continue to suck your cock' `either('Mia and MikaKitchenSex4')`>><</button>>
<<button 'Go to sex' `either('Mia and MikaKitchenSex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and MikaKitchenSex/"+either("9","10","11","12","13","14","16","17","18","19","20")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking them up' `either('Mia and MikaKitchenSex5')`>><</button>>
<<button 'Cum in Mika' `either('Mia and MikaKitchenSex6')`>><</button>>
<<button 'Cum in Mia' `either('Mia and MikaKitchenSex7')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and MikaKitchenSex/"+either("22")+".webm"' type="video/webm"></video>
<<speech "Mia" >>No! Don't you dare cum inside me!<</speech>>
Well, it was already late, I began to finish in Mia.
<<speech "Mika" >>You should have cum inside me! Why does this nasty Mia need your sperm!<</speech>>
After that, they began to argue about something there. I decided to rest a bit and ignore their dispute.
<<button 'Finish sex' `either('Kitchen')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Mia and Mika/Mia and MikaKitchenSex/"+either("21")+".webm"' type="video/webm"></video>
<<speech "Mika" >>Come on takeshi release all the lust into me!<</speech>>
<<speech "Mia" >>Why do you need this useless lust, sister?<</speech>>
After that, they began to argue about something there. I decided to rest a bit and ignore their dispute.
<<button 'Finish sex' `either('Kitchen')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl3/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Do you need help?<</speech>>
<<speech "Girl" >>Thanks for the offer, but I'll probably decline.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('Manga store Gril3 sex2')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'End conversation' `either('Manga store')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl3/"+either("3","4")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Manga store Gril3 sex3')`>><</button>>
<<button 'Let her suck your dick' `either('Manga store Gril3 sex4')`>><</button>>
<<button 'Go to sex' `either('Manga store Gril3 sex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl3/"+either("2")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Girl" >>Though I think you can help with something baby.<</speech>>
<<button 'Start sex scene' `either('Manga store Gril3 sex3')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl3/"+either("9","10","11","12","13","14","15")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Manga store Gril3 sex5')`>><</button>>
<<button 'Cum on breasts' `either('Manga store Gril3 sex6')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl3/"+either("5","6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Manga store Gril3 sex3')`>><</button>>
<<button 'Let her suck your dick' `either('Manga store Gril3 sex4')`>><</button>>
<<button 'Go to sex' `either('Manga store Gril3 sex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Manga store/Girl3/"+either("16")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Thank you, handsome. I haven't been fucked like this in a long time.<</speech>>
<<speech "Takeshi" >>Always happy to help.<</speech>>
<<button 'Finish sex' `either('Manga store')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Fumiko/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Fumiko" >>Yes, Takeshi?<</speech>>
<<if $SuccubusEnergy >0>><<button 'Use locket before leaving' `either('Work')`>><<set $SuccubusEnergy -= 1>><<if $SuccubusEnergy lt 0>><<set $SuccubusEnergy to 0>><<elseif $SuccubusEnergy gt 3>><<set $SuccubusEnergy to 3>><</if>><<set $SuccubusPower += 1>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><<addhours 1>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 9 and $gameDate.getUTCHours() lte 9>><<button 'Work all day with Fumiko' `either('Job')`>><<addhours 9>><</button>><</if>>
<<button 'Leave the office' `either('Work')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Mizuki/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Mizuki" >>Yes, Takeshi?<</speech>>
<<if $SuccubusEnergy >0>><<button 'Use locket before leaving' `either('Work')`>><<set $SuccubusEnergy -= 1>><<if $SuccubusEnergy lt 0>><<set $SuccubusEnergy to 0>><<elseif $SuccubusEnergy gt 3>><<set $SuccubusEnergy to 3>><</if>><<set $SuccubusPower += 1>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><<addhours 1>><</button>><</if>>
<<if $gameDate.getUTCHours() gte 9 and $gameDate.getUTCHours() lte 9>><<button 'Work all day with Mizuki' `either('Job2')`>><<addhours 9>><</button>><</if>>
<<button 'Leave the office' `either('Work')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Mizuki/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Ms. Mizuki I finished everything.<</speech>>
<<speech "Mizuki" >>Well done Takeshi did a good job today, you can go home calmly.<</speech>>
<<speech "Takeshi" >>Thank you Ms. Mizuki, have a nice day.<</speech>>
<<if $SuccubusEnergy >0>><<button 'Use locket before leaving' `either('Work')`>><<set $SuccubusEnergy -= 1>><<if $SuccubusEnergy lt 0>><<set $SuccubusEnergy to 0>><<elseif $SuccubusEnergy gt 3>><<set $SuccubusEnergy to 3>><</if>><<set $SuccubusPower += 1>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'Finish your work shift' `either('Work')`>><</button>></h5></center>Succubus Energy <progress @value="$SuccubusEnergy" max="3"></progress>
Succubus Power <progress @value="$SuccubusPower" max="6"></progress>
<h4><table>
<tr>
<th><<button 'Close hint menu' >><<run slideWin("hide")>><</button>></th>
<th><<button 'Go to the site of the game in the theme of development' >><<script>>window.open('https://f95zone.to/threads/forbidden-book-of-pleasures-development-theme.170770/')<</script>><</button>></th>
</tr>
</table></h4>
<center><h4><img src="Images/System/SB.png" style="max-width: 5%;"> Main storyline of the game <img src="Images/System/SB.png" style="max-width: 5%;">
<hr>/*==================================================*/<<nobr>><<if $HaremStats ==0>>Lilith recommends that I find the shrines of the local god and enlist her support. So my path lies on Okutama if you believe the stories of my grandfather in childhood. I think the best time is in the late afternoon so as not to cause unnecessary questions from the locals.<</if>>
<<if $HaremStats ==1>>We coped with the first task, I think it’s worth returning to Lilith and finding out what will happen next. I hope she didn't destroy my house there after talking with Tamamo no Mae.<</if>>
<<if $HaremStats ==2>>After the recent events, Lilith became more joyful than usual, it would be necessary to find out the reason.<</if>>
<<if $HaremStats ==3>>I heard the news at work that we've got a new head of our department. It would be necessary to get to know him.<</if>><</nobr>>
<hr>/*==================================================*/
<img src="Images/System/SB.png" style="max-width: 5%;"> Game mechanics hints game <img src="Images/System/SB.png" style="max-width: 5%;">
<hr>/*==================================================*/Succubus Energy and Succubus Power: Generates in special places in the game. It is required as a resource for special events in the game and for some plot points of the game.
If you run out of succubus energy, visit Lilith and she will gladly replenish your energy.
The game has enough side content, explore all the locations in the game to find it. Well, do not forget that the game has temporary stages, so some content will be available at a certain time.
<hr>/*==================================================*/<center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/"+either("2")+".webm"' type="video/webm"></video>
When you entered the office, you anticipated that the new boss would be a girl. Well the reality of the bitch was too harsh!
<<speech "Takeshi" >>Kira, what are you doing here?!<</speech>>
<<speech "Kira" >>Yes, that's decided to know better the human world.<</speech>>
<<speech "Takeshi" >>Why the fuck did you get a job with me?!<</speech>>
<<speech "Kira" >>Well, it was my queen who advised me. She said if you want to know the world of people, get a job.<</speech>>
Damn Lilith! By any she advised her to get a job with me!
<<speech "Takeshi" >>Just don't have an orgy okay?<</speech>>
<<speech "Kira" >>It's not fair! Why am I not allowed to have sex with guys? You can fuck girls at work and I can't mean to fuck guys?!<</speech>>
<<speech "Takeshi" >>Because after your sex, there will be no guys left here, stupid succubus!<</speech>>
<<speech "Kira" >>Okay, I get you, you nasty Takeshi!<</speech>>
You ended the conversation and left the office. Fuck! I hope the local guys will not often go into her office, otherwise we will have a massive reduction in employees.
<<button 'Leave the office' `either('Work')`>><<set $HaremStats += 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Kira" >>I hope you came to me to fuck, otherwise it's boring here ..<</speech>>
<<button 'Ask her if she likes her job' `either('Kira office talk')`>><</button>>
<<button 'Fuck her' `either('Kira office Sex')`>><</button>>
<<button 'Leave the office' `either('Work')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Well, how's your job? Coping with his job?<</speech>>
<<speech "Kira" >>Boring bullshit! How did you not die of boredom here?<</speech>>
<<speech "Takeshi" >>Well, in order to live, you have to work. Buying food and other things needs money, this is the harsh reality of our lives.<</speech>>
<<speech "Kira" >>Takeshi are you an idiot? You have our queen's medallion! Go find a rich bitch, fuck her and live in joy!<</speech>>
Idea is not bad. Even this cow, as Ruby likes to call her, has sometimes wise thoughts.
<<button 'Finish talking to her' `either('Kira office')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kira office Sex/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Come on Takeshi take off your clothes and fuck me already at last.<</speech>>
<<button 'Start sex scene' `either('Kira office Sex2')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kira office Sex/"+either("2","3","4","5")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kira office Sex2')`>><</button>>
<<button 'Let her suck your dick' `either('Kira office Sex3')`>><</button>>
<<button 'Go to sex' `either('Kira office Sex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kira office Sex/"+either("6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Fuck her boobs' `either('Kira office Sex2')`>><</button>>
<<button 'Let her suck your dick' `either('Kira office Sex3')`>><</button>>
<<button 'Go to sex' `either('Kira office Sex4')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kira office Sex/"+either("9","10","11","12","13","14","15","16")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Kira office Sex4')`>><</button>>
<<button 'Cum in her' `either('Kira office Sex5')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Succubus/Kira/Kira office Sex/"+either("17")+".webm"' type="video/webm"></video>
<<speech "Kira" >>Well, now I have a little motivation to do this boring job.<</speech>>
Damn, if that's how I was motivated at school! I would be the happiest person ever!
<<button 'Finish sex' `either('Work')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1/"+either("1","2")+".webm"' type="video/webm"></video>
While walking around a residential area, you notice a pretty girl on the street. You noticed that she had bags, she obviously goes home after the store.
<<speech "Takeshi" >>Girl don't you need help?<</speech>>
<<speech "Girl" >>I certainly wouldn't mind, well I don't usually like to accept dubious help from a stranger.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>I've played with her brains for a bit now you shouldn't have any problems.<</speech>>
Should I take advantage of Lilith's offer.
<<button 'Help the girl' `either('Event Street 12')`>><<addhours 1>><</button>>
<<button 'I have other things to do' `either('Residential area')`>><<addhours 1>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1/"+either("3")+".webm"' type="video/webm"></video>
<<speech "Takeshi" >>Well, that's all, always happy to help.<</speech>>
<<speech "Girl" >>Thanks a lot young man.<</speech>>
At that moment you heard the voice of Lilith.
<<speech "Lilith" >>If you want, you can have fun with this girl. Assuming my medallion is fully charged, of course.<</speech>>
<<if $SuccubusPower ==6>><<button 'Use medallion' `either('Event Street 13')`>><<set $SuccubusPower -= 6>><<if $SuccubusPower lt 0>><<set $SuccubusPower to 0>><<elseif $SuccubusPower gt 6>><<set $SuccubusPower to 6>><</if>><</button>><</if>>
<<button 'Next time' `either('Residential area')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Home/"+either("1")+".webm"' type="video/webm"></video>
You decide to use the medallion.
<<speech "Girl" >>Let me thank you properly young man.<</speech>>
<<button 'Start sex scene' `either('Event Street Sex1')`>><</button>></h5></center><div class="content">\
<h4><center><img src="Images/System/SB.png" style="max-width: 5%;"> Main storyline of the game <img src="Images/System/SB.png" style="max-width: 5%;">
<hr>/*==================================================*/<<nobr>><<if $HaremStats ==0>>Lilith recommends that I find the shrines of the local god and enlist her support. So my path lies on Okutama if you believe the stories of my grandfather in childhood. I think the best time is in the late afternoon so as not to cause unnecessary questions from the locals.<</if>>
<<if $HaremStats ==1>>We coped with the first task, I think it’s worth returning to Lilith and finding out what will happen next. I hope she didn't destroy my house there after talking with Tamamo no Mae.<</if>>
<<if $HaremStats ==2>>After the recent events, Lilith became more joyful than usual, it would be necessary to find out the reason.<</if>>
<<if $HaremStats ==3>>I heard the news at work that we've got a new head of our department. It would be necessary to get to know him.<</if>>
<<if $HaremStats ==4>>This is the end of story lines in this update.<</if>><</nobr>></center></h4>
</div>
<div class="content">\
<h4><center><img src="Images/System/SB.png" style="max-width: 5%;"> Game mechanics hints game <img src="Images/System/SB.png" style="max-width: 5%;">
<hr>/*==================================================*/Succubus Energy and Succubus Power: Generates in special places in the game. It is required as a resource for special events in the game and for some plot points of the game.
If you run out of succubus energy, visit Lilith and she will gladly replenish your energy.
The game has enough side content, explore all the locations in the game to find it. Well, do not forget that the game has temporary stages, so some content will be available at a certain time.</center></h4>
</div>
<center><h4><table>
<tr>
<th><<button 'Close hint menu' >><<run slideWin("hide")>><</button>></th>
<th><<button 'Go to the site of the game in the theme of development' >><<script>>window.open('https://f95zone.to/threads/forbidden-book-of-pleasures-development-theme.170770/')<</script>><</button>></th>
</tr>
</table></h4></center><center><video autoplay loop muted><source @src='"Video/Train/"+either("1")+".webm"' type="video/webm"></video></center>
@@.delayed;<div class="content">\
<h4><center>You have arrived at Okutama.
<<button 'Get out of the train' `either('Subway Station2')`>><</button>></center></h4>
</div>@@<center><video autoplay loop muted><source @src='"Video/Train/"+either("2")+".webm"' type="video/webm"></video></center>
@@.delayed;<div class="content">\
<h4><center>You have arrived at Tokyo.
<<button 'Get out of the train' `either('Subway Station')`>><</button>></center></h4>
</div>@@<center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Home/"+either("2","3")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('Event Street Sex1')`>><</button>>
<<button 'Go to sex' `either('Event Street Sex12')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Home/"+either("4","5","6","7","8","9","10")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Event Street Sex12')`>><</button>>
<<button 'Cum in her mouth' `either('Event Street Sex13')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Home/"+either("11")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Look, it's kind of late, do you want to stay at my place for the night?<</speech>>
<<button 'Accept her offer' `either('Event Street Sex14')`>><<addhours 12>><</button>>
<<button 'Maybe some other time' `either('Residential area')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Sleep/"+either("1")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Good morning. I liked last night so much, do you want to repeat it before leaving?<</speech>>
<<button 'Spend some more time with her' `either('Event Street Sex15')`>><</button>>
<<button 'Maybe next time' `either('Residential area')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Sleep/"+either("2")+".webm"' type="video/webm"></video>
<<speech "Girl" >>Then let's get rid of everything superfluous.<</speech>>
<<button 'Start sex scene' `either('Event Street Sex16')`>><</button>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Sleep/"+either("5","6","7","8")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Event Street Sex17')`>><</button>>
<<button 'Continue' `either('Event Street Sex18')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Sleep/"+either("3","4")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Let her keep sucking your dick' `either('Event Street Sex16')`>><</button>>
<<button 'Go to sex' `either('Event Street Sex17')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Sleep/"+either("9","10","12","11","13")+".webm"' type="video/webm"></video>
<<speech "Actions" >><<button 'Keep fucking her' `either('Event Street Sex18')`>><</button>>
<<button 'Cum in her mouth' `either('Event Street Sex19')`>><</button>><</speech>></h5></center><center><h5><video autoplay loop muted><source @src='"Video/Street events/Girl1Sleep/"+either("14")+".webm"' type="video/webm"></video>
<<speech "Girl" >>It was a great morning sex!<</speech>>
After that, she passed out, I think it's time to dump before she woke up.
<<button 'Pack up and leave' `either('Residential area')`>><</button>></h5></center>@@.delayed;<div class="content">\
<h2><center><img src="Images/System/SB.png" style="max-width: 10%;"> <span class="redtext">License Agreement and Player Warning</span> <img src="Images/System/SB.png" style="max-width: 10%;"></center></h2><h4><center>The game is created using illegal content that was received from third-party resources. This means that all content in the game is pirated and cannot be used to sell and make money to the author of the game.
So if you see all this content in another game and where the authors of the game will demand money from you in any form! Immediately report violations to the platform on which the process of collecting illegal money takes place!
Do not be fooled and do not try to justify the illegal way the author makes money on your stupidity and ignorance! Any game created on real porn rollers is not legal and has no right to take money from you in any form! Even earlier access to the game, which the authors of the game are trying to inflict on you, is also an illegal way to earn money on you!
Think with your head, not with your dick!
<<speech "<h3>Did I read the agreements?</h3>" >>
<<button 'Yes' `either('Game start screen')`>><</button>>
<<button 'No' >><<script>>window.close()<</script>><</button>><</speech>></center></h4>
</div>@@
<h2><center><img src="Images/System/SB.png" style="max-width: 10%;"> <span class="redtext">License Agreement and Player Warning</span> <img src="Images/System/SB.png" style="max-width: 10%;"></center></h2><h4><center>The game is created using illegal content that was received from third-party resources. This means that all content in the game is pirated and cannot be used to sell and make money to the author of the game.
So if you see all this content in another game and where the authors of the game will demand money from you in any form! Immediately report violations to the platform on which the process of collecting illegal money takes place!
Do not be fooled and do not try to justify the illegal way the author makes money on your stupidity and ignorance! Any game created on real porn rollers is not legal and has no right to take money from you in any form! Even earlier access to the game, which the authors of the game are trying to inflict on you, is also an illegal way to earn money on you!
Think with your head, not with your dick!
<<speech "<h3>Did I read the agreements?</h3>" >>
<<button 'Yes' `either('Game start screen')`>><</button>>
<<button 'No' >><<script>>window.close()<</script>><</button>><</speech>></center></h4>