- May 8, 2018
- 159
- 623
For those who want all sex skills from start
in RemtairyKarrynSex.js
replace with
in RemtairyEnergy.js
replace with
the rest in RemtairyWillpower.js
You can get Secret Curiosity in prologe battle, just let any desire max.
Here is scree from first battle:
in RemtairyKarrynSex.js
Code:
///////////
// Sex Skill Passive Requirement
Game_Actor.prototype.karrynKissSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_KISS_PEOPLE_TWO_ID);
};
Game_Actor.prototype.karrynCockStareSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_KARRYN_STARE_COCK_ONE_ID);
};
Game_Actor.prototype.karrynCockPetSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_HJ_COUNT_THREE_ID);
};
Game_Actor.prototype.karrynHandjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_HJ_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynRimjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_RIMJOB_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynFootjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_FOOTJOB_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynBlowjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_BJ_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynTittyFuckSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_TITTYFUCK_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynPussySexSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_PUSSY_SEX_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynAnalSexSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_ANAL_SEX_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynHasAnySexSkill = function() {
return this.karrynKissSkillPassiveRequirement() || this.karrynCockStareSkillPassiveRequirement() || this.karrynCockPetSkillPassiveRequirement() || this.karrynHandjobSkillPassiveRequirement() || this.karrynRimjobSkillPassiveRequirement() || this.karrynFootjobSkillPassiveRequirement() || this.karrynBlowjobSkillPassiveRequirement() || this.karrynTittyFuckSkillPassiveRequirement() || this.karrynPussySexSkillPassiveRequirement() || this.karrynAnalSexSkillPassiveRequirement();
};
Code:
Game_Actor.prototype.karrynKissSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynCockStareSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynCockPetSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynHandjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynRimjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynFootjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynBlowjobSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynTittyFuckSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynPussySexSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynAnalSexSkillPassiveRequirement = function() {
return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynHasAnySexSkill = function() {
return this.karrynCockStareSkillPassiveRequirement();
};
Code:
//////////
// Open Pleasure
// Pleasure Stance
//////////////
Game_Actor.prototype.skillCost_openPleasure = function() {
return 0;
};
Game_Actor.prototype.showEval_openPleasure = function(multiTurnVersion) {
let hasPassive = this.hasPassive(PASSIVE_SEXUAL_PARTNERS_TOTAL_TWO_ID);
if(multiTurnVersion) {
if(!hasPassive)
return false;
}
else if(!hasPassive && this.energy > 0)
return false;
return (this.isInSexPose() || this.isInDownPose()) && !this.justOrgasmed();
};
Code:
//////////
// Open Pleasure
// Pleasure Stance
//////////////
Game_Actor.prototype.skillCost_openPleasure = function() {
return 0;
};
Game_Actor.prototype.showEval_openPleasure = function() {
let hasPassive = this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
if(multiTurnVersion) {
if(!hasPassive)
return false;
}
else if(!hasPassive && this.energy > 0)
return false;
return (this.isInSexPose() || this.isInDownPose()) && !this.justOrgasmed();
};
You can get Secret Curiosity in prologe battle, just let any desire max.
Here is scree from first battle:
Last edited: