diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js index af281031d1e2c33841abc860b02da38c10f7572c..c94e2d1f96cd3d84fee98f6b640e3a4edfb311cb 100644 --- a/src/endWeek/saWhore.js +++ b/src/endWeek/saWhore.js @@ -480,7 +480,7 @@ window.saWhore = (function saWhore() { } if (setup.whoreCareers.includes(slave.career)) { r += ` ${He} has sex work experience from ${his} life before ${he} was a slave, making ${him} more effective.`; - } else if (slave.skill.entertainer >= V.masteredXP) { + } else if (slave.skill.whore >= V.masteredXP) { r += ` ${He} has experience as a prostitute from working for you, making ${him} more effective.`; } @@ -526,7 +526,7 @@ window.saWhore = (function saWhore() { slave.devotion += 4; } } else { - if ((slave.skill.oral + slave.skill.anal >= 200) && ((slave.skill.vaginal >= 100) || !canDoVaginal(slave))) { + if ((slave.skill.oral >= 100) && ((slave.skill.anal >= 100) || !canDoAnal(slave)) && ((slave.skill.vaginal >= 100) || !canDoVaginal(slave))) { r += ` ${He}'s a <span class="aquamarine">sexual master</span> `; if (canDoVaginal(slave)) { r += `whose`; @@ -569,7 +569,14 @@ window.saWhore = (function saWhore() { } else { r += ` pleasing the masses with ${his} chest,`; } - r += ` ${he} works social gatherings and high society.`; + r += ` ${he} works social gatherings and high society`; + if (slave.skill.entertainment < 50) { + r += `, where ${he} learns how to captivate ${his} audience.`; + skillIncrease = Math.floor(2.5 + (slave.intelligence + slave.intelligenceImplant) / 32); + r += ` ${SkillIncrease.Entertain(slave, skillIncrease)}`; + } else { + r += `.`; + } } else { r += ` ${He} shows diligence, and ${his} <span class="green">sexual skills improve,</span> according to what the customers demand`; if (!canDoVaginal(slave)) { diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index b1c62aa7eec671e04ec849f843247d22d02cbb27..81a61235889206b915ec08bf90b0d4111dffb371 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -2426,7 +2426,7 @@ window.slaveCost = (function() { startingSlaveMultiplier += (0.000117 * (slave.devotion - 20) * (slave.devotion - 20)) + (0.003167 * (slave.devotion - 20)); } if (slave.skill.whoring) { - startingSlaveMultiplier += 0.00001 * slave.skill.whore * slave.skill.whore; + startingSlaveMultiplier += 0.00001 * slave.skill.whoring * slave.skill.whoring; } if (slave.skill.entertainment) { startingSlaveMultiplier += 0.00001 * slave.skill.entertainment * slave.skill.entertainment;