- Mar 12, 2017
- 773
- 930
hello i see you know the game code pretty well, is there a way to increase the cock desire needed to handjobs? im at 20 cock desire and karryn start the animation, its pretty anoying to be honest with you all
JavaScript:
Game_Actor.prototype.handjobCockDesireRequirement = function(karrynSkillUse) {
let req = 80;
if(this.isEquippingThisAccessory(RING_SCORPION_ID)) req += 30;
if(this.isEquippingThisAccessory(MISC_NAILPOLISH_ID)) req -= 20;
return req;
};