Atribator

Newbie
Dec 23, 2017
65
49
49
I was looking through the perk types, and I have the impression one perk is doing the opposite of what it should.

Enduring body is a power perk which reduces crit chance against yourself in 10%, and the perk definition has CritChanceBoostSelf = 10.

At the same time, Sofia's Touch of Ecstasy perk has a description saying "Increases your crit chance by 5% and crit damage boost by 50% but also for all attacks on you", and the perk definition has:
CritChanceBoost = 5
CritDamageBoost = 50
CritChanceBoostSelf = 5
CritDamageBoostSelf = 50

So one of them is backwards, and I suppose it's enduring body (should be -10). Am I wrong?
 

Quintilus

Engaged Member
Aug 8, 2020
2,738
8,099
688
I was looking through the perk types, and I have the impression one perk is doing the opposite of what it should.

Enduring body is a power perk which reduces crit chance against yourself in 10%, and the perk definition has CritChanceBoostSelf = 10.

At the same time, Sofia's Touch of Ecstasy perk has a description saying "Increases your crit chance by 5% and crit damage boost by 50% but also for all attacks on you", and the perk definition has:
CritChanceBoost = 5
CritDamageBoost = 50
CritChanceBoostSelf = 5
CritDamageBoostSelf = 50

So one of them is backwards, and I suppose it's enduring body (should be -10). Am I wrong?
Crit chance boost (target) self.
Enemies using this as addition to own critical chance, i.e. enemie.crit chance + player.crit chance vulnerability, which returns positive number.
 

Atribator

Newbie
Dec 23, 2017
65
49
49
Crit chance boost (target) self.
Enemies using this as addition to own critical chance, i.e. enemie.crit chance + player.crit chance vulnerability, which returns positive number.
When I say "sofia's perk" actually I mean this is a perk given to player after beating sofia; it's one of the perks you can choose, not one she has for herself.

So, in both cases, the stat in on player, but they have opposite descriptions, but both have positive values. One of them should be negative. So, as you said, if an enemy has a 50% crit chance:

player with none of those perks: 50% chance of taking crit
player with enduring body: 50% + 10% = 60% chance of taking crit
player with touch of ecstasy: 50% + 5% = 55% chance of taking crit

Maybe it isnt flat addition, % values could be multiplied (50% * 10% = 55%), but the point is, one of the skills is wrong, right?

Editing, did the test by changing the values on both perks and testing them on a new game. The perk is indeed wrong, but in touch of ecstasy.

On both cases, a value of -150 makes every opponent attack crit, so it should be -5 on touch of ecstasy stat. Enduring body was correct.
 
Last edited:

Quintilus

Engaged Member
Aug 8, 2020
2,738
8,099
688
When I say "sofia's perk" actually I mean this is a perk given to player after beating sofia; it's one of the perks you can choose, not one she has for herself.

So, in both cases, the stat in on player, but they have opposite descriptions, but both have positive values. One of them should be negative. So, as you said, if an enemy has a 50% crit chance:

player with none of those perks: 50% chance of taking crit
player with enduring body: 50% + 10% = 60% chance of taking crit
player with touch of ecstasy: 50% + 5% = 55% chance of taking crit

Maybe it isnt flat addition, % values could be multiplied (50% * 10% = 55%), but the point is, one of the skills is wrong, right?
Looks like no. In python code 'CritChanceBoostSelf' meets in two different instants
Python:
                    for perk in theTarget.perks:
                        p = 0
                        while  p < len(perk.PerkType):
                            if perk.PerkType[p] == "CritChanceBoostSelf":<-here
                                critMod += perk.EffectPower[p]
                            p += 1
                        p = 0


    def getCritReduction(target):<- returns crit damage reduction on target
        critRedMod = 0
        for perk in target.perks:
            p = 0
            while  p < len(perk.PerkType):
                if perk.PerkType[p] == "CritChanceBoostSelf":<- and here
                    critRedMod += perk.EffectPower[p]
                p += 1
        #critRedMod += target.stats.Luck*0.2 - 1
        return critRedMod
It works in both directions AFAIKT, reducing and increasing crit chance, depending on when its used, from qiuck code inspection.
 

LiterallyJesus

New Member
Apr 7, 2022
3
0
134
Honestly top tier game, but MAN are my MODDING SKILLS SHIT, even still I read the "how to" on the Wiki, and still failed, no character images from the mods are loading in and neither are the events or literally anything besides the one cheat priestess mod, someone wanna throw this poor plebian a bone here? Help me out a bit maybe

BAD AT MODDING. HELP.
 

HumanRug

Active Member
Nov 11, 2020
816
747
208
Honestly top tier game, but MAN are my MODDING SKILLS SHIT, even still I read the "how to" on the Wiki, and still failed, no character images from the mods are loading in and neither are the events or literally anything besides the one cheat priestess mod, someone wanna throw this poor plebian a bone here? Help me out a bit maybe

BAD AT MODDING. HELP.
Images not loading is usually result from "mismodding" on Android. Also there might be a folder nesting problem, but I think that's unlikely. Which platform do you play on?
 

Fuzzlewhumper

Newbie
Mar 26, 2020
35
32
164
I think this still can happen. Sometimes with high fetish with low stats, the opponents can lock the player into a loop where they keep using their skill and a couple choices appear. Often when out of energy, it's necessary to continually click and continue until all spirit is gone and the match ends. With high spirit, this takes so long that future fights like that are avoided. I don't go back and try Sophia for example, she'll lock me up with kisses.

Is it possible to get some sort of button to give up? I know there's Surrender and Super Surrender, when stuck like this the action menu doesn't get to appear because of the lock down. Maybe something off to the side or a - I don't know, something.
 

hexkitty01

Member
Jan 19, 2021
417
514
216
Dammit, I stepped foot in the Capital and Sofia stil won't fight me. The next update better have me butt fucking her real bad or I'm gonna riot
Wait, Sofia the succubus queen, from the forest dungeon? She's easy to fight, just go into her bedchamber and challenge her... but there's several difficulty levels in the fight and you'd better be pretty high level to even try the (current) top one or she'll eat your lunch.
 
  • Like
Reactions: bwardyunbip

HumanRug

Active Member
Nov 11, 2020
816
747
208
Wait, Sofia the succubus queen, from the forest dungeon? She's easy to fight, just go into her bedchamber and challenge her... but there's several difficulty levels in the fight and you'd better be pretty high level to even try the (current) top one or she'll eat your lunch.
He meant her fourth phase.
 
Feb 14, 2019
203
152
227
I think it's a long fight but not that difficult as long as you just spam Lewd Bottle, i've beaten her with these stats XD
View attachment 2538300
I've had a lot more trouble beating the oni sisters
Holy crap thank you so much I didn't realize lewd bottle stacked. I had been trying to get her with a magic build but I guess I didn't wanna fully min max but lewd bottle got me 80% of the way and magic spam finished her off.
 
  • Yay, update!
Reactions: elements55555

CNR25

Active Member
Jan 7, 2020
547
667
235
So Elena only has one scene ? The dialogue options seems to indicate that there is a romance route but there is none, right ?
 

Master of Puppets

Conversation Conqueror
Oct 5, 2017
7,713
10,386
883
Holy crap thank you so much I didn't realize lewd bottle stacked. I had been trying to get her with a magic build but I guess I didn't wanna fully min max but lewd bottle got me 80% of the way and magic spam finished her off.
Yeah all aphrodisiac effects stack. I'm not sure if the Lewd Bottle or the aphrodisiac spell is better, but they both stack with themselves and each other.
 
4.60 star(s) 100 Votes