Description: :This is a completely rewritten version of Ashford Academy. Ashford Academy is a game where you take the role of the newly appointed principal (male). From this point it's up to you to decide what happens next.Last update: : 2020-01-11Released: : 2020-01-11Creator (developer): : Dream ChaserCensored: YesVersion: 0.3.2OS: Windows, Linux, MacLanguage: EnglishGenre:2DCG, Female protagonist, Male protagonist, School setting, Management, Corruption, Ahegao, Anal sex, Bdsm, Bukkake, Group sex, Lesbian, Masturbation, Multiple protagonist, Oral sex, Sexual harassment, Vaginal sex, VirginHow to install: :1. Extract and run.Changelog:v0.3.2- 2 new images added to existing events- 2 new events added- improved the text of some sensuality events- since reputation consists of a calculated and a static part, its description now discloses the static reputation value.- centralised code to show period splash screens. Text (Morning/Afternoon/Evening) now shown in bigger font and cursive- added option for different choice pools in random_select (backwards compatible)- overhauled and simplified Susans and Marinas dresscode logic:while Marina continues to dress as she pleases, Susan will more strongly follow what she thinks you want (with same school policies and stats will wear the same clothing)Balancing:- effects of nude school uniform made more positive: now increases behavior- capped lust at 100 for purposes the negative behavior effect if pdas are allowed- set the stress influence of security 1 (which you start with) to 0, reduced the stress increase per level- halved the stress increase per level of surveillance- lowered bdsm upkeep cost (money) to 60% of the old value- doubled permanent weekly reputation gain/loss due to student stats. Still not much though, with all maxed stats you'll now gain 0.25 reputation per week from it- added an end of school year reputation boost (at max stats: 5 points), enough to overcome the stat drain from the worsening student stats. Thanks for the suggestion!Bugfixes:- apply_entrance_dilution got applied twice for students getting added midterm, which means they pulled down stats too much- keep effects of entrance_req_focus from applying weekly, since they apply each day- improved logic of how an event is picked when dresscode is none - no more nude students other than at dormitory/pool/bath ;-)- tuition income now bottoms out at 0, instead of turning negate when reputation is below 0v0.3.1- added 2 new events to location sensuality- pair dance event in location sensuality expanded- adjusted event conditions of sensuality events- reduced frequency of event office26 once it has reached its end state- bugfix: fixed crash on weekly effects if bdsm punishments are activev0.3.0 - SensualityBig Picture:- updated from renpy 7.1.0 to 7.3.5- new pictures added to existing events- new events added in existing locations- a lot of the simply events have been merged, pictures and texts now combining in more variations than the old standalone events- new location "Sensuality" - unlocks once lust_enhancement isn't "none" anymore- value dependent tooltips for all student stats - helps players (and mod writers) to know what a stat value actually means- rollback enabled during the day (but you can't go back to the planning phase, or from the planning phase)- folded derived stats class into stats: every stat can now have a static and a temporary, and a function and be influenced by game objects- new event variables (set with arg var=... in the event definition) do not break old saves anymore (they get initialized on load)- new game objects do not break old saves anymore, which allows mods defining game objects (e.g. clubs) to be added into an ongoing save game- improved documentation (including the example mod)Balancing:- added major new income source in form of the building "Surveillance"- players starting with outlook "careful" will still get the Susan and Marina blowjob scene later on, so no path will permanently miss it anymore- reputation overhauled: weekly changes reduced to 1/4, but gets immediate benefits from raising student stats (up to 45 if deviance is 0) and upgrading buildings (up to 40),starts at 12 instead of 10, max raised from 100 to 150. With this, getting your reputation up should be quicker, but it should slow down instead of speeding up later on.- added option to raise staff_support to weekly planning- set image distance from conservative image to normal dresscode to 0.5, and changed default max_img_dist from 0 to 0.5That means that when the current dresscode is normal, events with only conservative images may still be chosen, widening the event pool- max_img_dist for all canon dormitory events set to 1 (thanks to img_prefix), meaning the dresscode is less strict in the dormitory, widening the event pool- for dresscode none, at inhibition<15, students will now often choose to go nude at the bath, the pool, and in the dormitory- can_be_evil becomes False if your outlook becomes saint/good/nice/charming- inhibition lowering unlocks are now recognized by the game as a sexual policy (values 0.3, 0.4 and 0.5 for the 3 levels)- halved positive influence of teaching materials on athletics. It was rising a bit too quickly.- slightly rebalanced bdsm (tilted more towards improving behavior)API Additions:- new tag "flavor" for images, letting you easily change small details of an event depending on the image chosen (for events with randomized images)- new class Person, which allows writing text for both genders at once easily, or for one or multiple persons- new class base in mod base, to provide function results as properties for renpy text interpolation- img_e event definitions can now take tags "c:","ch:","e:" and "u:" tags, which work exactly like in the image definitions. Documentation updated for it.- You can now specify tags or keyword arguments in the img_prefix function, and they will be picked up by image definitions and img_e event definitions- all game objects now have 'age' and 'days_since_change' properties, so events can check for older buildings, established policies, ...- added variable 'initializing' which code can use to check whether we are loading up the game (when data structures might still be missing)- new method img_copy, which allows using one image in multiple image groups- new stat "staff" (was just a function before), making it visible in the gui, and allowing it to be influenced by game objects (policy "lust_enhancement" raises it by one if not "None")- tag alias "u:dressed" added as short hand for all dresscode neither "nude" nor "none" (i.e. "u:sexy","u:normal" and "u:cons")- event variables added: current_img_o, current_img_sweep, main_img_o, main_img_sweep- set_img(): new parameter tf (replaces tf tags of image instead of adding to them like at_list does)- added convenience function event_happened()- random_say: <say> argument can now alternatively be given an array of strings instead of a string. Will be said one after another.<speaker> may be an array in that case as well (at least as long). "if" and "else" may now be combined- new function image_for("class") - may be expanded for more situations later- new function set_img_letter, to make working with images named like bath2-1a.jpg,bath2-1b.jpg,... easier- new convenience function img_lettered, returns whether set_img_letter would change the imageAPI Changes:- logic change: the current event is only marked as executed once it has concluded, instead of before- current_event is now set during evaluation of which event to execute. That means that you can use it in any functions called in the condition string- sexy_slaves is now a variable instead of a function, toggled on by the Susan/Marina blowjob scene (contains day when it got toggled)- event variables renamed: current_scene_img -> current_img; main_scene_img -> main_img- set_img(): now defaults to transition None if the name of the displayed image does not change- set_img(): trans_scene_continues now defaults to fade instead of None- Unlock class changes:--def_active=True instead of False (now equals the default of GameObjects, so more consistent)--now uses "unlock_effect" for things to happen on unlock, instead of "effect" (so effect is for weekly effects for all GameObjects, so more consistent)--unlock objects are now enabled once they are unlocked, allowing for weekly effects and stat influences--removed property "unlocked", since it can now be more generally be provided by "enabled"- Rule class: upchange_stress=0 instead of 1 (now equals the default of GameObjects, so more consistent)- GameObject class: does not have a keyword argument def_unlockable anymore, instead unlockable says whether the unlock object will be generated active. Stored variable for it eliminated.- functions support_difficulty and support_difficulty_inv removed, replaced with max(...,0) calls- redefined 'force_prio', it is now a shortcut for executing an event once onlySmall Changes:- display year in main menu- location tooltips in main menu- game object age is displayed in menus (above return button) if "More Numbers" Option is enabled- event_happened() and event.happened().eval() now return the day the given event last happened instead of True (fully backwards compatible).- unlocks of hidden policies are now hidden, and unhide once the policy becomes visible- made stat recalculations more efficient (game object influence, temp stress)- tag strings "<key>:<value>" as used in the image definitions, are now checked for valid keys, and in the case of "c:<content>" for valid content types- the tag parser now checks dresscode tags against the registered dresscodes- added a (commented out) example_fightclub to the example mod (with one event with one picture, with placeholder text). Just as a starting point...- wished_dress is now only set once per events selection instead of once per picture choice- simplified code to remove population_new - it was left over from before population became a stat- increased text size of date displayed before main screen. Makes it readable in autosave screenshots.Debugging:- the debug screen now tries to guess the act and period from the label name when you call an event- the debug screen will allow rollback, until you hit the return button (to the main screen), at which point the events are committed- the debug screen now shows a list of banned characters,images and events (not modifyable)- the debug screen now displays the state of the event variable of the event last run from the debug screen, if it has any- the debug screen now displays the total game days and allows setting it. This makes time jumps possible when debugging events- switched event evaluation of strings from eval to myeval. This gives error messages containing the string which was evaluated, making for easier debugging.- now running the evalutation of all events on game load - allows early catching of syntax errors in event conditionsBugfixes:- added missing return in event gym14- debug screen now allows setting lower inhibition after the unlock (min_hint and max_hint now update dynamically)- the game now remembers changes you made in the current planning phase if you save and reload (might have worked in some older version?)- keep game from crashing when trying to unban an event/image/character which is not banned (simply don't do anything)- trying to ban an event during event setup just crashed the game. Dead code which never worked. Now it does, and is used.- the first transition of the day also counts as first transition of the event- being charming had goodness 0 instead of 1- there where some stat changes of pattern stat+=<n> instead of stat_o.value+=<n> This led both to misattributions in the "Stat changes" screen, and in plain wrong stat changesDeveloper Notes:This is a completely rewritten version of Ashford Academy!The canon events of Ashford Academy work as is (and so should events from mods), but I am only including the events I have converted in this upload.Conversion means that the events use the new systems I have build, and the stat values are adjusted to better fit this version.I want to give a huge huge thank you to Ashford at this point! If he had not put his project under the GPL, I never would have even considered modifying the code base. :-DMy initial itch was having the pictures match the currently active dresscode (school uniform), but it just grew and grew from there.During the coming weeks I intend to port over all of the (non-story) events from canon. I have done enough of them by now to know this is just a matter of steady work.After that is done, I intend to add more rules, policies, clubs, ...And I would very much enjoy help of any kind. I have kept the spirit of the original game and made this extremely mod friendly. So if somebody wants to e.g. port over the story events and expand on them, please go ahead!If anybody wants to help, then the first thing that would really help would be to fill in the picture placeholders ("800x600"). Or just try to make a mod with events as explained in the readme. ;-)Otherwise, just try it out, tell me what is broken, and give me constructive feedback.I'll reserve the following posts for a changelog of future versions and the readme describing the project - both on its own, and in terms of changes in comparison to vanilla Ashford Academy.Please let me know if there is a problem with the mediafire links or if the game does not start. I have unpacked and started the distributed game version under Linux and Windows, I don't have a Mac to test.
An extremely salacious Elven girl "Clair-chan" serves as a cumdump in a dwarves' village! Let's make the villagers' balls completely empty!Last update: : 2020-01-06Released: : Japanese 2018-04-17, English 2020-01-06Creator (developer): : uotsukiTranslation: IsabelleCensored: NoVersion: 1.00OS: WindowsLanguage: EnglishGenre:2DCG, 2D game, Japanese game, Animated, Female protagonist, Side-scroller, Bukkake, Ahegao, Creampie, Vaginal sex, Prostitution, Masturbation, Sex toys, Drugs, CosplayHow to install: :1. You need to change system locale to Japanese or use Locale Emulator.2. Download and apply uncensor patch.3. Extract and run.Developer Notes:When she satisfies a villager, he may give her a swimwear or a cosplay costume...!To change swimwear, do cosplay, be bukkaked......Enjoy various ecchi in various states!Positions you have seen can be replayed in her room!~ Can be played with a single hand ~This game can be played in:WASD control, if your right hand is busyArrow keys control, if your left hand is busy~ Functions in H mode ~When Ecstasy Gauge reaches MAX, she gets an orgasm.Control the Ecstasy freely to 'finish' whenever you want!For details, please refer to in-game explanation or help!Translator Notes:Looks like the developer has only tested the game in low resolution, so I recommend to play in 800x600 the first time to avoid the text covering in the menu.

A masculine hero has sex with lots of girls on the way to defeating the demon lord in this RPG!Enjoy having sex with village girls, prostitutes, high born maidens, wolf girls, magic girls, exhibitionists, dancers, succubus, and more!Approx. 2~3 hour playtime26 H scenes26 base CG, 200 incl. variationsSystem:An orthodox RPG; unlock all H scenes after completion.Fast-forward battle, message skip, message log, close window, scene reminisce,CG reminisce, and other useful functions included.* Includes ahegao and cross-section view themes* Please confirm system compatibility via the trial version before purchasing.* Recommend purchase with DLsite account for updates.* Requires RPG TKool VX Ace RTP: Sextastic Tales of the Sacred Sword Hero is available here as a part of our best adult games list. Free access to this sex game is available with just a few clicks. All new games are delivered to you on daily basis by xGames.
Moral swordfighter Asagi is a vanquisher of rascals!How does she and her team fare against sexual harassment?Ravished! Violated! Imprisoned and sex trained!Lots of erotic scenes flesh out this indie RPG.Battle badly and get screwed! Same goes for party members!Can Asagi and friends defeat the rascals?Last update: : 2020-01-05Released: : Japanese 2015-08-27, English 2020-01-03Creator (developer): : ahrimanTranslation: TNT90 (85%) & Supreme Squidward (14%)Censored: Yes (Mosaics)Version: FinalOS: WindowsLanguage: English (MTL)Voices: JapaneseGenre:2DCG, 2D game, Japanese game, Censored, Voiced, Female protagonist, Turn based combat, Rape, Group sex, Vaginal sex, Creampie, Oral sex, Bdsm, Ahegao, Tentacles, Slave, Sex toys, Anal sex, Multiple penetration, Big tits, Big ass, Teasing, Groping, Pregnancy, FootjobHow to install: :1. You need to change system locale to Japanese or use Locale Emulator.2. You need to download and install .3. Extract and run.
Reawakened is a pixelated 2d, side scroller, Metroidvania. You play as Eris who was captured and transformed into a succubus. To make it worse there's a Sentient Relic known as Shaldourin is bound to your neck. Together you fight through monsters gaining new abilities on the way to find the culprit behind your sudden transformation.Last update: : 2020-01-05Released: : 2019-12-20Creator (developer): : HestricCensored: NoVersion: 0.1.2.2OS: WindowsLanguage: EnglishGenre:2DCG, 2D game, Animated, Female Protagonist, Ahegao, Creampie, Vaginal sex, Fantasy, Mind control, Monster girl, Platformer, Side-scrollerHow to install: :1. Extract all files and runChangelog:v0.1.2.3Bugfix-Dying in the game would cause the warden to despawned-Added extra objects and instructions in the Warden's roomv0.1.2.1- Added smoke animation after destroying a boulder.- Succubus portrait added for the chat function.-Fixed some tile placements of the map-bug fixesv0.1.1.0Game releasedDeveloper Notes/Controls:- WASD to operate the menu- Make sure you are standing still when initiating sex or it might stop the interaction- Pressing other keys during sex will stop the animation.Reawakened is available here as a part of our best adult games list. Direct download of this game is available with just a few clicks. All new games are delivered to you is always here.
La PerugiaA beautiful island where humans and demons coexist and rich nature remains.An unexpected incident suddenly came to La Perugia.Some monsters have become violent and have begun to destroy nature.A number of adventurers have risen to save La Perzia.The main character, Enosera, is one of those courageous adventurers.Can Enosera and her group save the island ...?!?Last update: : 2020-01-05Released: : Japanese 2017-06-27, English 2020-01-03Creator (developer): : Clear Mana PlumTranslation: Supreme Squidward (99%)Censored: Yes (Mosaics)Version: FinalOS: WindowsLanguage: English (MTL)Genre:2DCG, 2D game, Censored, Japanese game, Female protagonist, Rape, Turn based combat, Ahegao, Oral sex, Vaginal sex, Big ass, Big tits, Vore, PetrificationHow to install: :1. You need to change system locale to Japanese or use Locale Emulator.2. Extract and run.Developer Notes:[Game content]This work is an adventure RPG with a conversation part as the main.There are battle and growth factors, but it is a simple system.The message high-speed skip function and the simple auto mode are carried.[H scene]The H scene of this work has petrified & ahegao face in all scenes.Petrification play in various situations is waiting for the heroine.* Almost all scenes will eventually be petrified.* The H scene has a dark taste, but the main game is a bright story.[Specification]HCG number: 7 basic CG + differenceH scenes: 7 scenesEstimated play time: 1 hour to 1 hour 30 minutes
The earth is sucked into a war between alien species, and the heroine has to venture to worlds never before seen by mankind to find a way to stop it. The game is a sci-fi ero RPG with a focus on variety in combat mechanics. The character’s abilities will be determined by a wide variety of equipable weapons, psi amps, and support gear, and each combat area will have its own unique spin on battles.Last update: : 2020/01/09Released: : 2020/01/09Creator (developer): : Cursed-AtelierCensored: NoVersion: Alpha Release 0.22OS: WindowsLanguage: EnglishGenre:2DCG, Animated, Female Protagonist, Adventure, Combat, Puzzle, RPG, Sci-Fi, Strategy, Turn Based Combat, Anal Sex, Ahegao, BDSM, Creampie, Groping, Multiple Penetration, Oral Sex, Rape, Sex Toys, Spanking, Tentacles, Vaginal SexHow to install: :1. Extract and run.Changelog:Developer Log:- v0.1"Remember" command in menu options is non-functional."Mods" on weapons are currently disabled. You can still install them but they will provide no stat benefits.Dialogue log system is still in the works. Same for temporarily hiding the dialogue box.Some sections of walls and roof appear warped.Lava bot sprite goes missing. The issue is being investigated but isn't game breaking.Random crashes might happen now and then. They are rare and we're investigating these instances.Developer Log:- v0.2FIXED Caly climbing up/walking through walls and over some roofs. FIXED the wooden door near light puzzle entrance that allowed players to jump around different maps.FIXED msgimg_2 file missing error when multiple orgasms are reached during combat.FIXED lightning flicker when Caly enters or exits maps.FIXED some overflowing dialogues.Altar room was revamped and new game-play additions were made to make the goal clearer.Reduced the amount of enemies in certain sections of the dungeon to mitigate repetition fatigue.Buffed Caly slightly so she can finish combat faster.ADDED "Combat Tutorial Book" under Key Items that will allow player to trigger Combat or Sexual Tutorials at will.Caly's sprite does not update after she exits the server farm. Issue has been fixed but since it isn't game breaking and resolves automatically, no fix has been floated yet.Developer Log:- v0.22FIXED some grammatical errors.FIXED Caly unable to orgasm during combat.FIXED Caly's sprite update issue when she exits the server farm.Slightly nerfed enemies.Developer Notes:This is an early WIP[Work In Progress] release. The combat, UI, story, game-play mechanics and many other facets of the game will see drastic changes overtime. Additionally, we also plan to add in more content over the course of the game's development cycle which will instill it with more variety. To stay up to date with the game, make sure to check our Twitter feed regularly. Alternatively, Discord is also a good place to get in touch with us directly. Finally, do drop by our Patreon if you are interested in getting access to exclusive goodies!VoidBound is brought to you by xGames as a part of our best adult games list. Direct download of this adult game is served with just a few clicks. All new games are delivered to you on daily basis by xGames.
undefinedThe beautiful busty girl you defended becomes your slave?She lives with you and has all the sex you could desire!You saved a girl classmate and she devoted herself to you.Not just at school but at home too, she's always there. A life of two.Master and servant. Your wish is her command.Enjoy the lewd life with a girlfriend who makes you her only priority.
Description: :Finding yourself on involuntary paid leave from work, you visit an arcade for a change of pace and discover there an erotic game quite unlike any you've experienced before.* An exciting adventure crossing a fantasy world and reality.* Meet many, many girls, and have sex with (almost) all of them!(100+ base HCGs)* No combat grinding, grow stronger through exploration.Last update: : 2019-12-31Released: : 2019-12-27Original Title: あたらしいゲーム(New Game)/ New ProjectCreator (developer): : たかまくらん (Takamakuran)Censored: YesVersion: 2.8OS: WindowsLanguage: EnglishStore: /Genre:2DCG, Male protagonist, Adventure, Fantasy, Anal sex, Cheating, Creampie, Groping, Oral sex, Combat, Monster, Monster girl, Turn based combat, Censored, Japanese game, Ahegao, Vaginal sex, Big titsHow to install: :1. Extract and run.This game is made with RPG Maker VX Ace.To play it you will need to install RTP (run time package) for RPG Maker VX Ace, which you can get for free from the following links:orChangelog:v2.8English release, includes 2 extra endings compared to initial JP release, and a few more h-scenes.New Project is brought to you by xGames in our large porn games collection. Free access to this sex game is available with just a few clicks. All new games and different updates are are always available for you on daily basis by xGames.
Due to the curse of the Extinction Shrine Maiden, no new children were born in the Auria continent.The hero of Auria is initiated by the Ancient Magna Matel to the mysteries of the "Ovulation Fist" and of the "Ritual of Prosperity", which are bound to break the curse of extinction.The hero challenges the Extinction Shrine Maiden to a battle in order to save the world.Last update: : 2020-01-01Released: : 2019-12-20Creator (developer): : EIROS HENTAI GAMESCensored: Yes (Mosaics)Version: 1.5OS: WindowsLanguage: English, Chinese, Korean, JapaneseGenre:2DCG, 2D game, Animated, Censored, Male protagonist, Pregnancy, Rape, Creampie, Vaginal sex, Oral sex, Ahegao, Side-scroller, Teasing, Big tits, Big ass, Japanese game, Fantasy, Anal sex, GropingHow to install: :1. Extract and run.Developer Notes:Easy Operation Battle Fuck Action!While defending against the attacks of the Extinction Shrine Maiden using the shield activated by the S button, approach and restrain the enemy by pressing the Y key. Mash the Y key quickly to raise the Libido gauge.Fill 6 gauges to clear the stage.After clearing the stage, you will witness an event such as "The Ritual of Birth".Some event scenes can be advanced by pressing the Y key.Following the regular ending, you may select the "TRUE BATTLE" button on the Title screen to proceed to the True route.
A masculine hero has sex with lots of girls on the way to defeating the demon lord in this RPG!Enjoy having sex with village girls, prostitutes, high born maidens, wolf girls, magic girls, exhibitionists, dancers, succubus, and more!Last update: : 2019-12-31Released: : Japanese 2019-08-06, English 2019-12-30Creator (developer): : kaguradoTranslation: IsabelleCensored: Yes (Mosaics)Version: 1.10OS: WindowsLanguage: EnglishGenre:2DCG, 2D game, Japanese game, Censored, Male protagonist, Harem, Big tits, Big ass, Vaginal sex, Creampie, Monster girl, Oral sex, Rpg, Ahegao, Internal view, Titfuck, Fantasy, Turn based combat, Anal sex, Exhibitionism, Group sex, HandjobHow to install: :1. You need to change system locale to Japanese or use Locale Emulator.2. You need to download and install .3. Extract and run.Developer Notes:Approx. 2~3 hour playtime26 H scenes26 base CG, 200 incl. variationsSystem:An orthodox RPG; unlock all H scenes after completion.Fast-forward battle, message skip, message log, close window, scene reminisce, CG reminisce, and other useful functions included.Translator Notes:The translation is completed.Also, I've fixed the game crash that happened when you tried to go back to one of the locations before the Elven Village.
“Hey, Kou-chin. Sorry to bug you but, will you help me study?”It was a Saturday. There was still a month of summer vacation to go. Due to complicated family circumstances, Kouta - “Kou-chin” - who lives alone meet Chieri - “Chi-chan” - a classmate of Kouta’s at the conbini near his house.Chi-chan oozed sex. Her big tits and lazily protruding ass were a distraction from whatever he was supposed to be helping her with. She had the kind of body that, if you sat behind her at school, your grades would plummet. Somehow or another she was renting her own place. Whether she had a sugar daddy or did the whole “paid date” scene, Kouta didn’t know. There were rumors about her, though.This ditzy kurogal was his benefactor for the summer. Kouta helped her study - though he could hardly focus - and as a bonus he was endlessly visually entertained. He knew Chi-chan had a boyfriend so… well, he didn’t torture himself with fantasies, but at the same time Chi-chan had a flirty, cockteasing way.“Help me study, Kou-chiii~n. Take care of me and I’ll take care of your chiiiiiin~”Last update: : 2019-12-28Released: : Japanese 2016-08-12, English 2019-12-24Original Title: バカだけどチンチンしゃぶるのだけはじょうずなちーちゃんAliases: Chieri's Dumb But She's A World Class D*cksucker, Baka Dakedo Chinchin Shaburu no Dake wa Jouzu na Chii-chanCreator (developer): :Publisher:Censored: NoVersion: FinalOS: WindowsLanguage: EnglishVoices: JapaneseLength: Short (2 - 10 hours)VNDB:Genre:2DCG, Japanese game, Voiced, Male protagonist, School setting, Vaginal sex, Oral sex, Handjob, Teasing, Groping, Titfuck, Exhibitionism, Virgin, Ahegao, Big tits, Big ass, MasturbationHow to install: :1. Extract and run.