I just got a new event where we wrestled in the pool and I wound up sucking her massive funbags. I went to her room a couple nights after and got the same options 1 about the cape 2 about pillow fights 3 regarding flowers and the leave option. I dont know if I'm missing a trigger but I'll keep trying, I am out of quests to complete.
I think I found the reason, you have to be level 2 to seduce PowerGirl and only two of my super powers are level two with super stud, super sense, super resistance, super combat and super agility are all level 1.
The ones you mention are individual attributes of the MC. The one we are talking about is a different, general one. You see it mentioned in the code as mclevel02 = True | False. That is different from eg mcstrength or mccombat that are level numbers eg mcstrength = 2.
The mclevel02 = True can only be reached with Captain Milf in the gym. The condition in the code is this:
if period == 1 and (d10locnight == 5 or d10locnight == 6) and mcsenses >= 1 and mcagility >= 1 and mcstrength >= 2 and (mccombat >= 2 or mcmind >= 1) and seenstroheimwonder and supergirltraining and (seenmilfgymendlevel01 == False or not mclevel02):
meaning:
- in the evening
- Captain Milf has to be there (obviously)
- you need all of senses >=1, agility >= 1, strength >=2, and either combat >=2 or mind control >=1
- need to have seen the nazi scene
- did the training with supergirl
- and are not yet mclevel02 = True (also obviously, or you wouldn't need the scene)
Hope this helps.