Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

dahus

5
Posts
2
Topics
1
Followers
A member registered Nov 28, 2023

Recent community posts

(1 edit)

How to disable game pause after minimizing. I want to make it so that it continues to work in the background.

Thanks for the detailed example, but I was actually asking about the broader effects of sexuality in the game. Aside from influencing prostitution agreements and income, does it have any other impact on gameplay or interactions?

Thanks for the clarification! I’d also like to know what exactly sexuality affects in the game. As far as I understand, it’s related to whether a partner agrees to prostitution and possibly influences the income from it. Is that all, or are there any other effects?

I was actually expecting to get the formulas from you :)

As for your advice, I’m not quite sure what "apm", "the smiths in Killer 7" are, and why you're recommending this option. Could you clarify?

(17 edits)

Hello!

I would like to learn the formula for calculating the damage dealt during a sex attack, as well as the formula for determining the reward for prostitution in the game. Can anyone help with this?

Additionally, I'm trying to create a build that minimizes the energy cost of sex attacks.

UPD: I decided to dig into the game code and found the answer. The damage formula looks like this: 

Vagina and Anus:
Damage
=NPC Arousal+(
Sex Stat+45+Random(0,79))*2
Mouth:
Damage=NPC Arousal+(Sex Stat+30+Random(0,49))*2
Hands:
Damage=NPC Arousal+(Sex Stat+20+Random(0,39))*2

NPC Arousal — usually "arousal" is equal 0 and is found in the NPCdata .json files. 
Sex Stat — is the damage value related to your sexual body part (e.g., vagina, hands, etc.)
File name: 28_Functions_Chcg_Events, for example, the line: damage = ($game_player.actor.sex_vag_atk+45+rand(80))