From 20ffde4963a2c797bdfb07d2f9a60d535136bb6e Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Tue, 18 Aug 2020 03:27:25 -0400 Subject: [PATCH] Handle gender radicalism ball worth + fill in missing sellSlave gap --- src/js/slaveCostJS.js | 2 +- src/uncategorized/sellSlave.tw | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index 3928d8c7b03..eba9c24062e 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -2458,7 +2458,7 @@ globalThis.slaveCostBeauty = (function() { if (slave.dick > 0) { multiplier += 0.1; } - if (slave.balls > 0) { + if (slave.balls > 0 && arcology.FSGenderRadicalistLawFuta !== 2 && arcology.FSGenderRadicalistLawFuta !== 4) { multiplier -= 0.1; } } diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw index c3ace087078..4bf00b2634a 100644 --- a/src/uncategorized/sellSlave.tw +++ b/src/uncategorized/sellSlave.tw @@ -679,6 +679,14 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu Slaves with cocks and balls appraise quite well, thanks to your leadership on gender. <</if>> <</if>> + <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 4>> + <<if $activeSlave.boobs <= 400>> + <<if $activeSlave.dick > 0 && $activeSlave.dick < 3>> + <<if $activeSlave.balls > 0 && $activeSlave.balls < 3>> + Slaves with such cute little parts appraise quite well, thanks to your leadership on gender. + <</if>> + <</if>> + <</if>> <<else>> <<if $activeSlave.butt >= 5>> <<if $activeSlave.anus >= 2>> -- GitLab