diff --git a/src/js/assayJS.js b/src/js/assayJS.js index 307a23ec7dffea8490a5cc1858ef25b5be7a7ddf..456dd4f3cdba83d5848ac159d00846efc6c7a8c2 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -172,29 +172,6 @@ globalThis.newSlave = function(slave) { } } - if (slave.dick > 0 && - slave.balls > 0 && - slave.devotion <= 50 && - (slave.fetish !== "buttslut" || slave.fetishKnown !== 1) && - slave.sexualFlaw !== "hates women") { - V.REFeminizationCheckinIDs.push(slave.ID); - } - if (slave.actualAge > 35 && slave.face <= 10 && slave.faceImplant === 0 && slave.energy <= 60) { - V.REMILFCheckinIDs.push(slave.ID); - } - if (slave.attrXY <= 35 && slave.attrXX > 65) { - V.REOrientationCheckinIDs.push(slave.ID); - } - if (slave.face < -10) { - V.REUglyCheckinIDs.push(slave.ID); - } - if (slave.anus < 2) { - V.REButtholeCheckinIDs.push(slave.ID); - } - if (slave.boobs < 800) { - V.REReductionCheckinIDs.push(slave.ID); - } - if (slave.genes === "XX") { if (slave.pubertyXX === 1) { if (slave.pubertyXY === 1) { @@ -225,6 +202,32 @@ globalThis.newSlave = function(slave) { } } + if (slave.dick > 0 && + slave.balls > 0 && + slave.vagina < 0 && + slave.anus === 0 && + slave.genes === "XY" && + slave.faceShape === "masculine" && + slave.attrXY <= 35 && + slave.hormoneBalance < 0 { + V.REFeminizationCheckinIDs.push(slave.ID); + } + if (slave.actualAge > 35 && slave.face <= 10 && slave.faceImplant === 0 && slave.energy <= 60) { + V.REMILFCheckinIDs.push(slave.ID); + } + if (slave.attrXY <= 35 && slave.attrXX > 65) { + V.REOrientationCheckinIDs.push(slave.ID); + } + if (slave.face < -10) { + V.REUglyCheckinIDs.push(slave.ID); + } + if (slave.anus < 2) { + V.REButtholeCheckinIDs.push(slave.ID); + } + if (slave.boobs < 800) { + V.REReductionCheckinIDs.push(slave.ID); + } + generatePronouns(slave); SetBellySize(slave); addSlave(slave);