From 67437d9e586d577d8d61121b454839dfa3e7b70a Mon Sep 17 00:00:00 2001 From: Skriv <skrivelese@gmail.com> Date: Sun, 11 Oct 2020 16:01:50 +0200 Subject: [PATCH] misc fixes --- src/endWeek/saSharedVariables.js | 2 +- src/endWeek/saSocialEffects.js | 2 +- src/markets/specificMarkets/prestigiousSlave.js | 5 ++--- src/markets/specificMarkets/schools.js | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/endWeek/saSharedVariables.js b/src/endWeek/saSharedVariables.js index 0de2eda0d87..3c21f843b6d 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 b8e3a4b5c17..be6fe7157b7 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 61626be83d8..a3d787f709e 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 4d756131e97..ea21559657c 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"); -- GitLab