Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Strive for Power

Fantasy Slave Management/RPG Erotic Game · By Strive4Power

newsexsystem.gd

A topic by irezawa created Jan 25, 2021 Views: 464 Replies: 1
Viewing posts 1 to 2

1.0d
Win10

1.0d Win10

In var analcategories there's 'inerttaila' when it should be 'inserttaila'. 

I don't think someone without testicles should be able to impregnate anyone. It does happen though, because impregnation check only checks if one of the participants is a horse or a dog. There's a quick fix to this, just adjust func impregnationcheck to look something like this:

func impregnationcheck(person1, person2): var valid = true
    if person1.unique in ['dog','horse'] || person2.unique in ['dog','horse']:
        valid = false
    if (person1.balls == 'none') && (person2.balls == 'none'):
        valid = false
    return valid

Indeed 'inserttaila' seems to be the correct spelling, I'll add it to the bugfix patch at some point. Though, it has almost no effect in vanilla as the 'Enjoys Anal' trait is basically favor text.

The ability to impregnate without testicles is considered a matter of preference. Though it may not be biologically accurate, it does not appear to be a deal breaker for most players. Feel free to change your own code or create a mod for it.

impregnationcheck in newsexsystem.gd only filters out dog and horse because those are only found in the sex interaction. People can be impregnated outside of the interaction, so the full check is in globals.gd.