diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index f1d8dc058656a3441e3a52c88cc3eef351deef36..6bd184e948388cb8bb802d56f0f351039a6b3323 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -3206,6 +3206,32 @@ accepts int 1 - yes, comforting 2 - yes, terrifying +missingEyes: + +are eyes missing? + +0 - none +1 - yes, left +2 - yes, right +3 - yes, both + +missingArms: + +are arms missing? + +0 - none +1 - yes, left +2 - yes, right +3 - yes, both + +missingLegs: + +are legs missing? + +0 - none +1 - yes, left +2 - yes, right +3 - yes, both How to set up your own hero slave. diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index 8160a76068ef3f9203b9696fc77fcac0ada7faab..86be99d4af538b34a4fd82e83a87f712583d403b 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -101,6 +101,27 @@ <<if ndef $args[0].eyebrowFullness>> <<set $args[0].eyebrowFullness = "natural">> <</if>> +<<if ndef $args[0].missingEyes>> + <<if $args[0].eyes == -3>> + <<set $args[0].missingEyes = 3>> + <<else>> + <<set $args[0].missingEyes = 0>> + <</if>> +<</if>> +<<if ndef $args[0].missingArms>> + <<if $args[0].amp == 1>> + <<set $args[0].missingArms = 3>> + <<else>> + <<set $args[0].missingArms = 0>> + <</if>> +<</if>> +<<if ndef $args[0].missingLegs>> + <<if $args[0].amp == 1>> + <<set $args[0].missingLegs = 3>> + <<else>> + <<set $args[0].missingLegs = 0>> + <</if>> +<</if>> <<if def $args[0].prostateImplant>> <<if ($args[0].prostateImplant == 1)>> <<set $args[0].prostate = 3>> diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw index 46e24812093114564c6b48e660ae6b2d8f21ff7b..32e00e221eb45eafa5bd9d88594f53a2f89a3d08 100644 --- a/src/utility/extendedFamilyWidgets.tw +++ b/src/utility/extendedFamilyWidgets.tw @@ -4,7 +4,7 @@ /*testtest PC parent passage - determines if the current slave is your mother or father*/ <<if $activeSlave.ID == $PC.mother && $activeSlave.ID == $PC.father>> - She @@.lightgreen;is both your mother and father, $he impregnated $himself with you.@@ + $He @@.lightgreen;is both your mother and father;@@ $he impregnated $himself with you. <<elseif $activeSlave.ID == $PC.mother>> $He @@.lightgreen;is your mother.@@ <<elseif $activeSlave.ID == $PC.father>> @@ -13,18 +13,21 @@ <<if $activeSlave.father == -1 && $activeSlave.mother == -1>> $He's @@.lightgreen;your child;@@ you knocked yourself up and gave birth to $him. +<<elseif $activeSlave.father > 0 && $activeSlave.mother > 0 && $activeSlave.father == $activeSlave.mother>> + <<set _efw = $slaveIndices[$activeSlave.father]>> + $He was @@.lightgreen;both fathered and mothered by $slaves[_efw].slaveName.@@ <</if>> <<if $activeSlave.father == -1 && $activeSlave.mother != -1>> $He's @@.lightgreen;your child;@@ you knocked $his mother up. -<<elseif $activeSlave.father > 0>> +<<elseif $activeSlave.father > 0 && $activeSlave.father != $activeSlave.mother>> <<set _efw = $slaveIndices[$activeSlave.father]>> $He was @@.lightgreen;fathered by $slaves[_efw].slaveName's@@ virile dick. <</if>> <<if $activeSlave.father != -1 && $activeSlave.mother == -1>> $He's @@.lightgreen;your child;@@ you gave birth to $him. -<<elseif $activeSlave.mother > 0>> +<<elseif $activeSlave.mother > 0 && $activeSlave.father != $activeSlave.mother>> <<set _efw = $slaveIndices[$activeSlave.mother]>> $He was @@.lightgreen;born from $slaves[_efw].slaveName's@@ fertile womb. <</if>> @@ -63,61 +66,76 @@ /*testtest maternal grandma passage - determines if the current slave has a maternal grandmother*/ -<<set $i = $slaveIndices[$activeSlave.mother]>> -<<if def $i && $slaves[$i].ID != $activeSlave.ID>> - <<set $j = $slaveIndices[$slaves[$i].mother]>> - <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $His maternal @@.lightgreen;grandmother is $slaves[$j].slaveName.@@ - <</if>> -<<elseif $PC.ID == $activeSlave.mother>> - <<set $i = $slaveIndices[$PC.mother]>> - <<if def $i>> - $His maternal @@.lightgreen;grandmother is $slaves[$i].slaveName.@@ - <</if>> -<</if>> - -/*testtest maternal grandpa passage - determines if the current slave has a maternal grandfather*/ -<<set $i = $slaveIndices[$activeSlave.mother]>> -<<if def $i && $slaves[$i].ID != $activeSlave.ID>> - <<set $j = $slaveIndices[$slaves[$i].father]>> - <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $His maternal @@.lightgreen;grandfather is $slaves[$j].slaveName.@@ - <</if>> +<<set $mi = $slaveIndices[$activeSlave.mother]>> +<<set $fi = $slaveIndices[$activeSlave.father]>> +<<if def $mi>> + <<set $mmi = $slaveIndices[$slaves[$mi].mother]>> + <<set $fmi = $slaveIndices[$slaves[$mi].father]>> <<elseif $PC.ID == $activeSlave.mother>> - <<set $i = $slaveIndices[$PC.father]>> - <<if def $i>> - $His maternal @@.lightgreen;grandfather is $slaves[$i].slaveName.@@ - <</if>> + <<set $mmi = $slaveIndices[$PC.mother]>> + <<set $fmi = $slaveIndices[$PC.father]>> <</if>> - -/*testtest paternal grandma passage - determines if the current slave has a paternal grandmother*/ -<<set $i = $slaveIndices[$activeSlave.father]>> -<<if def $i && $slaves[$i].ID != $activeSlave.ID>> - <<set $j = $slaveIndices[$slaves[$i].mother]>> - <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $His paternal @@.lightgreen;grandmother is $slaves[$j].slaveName.@@ - <</if>> +<<if def $fi>> + <<set $mfi = $slaveIndices[$slaves[$fi].mother]>> + <<set $ffi = $slaveIndices[$slaves[$fi].father]>> <<elseif $PC.ID == $activeSlave.father>> - <<set $i = $slaveIndices[$PC.mother]>> - <<if def $i>> - $His paternal @@.lightgreen;grandmother is $slaves[$i].slaveName.@@ - <</if>> + <<set $mfi = $slaveIndices[$PC.mother]>> + <<set $ffi = $slaveIndices[$PC.father]>> <</if>> - -/*testtest paternal grandpa passage - determines if the current slave has a paternal grandfather*/ -<<set $i = $slaveIndices[$activeSlave.father]>> -<<if def $i && $slaves[$i].ID != $activeSlave.ID>> - <<set $j = $slaveIndices[$slaves[$i].father]>> - <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $His paternal @@.lightgreen;grandfather is $slaves[$j].slaveName.@@ +<<if (def $mi || def $fi) && ndef $mmi && ndef $fmi && ndef $mfi && ndef $ffi>> + <<if def $mi>> + <<if def $fi && $mi == $fi>> + <<if $PC.ID == $slaves[$mi].mother && $PC.ID == $slaves[$fi].father>> + $He is @@.lightgreen;your grandchild.@@ You impregnated yourself with $his sole biological parent. + <<elseif $PC.ID == $slaves[$mi].mother>> + $He is @@.lightgreen;your grandchild.@@ You gave birth to $his sole biological parent. + <<elseif $PC.ID == $slaves[$fi].father>> + $He is @@.lightgreen;your grandchild.@@ You fathered $his sole biological parent. + <</if>> + <<elseif def $fi && $PC.ID == $slaves[$mi].mother && $PC.ID == $slaves[$fi].mother>> + $He is @@.lightgreen;your grandchild.@@ You gave birth to both of $his parents. + <<elseif def $fi && $PC.ID == $slaves[$mi].father && $PC.ID == $slaves[$fi].father>> + $He is @@.lightgreen;your grandchild.@@ You fathered both of $his parents. + <<elseif $PC.ID == $slaves[$mi].mother>> + $He is @@.lightgreen;your grandchild.@@ You gave birth to $his mother. + <<elseif $PC.ID == $slaves[$mi].father>> + $He is @@.lightgreen;your grandchild.@@ You fathered $his mother. + <</if>> + <<elseif def $fi>> + <<if $PC.ID == $slaves[$fi].mother>> + $He is @@.lightgreen;your grandchild.@@ You gave birth to $his father. + <<elseif $PC.ID == $slaves[$fi].father>> + $He is @@.lightgreen;your grandchild.@@ You fathered $his father. + <</if>> <</if>> -<<elseif $PC.ID == $activeSlave.father>> - <<set $i = $slaveIndices[$PC.father]>> - <<if def $i>> - $His paternal @@.lightgreen;grandfather is $slaves[$i].slaveName.@@ +<<else>> + <<if def $mmi && def $ffi && $mmi == $ffi>> + $His sole @@.lightgreen;grandparent is $slaves[$mmi].slaveName.@@ + <<else>> + <<if def $mmi && def $mfi && $mmi == $mfi>> + $His sole @@.lightgreen;grandmother is $slaves[$mmi].slaveName.@@ + <<else>> + <<if def $mmi>> + $His maternal @@.lightgreen;grandmother is $slaves[$mmi].slaveName.@@ + <</if>> + <<if def $mfi>> + $His paternal @@.lightgreen;grandmother is $slaves[$mfi].slaveName.@@ + <</if>> + <</if>> + <<if def $fmi && def $ffi && $fmi == $ffi>> + $His sole @@.lightgreen;grandfather is $slaves[$ffi].slaveName.@@ + <<else>> + <<if def $fmi>> + $His maternal @@.lightgreen;grandfather is $slaves[$fmi].slaveName.@@ + <</if>> + <<if $ffi>> + $His paternal @@.lightgreen;grandfather is $slaves[$ffi].slaveName.@@ + <</if>> + <</if>> <</if>> <</if>> + /*testtest PC grandparents passage - determines if the current slave is your grandparent*/ <<set _pcMother = $slaveIndices[$PC.mother]>> <<set _pcFather = $slaveIndices[$PC.father]>> @@ -228,17 +246,17 @@ /*testtest PC uncle passage - determines how many uncles you have*/ <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID>> - <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> - <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].dick > 0 && $slaves[$j].genes == "XY">> - <<if areSisters($slaves[$j], $activeSlave) == 1 || areSisters($slaves[$j], $activeSlave) == 2>> - <<set $children.push($slaves[$j])>> - <</if>> + <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> + <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> + <<for $j = 0; $j < $slaves.length; $j++>> + <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].dick > 0 && $slaves[$j].genes == "XY">> + <<if areSisters($slaves[$j], $activeSlave) == 1 || areSisters($slaves[$j], $activeSlave) == 2>> + <<set $children.push($slaves[$j])>> + <</if>> + <</if>> + <</for>> <</if>> - <</for>> - <</if>> - <</if>> + <</if>> <</if>> <</for>> <<if $activeSlave.genes == "XY" && $children.length > 0>> @@ -257,11 +275,11 @@ <<elseif $children.length > 0>> <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">> - <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> - <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> - $He is @@.lightgreen;your uncle.@@ - <</if>> - <</if>> + <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> + <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> + $He is @@.lightgreen;your uncle.@@ + <</if>> + <</if>> <</if>> <</for>> <</if>> @@ -271,33 +289,33 @@ /*testtest aunt passage - determines how many aunts a slave has*/ <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID>> - <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$j].genes == "XX">> - <<if areSisters($slaves[$j], $slaves[$i]) == 1 || areSisters($slaves[$j], $slaves[$i]) == 2>> - <<set $children.push($slaves[$j])>> - <</if>> - <</if>> - <</for>> - <</if>> + <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> + <<for $j = 0; $j < $slaves.length; $j++>> + <<if $slaves[$j].genes == "XX">> + <<if areSisters($slaves[$j], $slaves[$i]) == 1 || areSisters($slaves[$j], $slaves[$i]) == 2>> + <<set $children.push($slaves[$j])>> + <</if>> + <</if>> + <</for>> + <</if>> <</if>> <</for>> <<if $children.length > 0>> $He -<<if $children.length > 2>> - has @@.lightgreen;many aunts, - <<for $j = 0; $j < $children.length; $j++>> - <<if $j < $children.length-1>> - $children[$j].slaveName, - <<else>> - and $children[$j].slaveName.@@ - <</if>> - <</for>> -<<elseif $children.length > 1>> - has @@.lightgreen;two aunts, $children[0].slaveName, and $children[1].slaveName.@@ -<<elseif $children.length > 0>> - has @@.lightgreen;an aunt, $children[0].slaveName.@@ -<</if>> + <<if $children.length > 2>> + has @@.lightgreen;many aunts, + <<for $j = 0; $j < $children.length; $j++>> + <<if $j < $children.length-1>> + $children[$j].slaveName, + <<else>> + and $children[$j].slaveName.@@ + <</if>> + <</for>> + <<elseif $children.length > 1>> + has @@.lightgreen;two aunts, $children[0].slaveName, and $children[1].slaveName.@@ + <<elseif $children.length > 0>> + has @@.lightgreen;an aunt, $children[0].slaveName.@@ + <</if>> <</if>> <<set $children = []>> @@ -317,113 +335,113 @@ <</for>> <<if $children.length > 0>> $He -<<if $children.length > 2>> - has @@.lightgreen;many uncles, - <<for $j = 0; $j < $children.length; $j++>> - <<if $j < $children.length-1>> - $children[$j].slaveName, - <<else>> - and $children[$j].slaveName.@@ - <</if>> - <</for>> -<<elseif $children.length > 1>> - has @@.lightgreen;two uncles, $children[0].slaveName, and $children[1].slaveName.@@ -<<elseif $children.length > 0>> - has @@.lightgreen;an uncle, $children[0].slaveName.@@ -<</if>> + <<if $children.length > 2>> + has @@.lightgreen;many uncles, + <<for $j = 0; $j < $children.length; $j++>> + <<if $j < $children.length-1>> + $children[$j].slaveName, + <<else>> + and $children[$j].slaveName.@@ + <</if>> + <</for>> + <<elseif $children.length > 1>> + has @@.lightgreen;two uncles, $children[0].slaveName, and $children[1].slaveName.@@ + <<elseif $children.length > 0>> + has @@.lightgreen;an uncle, $children[0].slaveName.@@ + <</if>> <</if>> <<set $children = []>> /*testtest PC niece passage - determines how many nieces you have*/ <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID>> - <<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>> - <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XX">> - <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> - <<set $children.push($slaves[$j])>> - <</if>> + <<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>> + <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> + <<for $j = 0; $j < $slaves.length; $j++>> + <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XX">> + <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> + <<set $children.push($slaves[$j])>> + <</if>> + <</if>> + <</for>> <</if>> - <</for>> - <</if>> - <</if>> + <</if>> <</if>> <</for>> <<if $activeSlave.genes == "XX" && $children.length > 0>> $He -<<if $children.length > 2>> - is @@.lightgreen;your niece along with - <<for $j = 0; $j < $children.length; $j++>> - <<if $j < $children.length-1>> - $children[$j].slaveName, - <<else>> - and $children[$j].slaveName.@@ - <</if>> - <</for>> -<<elseif $children.length > 1>> - is @@.lightgreen;your niece along with $children[0].slaveName.@@ -<<elseif $children.length > 0>> -<<for $i = 0; $i < $slaves.length; $i++>> - <<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XX">> - <<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>> - <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> - is @@.lightgreen;your niece.@@ - <</if>> - <</if>> + <<if $children.length > 2>> + is @@.lightgreen;your niece along with + <<for $j = 0; $j < $children.length; $j++>> + <<if $j < $children.length-1>> + $children[$j].slaveName, + <<else>> + and $children[$j].slaveName.@@ + <</if>> + <</for>> + <<elseif $children.length > 1>> + is @@.lightgreen;your niece along with $children[0].slaveName.@@ + <<elseif $children.length > 0>> + <<for $i = 0; $i < $slaves.length; $i++>> + <<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XX">> + <<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>> + <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> + is @@.lightgreen;your niece.@@ + <</if>> + <</if>> + <</if>> + <</for>> <</if>> -<</for>> -<</if>> <</if>> <<set $children = []>> /* testtest niece passage - determines how many nieces a slave has*/ <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID>> - <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XX">> - <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> - <<set $children.push($slaves[$j])>> - <</if>> - <</if>> - <</for>> - <</if>> + <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> + <<for $j = 0; $j < $slaves.length; $j++>> + <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XX">> + <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> + <<set $children.push($slaves[$j])>> + <</if>> + <</if>> + <</for>> + <</if>> <</if>> <</for>> <<if $children.length > 0>> $He -<<if $children.length > 2>> - has @@.lightgreen;many nieces, - <<for $j = 0; $j < $children.length; $j++>> - <<if $j < $children.length-1>> - $children[$j].slaveName, - <<else>> - and $children[$j].slaveName, who are your slaves.@@ - <</if>> - <</for>> -<<elseif $children.length > 1>> - has @@.lightgreen;two nieces, $children[0].slaveName, and $children[1].slaveName, who are your slaves.@@ -<<elseif $children.length > 0>> - has @@.lightgreen;a niece, $children[0].slaveName, who is your slave.@@ -<</if>> + <<if $children.length > 2>> + has @@.lightgreen;many nieces, + <<for $j = 0; $j < $children.length; $j++>> + <<if $j < $children.length-1>> + $children[$j].slaveName, + <<else>> + and $children[$j].slaveName, who are your slaves.@@ + <</if>> + <</for>> + <<elseif $children.length > 1>> + has @@.lightgreen;two nieces, $children[0].slaveName, and $children[1].slaveName, who are your slaves.@@ + <<elseif $children.length > 0>> + has @@.lightgreen;a niece, $children[0].slaveName, who is your slave.@@ + <</if>> <</if>> <<set $children = []>> /*testtest PC nephew passage - determines how many nephews you have*/ <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID>> - <<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>> - <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$i].genes == "XY">> - <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> - <<set $children.push($slaves[$j])>> - <</if>> + <<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>> + <<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>> + <<for $j = 0; $j < $slaves.length; $j++>> + <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$i].genes == "XY">> + <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> + <<set $children.push($slaves[$j])>> + <</if>> + <</if>> + <</for>> <</if>> - <</for>> - <</if>> - <</if>> + <</if>> <</if>> <</for>> <<if $activeSlave.genes == "XY" && $children.length > 0>> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index 6f4d66e39200224183407c9228bb535616d27b19..fb7b7c1b2ee6cd407039a250936e070a4979ad93 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -6,7 +6,7 @@ Called from Gen XX, Gen XY, CheatMode DB, InitNationalities. %/ <<widget "BaseSlave">> - <<set $activeSlave = {slaveName: "blank", slaveSurname: 0, birthName: "blank", birthSurname: 0, genes: "XX", pronoun: "she", possessive: "her", possessivePronoun: "hers", objectReflexive: "herself", object: "her", noun: "girl", weekAcquired: 0, origin: 0, career: 0, ID: 0, prestige: 0, pornFeed: 0, pornFame: 0, pornFameSpending: 0, pornPrestige: 0, pornPrestigeDesc: 0, pornFameType: "none", pornFocus: "none", pornTypeGeneral: 0, pornTypeFuckdoll: 0, pornTypeRape: 0, pornTypePreggo: 0, pornTypeBBW: 0, pornTypeGainer: 0, pornTypeStud: 0, pornTypeLoli: 0, pornTypeDeepThroat: 0, pornTypeStruggleFuck: 0, pornTypePainal: 0, pornTypeTease: 0, pornTypeRomantic: 0, pornTypePervert: 0, pornTypeCaring: 0, pornTypeUnflinching: 0, pornTypeSizeQueen: 0, pornTypeNeglectful: 0, pornTypeCumAddict: 0, pornTypeAnalAddict: 0, pornTypeAttentionWhore: 0, pornTypeBreastGrowth: 0, pornTypeAbusive: 0, pornTypeMalicious: 0, pornTypeSelfHating: 0, pornTypeBreeder: 0, pornTypeSub: 0, pornTypeCumSlut: 0, pornTypeAnal: 0, pornTypeHumiliation: 0, pornTypeBoobs: 0, pornTypeDom: 0, pornTypeSadist: 0, pornTypeMasochist: 0, pornTypePregnancy: 0, prestigeDesc: 0, recruiter: 0, relation: 0, relationTarget: 0, relationship: 0, relationshipTarget: 0, rivalry: 0, rivalryTarget: 0, subTarget: 0, father: 0, mother: 0, daughters: 0, sisters: 0, canRecruit: 0, choosesOwnAssignment: 0, assignment: "rest", assignmentVisible: 1, sentence: 0, training: 0, toyHole: "all her holes", indenture: -1, indentureRestrictions: 0, birthWeek: random(0,51), actualAge: 18, visualAge: 18, physicalAge: 18, ovaryAge: 18, ageImplant: 0, health: 0, minorInjury: 0, trust: 0, oldTrust: 0, devotion: 0, oldDevotion: 0, weight: 0, muscles: 0, height: 170, heightImplant: 0, nationality: "slave", race: "white", origRace: "white", markings: "none", eyes: 1, eyeColor: "brown", origEye: "brown", pupil: "circular", sclerae: "white", eyewear: "none", hears: 0, earwear: "none", earImplant: 0, origHColor: "brown", hColor: "brown", pubicHColor: "brown", underArmHColor: "brown", eyebrowHColor: "brown", origSkin: "light", skin: "light", hLength: 60, eyebrowFullness: "natural", hStyle: "short", pubicHStyle: "neat", underArmHStyle: "neat", eyebrowHStyle: "natural", waist: 0, corsetPiercing: 0, PLimb: 0, amp: 0, heels:0, voice: 2, voiceImplant: 0, accent: 0, shoulders: 0, shouldersImplant: 0, boobs: 0, boobsImplant: 0, boobsImplantType: 0, boobShape: "normal", nipples: "cute", nipplesPiercing: 0, nipplesAccessory: 0, areolae: 0, areolaePiercing: 0, areolaeShape: "circle", boobsTat: 0, lactation: 0, lactationAdaptation: 0, milk: 0, cum: 0, hips: 0, hipsImplant: 0, butt: 0, buttImplant: 0, buttImplantType: 0, buttTat: 0, face: 0, faceImplant: 0, faceShape: "normal", lips: 15, lipsImplant: 0, lipsPiercing: 0, lipsTat: 0, teeth: "normal", tonguePiercing: 0, vagina: 0, vaginaLube: 0, vaginaPiercing: 0, vaginaTat: 0, preg: -1, pregSource: 0, pregType: 0, pregAdaptation: 50, broodmother: 0, broodmotherFetuses: 0, broodmotherOnHold: 0, broodmotherCountDown: 0, labor: 0, births: 0, cSec: 0, bellyAccessory: "none", labia: 0, clit: 0, clitPiercing: 0, clitSetting: "vanilla", foreskin: 0, anus: 0, dick: 0, analArea: 1, dickPiercing: 0, dickTat: 0, prostate: 0, balls: 0, scrotum: 0, ovaries: 0, anusPiercing: 0, anusTat: 0, makeup: 0, nails: 0, brand: 0, brandLocation: 0, earPiercing: 0, nosePiercing: 0, eyebrowPiercing: 0, navelPiercing: 0, shouldersTat: 0, armsTat: 0, legsTat: 0, backTat: 0, stampTat: 0, vaginalSkill: 0, oralSkill: 0, analSkill: 0, whoreSkill: 0, entertainSkill: 0, combatSkill: 0, livingRules: "spare", speechRules: "restrictive", releaseRules: "restrictive", relationshipRules: "restrictive", standardPunishment: "situational", standardReward: "situational", useRulesAssistant: 1, diet: "healthy", dietCum: 0, dietMilk: 0, tired: 0, hormones: 0, drugs: "no drugs", curatives: 0, chem: 0, aphrodisiacs: 0, addict: 0, fuckdoll: 0, choosesOwnClothes: 0, clothes: "no clothing", collar: "none", shoes: "none", vaginalAccessory: "none", dickAccessory: "none", legAccessory: "none", buttplug: "none", buttplugAttachment: "none", intelligence: 0, intelligenceImplant: 0, energy: 50, need: 0, attrXX: 0, attrXY: 0, attrKnown: 0, fetish: "none", fetishStrength: 70, fetishKnown: 0, behavioralFlaw: "none", behavioralQuirk: "none", sexualFlaw: "none", sexualQuirk: "none", oralCount: 0, vaginalCount: 0, analCount: 0, mammaryCount: 0, penetrativeCount: 0, publicCount: 0, pitKills: 0, customTat: "", customLabel: "", customDesc: "", customTitle: "", customTitleLisp: "", rudeTitle: 0, customImage: 0, currentRules: [], bellyTat: 0, induce: 0, mpreg: 0, inflation: 0, inflationType: "none", inflationMethod: 0, milkSource: 0, cumSource: 0, burst: 0, pregKnown: 0, pregWeek: 0, belly: 0, bellyPreg: 0, bellyFluid: 0, bellyImplant: -1, bellySag: 0, bellySagPreg: 0, bellyPain: 0, cervixImplant: 0, birthsTotal: 0, pubertyAgeXX: 13, pubertyAgeXY: 13, scars: 0, breedingMark: 0, bodySwap: 0, HGExclude: 0, ballType: "human", eggType: "human", reservedChildren: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], ageAdjust: 0, bald: 0, origBodyOwner: "", origBodyOwnerID: 0, death: "", hormoneBalance: 0, onDiet: 0, breastMesh: 0, slavesFathered: 0, PCChildrenFathered: 0, slavesKnockedUp: 0, PCKnockedUp: 0, origSkin: "white", vasectomy: 0, haircuts: 0, newGamePlus: 0, skillHG: 0, skillRC: 0, skillBG: 0, skillMD: 0, skillDJ: 0, skillNU: 0, skillTE: 0, skillAT: 0, skillST: 0, skillMM: 0, skillWA: 0, skillS: 0, skillE: 0, skillW: 0, tankBaby: 0, inducedNCS: 0, NCSyouthening: 0, override_Race: 0, override_Skin: 0, override_Eye_Color: 0, override_H_Color: 0, override_Pubic_H_Color: 0, override_Arm_H_Color: 0, override_Brow_H_Color: 0}>> + <<set $activeSlave = {slaveName: "blank", slaveSurname: 0, birthName: "blank", birthSurname: 0, genes: "XX", pronoun: "she", possessive: "her", possessivePronoun: "hers", objectReflexive: "herself", object: "her", noun: "girl", weekAcquired: 0, origin: 0, career: 0, ID: 0, prestige: 0, pornFeed: 0, pornFame: 0, pornFameSpending: 0, pornPrestige: 0, pornPrestigeDesc: 0, pornFameType: "none", pornFocus: "none", pornTypeGeneral: 0, pornTypeFuckdoll: 0, pornTypeRape: 0, pornTypePreggo: 0, pornTypeBBW: 0, pornTypeGainer: 0, pornTypeStud: 0, pornTypeLoli: 0, pornTypeDeepThroat: 0, pornTypeStruggleFuck: 0, pornTypePainal: 0, pornTypeTease: 0, pornTypeRomantic: 0, pornTypePervert: 0, pornTypeCaring: 0, pornTypeUnflinching: 0, pornTypeSizeQueen: 0, pornTypeNeglectful: 0, pornTypeCumAddict: 0, pornTypeAnalAddict: 0, pornTypeAttentionWhore: 0, pornTypeBreastGrowth: 0, pornTypeAbusive: 0, pornTypeMalicious: 0, pornTypeSelfHating: 0, pornTypeBreeder: 0, pornTypeSub: 0, pornTypeCumSlut: 0, pornTypeAnal: 0, pornTypeHumiliation: 0, pornTypeBoobs: 0, pornTypeDom: 0, pornTypeSadist: 0, pornTypeMasochist: 0, pornTypePregnancy: 0, prestigeDesc: 0, recruiter: 0, relation: 0, relationTarget: 0, relationship: 0, relationshipTarget: 0, rivalry: 0, rivalryTarget: 0, subTarget: 0, father: 0, mother: 0, daughters: 0, sisters: 0, canRecruit: 0, choosesOwnAssignment: 0, assignment: "rest", assignmentVisible: 1, sentence: 0, training: 0, toyHole: "all her holes", indenture: -1, indentureRestrictions: 0, birthWeek: random(0,51), actualAge: 18, visualAge: 18, physicalAge: 18, ovaryAge: 18, ageImplant: 0, health: 0, minorInjury: 0, trust: 0, oldTrust: 0, devotion: 0, oldDevotion: 0, weight: 0, muscles: 0, height: 170, heightImplant: 0, nationality: "slave", race: "white", origRace: "white", markings: "none", eyes: 1, eyeColor: "brown", origEye: "brown", pupil: "circular", sclerae: "white", eyewear: "none", hears: 0, earwear: "none", earImplant: 0, origHColor: "brown", hColor: "brown", pubicHColor: "brown", underArmHColor: "brown", eyebrowHColor: "brown", origSkin: "light", skin: "light", hLength: 60, eyebrowFullness: "natural", hStyle: "short", pubicHStyle: "neat", underArmHStyle: "neat", eyebrowHStyle: "natural", waist: 0, corsetPiercing: 0, PLimb: 0, amp: 0, heels:0, voice: 2, voiceImplant: 0, accent: 0, shoulders: 0, shouldersImplant: 0, boobs: 0, boobsImplant: 0, boobsImplantType: 0, boobShape: "normal", nipples: "cute", nipplesPiercing: 0, nipplesAccessory: 0, areolae: 0, areolaePiercing: 0, areolaeShape: "circle", boobsTat: 0, lactation: 0, lactationAdaptation: 0, milk: 0, cum: 0, hips: 0, hipsImplant: 0, butt: 0, buttImplant: 0, buttImplantType: 0, buttTat: 0, face: 0, faceImplant: 0, faceShape: "normal", lips: 15, lipsImplant: 0, lipsPiercing: 0, lipsTat: 0, teeth: "normal", tonguePiercing: 0, vagina: 0, vaginaLube: 0, vaginaPiercing: 0, vaginaTat: 0, preg: -1, pregSource: 0, pregType: 0, pregAdaptation: 50, broodmother: 0, broodmotherFetuses: 0, broodmotherOnHold: 0, broodmotherCountDown: 0, labor: 0, births: 0, cSec: 0, bellyAccessory: "none", labia: 0, clit: 0, clitPiercing: 0, clitSetting: "vanilla", foreskin: 0, anus: 0, dick: 0, analArea: 1, dickPiercing: 0, dickTat: 0, prostate: 0, balls: 0, scrotum: 0, ovaries: 0, anusPiercing: 0, anusTat: 0, makeup: 0, nails: 0, brand: 0, brandLocation: 0, earPiercing: 0, nosePiercing: 0, eyebrowPiercing: 0, navelPiercing: 0, shouldersTat: 0, armsTat: 0, legsTat: 0, backTat: 0, stampTat: 0, vaginalSkill: 0, oralSkill: 0, analSkill: 0, whoreSkill: 0, entertainSkill: 0, combatSkill: 0, livingRules: "spare", speechRules: "restrictive", releaseRules: "restrictive", relationshipRules: "restrictive", standardPunishment: "situational", standardReward: "situational", useRulesAssistant: 1, diet: "healthy", dietCum: 0, dietMilk: 0, tired: 0, hormones: 0, drugs: "no drugs", curatives: 0, chem: 0, aphrodisiacs: 0, addict: 0, fuckdoll: 0, choosesOwnClothes: 0, clothes: "no clothing", collar: "none", shoes: "none", vaginalAccessory: "none", dickAccessory: "none", legAccessory: "none", buttplug: "none", buttplugAttachment: "none", intelligence: 0, intelligenceImplant: 0, energy: 50, need: 0, attrXX: 0, attrXY: 0, attrKnown: 0, fetish: "none", fetishStrength: 70, fetishKnown: 0, behavioralFlaw: "none", behavioralQuirk: "none", sexualFlaw: "none", sexualQuirk: "none", oralCount: 0, vaginalCount: 0, analCount: 0, mammaryCount: 0, penetrativeCount: 0, publicCount: 0, pitKills: 0, customTat: "", customLabel: "", customDesc: "", customTitle: "", customTitleLisp: "", rudeTitle: 0, customImage: 0, currentRules: [], bellyTat: 0, induce: 0, mpreg: 0, inflation: 0, inflationType: "none", inflationMethod: 0, milkSource: 0, cumSource: 0, burst: 0, pregKnown: 0, pregWeek: 0, belly: 0, bellyPreg: 0, bellyFluid: 0, bellyImplant: -1, bellySag: 0, bellySagPreg: 0, bellyPain: 0, cervixImplant: 0, birthsTotal: 0, pubertyAgeXX: 13, pubertyAgeXY: 13, scars: 0, breedingMark: 0, bodySwap: 0, HGExclude: 0, ballType: "human", eggType: "human", reservedChildren: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], ageAdjust: 0, bald: 0, origBodyOwner: "", origBodyOwnerID: 0, death: "", hormoneBalance: 0, onDiet: 0, breastMesh: 0, slavesFathered: 0, PCChildrenFathered: 0, slavesKnockedUp: 0, PCKnockedUp: 0, origSkin: "white", vasectomy: 0, haircuts: 0, newGamePlus: 0, skillHG: 0, skillRC: 0, skillBG: 0, skillMD: 0, skillDJ: 0, skillNU: 0, skillTE: 0, skillAT: 0, skillST: 0, skillMM: 0, skillWA: 0, skillS: 0, skillE: 0, skillW: 0, tankBaby: 0, inducedNCS: 0, NCSyouthening: 0, override_Race: 0, override_Skin: 0, override_Eye_Color: 0, override_H_Color: 0, override_Pubic_H_Color: 0, override_Arm_H_Color: 0, override_Brow_H_Color: 0, missingEyes: 0, missingArms: 0, missingLegs: 0}>> <</widget>> /%