const TRAINING_ENEMY_LINE_EJAC_FACE = 2376;
const TRAINING_ENEMY_LINE_TALK_COCK = 2412;
const TRAINING_ENEMY_LINE_PETTING_KISS = 2502;
const TRAINING_ENEMY_LINE_STARTPOSE_BJ = 2604;
const TRAINING_ENEMY_LINE_STARTPOSE_RIMJOB = 2606;
const TRAINING_ENEMY_LINE_TALING_TAKE = ['take','steal','rob'];
const TRAINING_ENEMY_LINE_TALING_TASTE = ['taste','lick','savour'];
const TRAINING_ENEMY_LINE_TALING_SOFT = ['soft','slutty','nice'];
const TRAINING_ENEMY_LINE_TALING_BITCH = ['bitch','whore','slut'];
const TRAINING_ENEMY_LINE_TALING_AROUSE = ['arouse','tempt','heat up'];
const TRAINING_ENEMY_LINE_TALING_COVER = ['cover','splatter','repaint'];
const TRAINING_ENEMY_LINE_TALING_CUM = ['cum','seed','baby juice'];
const TRAINING_ENEMY_LINE_TALING_COCK = ['cock','dick'];
BattleManager.getTrainLinesText = function(lineType) {
let actor = $gameActors.actor(ACTOR_KARRYN_ID),
lineText = eval(lineType),
text = [];
//Ejac Face
if(lineText == TRAINING_ENEMY_LINE_EJAC_FACE) {
text = ["\\C[25](Lets [cover] Karryn's face with my [cum].)"];
}//Talk Cock
else if(lineText == TRAINING_ENEMY_LINE_TALK_COCK) {
text = ["\\C[25](Lets [arouse] this [bitch] talking about my [cock].)"];
}//Kiss
else if(lineText == TRAINING_ENEMY_LINE_PETTING_KISS) {
if (!actor._firstKissDate && this.hasEdict(EDICT_PUBLISH_OTHER_FIRST_TIMES))
text = ["\\C[25](I will now [take] your first kiss with my lips.)"];
else if (actor.canGetKissed(KISS_LVL_ONE))
text = ["\\C[25](Let me [taste] those [soft] lips.)"];
else if (actor.canGetKissed(KISS_LVL_TWO))
text = ["\\C[25](Lets exchange saliva with this [bitch].)"];
}//Blowjob
else if(lineText == TRAINING_ENEMY_LINE_STARTPOSE_BJ) {
if (!actor._firstBlowjobDate && this.hasEdict(EDICT_PUBLISH_OTHER_FIRST_TIMES))
text = ["\\C[25](I will now [take] your first kiss with my [cock].)"];
else
text = ["\\C[25](Let my [cock] violate those [soft] lips.)"];
}//Rimjob
else if(lineText == TRAINING_ENEMY_LINE_STARTPOSE_RIMJOB) {
if (!actor._firstRimjobDate && this.hasEdict(EDICT_PUBLISH_OTHER_FIRST_TIMES))
text = ["\\C[25](I will now [take] your first kiss with my asshole.)"];
else
text = ["\\C[25](Let my asshole feel those [soft] lips.)"];
}
if (text[0]) {
text = [text[0].replace('[take]', TRAINING_ENEMY_LINE_TALING_TAKE[Math.randomInt(TRAINING_ENEMY_LINE_TALING_TAKE.length)])];
text = [text[0].replace('[taste]', TRAINING_ENEMY_LINE_TALING_TASTE[Math.randomInt(TRAINING_ENEMY_LINE_TALING_TASTE.length)])];
text = [text[0].replace('[soft]', TRAINING_ENEMY_LINE_TALING_SOFT[Math.randomInt(TRAINING_ENEMY_LINE_TALING_SOFT.length)])];
text = [text[0].replace('[bitch]', TRAINING_ENEMY_LINE_TALING_BITCH[Math.randomInt(TRAINING_ENEMY_LINE_TALING_BITCH.length)])];
text = [text[0].replace('[arouse]', TRAINING_ENEMY_LINE_TALING_AROUSE[Math.randomInt(TRAINING_ENEMY_LINE_TALING_AROUSE.length)])];
text = [text[0].replace('[cover]', TRAINING_ENEMY_LINE_TALING_COVER[Math.randomInt(TRAINING_ENEMY_LINE_TALING_COVER.length)])];
text = [text[0].replace('[cum]', TRAINING_ENEMY_LINE_TALING_CUM[Math.randomInt(TRAINING_ENEMY_LINE_TALING_CUM.length)])];
text = [text[0].replace('[cock]', TRAINING_ENEMY_LINE_TALING_COCK[Math.randomInt(TRAINING_ENEMY_LINE_TALING_COCK.length)])];
}
return text
};