Hmm, think there's potentially a logic error here, on Day 3:
View attachment 4778213
For the Faith option to be enabled, requires these conditions:
Python:
"Faith" (sensitive=(faith =="masturbation" and fantasy_family or faith=="caught" and fantasy_family), condition = True):
The problem is as follows: the
fantasy_family
variable can be only be really activated on Day 2 when visiting sex shop with Vicky*. There's two options which do it:
Python:
"Someone in my family..." (sensitive=(slut>=2), condition = True):
//...
$ fantasy_family = True
and
Python:
"A family fantasy, Vic? I admit I love this category of porn too." if relationship_vicky>2 and karma<1:
//...
$ fantasy_vicky_family = True
$ fantasy_family = True
The catch is, the game doesn't have a path where you can share bed with Faith on Day 1 and raise relationship with Vicky to 3+, or where you share bed with Faith on Day 1, raise the
slut
attribute *and* go out with Vicky so you can have a talk about your fantasies.
* you start with Vicky relationship of 2. Declining outing with her on Day 1 so you can share bed with Faith costs you a relationship point with Vicky, dropping you to 1. There's no options before Day 2 outing to raise it higher, so the 3+ relationship threshold is not meet and the "family fantasy?" admission is never made available.
* the
slut
variable can only be raised early if you go meet Vicky on day 1 (meaning you don't share bed with Faith) or on Day 2 if you "convince" Gus to give you a big advance... but this can only happen in the time slot where you can go out shopping with Vicky. So it blocks MC's ability to set the
fantasy_family
flag.
tl;dr: sad trombone.
Suggested fix: change the masturbation options requirement just to
faith =="masturbation" or faith=="caught"
and have the
fantasy_family
variable activated if the player picks this option, as a reflection/consequence of choice made here. Like, there is no real need to require MC to overshare her kinks with someone just so she can act upon them in the privacy of her bedroom.
*) technically you could in theory also activate it on Day 3, but that requires
fantasy_vicky_family
to be active, which is both a catch-22 and quite redundant, plus also not possible to combine with sharing bed with Faith.