JavaScript:
Game_Actor.prototype.waitressBattle_flashRequirementMet = function() {
let flashRequirements = 100;
let boobsDesire = this.boobsDesire;
if(this.isDrunk || this.isDeadDrunk || this.isHorny)
flashRequirements -= boobsDesire;
else if(this.isTipsy)
flashRequirements -= boobsDesire * 0.7;
else
flashRequirements -= boobsDesire * 0.4;
// not used right now
if(this.hasPassive(PASSIVE_FLAUNT_COUNT_THREE_ID)) flashRequirements -= 100;
else if(this.hasPassive(PASSIVE_FLAUNT_COUNT_TWO_ID)) flashRequirements -= 75;
else if(this.hasPassive(PASSIVE_FLAUNT_COUNT_ONE_ID)) flashRequirements -= 40;
// not used right now
if(this.hasPassive(PASSIVE_SIGHT_PEOPLE_FOUR_ID)) flashRequirements -= 60;
else if(this.hasPassive(PASSIVE_SIGHT_PEOPLE_THREE_ID)) flashRequirements -= 45;
// recordSeenPeople >= 50 and charm >= 32 (Sensitive to Being Eyeballed) passive
else if(this.hasPassive(PASSIVE_SIGHT_PEOPLE_TWO_ID)) flashRequirements -= 30;
// recordSeenPeople >= 10 and charm >= 24 (Piercing Stares) passive
else if(this.hasPassive(PASSIVE_SIGHT_PEOPLE_ONE_ID)) flashRequirements -= 15;
// not used right now
if(this.hasPassive(PASSIVE_SIGHT_PLEASURE_TWO_ID)) flashRequirements -= 20;
else if(this.hasPassive(PASSIVE_SIGHT_PLEASURE_ONE_ID)) flashRequirements -= 10;
return flashRequirements <= 0;
};
So with the passives this code use for 0.4u version Karryn must be (Drunk/DeadDrunk/Horny/Tipsy+PASSIVE_SIGHT_PEOPLE_TWO_ID)
and Boobs desire to 100
to Flash
Not quite. You do not have to be tipsy (or drunk) to reach the flash point. The following passives are reachable:
- PASSIVE_FLAUNT_COUNT_ONE_ID: use the flaunt skill at least 10 times in front of at least 30 dudes (this one is not fully implemented and shows up as an empty line in the "gained passives" screen after battle. The effects still work.
- PASSIVE_SIGHT_PEOPLE_ONE_ID: 10 times dudes jerking while looking and at least 24 charm
- PASSIVE_SIGHT_PEOPLE_TWO_ID: 50 times dudes jerking while looking and at least 32 charm
With all three passives, you get a -70 modifier in the vanilla game. So while sober you start flashing with 75 boob desire. I don't think you can get her horny in the waitress job right now. That requires the
PASSIVE_FLAUNT_COUNT_TWO_ID
passive, that you can't get yet.
While she's sober, the sex scene cannot start.
If you want her to flash often without sex scene, have her sober (and/or very low cock desire), all three passives ("Piercing Stares", "Sensitive to Being Eyeballed" and nameless one) and at least 75 boob desire.