From 2994393b686b08e9d277ec853d9834275e5c184b Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Thu, 28 Sep 2023 19:47:53 -0700 Subject: [PATCH] Assign careers to more relative recruits --- src/events/recETS/recetsIncestFatherDaughter.js | 1 + src/markets/specificMarkets/householdLiquidator.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/events/recETS/recetsIncestFatherDaughter.js b/src/events/recETS/recetsIncestFatherDaughter.js index e143a78d2f0..9c7e22cdc6d 100644 --- a/src/events/recETS/recetsIncestFatherDaughter.js +++ b/src/events/recETS/recetsIncestFatherDaughter.js @@ -40,6 +40,7 @@ App.Events.recetsIncestFatherDaughter = class recetsIncestFatherDaughter extends father.relationship = 3; const daughter = generateRelatedSlave(father, "daughter"); + daughter.career = "a student"; daughter.vagina = 3; daughter.clit = 1; daughter.ovaries = 1; diff --git a/src/markets/specificMarkets/householdLiquidator.js b/src/markets/specificMarkets/householdLiquidator.js index 045ff413b93..2e30b2f1967 100644 --- a/src/markets/specificMarkets/householdLiquidator.js +++ b/src/markets/specificMarkets/householdLiquidator.js @@ -124,6 +124,7 @@ App.Markets["Household Liquidator"] = function() { function finishSlave(slave) { Object.assign(slave, { origin: "You bought $him from the household liquidator.", + career: "a slave"; devotion: jsRandom(-75, -25), trust: jsRandom(-45, -25), oldDevotion: slave.devotion, -- GitLab