diff --git a/src/js/generateMarketSlave.js b/src/js/generateMarketSlave.js index a12ffb24da8432455eb7bf9b3e1d68260e80bdcc..da121bb21bc5e18f5ae264708f1379067c03def3 100644 --- a/src/js/generateMarketSlave.js +++ b/src/js/generateMarketSlave.js @@ -2653,7 +2653,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { switch (criminal) { case "racketeering": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); - V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} convicted of racketeering.`; + V.activeSlave.origin = `You purchased $his life at a prison sale. $He was convicted of racketeering.`; V.prisonCrime = "is incarcerated for racketeering."; V.activeSlave.devotion = jsRandom(-20, 20); V.activeSlave.trust = jsRandom(-20, 20); @@ -2662,7 +2662,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break; case "bribery": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); - V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} arrested and sentenced for bribing government officials.`; + V.activeSlave.origin = `You purchased $his life at a prison sale. $He was arrested and sentenced for bribing government officials.`; V.prisonCrime = "is incarcerated for bribery."; V.activeSlave.devotion = jsRandom(-50, -20); V.activeSlave.trust = jsRandom(20, 50); @@ -2672,7 +2672,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.behavioralFlaw = "arrogant"; break; case "blackmail": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); - V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} convicted of blackmail against a sorority of university students, forcing them to do sexual favors.`; + V.activeSlave.origin = `You purchased $his life at a prison sale. $He was convicted of blackmail against a sorority of university students, forcing them to do sexual favors.`; V.prisonCrime = "is incarcerated for blackmail."; V.activeSlave.devotion = jsRandom(-20, 20); V.activeSlave.trust = jsRandom(20, 50); @@ -2684,7 +2684,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { V.activeSlave.fetishStrength = 100; break; case "embezzlement": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); - V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} involved in a scandal and convicted of embezzlement.`; + V.activeSlave.origin = `You purchased $his life at a prison sale. $He was involved in a scandal and convicted of embezzlement.`; V.prisonCrime = "is incarcerated for embezzlement."; V.activeSlave.devotion = jsRandom(0, 20); V.activeSlave.trust = jsRandom(-10, 10); @@ -2693,7 +2693,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break; case "fraud": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); - V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} convicted of fraud.`; + V.activeSlave.origin = `You purchased $his life at a prison sale. $He was convicted of fraud.`; V.prisonCrime = "is incarcerated for fraud."; V.activeSlave.devotion = jsRandom(20, 40); V.activeSlave.trust = jsRandom(20, 50); @@ -2702,7 +2702,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break; case "tax evasion": V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]); - V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} convicted of tax evasion.`; + V.activeSlave.origin = `You purchased $his life at a prison sale. $He was convicted of tax evasion.`; V.prisonCrime = "is incarcerated for tax evasion."; V.activeSlave.devotion = jsRandom(-20, 0); V.activeSlave.trust = jsRandom(20, 50);