diff --git a/src/endWeek/saSharedVariables.js b/src/endWeek/saSharedVariables.js index 0de2eda0d87e6c8801a9bf69fb424ec29635f7c9..3c21f843b6d7085013e90076d838c600a2d5a66f 100644 --- a/src/endWeek/saSharedVariables.js +++ b/src/endWeek/saSharedVariables.js @@ -37,7 +37,7 @@ App.EndWeek.SASharedVariables = class { * @todo call this from all the facility reports (the slave loops are broken up by facility) */ nextSlave() { - /** Is this slave's paraphilia satisfied? (1: satisfied, 0: no paraphilia; -1: unsatisified) */ + /** Is this slave's paraphilia satisfied? (1: satisfied, 0: no paraphilia; -1: unsatisfied) */ this.paraphiliaSatisfied = 0; /** A slave with a lot of porn viewers will have a stronger effect on societal norms. This is her multiplier for those effects. */ this.pornFameBonus = 1; diff --git a/src/endWeek/saSocialEffects.js b/src/endWeek/saSocialEffects.js index b8e3a4b5c17a838fd0fccfa4d3fb4bab479fb83b..be6fe7157b72bb5776207dc3890b312dadbcc780 100644 --- a/src/endWeek/saSocialEffects.js +++ b/src/endWeek/saSocialEffects.js @@ -324,7 +324,7 @@ App.SlaveAssignment.saSocialEffects = function(slave) { `Society is <span class="green">pleased</span> that ${slave.slaveName} is unable to become pregnant.`)); } if (slave.abortionTat > 0) { - t.push(new SocialEffect("Eugenics", 1, "Abortion tatoos", + t.push(new SocialEffect("Eugenics", 1, "Abortion tattoos", `The tally of aborted pregnancies adorning ${his} middle shows <span class="green">just how responsible</span> of an owner ${he} has.`)); } if (slave.pregKnown === 1 && V.eugenicsFullControl !== 1) { diff --git a/src/markets/specificMarkets/prestigiousSlave.js b/src/markets/specificMarkets/prestigiousSlave.js index 61626be83d8a8be89c907c9d90131c627e839c95..a3d787f709e58dcfa83d46054e821368c71a41e8 100644 --- a/src/markets/specificMarkets/prestigiousSlave.js +++ b/src/markets/specificMarkets/prestigiousSlave.js @@ -636,8 +636,8 @@ App.Markets["Prestigious Slave"] = function() { slave.skill.entertainment = 35; slave.pubicHStyle = "waxed"; slave.underArmHStyle = "waxed"; - slave.sexualFlaw = either("hates women"); - slave.behavioralFlaw = either("anorexic", "arrogant"); + slave.sexualFlaw = either("judgemental"); + slave.behavioralFlaw = either("anorexic", "arrogant", "hates women"); slave.custom.desc = "$He moves with the practiced grace of someone who unconsciously still pictures $himself on the runway."; break; case "d albino": @@ -888,7 +888,6 @@ App.Markets["Prestigious Slave"] = function() { App.UI.DOM.appendNewElement("p", el, `It will take ${cashFormat(cost)} to win the auction.`); - if (V.cash >= cost) { App.UI.DOM.appendNewElement( "p", diff --git a/src/markets/specificMarkets/schools.js b/src/markets/specificMarkets/schools.js index 4d756131e97982c2b2e7d132c5df0b9fd8d9b294..ea21559657c975c65a93611fb159e8c8ce6f288d 100644 --- a/src/markets/specificMarkets/schools.js +++ b/src/markets/specificMarkets/schools.js @@ -42,7 +42,7 @@ App.Markets.LDE = function() { } else { r.push(`research into narrowly targeted hormonal treatments, its graduates are now available with generous members despite their femininity.`); } - r.push(`As a major ${(V.PC.title === 0)? `benefactrix`:`benefactor`} of the institution, you also receive a discount on them.`); + r.push(`As a major ${(V.PC.title === 0) ? `benefactrix` : `benefactor`} of the institution, you also receive a discount on them.`); } App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); @@ -140,7 +140,7 @@ App.Markets.TCR = function() { } else { r.push(`a healthy sum of credits to encourage the sale of heifers.`); } - r.push(`As a major ${(V.PC.title === 0)? `benefactrix`:`benefactor`} of the ranch, you also receive a discount on them.`); + r.push(`As a major ${(V.PC.title === 0) ? `benefactrix` : `benefactor`} of the ranch, you also receive a discount on them.`); } App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro");