From 6b10dab0a9c26a5cbe9afc23eca0cef2df5558b1 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Tue, 17 Sep 2019 21:11:48 +0200 Subject: [PATCH] use addProsthetic during slavecreation --- src/uncategorized/reRecruit.tw | 6 +++--- src/utility/slaveCreationWidgets.tw | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index eca94478351..d739ebe89f9 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -1715,7 +1715,7 @@ <<set $one_time_age_overrides_pedo_mode = 1>> <<set $oneTimeDisableDisability = 1>> <<set $activeSlave = GenerateNewSlave("XX")>> -<<run attachLimbs($activeSlave, "all", 2)>> +<<run attachLimbs($activeSlave, "all", 2), addProsthetic($activeSlave, "basicL"), $activeSlave.PLimb = 1>> <<set $activeSlave.origin = "You helped free $him from a POW camp after being abandoned by $his country, leaving $him deeply indebted to you.">> <<set $activeSlave.devotion = random(0,20)>> <<set $activeSlave.trust = random(0,20)>> @@ -1793,7 +1793,7 @@ <<set $activeSlave.weight = random(-11 -30)>> <<set $activeSlave.waist = random(-11, -40)>> <<set $activeSlave.skill.combat = 1>> -<<run attachLimbs($activeSlave, "all", 6)>> +<<run attachLimbs($activeSlave, "all", 6), addProsthetic($activeSlave, "cyberneticL"), $activeSlave.PLimb = 2>> <<set $activeSlave.teeth = "pointy">> <<set $activeSlave.muscles = random(30,70)>> <<set $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]}))>> @@ -2406,7 +2406,7 @@ While digging through the database of a POW camp for anything of value, you find <<if $seeExtreme == 1>> the traces of $his wounds, that $he has been greatly modified for war, and that $he had been raped, repeatedly, despite $his powerful body. <<set $activeSlave.teeth = "pointy", $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.chem = 1000, $activeSlave.attrXX = 0, $activeSlave.attrXY = 0>> - <<run attachLimbs($activeSlave, "all", 6)>> + <<run attachLimbs($activeSlave, "all", 6), addProsthetic($activeSlave, "cyberneticL"), $activeSlave.PLimb = 2>> <<else>> the traces of $his wounds, that $he had been left bound long enough for $his body to atrophy, and that $he had been raped, repeatedly. <</if>> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index da88fcf7a38..574e787bdfc 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -802,7 +802,7 @@ <<case "Bodyguard">> <<set $activeSlave.devotion = 90, $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.weight = random(-10,10), $activeSlave.teeth = either("normal", "pointy"), $activeSlave.skill.combat = 1>> <<if jsRandom(0, 2) === 0>> - <<run attachLimbs($activeSlave, "all", 5)>> + <<run attachLimbs($activeSlave, "all", 5), addProsthetic($activeSlave, "combatL"), $activeSlave.PLimb = 1>> <</if>> <<set $activeSlave.career = either("a bodyguard", "a kunoichi", "a law enforcement officer", "a military brat", "a revolutionary", "a soldier", "a transporter", "an assassin", "in a militia")>> <<case "Wardeness">> -- GitLab