Skip to content
Snippets Groups Projects
Commit 14e52756 authored by svornost's avatar svornost
Browse files

Broaden slave generation parameters in REC Runaway Cat.

parent ac70adab
No related branches found
No related tags found
1 merge request!10144Broaden slave generation parameters in REC Runaway Cat
...@@ -5,7 +5,6 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent { ...@@ -5,7 +5,6 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent {
eventPrerequisites() { eventPrerequisites() {
return [ return [
() => V.seeDicks !== 100,
() => V.seeCats !== 0, () => V.seeCats !== 0,
() => V.projectN.techReleased !== 0, () => V.projectN.techReleased !== 0,
() => ((V.rep/400) > random(1, 100) || V.cheatMode === 1) () => ((V.rep/400) > random(1, 100) || V.cheatMode === 1)
...@@ -40,7 +39,7 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent { ...@@ -40,7 +39,7 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent {
} }
const incomeText = new DocumentFragment(); const incomeText = new DocumentFragment();
incomeText.append(`This will bring in `, App.UI.DOM.cashFormat(cost), `.`); incomeText.append(`This will bring in `, App.UI.DOM.cashFormat(cost), `.`);
responses.push(new App.Events.Result(`Sell ${him} immediately`, sell, incomeText)); responses.push(new App.Events.Result(`Return ${him} to ${his} owner`, sell, incomeText));
node.append(App.Desc.longSlave(slave, {market: "generic"})); node.append(App.Desc.longSlave(slave, {market: "generic"}));
...@@ -66,7 +65,7 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent { ...@@ -66,7 +65,7 @@ App.Events.recRunawayCat = class recRunawayCat extends App.Events.BaseEvent {
} }
function makeSlave() { function makeSlave() {
const slave = GenerateNewSlave("XX", {minAge: 18, maxAge: 22, race: "catgirl"}); const slave = GenerateNewSlave(null, {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