Skip to content
Snippets Groups Projects
Commit cf5e7590 authored by Anu's avatar Anu
Browse files

Assign careers to even more relative recruits

parent 2994393b
No related branches found
No related tags found
1 merge request!11547Tweaks
...@@ -65,6 +65,7 @@ App.Events.recetsDesperateBroodmother = class recetsDesperateBroodmother extends ...@@ -65,6 +65,7 @@ App.Events.recetsDesperateBroodmother = class recetsDesperateBroodmother extends
if (random(1, 100) < V.seeDicks) { /* boy*/ if (random(1, 100) < V.seeDicks) { /* boy*/
child = generateRelatedSlave(mother, "son"); child = generateRelatedSlave(mother, "son");
child.origin = "$His mother offered $him to you as an incentive to take them in."; child.origin = "$His mother offered $him to you as an incentive to take them in.";
child.career = "homeless";
child.slaveName = child.birthName; child.slaveName = child.birthName;
setHealth(child, jsRandom(10, 20)); setHealth(child, jsRandom(10, 20));
child.devotion -= 5; child.devotion -= 5;
...@@ -111,6 +112,7 @@ App.Events.recetsDesperateBroodmother = class recetsDesperateBroodmother extends ...@@ -111,6 +112,7 @@ App.Events.recetsDesperateBroodmother = class recetsDesperateBroodmother extends
} else { /* girl*/ } else { /* girl*/
child = generateRelatedSlave(mother, "daughter"); child = generateRelatedSlave(mother, "daughter");
child.origin = "$His mother offered $him to you as an incentive to take them in."; child.origin = "$His mother offered $him to you as an incentive to take them in.";
child.career = "homeless";
child.slaveName = child.birthName; child.slaveName = child.birthName;
setHealth(child, jsRandom(10, 20)); setHealth(child, jsRandom(10, 20));
child.devotion -= 5; child.devotion -= 5;
......
...@@ -64,6 +64,7 @@ App.Events.recetsIdenticalHermPair = class recetsIdenticalHermPair extends App.E ...@@ -64,6 +64,7 @@ App.Events.recetsIdenticalHermPair = class recetsIdenticalHermPair extends App.E
const contractCost = slaveCost(thing1) * 2; const contractCost = slaveCost(thing1) * 2;
const thing2 = generateRelatedSlave(thing1, "twin"); const thing2 = generateRelatedSlave(thing1, "twin");
thing2.career = "a slave";
thing2.energy = Math.max(thing2.energy, 40); thing2.energy = Math.max(thing2.energy, 40);
thing2.attrXX = Math.max(thing2.attrXX, 70); thing2.attrXX = Math.max(thing2.attrXX, 70);
thing2.attrXY = Math.max(thing2.attrXY, 70); thing2.attrXY = Math.max(thing2.attrXY, 70);
......
...@@ -57,6 +57,7 @@ App.Events.recetsIdenticalPair = class recetsIdenticalPair extends App.Events.Ba ...@@ -57,6 +57,7 @@ App.Events.recetsIdenticalPair = class recetsIdenticalPair extends App.Events.Ba
const contractCost = slaveCost(thing1) * 2; const contractCost = slaveCost(thing1) * 2;
const thing2 = generateRelatedSlave(thing1, "twin"); const thing2 = generateRelatedSlave(thing1, "twin");
thing2.career = "a slave";
thing2.energy = Math.max(thing2.energy, 40); thing2.energy = Math.max(thing2.energy, 40);
thing2.attrXX = Math.max(thing2.attrXX, 70); thing2.attrXX = Math.max(thing2.attrXX, 70);
thing2.relationship = 2; thing2.relationship = 2;
......
...@@ -37,6 +37,7 @@ App.Events.recetsIncestBrotherBrother = class recetsIncestBrotherBrother extends ...@@ -37,6 +37,7 @@ App.Events.recetsIncestBrotherBrother = class recetsIncestBrotherBrother extends
brother1.relationship = 3; brother1.relationship = 3;
const brother2 = generateRelatedSlave(brother1, "younger brother"); const brother2 = generateRelatedSlave(brother1, "younger brother");
brother2.career = "a dropout";
brother2.pubicHStyle = "shaved"; brother2.pubicHStyle = "shaved";
brother2.dick += 2; brother2.dick += 2;
brother2.balls += 2; brother2.balls += 2;
......
...@@ -58,6 +58,7 @@ App.Events.recetsMatchedPair = class recetsMatchedPair extends App.Events.BaseEv ...@@ -58,6 +58,7 @@ App.Events.recetsMatchedPair = class recetsMatchedPair extends App.Events.BaseEv
const contractCost = slaveCost(sis1) * 2; const contractCost = slaveCost(sis1) * 2;
const sis2 = generateRelatedSlave(sis1, "twin", true); const sis2 = generateRelatedSlave(sis1, "twin", true);
sis2.career = "a slave";
sis2.vagina = 1; sis2.vagina = 1;
sis2.preg = -1; sis2.preg = -1;
sis2.dick = 0; sis2.dick = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment