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))