Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Mods generally don't touch the number of beds and the Patreon Supporters code provides an unlock on the number of beds.


The number of Meet and Sex interactions per day is determined by the main character's Endurance. You get +1 interactions for every odd(1,3,5,7) point of Endurance.

The Constants mod can be used to easily and safely increase the base amount of daily interactions.

If you want any other scaling, then you would need to edit the code in ".../files/scripts/Mansion.gd":

    globals.state.sexactions = ceil(globals.player.send/2.0) + variables.basesexactions
    globals.state.nonsexactions = ceil(globals.player.send/2.0) + variables.basenonsexactions
Simply change the text, save the file, and run the game to use your changes. If you mess up and the game crashes, then you can always copy the file in the Backup folder over the file you edited. Note: if you install any mods it will automatically reset all game files to use the Backup folder, which will erase all edits to game files.