diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt index 052d6e8686eab3f9062e362c17dee8597cef5ef5..d212df8d2680677952047f937adcd80c4fb56e1c 100644 --- a/devNotes/Useful JS Function Documentation.txt +++ b/devNotes/Useful JS Function Documentation.txt @@ -102,6 +102,8 @@ canSmell(slave) - Returns if the slave can smell. canTaste(slave) - Returns if the slave can taste. +canHold(slave) - Returns if the slave can use both arms. + canWalk(slave) - Returns if the slave can walk unassisted. canTalk(slave) - Returns if the slave can talk. diff --git a/player variables documentation - Pregmod.txt b/player variables documentation - Pregmod.txt index 3f5e48965366778a2d85785396349e50d2405258..89c7f7bbecddcde19bff0f01d1a50018de364a0d 100644 --- a/player variables documentation - Pregmod.txt +++ b/player variables documentation - Pregmod.txt @@ -362,7 +362,7 @@ eye: sclerae: your sclerae color - accepts string + accepts string origColor: @@ -448,7 +448,7 @@ counter: birthLab: how many designer babies you've produced - + birthFuta: how many babies you've had with the Futanari Sisters @@ -520,14 +520,14 @@ Used for compatibility. rules: living: - + Your starting expenses. Increases each NG+ until max. Keep in mind that this is in terms of an arcology owner. "spare" "normal" "luxurious" - + lactation: - + How you are handling your lactation? "none" "induce" diff --git a/src/004-base/facility.js b/src/004-base/facility.js index 30a76db6dd64ab801ac88b1e60036e568bd158ba..465475f98395b36a0d53a928ba156a241c8d07b4 100644 --- a/src/004-base/facility.js +++ b/src/004-base/facility.js @@ -230,7 +230,7 @@ App.Entity.Facilities.ManagingJob = class extends App.Entity.Facilities.Job { r.push(`${slave.slaveName} must be able to walk.`); } if (this.desc.shouldHold && !canHold(slave)) { - r.push(`${slave.slaveName} must be able to hold.`); + r.push(`${slave.slaveName} must be able to hold on to objects.`); } if (this.desc.shouldSee && !canSee(slave)) { r.push(`${slave.slaveName} must have working eyes.`); diff --git a/src/art/vector_revamp/vectorRevampedArtControl.js b/src/art/vector_revamp/vectorRevampedArtControl.js index e752bf9b8d273f37ba905b109c1079e93b37e514..668ec900ba3144637f116c9167166247ca610bf9 100644 --- a/src/art/vector_revamp/vectorRevampedArtControl.js +++ b/src/art/vector_revamp/vectorRevampedArtControl.js @@ -790,6 +790,9 @@ class RevampedArtControl { } else { leftArmType = "Mid"; } + if (!hasLeftArm(this.artSlave)) { + leftArmType= ""; + } return leftArmType; } @@ -808,6 +811,9 @@ class RevampedArtControl { } else { rightArmType = "Mid"; } + if (!hasRightArm(this.artSlave)) { + rightArmType= ""; + } return rightArmType; } @@ -904,8 +910,12 @@ class RevampedArtControl { if (!hasAnyArms(this.artSlave)) { result.push("Art_Vector_Revamp_Arm_Stump"); } else { - result.push(`Art_Vector_Revamp_Arm_Right_${this.rightArmType}`); - result.push(`Art_Vector_Revamp_Arm_Left_${this.leftArmType}`); + if (hasLeftArm(this.artSlave)) { + result.push(`Art_Vector_Revamp_Arm_Left_${this.leftArmType}`); + } + if (hasRightArm(this.artSlave)) { + result.push(`Art_Vector_Revamp_Arm_Right_${this.rightArmType}`); + } } if (this.showArmHair && (!hasAnyArms(this.artSlave) || (this.leftArmType === "High"))) { diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 9c51188ad5ce05fb1371e1c10a3508a781f6afc8..facff880b87c81cc60ecc9189f57748f016cabb0 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -1001,7 +1001,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef } else if (V.DJ.fetish === "mindbroken") { V.DJ = 0; V.unDJ = 3; - } else if (!canWalk(V.DJ)) { + } else if (!canWalk(V.DJ) || !canHold(V.DJ)) { V.DJ = 0; V.unDJ = 4; } else if (!canHear(V.DJ)) { diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js index f8ef71249b8b4630ad28eed0f12e27e462e6f555..1d2caecf448a4b2ed2b3460d0da7f41265868aa0 100644 --- a/src/js/eventSelectionJS.js +++ b/src/js/eventSelectionJS.js @@ -2,7 +2,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) { /* STANDARD EVENTS */ if (eventSlave.fetish !== "mindbroken") { - if (canWalk(eventSlave)) { + if (hasAnyArms(eventSlave) && hasAnyLegs(eventSlave)) { if (canTalk(eventSlave)) { if (State.variables.RECockmilkInterceptionIDs.length > 1 || (State.variables.RECockmilkInterceptionIDs.length === 1 && eventSlave.ID !== State.variables.RECockmilkInterceptionIDs[0])) { if (eventSlave.devotion > 20) { @@ -876,7 +876,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) { if (eventSlave.pubertyXX === 0) { if (eventSlave.preg === 0) { if (eventSlave.physicalAge + eventSlave.birthWeek / 52 >= eventSlave.pubertyAgeXX - 0.5) { - State.variables.RESSevent.push(...Array.from({length: 10}, i=>"first period")); + State.variables.RESSevent.push(...Array.from({length: 10}, () => "first period")); } } } @@ -885,7 +885,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) { if (eventSlave.balls > 0) { if (eventSlave.pubertyXY === 0) { if (eventSlave.physicalAge + eventSlave.birthWeek / 52 >= eventSlave.pubertyAgeXY - 0.5) { - State.variables.RESSevent.push(...Array.from({length: 10}, i=>"wet dreams")); + State.variables.RESSevent.push(...Array.from({length: 10}, () => "wet dreams")); } } } @@ -1567,7 +1567,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) { if (eventSlave.rules.release !== "restrictive" && eventSlave.rules.release !== "chastity") { if (eventSlave.dick > 4) { - if (hasAllLimbs(eventSlave)) { + if (hasAnyArms(eventSlave)) { if (canAchieveErection(eventSlave)) { if (eventSlave.belly < 10000) { if (eventSlave.chastityPenis !== 1) { @@ -1592,8 +1592,10 @@ window.generateRandomEventPoolStandard = function(eventSlave) { if (eventSlave.anus > 2) { if (eventSlave.fetish === "buttslut" || eventSlave.energy > 95) { if (eventSlave.fetish !== "none") { - if (canDoAnal(eventSlave)) { - State.variables.RESSevent.push("loose buttslut"); + if (canHold(eventSlave)) { + if (canDoAnal(eventSlave)) { + State.variables.RESSevent.push("loose buttslut"); + } } } } @@ -1749,7 +1751,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) { if (eventSlave.broodmother === 0) { if (eventSlave.counter.births > 10) { if (eventSlave.assignment === "whore" || eventSlave.assignment === "serve the public") { - if (hasAllLimbs(eventSlave)) { + if (!isAmputee(eventSlave)) { State.variables.events.push("RE legendary womb"); } } @@ -1827,7 +1829,7 @@ window.generateRandomEventPoolServant = function(eventSlave) { /* STANDARD EVENTS */ if (eventSlave.fetish !== "mindbroken") { - if (canWalk(eventSlave)) { + if (hasAnyArms(eventSlave) && hasAnyLegs(eventSlave)) { if (canTalk(eventSlave)) { if (State.variables.RECockmilkInterceptionIDs.length > 1 || (State.variables.RECockmilkInterceptionIDs.length === 1 && eventSlave.ID !== State.variables.RECockmilkInterceptionIDs[0])) { if (eventSlave.devotion > 20) { @@ -2764,7 +2766,7 @@ window.generateRandomEventPoolServant = function(eventSlave) { if (eventSlave.rules.release !== "restrictive" && eventSlave.rules.release !== "chastity") { if (eventSlave.dick > 4) { - if (hasAllLimbs(eventSlave)) { + if (hasAnyArms(eventSlave)) { if (canAchieveErection(eventSlave)) { if (eventSlave.belly < 10000) { if (eventSlave.chastityPenis !== 1) { @@ -2789,8 +2791,10 @@ window.generateRandomEventPoolServant = function(eventSlave) { if (eventSlave.anus > 2) { if (eventSlave.fetish === "buttslut" || eventSlave.energy > 95) { if (eventSlave.fetish !== "none") { - if (canDoAnal(eventSlave)) { - State.variables.RESSevent.push("loose buttslut"); + if (canHold(eventSlave)) { + if (canDoAnal(eventSlave)) { + State.variables.RESSevent.push("loose buttslut"); + } } } } diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index eb76d2dc85388c163892c7adb9cae2d63d68f561..4ab421f50cc3c3a9438f0211a8690f62d4149601 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -2372,6 +2372,9 @@ window.slaveCost = (function() { if (!canSee(slave)) { multiplier -= 0.2; } + if (slave.hears === -2) { + multiplier -= 0.1; + } } /** diff --git a/src/js/storyJS.js b/src/js/storyJS.js index 6eabe3a4e57b0a2bcafd2051d03eb08781a8fce5..02c5fda7d9ff97242496728e5be324eb0360f4bf 100644 --- a/src/js/storyJS.js +++ b/src/js/storyJS.js @@ -334,7 +334,7 @@ window.bodyguardSuccessorEligible = function(slave) { if (!slave) { return false; } - return (slave.devotion > 50 && slave.muscles >= 0 && slave.weight < 100 && slave.boobs < 8000 && slave.butt < 10 && slave.belly < 5000 && slave.balls < 10 && slave.dick < 10 && slave.preg < 20 && slave.fuckdoll === 0 && slave.fetish !== "mindbroken" && canWalk(slave)); + return (slave.devotion > 50 && slave.muscles >= 0 && slave.weight < 100 && slave.boobs < 8000 && slave.butt < 10 && slave.belly < 5000 && slave.balls < 10 && slave.dick < 10 && slave.preg < 20 && slave.fuckdoll === 0 && slave.fetish !== "mindbroken" && canWalk(slave) && canHold(slave) && canSee(slave) && canHear(slave)); }; window.ngUpdateGenePool = function(genePool = []) { diff --git a/src/uncategorized/coursingAssociation.tw b/src/uncategorized/coursingAssociation.tw index 0fec50db38c7f1bddfb8f0c47e39ba99928fe4ba..f0194d1818abee6c7be3e30e25a24f52a07fb816 100644 --- a/src/uncategorized/coursingAssociation.tw +++ b/src/uncategorized/coursingAssociation.tw @@ -24,6 +24,6 @@ The chasing slaves are known as lurchers, the term once used for the sighthounds <br><br>''Select a slave to course as a Lurcher:'' <br><br> <<= App.UI.SlaveList.slaveSelectionList( - s => $Lurcher.ID !== s.ID && canWalk(s) && s.fuckdoll === 0 && isSlaveAvailable(s), + s => $Lurcher.ID !== s.ID && canWalk(s) && canHold(s) && (canSee(s) || canHear(s)) && s.fuckdoll === 0 && isSlaveAvailable(s), (slave, index) => App.UI.DOM.passageLink(SlaveFullName(slave), 'Assign', () => { variables().i = index; }) )>> diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index f8479dde9a96ec616ffd7c69d74b851f12e624ef..670e1bc82a7714fb6c9c7384393943f0b071e090 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -2285,7 +2285,7 @@ $He is $He's literally full of <<if !hasAnyArms($activeSlave)>> aphrodisiacs, but is an amputee, so $he cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself, but only managing to stir up the aphrodisiacs contained in $his gut, strengthening their effects even more. - <<elseif ($activeSlave.chastityVagina)>> + <<elseif ($activeSlave.chastityAnus) || $activeSlave.chastityPenis || $activeSlave.chastityVagina>> aphrodisiacs, but is wearing a chastity belt and cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself, but only managing to stir up the aphrodisiacs contained in $his gut, strengthening their effects even more. <<elseif ($activeSlave.rules.release == "permissive" || $activeSlave.rules.release == "masturbation") && ($activeSlave.dick != 0) && ($activeSlave.vagina == -1)>> aphrodisiacs and is allowed to masturbate, so as $he stands before you $he rubs $his shaft with <<if hasBothArms($activeSlave)>>one hand while $he fingers $his anus with the other<<else>>$his hand<</if>>.<<if canPenetrate($activeSlave)>> $His cock is painfully erect.<</if>> $His frantic masturbation forces $his distended middle to jiggle obscenely, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more. @@ -2311,7 +2311,7 @@ $He is $He's swimming in <<if !hasAnyArms($activeSlave)>> aphrodisiacs, but is an amputee, so $he cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself. - <<elseif ($activeSlave.chastityVagina)>> + <<elseif ($activeSlave.chastityAnus) || $activeSlave.chastityPenis || $activeSlave.chastityVagina>> aphrodisiacs, but is wearing a chastity belt and cannot touch $himself. $He writhes with extreme sexual frustration, desperately trying to relieve $himself. <<elseif ($activeSlave.rules.release == "permissive" || $activeSlave.rules.release == "masturbation") && ($activeSlave.dick != 0) && ($activeSlave.vagina == -1)>> aphrodisiacs and is allowed to masturbate, so as $he stands before you $he rubs $his shaft with <<if hasBothArms($activeSlave)>>one hand while $he fingers $his anus with the other<<else>>$his hand<</if>>.<<if canPenetrate($activeSlave)>> $His cock is painfully erect.<</if>> @@ -2336,7 +2336,7 @@ $He is <<else>> <<if !hasAnyArms($activeSlave)>> $He's on aphrodisiacs, but is an amputee, so $he cannot touch $himself. $He writhes with sexual frustration. - <<elseif ($activeSlave.chastityVagina)>> + <<elseif ($activeSlave.chastityAnus) || $activeSlave.chastityPenis || $activeSlave.chastityVagina>> $He's on aphrodisiacs, but is wearing a chastity belt and cannot touch $himself. $He writhes with sexual frustration. <<elseif ($activeSlave.rules.release == "permissive" || $activeSlave.rules.release == "masturbation") && ($activeSlave.dick != 0) && ($activeSlave.vagina == -1)>> $He's on aphrodisiacs and is allowed to masturbate, so as $he obeys your commands $he idly rubs $his shaft with <<if hasBothArms($activeSlave)>>one hand while the other pinches a nipple<<else>>$his hand<</if>>. diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index 6565ff97e30d75e6cd77be126196364f66aae75c..5532899af8d6089acccbe9bee0c660648951a485 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -404,7 +404,7 @@ <<if ($Concubine != 0)>> <<if $fuckSlaves > 1>> - <<if canTalk($Concubine) && canSee($Concubine) && canHear($Concubine) && $Concubine.fetish != "mindbroken" && hasAllLimbs($Concubine)>> + <<if canTalk($Concubine) && canSee($Concubine) && canHear($Concubine) && $Concubine.fetish != "mindbroken" && canHold($Concubine) && canWalk($Concubine)>> <<set $events.push("PE headgirl concubine")>> <</if>> <</if>> diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw index f82ba3678cd1f11ef4c2ab2b4dfdc8a705496183..c0c34232f01a2fd8b55c61068b582c6932efb607 100644 --- a/src/uncategorized/slaveAssignmentsReport.tw +++ b/src/uncategorized/slaveAssignmentsReport.tw @@ -462,7 +462,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif !canTalk($HeadGirl)>> ''__@@.pink;$HeadGirl.slaveName@@__'' can't give slaves verbal orders @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> - <<elseif !canWalk($HeadGirl)>> + <<elseif !canWalk($HeadGirl) || !canHold($HeadGirl)>> ''__@@.pink;$HeadGirl.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <<elseif !canSee($HeadGirl)>> @@ -512,7 +512,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Recruiter.preg > 37 && $Recruiter.broodmother == 2>> ''__@@.pink;$Recruiter.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your recruiter any longer.@@ <<set $Recruiter = 0>> - <<elseif !canWalk($Recruiter)>> + <<elseif !canWalk($Recruiter) || !canHold($Recruiter)>> ''__@@.pink;$Recruiter.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your recruiter any more.@@<br> <<set $Recruiter = 0>> <<elseif !canSee($Recruiter)>> @@ -565,7 +565,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Milkmaid.preg > 37 && $Milkmaid.broodmother == 2>> ''__@@.pink;$Milkmaid.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your Milkmaid any longer.@@ <<set $Milkmaid = 0>> - <<elseif !canWalk($Milkmaid)>> + <<elseif !canWalk($Milkmaid) || !canHold($Milkmaid)>> ''__@@.pink;$Milkmaid.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Milkmaid any more.@@<br> <<set $Milkmaid = 0>> <<elseif !canSee($Milkmaid)>> @@ -586,7 +586,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Farmer.preg > 37 && $Farmer.broodmother == 2>> ''__@@.pink;$Farmer.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your Farmer any longer.@@ <<set $Farmer = 0>> - <<elseif !canWalk($Farmer)>> + <<elseif !canWalk($Farmer) || !canHold($Farmer)>> ''__@@.pink;$Farmer.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Farmer any more.@@<br> <<set $Farmer = 0>> <<elseif !canSee($Farmer)>> @@ -610,7 +610,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Stewardess.fetish == "mindbroken">> ''__@@.pink;$Stewardess.slaveName@@__'' is mindbroken @@.yellow;and cannot serve as your Stewardess any more.@@<br> <<set $Stewardess = 0>> - <<elseif !canWalk($Stewardess)>> + <<elseif !canWalk($Stewardess) || !canHold($Stewardess)>> ''__@@.pink;$Stewardess.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Stewardess any more.@@<br> <<set $Stewardess = 0>> <<elseif !canSee($Stewardess)>> @@ -646,7 +646,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <</if>> <<case "be the Wardeness">> <<set $Wardeness = $slaves[$i]>> - <<if !canWalk($Wardeness)>> + <<if !canWalk($Wardeness) || !canHold($Wardeness)>> ''__@@.pink;$Wardeness.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Wardeness any more.@@<br> <<set $Wardeness = 0>> <<elseif $Wardeness.preg > 37 && $Wardeness.broodmother == 2>> @@ -670,7 +670,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Attendant.preg > 37 && $Attendant.broodmother == 2>> ''__@@.pink;$Attendant.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your Attendant any longer.@@ <<set $Attendant = 0>> - <<elseif !canWalk($Attendant)>> + <<elseif !canWalk($Attendant) || !canHold($Attendant)>> ''__@@.pink;$Attendant.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Attendant any more.@@<br> <<set $Attendant = 0>> <<elseif !canHear($Attendant)>> @@ -688,7 +688,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Matron.preg > 37 && $Matron.broodmother == 2>> ''__@@.pink;$Matron.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your Matron any longer.@@ <<set $Matron = 0>> - <<elseif !canWalk($Matron)>> + <<elseif !canWalk($Matron) || !canHold($Matron)>> ''__@@.pink;$Matron.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Matron any more.@@<br> <<set $Matron = 0>> <<elseif !canHear($Matron)>> @@ -709,7 +709,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<elseif $Nurse.preg > 37 && $Nurse.broodmother == 2>> ''__@@.pink;$Nurse.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your Nurse any longer.@@ <<set $Nurse = 0>> - <<elseif !canWalk($Nurse)>> + <<elseif !canWalk($Nurse) || !canHold($Nurse)>> ''__@@.pink;$Nurse.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Nurse any more.@@<br> <<set $Nurse = 0>> <<elseif !canSee($Nurse)>> @@ -727,7 +727,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<if $Bodyguard.fetish == "mindbroken">> ''__@@.pink;$Bodyguard.slaveName@@__'' is mindbroken @@.yellow;and cannot safely serve as your bodyguard any more.@@<br> <<set $Bodyguard = 0>> - <<elseif !canWalk($Bodyguard)>> + <<elseif !canWalk($Bodyguard) || !canHold($Bodyguard)>> ''__@@.pink;$Bodyguard.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your bodyguard any more.@@<br> <<set $Bodyguard = 0>> <<elseif $Bodyguard.preg > 37 && $Bodyguard.broodmother == 2>> @@ -755,6 +755,9 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<if !canWalk($Lurcher)>> ''__@@.pink;$Lurcher.slaveName@@__'' is no longer able to run @@.yellow;and cannot course as a lurcher.@@<br> <<set $Lurcher = 0>> + <<elseif !canHold($Lurcher)>> + ''__@@.pink;$Lurcher.slaveName@@__'' is no longer able to catch the hares @@.yellow;and cannot course as a lurcher.@@<br> + <<set $Lurcher = 0>> <<elseif !canHear($Lurcher) && !canSee($Lurcher)>> ''__@@.pink;$Lurcher.slaveName@@__'' is no longer able to track the hares @@.yellow;and cannot course as a lurcher.@@<br> <<set $Lurcher = 0>> @@ -766,7 +769,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <</if>> <<if $fighterIDs.includes($slaves[$i])>> - <<if !canWalk($slaves[$i])>> + <<if !canWalk($slaves[$i]) || !canHold($slaves[$i])>> ''__@@.pink;$slaves[$i].slaveName@@__'' is no longer independently mobile @@.yellow;and cannot fight any more.@@ $He has been removed from $pitName roster<br>. <<set $fighterIDs.delete($slaves[$i].ID)>> <</if>> @@ -938,7 +941,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue <<set _HGPossibleSlaves[5].push({ID: _Slave.ID, training: "anal skill"})>> <<elseif (_Slave.skill.whoring < $HeadGirl.skill.whoring)>> <<set _HGPossibleSlaves[5].push({ID: _Slave.ID, training: "whore skill"})>> - <<elseif (_Slave.skill.entertainment < $HeadGirl.skill.entertainment) && hasAllLimbs(_Slave)>> + <<elseif (_Slave.skill.entertainment < $HeadGirl.skill.entertainment) && !isAmputee(_Slave)>> <<set _HGPossibleSlaves[5].push({ID: _Slave.ID, training: "entertain skill"})>> <</if>> <</if>> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 16d65537251b741fbb0f43fbdb46556238f0b426..e7a693a2c688221a950360fe35988e93826c1fe6 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -104,7 +104,7 @@ <<else>> <<switch $surgeryType>> - <<case "amp" "amp1" "blind" "fuckdoll" "mindbreak" "PLimb interface1" "PLimb interface2" "PLimb interface3" "remove eyes" "removeLimbs">> + <<case "amp" "amp1" "ampA2" "ampL2" "blind" "fuckdoll" "mindbreak" "PLimb interface1" "PLimb interface2" "PLimb interface3" "remove eyes" "removeLimbs">> <<set _ID = $activeSlave.ID>> <<if _ID == $Lurcher.ID>><<set $Lurcher = 0>><</if>> <<if _ID == $Recruiter.ID>><<set $Recruiter = 0>><</if>> @@ -1866,6 +1866,59 @@ As the remote surgery's long recovery cycle completes, $He exits the surgery on $his own two feet. $He's still sore, but the modern surgery is fast and effective, and $he can use $his restored legs immediately. $He gingerly stands on one foot, then the other; and even takes a few little hops. $He obviously confused, finding it surprising that you would go to the expense and trouble of repairing $him. As with all surgery @@.red;$his health has been slightly affected.@@ <</if>> +/* +<<case "ampA1">> + <<if $activeSlave.fetish == "mindbroken">> + You're there to help $him with the door as $he exits the surgery. $He smiles dumbly at your generosity, already seeming to forget $he ever had another arm. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 50)>> + You're there to help $him with the door as $he exits the surgery. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. After a short, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> the stump that was once $his arm, $he squares $his shoulders and resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 20)>> + You're there to help $him with the door as $he exits the surgery. Despite $his obedience, $he cries softly the whole time, the stump at $his shoulder occasionally moving as $he reflexively tries to grab at $himself and $his surroundings. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;immensely afraid@@ of your total power over $his body. + <<set $activeSlave.trust -= 8, $activeSlave.devotion -= 8>> + <<else>> + You're there to help $him with the door as $he exits the surgery. You had a good idea what $his reaction would be, so you've made sure to bind $his other arm<<if (hasAnyLegs($activeSlave))>> and $his leg<<if (hasBothLegs($activeSlave))>>s<</if>><</if>> to prevent $him from trying to attack you, and <<if ($activeSlave.teeth == "removable")>>remove $his teeth<<else>>muzzle $him<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through $his tears, hopelessly imploring the mirror to show $him something other than this<<else>>shoulder stump twitches pathetically with $his desperate efforts to move $his missing arm, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;incredibly and intensely terrified@@ of your total power over $his body. + <<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>> + <</if>> + +<<case "ampA2">> + <<if $activeSlave.fetish == "mindbroken">> + You're there to open the door for $him as $he exits the surgery. $He smiles dumbly at your generosity, already seeming to forget the sensation of touching. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 50)>> + You're there to open the door for $him as $he exits the surgery. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. After a short, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> the two stumps that were once $his arms, $he squares $his shoulders and resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 20)>> + You're there to open the door for $him as $he exits the surgery. Despite $his obedience, $he cries softly the whole time, $his shoulder stumps occasionally moving as $he reflexively tries to grab at $himself and $his surroundings. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;extremely afraid@@ of your total power over $his body. + <<set $activeSlave.trust -= 15, $activeSlave.devotion -= 15>> + <<else>> + You're there to open the door for $him as $he exits the surgery. You had a good idea what $his reaction would be, so you've made sure to bind $his leg<<if (hasBothLegs($activeSlave))>>s<</if>> to prevent $him from trying to attack you, and <<if ($activeSlave.teeth == "removable")>>remove $his teeth<<else>>muzzle $him<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through $his tears, hopelessly imploring the mirror to show $him something other than this<<else>>shoulder stumps twitch pathetically with $his desperate efforts to move $his arms, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;utterly and entirely terrified@@ of your total power over $his body. + <<set $activeSlave.trust -= 40, $activeSlave.devotion -= 40>> + <</if>> + +<<case "ampL1">> + <<if $activeSlave.fetish == "mindbroken">> + Of course, $he could not walk out of the surgery by $himself; you had to walk alongside $him. $He leans into you the entire time, already seeming to forget $he ever had another leg. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 50)>> + Of course, $he could not walk out of the surgery by $himself; you had to walk alongside $him. $He knows what a slave's life is, but $he did not really expect that it would involve this. After a brief, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> the stump that was once $his leg, $he squares $his shoulders and resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 20)>> + Of course, $he could not walk out of the surgery by $himself; you had to walk alongside $him. Despite $his obedience, $he cries softly the whole time, the stump at $his hip occasionally moving as $he reflexively tries to use it somehow. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;immensely afraid@@ of your total power over $his body. + <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>> + <<else>> + Of course, $he could not walk out of the surgery by $himself; you had to carry $him. You had a good idea what $his reaction would be, so you've made sure to bind $his other leg<<if (hasAnyArms($activeSlave))>> and $his arm<<if (hasBothArms($activeSlave))>>s<</if>><</if>> to prevent $him from trying to attack you, and <<if ($activeSlave.teeth == "removable")>>remove $his teeth<<else>>muzzle $him<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through $his tears, hopelessly imploring the mirror to show $him something other than this<<else>>leg stump twitches pathetically with $his desperate efforts to move $his missing leg, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;incredibly and intensely terrified@@ of your total power over $his body. + <<set $activeSlave.trust -= 15, $activeSlave.devotion -= 15>> + <</if>> + +<<case "ampL2">> + <<if $activeSlave.fetish == "mindbroken">> + Of course, $he could not walk out of the surgery; you carried $him. $He holds onto you the entire time, already seeming to forget the sensation of walking. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 50)>> + Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would involve this. After a brief, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> the two stumps that were once $his legs, $he squares $his shoulders and resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ + <<elseif ($activeSlave.devotion > 20)>> + Of course, $he could not walk out of the surgery; you carried $him. Despite $his obedience, $he cries softly the whole time, $his hip stumps occasionally moving as $he reflexively tries to stand up and walk around. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;extremely afraid@@ of your total power over $his body. + <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>> + <<else>> + Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what $his reaction would be, so you've made sure to bind $his arm<<if (hasBothArms($activeSlave))>>s<</if>> to prevent $him from trying to attack you, and <<if ($activeSlave.teeth == "removable")>>remove $his teeth<<else>>muzzle $him<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through $his tears, hopelessly imploring the mirror to show $him something other than this<<else>>hip stumps twitch pathetically with $his desperate efforts to move $his legs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;utterly and entirely terrified@@ of your total power over $his body. + <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 30>> + <</if>> +*/ <<case "amp">> <<set $nextButton = " ">> <<= App.Desc.limbChange().amputate($activeSlave, $oldLimbs, "Remote Surgery")>>