From 21929a1991195577d82c52c7bd51d6c83e1a8d73 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sat, 1 May 2021 21:23:28 -0400 Subject: [PATCH] add checks --- js/003-data/policiesData.js | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index 6f6ee3c203c..f7fd660f52f 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -1139,7 +1139,14 @@ App.Data.Policies.Selection = { text: "you will encourage veneration of slaves with both dicks and pussies.", activatedText: "you are encouraging Gender Radicalism towards veneration of slaves with both dicks and pussies.", enable: 1, - get requirements() { return (V.seeDicks !== 0 && V.seeDicks !== 100 && V.arcologies[0].FSGenderRadicalist > 20); }, + get requirements() { + return ( + V.seeDicks !== 0 && + V.seeDicks !== 100 && + V.arcologies[0].FSGenderRadicalist > 60 && + V.arcologies[0].FSGenderRadicalistLawFuta === 0 + ); + }, note: `Will affect citizens' appreciation of futas` }, { @@ -1148,7 +1155,13 @@ App.Data.Policies.Selection = { text: "you will encourage an appreciation for stiff dicks and swinging balls.", activatedText: "you are encouraging Gender Radicalism towards an appreciation for stiff dicks and swinging balls.", enable: 2, - get requirements() { return (V.seeDicks !== 0 && V.arcologies[0].FSGenderRadicalist > 20); }, + get requirements() { + return ( + V.seeDicks !== 0 && + V.arcologies[0].FSGenderRadicalist > 60 && + V.arcologies[0].FSGenderRadicalistLawFuta === 0 + ); + }, note: `Will affect slaves' attractiveness to citizens` }, { @@ -1157,7 +1170,14 @@ App.Data.Policies.Selection = { text: "you will encourage an appreciation for broad hips, plush asses, big buttholes, and skilled sphincters.", activatedText: "you are encouraging an appreciation for broad hips, plush asses, big buttholes, and skilled sphincters.", enable: 3, - get requirements() { return (V.arcologies[0].FSGenderRadicalist > 20); }, + get requirements() { + return ( + V.seeDicks !== 0 && + V.arcologies[0].FSGenderRadicalist > 60 && + V.arcologies[0].FSSlimnessEnthusiastLaw === 0 && + V.arcologies[0].FSGenderRadicalistLawFuta === 0 + ); + }, note: `Will affect slaves' attractiveness to citizens` }, { @@ -1166,7 +1186,14 @@ App.Data.Policies.Selection = { text: "you will encourage an appreciation for cute, flat chested slaves with small male genitals and no vagina.", activatedText: "you are encouraging an appreciation for cute, flat chested slaves with small male genitals and no vagina.", enable: 4, - get requirements() { return (V.seeDicks !== 0 && V.arcologies[0].FSGenderRadicalist > 20); }, + get requirements() { + return ( + V.seeDicks !== 0 && + V.arcologies[0].FSGenderRadicalist > 60 && + V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 && + V.arcologies[0].FSGenderRadicalistLawFuta === 0 + ); + }, note: `Will affect slaves' attractiveness to citizens` }, ], -- GitLab