Skip to content
Snippets Groups Projects
Commit 78c9312b authored by svornost's avatar svornost
Browse files

Vat growth process apparently matures them to 16, so set that as minimum age

parent 14e52756
No related branches found
No related tags found
1 merge request!10144Broaden slave generation parameters in REC Runaway Cat
...@@ -65,7 +65,7 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent { ...@@ -65,7 +65,7 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent {
} }
function makeSlave() { function makeSlave() {
const slave = GenerateNewSlave(null, {maxAge: 22, race: "catgirl"}); const slave = GenerateNewSlave(null, {minAge: 16, maxAge: 22, race: "catgirl"});
slave.face = random(25, 75); slave.face = random(25, 75);
slave.origin = "$He was bioengineered by a rival arcology owner. After being mistreated, $he escaped and came to you for protection."; slave.origin = "$He was bioengineered by a rival arcology owner. After being mistreated, $he escaped and came to you for protection.";
slave.slaveName = setup.catSlaveNames.random(); slave.slaveName = setup.catSlaveNames.random();
......
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