diff --git a/src/events/recETS/recetsDesperateBroodmother.js b/src/events/recETS/recetsDesperateBroodmother.js index 9fe47e45cbee58f51bbcf0f205adcc9d2ae03b10..cecbecbd885e992933680948bb0aedf23f17ecdd 100644 --- a/src/events/recETS/recetsDesperateBroodmother.js +++ b/src/events/recETS/recetsDesperateBroodmother.js @@ -65,6 +65,7 @@ App.Events.recetsDesperateBroodmother = class recetsDesperateBroodmother extends if (random(1, 100) < V.seeDicks) { /* boy*/ child = generateRelatedSlave(mother, "son"); child.origin = "$His mother offered $him to you as an incentive to take them in."; + child.career = "homeless"; child.slaveName = child.birthName; setHealth(child, jsRandom(10, 20)); child.devotion -= 5; @@ -111,6 +112,7 @@ App.Events.recetsDesperateBroodmother = class recetsDesperateBroodmother extends } else { /* girl*/ child = generateRelatedSlave(mother, "daughter"); child.origin = "$His mother offered $him to you as an incentive to take them in."; + child.career = "homeless"; child.slaveName = child.birthName; setHealth(child, jsRandom(10, 20)); child.devotion -= 5; diff --git a/src/events/recETS/recetsIdenticalHermPair.js b/src/events/recETS/recetsIdenticalHermPair.js index 59cda539a5ac59527792dbde8a8c161c616ad0d3..840b28ae767a12da472a6514c902cf08c7cabcad 100644 --- a/src/events/recETS/recetsIdenticalHermPair.js +++ b/src/events/recETS/recetsIdenticalHermPair.js @@ -64,6 +64,7 @@ App.Events.recetsIdenticalHermPair = class recetsIdenticalHermPair extends App.E const contractCost = slaveCost(thing1) * 2; const thing2 = generateRelatedSlave(thing1, "twin"); + thing2.career = "a slave"; thing2.energy = Math.max(thing2.energy, 40); thing2.attrXX = Math.max(thing2.attrXX, 70); thing2.attrXY = Math.max(thing2.attrXY, 70); diff --git a/src/events/recETS/recetsIdenticalPair.js b/src/events/recETS/recetsIdenticalPair.js index ab6b30df463b09c99492a01a98c07bfd96830ec8..297e9983d2df97301bb9f98736666986726535ab 100644 --- a/src/events/recETS/recetsIdenticalPair.js +++ b/src/events/recETS/recetsIdenticalPair.js @@ -57,6 +57,7 @@ App.Events.recetsIdenticalPair = class recetsIdenticalPair extends App.Events.Ba const contractCost = slaveCost(thing1) * 2; const thing2 = generateRelatedSlave(thing1, "twin"); + thing2.career = "a slave"; thing2.energy = Math.max(thing2.energy, 40); thing2.attrXX = Math.max(thing2.attrXX, 70); thing2.relationship = 2; diff --git a/src/events/recETS/recetsIncestBrotherBrother.js b/src/events/recETS/recetsIncestBrotherBrother.js index c28b6dd97884b213998175c6962d857f52ff4a6d..d232241d76c5d375048ab4a459ce0ff9b40e8787 100644 --- a/src/events/recETS/recetsIncestBrotherBrother.js +++ b/src/events/recETS/recetsIncestBrotherBrother.js @@ -37,6 +37,7 @@ App.Events.recetsIncestBrotherBrother = class recetsIncestBrotherBrother extends brother1.relationship = 3; const brother2 = generateRelatedSlave(brother1, "younger brother"); + brother2.career = "a dropout"; brother2.pubicHStyle = "shaved"; brother2.dick += 2; brother2.balls += 2; diff --git a/src/events/recETS/recetsMatchedPair.js b/src/events/recETS/recetsMatchedPair.js index eba40b8899d077fcdf2f6440821c408cb10f7bcd..1ee0b9795e04d1a6ccc97e549c641af443a9a718 100644 --- a/src/events/recETS/recetsMatchedPair.js +++ b/src/events/recETS/recetsMatchedPair.js @@ -58,6 +58,7 @@ App.Events.recetsMatchedPair = class recetsMatchedPair extends App.Events.BaseEv const contractCost = slaveCost(sis1) * 2; const sis2 = generateRelatedSlave(sis1, "twin", true); + sis2.career = "a slave"; sis2.vagina = 1; sis2.preg = -1; sis2.dick = 0;