diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index f5227f5593c6e1a71547bdc63c4c1c3b0cad8f9f..9a27b54cf028483234c95b6221f092f6e59338df 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -4346,8 +4346,7 @@ if(eventSlave.fetish != "mindbroken") { if(eventSlave.devotion < -20) { if(eventSlave.trust > -20) { if(eventSlave.health > -20) { - var toSearch = eventSlave.race; - if(toSearch.indexOf("surgically") == -1) { + if(eventSlave.race == eventSlave.origRace) { if(eventSlave.indentureRestrictions < 1) { State.variables.RESSevent.push("subjugation blues"); } @@ -5905,8 +5904,7 @@ if(eventSlave.fetish != "mindbroken") { if(eventSlave.devotion < -20) { if(eventSlave.trust > -20) { if(eventSlave.health > -20) { - var toSearch = eventSlave.race; - if(toSearch.indexOf("surgically") == -1) { + if(eventSlave.race == eventSlave.origRace) { if(eventSlave.indentureRestrictions < 1) { State.variables.RESSevent.push("subjugation blues"); } @@ -29079,7 +29077,7 @@ window.disabilityRoll = function disabilityRoll(slave) { disList.push("seeNot"); disList.push("speakNot"); let disableCount = 0; - if (V.oneTimeDisableDisability === 1) { + if (V.oneTimeDisableDisability === 0) { while (disList.length > 0) { let rolled = jsEither(disList); switch (rolled) { diff --git a/src/js/slaveGenerationJS.tw b/src/js/slaveGenerationJS.tw index 0b1b39555af832ffb55c6ab76a8144c07f92df78..7e2ecd8a62d2a693102615a7b032a6effea02957 100644 --- a/src/js/slaveGenerationJS.tw +++ b/src/js/slaveGenerationJS.tw @@ -1270,7 +1270,7 @@ window.disabilityRoll = function disabilityRoll(slave) { disList.push("seeNot"); disList.push("speakNot"); let disableCount = 0; - if (V.oneTimeDisableDisability === 1) { + if (V.oneTimeDisableDisability === 0) { while (disList.length > 0) { let rolled = jsEither(disList); switch (rolled) { diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index b11169f717524b6c8f87f8968fdab174a946a882..9aa09fa2d2e546ed06b39d6943aefd6cd4f3353b 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -81,11 +81,11 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if $seeRace == 1>> <<if $activeSlave.race != $activeSlave.origRace>> - A blood test reveals that $he was originally $activeSlave.origRace, not $activeSlave.race<<if $PC.medicine >= 90 || $PC.career == "medicine">>, just as you suspected<</if>>. + A blood test reveals that $he was originally $activeSlave.origRace, not $activeSlave.race<<if $PC.medicine >= 50 || $PC.slaving >= 50>>, just as you suspected<</if>>. <</if>> <</if>> <<if $activeSlave.race != $activeSlave.origRace>> - An epidermis scan reveals that $his skin was originally $activeSlave.origSkin, not $activeSlave.skin<<if $PC.medicine >= 100 || $PC.career == "medicine">>, just as you suspected<</if>>. + An epidermis scan reveals that $his skin was originally $activeSlave.origSkin, not $activeSlave.skin<<if $PC.medicine >= 75 || $PC.slaving >= 75>>, just as you suspected<</if>>. <</if>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 4679265cf58c08c7f67340a76cd5c705a2fa3b5a..8909320e9fa7f494138c867e24ff05c0124f4f1c 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -14150,17 +14150,21 @@ $He has <<if $saleDescription == 1>> <<if ($seeRace == 1)>> <<if $activeSlave.race != $activeSlave.origRace>> - <<if $PC.medicine >= 90 || $PC.career == "medicine">> + <<if $PC.slaving >= 50>> + Thanks to your experience in buying and selling slaves, you can easily tell that $he has recieved plastic surgery to appear <<print $activeSlave.race>>; $his original race is currently unknown to you. + <<elseif $PC.medicine >= 50>> Thanks to your medical experience, you can easily tell that $he has recieved plastic surgery to appear <<print $activeSlave.race>>; $his original race is currently unknown to you. - <<elseif $PC.medicine >= 70>> + <<elseif $PC.medicine >= 30 || $PC.slaving >= 30>> Something about some of $his more obviously <<print $activeSlave.race>> features strikes you as odd. <</if>> <</if>> <</if>> <<if $activeSlave.skin != $activeSlave.origSkin>> - <<if $PC.medicine >= 100 || $PC.career == "medicine">> + <<if $PC.slaving >= 75>> + Thanks to your experience in buying and selling slaves, you can easily tell that $his skin has been treated to appear <<print $activeSlave.skin>>; $his original skin tone is currently unknown to you. + <<elseif $PC.medicine >= 75>> Thanks to your medical experience, you can easily tell that $his skin has been treated to appear <<print $activeSlave.skin>>; $his original skin tone is currently unknown to you. - <<elseif $PC.medicine >= 80>> + <<elseif $PC.medicine >= 55 || $PC.slaving >= 55>> Something about the coloring of $his <<print $activeSlave.skin>> skin strikes you as odd. <</if>> <</if>>