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

reCelebrityDebt: consistently use 16 as child/adult actress threshold

parent 963b80f1
Branches
Tags
1 merge request!11622reCelebrityDebt refinements
......@@ -7,8 +7,8 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
const slave = newCelebrityAddict();
const {him, his, he} = getPronouns(slave);
slave.prestigeDesc = `$He used to be ${slave.actualAge <= 16 ? "a child actress" : "an actress"}, starring in several recent blockbuster films that many millions loved to watch on whatever screens they could get their hands on.`;
slave.origin = `$He was a famous ${slave.actualAge <= 16 ? "child " : ""}actress until $his drug habits pushed $him so far into debt that $his agent sold $him to you at auction.`;
slave.prestigeDesc = `$He used to be ${slave.actualAge < 16 ? "a child actress" : "an actress"}, starring in several recent blockbuster films that many millions loved to watch on whatever screens they could get their hands on.`;
slave.origin = `$He was a famous ${slave.actualAge < 16 ? "child " : ""}actress until $his drug habits pushed $him so far into debt that $his agent sold $him to you at auction.`;
App.Events.drawEventArt(node, slave, "no clothing");
......@@ -49,7 +49,7 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
ageOverridesPedoMode: true
});
slave.career = slave.actualAge <= 16 ? "a child actress" : "an actress";
slave.career = slave.actualAge < 16 ? "a child actress" : "an actress";
slave.prestige = 2;
slave.devotion = random(-80, -60);
......@@ -60,7 +60,7 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
slave.boobs = Math.clamp(slave.boobs, 100, 200);
} else if (slave.actualAge < 13) {
slave.boobs = Math.clamp(slave.boobs, 100, 300);
} else if (slave.actualAge <= 16) {
} else if (slave.actualAge < 16) {
slave.boobs = Math.clamp(slave.boobs, 100, 500);
} else {
slave.boobs = Math.clamp(slave.boobs, 100, 2000);
......@@ -72,7 +72,7 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
slave.geneticQuirks.pFace = 2;
slave.weight = random(-40, 20);
if (slave.visualAge < 15) {
if (slave.visualAge < 16) {
slave.faceShape = "cute";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment