I have encountered two problems so far. One is that after the first time I visited Rebecca, I can't get any more powerups. I'm at 9/9 in both Ki, Mind, and Strength, and she keeps telling me that she needs more data. I
think the problem is this piece of code in game\script\scene\main_story\rebecca\rebecca_hub.rpy:
Code:
if varPowerupCount > 0:
scene intro_sc_18_113 with dissolve_0
rebecca "Sto ancora analizzando i dati dell'ultima volta."
scene intro_sc_18_114 with dissolve_0
rebecca "Adesso non abbiamo niente da fare qui in laboratorio."
scene intro_sc_18_115
mc "ok Rebecca, grazie."
scene black with dissolve_0
jump lobby
elif varForcePoint> 2 and varMindPoint > 2 and varKiPoint > 2 :
scene black with dissolve
jump rebecca_power_up
else:
scene intro_sc_18_113 with dissolve_0
rebecca "Non mi sembra che ti sei impegnato abbastanza questa volta."
scene intro_sc_18_114 with dissolve_0
rebecca "Torna quando mi avrai fornito più dati di cosi!"
scene intro_sc_18_115
mc "Scusami Rebecca, hai ragione."
I'm not a coding expert, but I know a little bit, and as I read this code: if varPowerupCount (which appears to be a tally of your total evolution points) is more than 0 (which it will always be after the first visit), it only runs the first bit (until "jump lobby"). So once you've gotten one powerup, you'll never get another (at least not this way).
The other bug I ran into was in game\script\scene\dating\jean\dating_jean.rpy where there was one occasion of using varReljean instead of varRelJean.
From a more gameplay-oriented perspective, the game could use more occasions to increase Mind. AFAIK there are only two spots on the map that do that, and if I'm reading the code correctly one of them is on a 2-day cooldown and the other on a 3-day. But Strength has both the Gym, Jogging, and the Dojo, and Ki has both the Swamp, Spa, Therapist, and Dojo (doing double-duty).