Skip to content
Snippets Groups Projects
startingGirls.tw 89.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • :: Starting Girls [nobr]
    
    <<if $showStartingGirlsExplanation == 1>>
    
    Your Name's avatar
    Your Name committed
    	You're no stranger to the Free Cities, which means you're no stranger to slavery. If you wish, you can bring slaves from your past life with you to your arcology. You have <<print cashFormat($cash)>>; you can spend it on slaves here, or bring it with you to start the game. Slaves created here will be much cheaper than if they were purchased on the market.
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if ($PC.dick == 1) && ($PC.vagina == 1) && ($seeDicks != 0 || $makeDicks == 1)>>
    
    Pregmodder's avatar
    Pregmodder committed
    		Since you have both a penis and a vagina yourself, you've obviously had access to a source of advanced surgery and organ farming. @@.springgreen;Slaves get a smaller cost increase here for having both penises and vaginas, and for having both testicles and ovaries.@@
    
    	<</if>>
    	<<if $slaves.length == 1>>
    		You have one slave already committed.
    	<<elseif $slaves.length > 1>>
    		You have $slaves.length slaves already committed.
    	<</if>>
    <<else>>
    
    Your Name's avatar
    Your Name committed
    	You have <<print cashFormat($cash)>> remaining and have
    
    	<<if $slaves.length == 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    	one slave already committed.
    
    	<<elseif $slaves.length > 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    	$slaves.length slaves already committed.
    
    	<</if>>
    <</if>>
    
    <<if $startingGirlCopied == 1>>
    
    	<<set _tempSlave = clone($activeSlave), $activeSlave = $slaveWithoutBonuses>>
    	<<set $activeSlave.ID = $IDNumber++>>
    	<<if $startingGirlRelation>>
    		<<if $familyTesting == 1>>
    			/*
    			<<switch $startingGirlRelation>>
    			<<case "mother">>
    				<<set $activeSlave.mother = _tempSlave.ID, $activeSlave.actualAge -= random(16,24)>>
    				<<set $activeSlave.father = 0>>
    			<<case "father">>
    				<<set $activeSlave.father = _tempSlave.ID, $activeSlave.actualAge -= random(16,24)>>
    				<<set $activeSlave.mother = 0>>
    			<<case "daughter">>
    				<<set $activeSlave.actualAge += random(16,24), $activeSlave.birthWeek = random(0,51)>>
    
    Pregmodder's avatar
    Pregmodder committed
    				<<if $activeSlave.vagina == 0>><<set $activeSlave.vagina++>><</if>>
    
    				<<if $activeSlave.ovaries == 0>><<set $activeSlave.vagina++>><</if>>
    				<<if $activeSlave.father < -2>> /% Find existing siblings. %/
    					<<for _i = 0; _i < $slaves.length; _i++>>
    						<<if $slaves[_i].father == $activeSlave.father>>
    							<<set $slaves[_i].mother = $activeSlave.ID>>
    						<</if>>
    					<</for>>
    				<</if>>
    				<<set $activeSlave.mother = 0, $activeSlave.father = 0>>
    			<<case "dickdaughter">>
    				<<set $activeSlave.actualAge += random(16,24), $activeSlave.birthWeek = random(0,51)>>
    				<<set $activeSlave.dick = Math.clamp($activeSlave.dick,2,10)>>
    				<<set $activeSlave.balls = Math.clamp($activeSlave.balls,2,10)>>
    				<<set $activeSlave.scrotum = Math.clamp($activeSlave.scrotum,2,10)>>
    				<<set $activeSlave.father = 0>>
    				<<if $activeSlave.mother < -2>> /% Find existing siblings. %/
    					<<for _i = 0; _i < $slaves.length; _i++>>
    						<<if $slaves[_i].mother == $activeSlave.mother>>
    							<<set $slaves[_i].father = $activeSlave.ID>>
    						<</if>>
    					<</for>>
    				<</if>>
    				<<set $activeSlave.mother = 0, $activeSlave.father = 0>>
    			<<case "older sister">>
    				<<set $activeSlave.actualAge += random(2,4)>>
    			<<case "younger sister">>
    				<<set $activeSlave.actualAge -= random(2,4)>>
    			<</switch>>
    			<<if $startingGirlRelation == "older sister" || $startingGirlRelation == "younger sister" || $startingGirlRelation == "twin">> /% Sibling parentage. If the previous slave has defined parentage, that's already shared with the new sibling via the clone. If not, a shared missing parent is applied. %/
    				<<if $activeSlave.mother == 0>>
    					<<set $activeSlave.mother = $missingParentID>>
    					<<set $missingParentID-->>
    					<<for _i = 0; _i < $slaves.length; _i++>><<if $slaves[_i].ID == _tempSlave.ID>><<set $slaves[_i].mother = $activeSlave.mother>><<break>><</if>><</for>>
    				<</if>>
    				<<if $activeSlave.father == 0>>
    					<<set $activeSlave.father = $missingParentID>>
    					<<set $missingParentID-->>
    					<<for _i = 0; _i < $slaves.length; _i++>><<if $slaves[_i].ID == _tempSlave.ID>><<set $slaves[_i].father = $activeSlave.father>><<break>><</if>><</for>>
    				<</if>>
    			<</if>>
    			<<if $activeSlave.mother && $activeSlave.father>> /% Propogate missing family information across existing slaves. Assumes monogamous reproduction, e.g. all sets of siblings have a pair of exclusive parents. %/
    				<<for _i = 0; _i < $slaves.length; _i++>>
    					<<if $slaves[_i].mother == $activeSlave.mother>>
    					<<if $slaves[_i].father == 0>>
    						<<set $slaves[_i].father = $activeSlave.father>>
    					<</if>>
    					<</if>>
    					<<if $slaves[_i].father == $activeSlave.father>>
    					<<if $slaves[_i].mother == 0>>
    						<<set $slaves[_i].mother = $activeSlave.mother>>
    					<</if>>
    					<</if>>
    				<</for>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<</if>>
    
    			*/
    		<<else>>
    			<<switch $startingGirlRelation>>
    			<<case "mother">>
    				<<set $activeSlave.relation = "daughter", $activeSlave.actualAge -= random(16,24)>>
    			<<case "daughter">>
    				<<set $activeSlave.relation = "mother", $activeSlave.actualAge += random(16,24)>>
    				<<if $activeSlave.vagina == 0>><<set $activeSlave.vagina++>><</if>>
    			<<case "older sister">>
    				<<set $activeSlave.relation = "sister", $activeSlave.actualAge += random(2,4)>>
    			<<case "younger sister">>
    				<<set $activeSlave.relation = "sister", $activeSlave.actualAge -= random(2,4)>>
    			<<default>>
    				<<set $activeSlave.relation = "twin">>
    			<</switch>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.relationTarget = _tempSlave.ID>>
    
    Pregmodder's avatar
    Pregmodder committed
    		<</if>>
    
    		<<if $startingGirlRelation != "twin">><<set $activeSlave.birthWeek = random(0,51)>><</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    		<<if $activeSlave.slaveSurname>><<set _familyName = $activeSlave.slaveSurname>><</if>>
    		<<if $activeSlave.birthSurname>><<set _familyBirthSurname = $activeSlave.birthSurname>><</if>>
    
    	<</if>>
    	<<set $activeSlave.visualAge = $activeSlave.actualAge>>
    	<<set $activeSlave.physicalAge = $activeSlave.actualAge>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<set $activeSlave.ovaryAge = $activeSlave.actualAge>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<NationalityToName $activeSlave>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if _familyName>><<set $activeSlave.slaveSurname = _familyName>><</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if _familyBirthSurname>><<set $activeSlave.birthSurname = _familyBirthSurname>><</if>>
    
    	<<set $activeSlave.slaveName = $activeSlave.birthName>>
    	<<if $activeSlave.attrKnown == 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    		<<set $activeSlave.attrXX = random(0,100)>>
    		<<set $activeSlave.attrXY = random(0,100)>>
    		<<set $activeSlave.energy = random(1,90)>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fetishKnown == 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    		<<set $activeSlave.fetishStrength = random(0,90)>>
    		<<set $activeSlave.fetish = either("none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "submissive", "cumslut", "humiliation", "buttslut", "boobs", "pregnancy", "dom", "sadist", "masochist")>>
    
    	<<set $startingGirlCopied = 0, $startingGirlRelation = 0>>
    
    <<elseif $archetyped == 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<NationalityToName $activeSlave>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<set $activeSlave.slaveName = $activeSlave.birthName, $archetyped = 0>>
    
    <</if>>
    
    __You are customizing this slave:__
    
    <<if $activeSlave == 0>>
    	<<StartingGirlsWorkaround>>
    <</if>>
    
    <<if ($activeSlave.balls == 0)>>
    	<<set $activeSlave.scrotum = 0>>
    <</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if ($activeSlave.vagina == -1)>>
    
    	<<set $activeSlave.vaginaLube = 0>>
    <</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if ($activeSlave.ovaries == 0)>>
    
    	<<set $activeSlave.preg = 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<set $activeSlave.belly = 0, $activeSlave.bellyPreg = 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<set $activeSlave.actualAge = Math.clamp($activeSlave.actualAge, $minimumSlaveAge, $retirementAge-1) || 18>>
    <<set $activeSlave.birthWeek = Math.clamp($activeSlave.birthWeek, 0, 51) || 0>>
    <<set $activeSlave.trust = Math.clamp($activeSlave.trust, -100, 100) || 0>>
    <<set $activeSlave.devotion = Math.clamp($activeSlave.devotion, -100, 100) || 0>>
    
    <<if $activeSlave.father == -1>>
    	<<if $PC.dick == 0>>
    		<<set $activeSlave.father = 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif ($PC.actualAge - $activeSlave.actualAge) < $minimumSlaveAge || (($PC.actualAge - $activeSlave.actualAge) < $potencyAge)>>
    
    		<<set $activeSlave.father = 0>>
    	<</if>>
    
    	<<if $saveImported == 1>>
    		<<set $activeSlave.father = 0>>
    	<</if>>
    
    <</if>>
    <<if $activeSlave.mother == -1>>
    	<<if $PC.vagina == 0>>
    		<<set $activeSlave.mother = 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif (($PC.actualAge - $activeSlave.actualAge) < $minimumSlaveAge) || (($PC.actualAge - $activeSlave.actualAge) < $fertilityAge)>>
    
    		<<set $activeSlave.mother = 0>>
    	<</if>>
    
    	<<if $saveImported == 1>>
    		<<set $activeSlave.mother = 0>>
    	<</if>>
    
    <</if>>
    /* this block makes starting girls actually apply the slave origins, mostly since it just hates you and everything you do */
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $originOveride == 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if $PC.career == "capitalist">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "To solidify an investment in hermaphrodite self-fertility, you took part in a test successful test trial. Nine months later your daughter was born.">>
    			<<set $activeSlave.customTat = "She has a famous corporate logo tattooed on the nape of her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "Sometimes it pays off to use your body in business deals, and other times you end up burdened with child. She is the result of the latter.">>
    			<<set $activeSlave.customTat = "She has a famous corporate logo tattooed on the nape of her neck.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "To seal a business deal, a client asked you to knock her up. She is the end result of that fling.">>
    			<<set $activeSlave.customTat = "She has a famous corporate logo tattooed on the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You acquired her in the last stages of your career as a successful venture capitalist.">>
    			<<set $activeSlave.customTat = "She has a famous corporate logo tattooed on the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "mercenary">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "Drugs and alcohol can be a potent mix; the night that followed it can sometimes be hard to remember. Needless to say, once your belly began swelling with her, you had to temporarily switch to a desk job for your mercanary group.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "Drugs and alcohol can be a potent mix; the night that followed it can sometimes be hard to remember. Needless to say, once your belly began swelling with her, you had to temporarily switch to a desk job for your mercanary group.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "A trip to a brothel after a mission resulted in an unexpected surprise years later.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You acquired her in the last stages of your career as a noted private military contractor.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "slaver">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You never thought you would be capable of impregnating yourself, but years of pleasuring yourself with yourself after missions managed to create her.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "A fresh capture once overpowered you and had his way with you. You kept her as a painful reminder to never lower your guard again.">>
    			<<set $activeSlave.customTat = "She has your tiny slaving emblem tattooed behind her left ear.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "Your slaving troope kept several girls as fucktoys, you sired her in your favorite.">>
    			<<set $activeSlave.customTat = "She has your tiny slaving emblem tattooed behind her left ear.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You enslaved her personally during the last stages of your slaving career.">>
    			<<set $activeSlave.customTat = "She has your tiny slaving emblem tattooed behind her left ear.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "engineer">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    fcanon's avatar
    fcanon committed
    			<<set $activeSlave.origin = "You sired her in yourself after an arcology owner, impressed by your work, rewarded you with a night you'll never forget.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has the geometric symbol of your old arcology engineering firm laser tattooed into the nape of her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    			<<set $activeSlave.origin = "You conceived her after a male arcology owner, impressed by your work, rewarded you with a night you'll never forget.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has the geometric symbol of your old arcology engineering firm laser tattooed into the nape of her neck.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You sired her after a female arcology owner, impressed by your work, rewarded you with a night you'll never forget.">>
    			<<set $activeSlave.customTat = "She has the geometric symbol of your old arcology engineering firm laser tattooed into the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You received her as a gift from an arcology owner impressed by your work.">>
    			<<set $activeSlave.customTat = "She has the geometric symbol of your old arcology engineering firm laser tattooed into the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "escort">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "A client paid you a large sum of credits to prove you could literally fuck yourself. She is the result of that lucrative night.">>
    			<<set $activeSlave.customTat = "She has your custom emblem tattooed on her left breast.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was the result of unprotected sex with a client. He paid you quite well to enjoy your body as you grew heavy with his child.">>
    			<<set $activeSlave.customTat = "She has the number of times her father came in you while you were pregnant with her tattooed down her back.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was the result of unprotected sex with a client. Her mother tracked you down years after her birth to force her upon you.">>
    			<<set $activeSlave.customTat = "She has your name angrily tattooed on her right shoulder.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was a fellow escort you were popular with.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your custom emblem tattooed on her left breast. She got the tattoo after starring in a porno with you.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "gang">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    			<<set $activeSlave.origin = "She was the result of a night of hard drugs and unprotected sex after a big score. It took quite abit of alcohol to come to terms with drunkenly knocking yourself up.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your former gang's sign tattooed on her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was the result of a night of hard drugs and unprotected sex after a big score.">>
    			<<set $activeSlave.customTat = "She has your former gang's sign tattooed on her neck.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was born from one of your sex toys you knocked up.">>
    			<<set $activeSlave.customTat = "She has your former gang's sign tattooed on her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You captured her during your transition to the arcology">>
    			<<set $activeSlave.customTat = "She has your former gang's sign tattooed on her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "servant">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "Your late master took pleasure in using his servants in creative ways. He inseminated you with your own sperm, and nine months later, your daughter was born.">>
    			<<set $activeSlave.customTat = "She has your master's brand on her left breast.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was another of your late master's servants. She spent nine months in your womb, courtesy of your master.">>
    			<<set $activeSlave.customTat = "She has your master's brand on her left breast.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was another of your late master's servants. Your master permited you to knock up her mother.">>
    			<<set $activeSlave.customTat = "She has your master's brand on her left breast.">>
    		<<elseif $PC.vagina == 1>>
    			<<set $activeSlave.origin = "She was another of your late master's servants. She helped you give birth to his child.">>
    			<<set $activeSlave.customTat = "She has your master's brand on her left breast.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was another of your late master's servants.">>
    			<<set $activeSlave.customTat = "She has your master's brand on her left breast.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "medicine">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    			<<set $activeSlave.origin = "She was conceived after a successful experiment in hermaphrodite self-reproduction.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your personal symbol tattooed on the back of her neck: it's invisible to the naked eye, but shows up starkly on medical imaging.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    			<<set $activeSlave.origin = "She was conceived after a botched birth control expirement early in your career.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your personal symbol tattooed on the back of her neck: it's invisible to the naked eye, but shows up starkly on medical imaging.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She is the product of an affair with a cute nurse who assisted you in more ways than one.">>
    			<<set $activeSlave.customTat = "She has your personal symbol tattooed on the back of her neck: it's invisible to the naked eye, but shows up starkly on medical imaging.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You kept her after her owner failed to pay your bill for performing surgery on her.">>
    			<<set $activeSlave.customTat = "She has your personal symbol tattooed on the back of her neck: it's invisible to the naked eye, but shows up starkly on medical imaging.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "celebrity">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    			<<set $activeSlave.origin = "She was conceived after a night of partying and a drunken bet. She nearly killed your career.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your signature, surrounded by hearts, tattooed on the back of her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    			<<set $activeSlave.origin = "She was conceived after a night of partying and a torn condom. She nearly killed your career.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your signature, surrounded by hearts, tattooed on the back of her neck.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    			<<set $activeSlave.origin = "She was conceived after a night of partying and a torn condom.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.customTat = "She has your signature, surrounded by hearts, tattooed on the back of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "She was one of your groupies during your celebrity career.">>
    			<<set $activeSlave.customTat = "She has your signature, surrounded by hearts, tattooed on the back of her neck. She got the tattoo when she was still free.">>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $PC.career == "wealth">>
    
    		<<if $activeSlave.mother == -1 && $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You bet your body on a sure hand, only to lose. It turns out you could fuck yourself, and not only that, get yourself pregnant.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a losing hand of cards on the nape of her neck.">>
    
    		<<elseif $activeSlave.mother == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You bet your body on a sure hand, only to lose. Nine months later, your daughter was born.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a losing hand of cards on the nape of her neck.">>
    
    		<<elseif $activeSlave.father == -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You won a sexual fling with her mother after winning at cards, a gamble that ultimately burdened you.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a poor hand of cards on the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    			<<set $activeSlave.origin = "You won her at cards, a memento from your life as one of the idle rich before you became an arcology owner.">>
    			<<set $activeSlave.customTat = "She has a small tattoo of a winning hand of cards on the nape of her neck.">>
    
    Pregmodder's avatar
    Pregmodder committed
    		<<set $activeSlave.origin = "You won her at cards, a memento from your life as one of the idle rich before you became an arcology owner.">>
    		<<set $activeSlave.customTat = "She has the silhouette of an arcology tattooed on the nape of her neck.">>
    
    <</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if $activeSlave.fetish == "mindbroken">>
    
    	<<if $activeSlave.amp != 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    		<<set $activeSlave.origin = "You brought her into the arcology mindbroken, little more than a walking collection of fuckable holes.">>
    
    Pregmodder's avatar
    Pregmodder committed
    		<<set $activeSlave.origin = "You brought her into the arcology mindbroken, little more than a human onahole.">>
    
    Pregmodder's avatar
    Pregmodder committed
    <<set $activeSlave.father = Number($activeSlave.father) || 0>>
    <<set $activeSlave.mother = Number($activeSlave.mother) || 0>>
    <<if ($activeSlave.anus > 2 && $activeSlave.analSkill <= 10) || ($activeSlave.anus == 0 && $activeSlave.analSkill > 30)>>
    
    	<<set $activeSlave.analSkill = 15>>
    <</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.vagina < 0>>
    
    	<<set $activeSlave.vaginalSkill = 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif ($activeSlave.vagina > 2 && $activeSlave.vaginalSkill <= 10) || ($activeSlave.vagina == 0 && $activeSlave.vaginalSkill > 30)>>
    	<<set $activeSlave.vaginalSkill = 15>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if ($activeSlave.intelligence + $activeSlave.intelligenceImplant > 2) && $activeSlave.entertainSkill <= 10>>
    
    	<<set $activeSlave.entertainSkill = 15>>
    <</if>>
    
    <<if $activeSlave.indenture >= 0>>
    	<<set $activeSlave.indenture = Math.clamp($activeSlave.indenture, 26, 208)>>
    <</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 50000) || 200>>
    
    <<set $activeSlave.visualAge = $activeSlave.actualAge>>
    <<set $activeSlave.physicalAge = $activeSlave.actualAge>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<set $activeSlave.ovaryAge = $activeSlave.actualAge>>
    
    <<set $activeSlave.canRecruit = 0>>
    
    <span id="slaveinfo">
    <<set $saleDescription = 1>>
    
    <<include "Long Slave Description">>
    
    <br>&nbsp;&nbsp;&nbsp;&nbsp;''<<link "Refresh">><<goto "Starting Girls">><</link>>''
    
    | <<link "Randomize career">>
    
    <<if ($activeSlave.actualAge < 16)>>
    
    fcanon's avatar
    fcanon committed
    	<<set $activeSlave.career = setup.veryYoungCareers.random()>>
    
    <<elseif ($activeSlave.actualAge <= 24)>>
    
    fcanon's avatar
    fcanon committed
    	<<set $activeSlave.career = setup.youngCareers.random()>>
    
    <<elseif ($activeSlave.intelligenceImplant == 1)>>
    
    fcanon's avatar
    fcanon committed
    	<<set $activeSlave.career = setup.educatedCareers.random()>>
    
    fcanon's avatar
    fcanon committed
    	<<set $activeSlave.career = setup.uneducatedCareers.random()>>
    
    <</if>>
    <<SaleDescription>>
    <<StartingGirlsCost>>
    
    | <<link "Randomize name">>
    
    Pregmodder's avatar
    Pregmodder committed
    <<NationalityToName $activeSlave>>
    
    <<set $activeSlave.slaveName = $activeSlave.birthName>>
    <<SaleDescription>>
    <<StartingGirlsCost>>
    
    
    | [[More customization options]]
    
    
    | <<link "Start over with a random slave">>
    
    <<set $fixedNationality = $nationalities.random()>>
    
    <<StartingGirlsWorkaround>>
    <<StartingGirlsRefresh>>
    <<SaleDescription>>
    <<StartingGirlsCost>>
    
    Pregmodder's avatar
    Pregmodder committed
    <hr>''Devotion:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.devotion < -95>>@@.darkviolet;Utterly hateful.@@
    <<elseif $activeSlave.devotion < -50>>@@.darkviolet;Hateful.@@
    <<elseif $activeSlave.devotion < -20>>@@.mediumorchid;Resistant.@@
    <<elseif $activeSlave.devotion <= 20>>@@.yellow;Ambivalent.@@
    <<elseif $activeSlave.devotion <= 50>>@@.hotpink;Accepting.@@
    <<elseif $activeSlave.devotion <= 95>>@@.deeppink;Devoted.@@
    <<else>>@@.magenta;Worshipful.@@
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Utterly hateful">><<set $activeSlave.devotion = -100>><<replace "#devotion">>@@.darkviolet;Utterly hateful.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Hateful">><<set $activeSlave.devotion = -70>><<replace "#devotion">>@@.darkviolet;Hateful.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Resistant">><<set $activeSlave.devotion = -35>><<replace "#devotion">>@@.mediumorchid;Resistant.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Ambivalent">><<set $activeSlave.devotion = 0>><<replace "#devotion">>@@.yellow;Ambivalent.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Accepting">><<set $activeSlave.devotion = 35>><<replace "#devotion">>@@.hotpink;Accepting.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Devoted">><<set $activeSlave.devotion = 70>><<replace "#devotion">>@@.deeppink;Devoted.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Worshipful">><<set $activeSlave.devotion = 100>><<replace "#devotion">>@@.magenta;Worshipful.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>>
    
    <<textbox "$activeSlave.devotion" $activeSlave.devotion "Starting Girls">>
    
    Pregmodder's avatar
    Pregmodder committed
    <span id="devotionWarning"></span>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Trust:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.trust < -95>>@@.goldenrod;Abjectly terrified.@@
    <<elseif $activeSlave.trust < -50>>@@.goldenrod;Terrified.@@
    <<elseif $activeSlave.trust < -20>>@@.gold;Frightened.@@
    <<elseif $activeSlave.trust <= 20>>@@.yellow;Fearful.@@
    <<elseif $activeSlave.trust <= 50>>@@.mediumaquamarine;Careful.@@
    <<elseif $activeSlave.trust <= 95>>@@.mediumseagreen;Trusting.@@
    <<else>>@@.seagreen;Absolute trust.@@
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Abjectly terrified">><<set $activeSlave.trust = -100>><<replace "#trust">>@@.goldenrod;Abjectly terrified.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Terrified">><<set $activeSlave.trust = -70>><<replace "#trust">>@@.goldenrod;Terrified.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Frightened">><<set $activeSlave.trust = -35>><<replace "#trust">>@@.gold;Frightened.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Fearful">><<set $activeSlave.trust = 0>><<replace "#trust">>@@.yellow;Fearful.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Careful">><<set $activeSlave.trust = 35>><<replace "#trust">>@@.mediumaquamarine;Careful.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Trusting">><<set $activeSlave.trust = 70>><<replace "#trust">>@@.mediumseagreen;Trusting.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Absolute trust">><<set $activeSlave.trust = 100>><<replace "#trust">>@@.seagreen;Absolute trust.@@<</replace>><<StartingGirlsCost>><</link>>
    
    <<textbox "$activeSlave.trust" $activeSlave.trust "Starting Girls">>
    
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Legal status:''
    
    <span id="legal">
    <<if $activeSlave.indenture > 0>>Indentured servant with <<textbox "$activeSlave.indenture" $activeSlave.indenture "Starting Girls">> weeks remaining.
    <<else>>Slave.
    <</if>>
    </span>
    
    <<link "Slave">><<set $activeSlave.indenture = -1, $activeSlave.indentureRestrictions = 0>><<replace "#legal">>Slave.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Indentured Servant">><<set $activeSlave.indenture = 52, $activeSlave.indentureRestrictions = 0>><<replace "#legal">>Indentured servant with <<textbox "$activeSlave.indenture" $activeSlave.indenture "Starting Girls">> weeks remaining.<</replace>><<StartingGirlsCost>><</link>>
    
    
    <<if $activeSlave.indenture > 0>>
    <span id="restrictions">
    <br>''Indenture restrictions:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.indentureRestrictions == 2>>Restrictive.
    
    <<elseif $activeSlave.indentureRestrictions == 1>>Protective.
    <<else>>None.
    <</if>>
    </span>
    
    <<link "Restrictive">><<set $activeSlave.indentureRestrictions = 2>><<replace "#restrictions">>Restrictive.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Protective">><<set $activeSlave.indentureRestrictions = 1>><<replace "#restrictions">>Protective.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "None">><<set $activeSlave.indentureRestrictions = 0>><<replace "#restrictions">>None.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Voice:''
    
    <span id="voice">
    <<if $activeSlave.voice == 0>>Mute.
    <<elseif $activeSlave.voice == 1>>Deep.
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.voice == 2>>Normal.
    <<elseif $activeSlave.voice == 3>>High.
    
    <<link "Mute">><<set $activeSlave.voice = 0>><<replace "#voice">>Mute.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Deep">><<set $activeSlave.voice = 1>><<replace "#voice">>Deep.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Normal">><<set $activeSlave.voice = 2>><<replace "#voice">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "High.">><<set $activeSlave.voice = 3>><<replace "#voice">>High.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.voice != 0>>
    	''$language:''
    	<<if $activeSlave.accent == 0>>Unaccented.
    	<<elseif $activeSlave.accent == 1>>Pretty $activeSlave.nationality accent.
    	<<elseif $activeSlave.accent == 2>>Thick $activeSlave.nationality accent.
    	<<else>>Not fluent.
    	<</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.voice != 0>>
    	<<link "Unaccented">><<set $activeSlave.accent = 0>><<replace "#language">>Unaccented.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Accent">><<set $activeSlave.accent = 1>><<replace "#language">>Pretty $activeSlave.nationality accent.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Heavy accent">><<set $activeSlave.accent = 2>><<replace "#language">>Thick $activeSlave.nationality accent.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Poor">><<set $activeSlave.accent = 3>><<replace "#language">>Not fluent.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Age:''
    
    <span id="age">
    <<textbox "$activeSlave.actualAge" $activeSlave.actualAge "Starting Girls">>
    </span>
    
    
    <span id="birthWeek">
    <<textbox "$activeSlave.birthWeek" $activeSlave.birthWeek "Starting Girls">>
    </span>
    
    
    &nbsp;&nbsp;&nbsp;&nbsp;
    ''Genes:''
    
    @@.yellow;<span id="originalSex">$activeSlave.genes.</span>@@&nbsp;
    <<link "XX">><<set $activeSlave.genes = "XX">><<replace "#originalSex">>$activeSlave.genes.<</replace>><</link>>
    
    <<link "XY">><<set $activeSlave.genes = "XY">><<replace "#originalSex">>$activeSlave.genes.<</replace>><</link>>
    
    <<if $familyTesting == 1>>
    
    fcanon's avatar
    fcanon committed
    	<<if $saveImported == 1>>//Player children are not available in NG+ due to code limitations (Since the player's background changes with ng+, consistency issues arise.)//
    
    	<<else>><br><<editFamily>>
    	<</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Health:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.health == -40>>@@.red;Unhealthy.@@
    <<elseif $activeSlave.health == 0>>@@.yellow;Healthy.@@
    <<elseif $activeSlave.health == 40>>@@.green;Very healthy.@@
    <<else>>@@.green;Extremely healthy.@@
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Unhealthy">><<set $activeSlave.health = -40>><<replace "#health">>@@.red;Unhealthy.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Healthy">><<set $activeSlave.health = 0>><<replace "#health">>@@.yellow;Healthy.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Very healthy">><<set $activeSlave.health = 40>><<replace "#health">>@@.green;Very healthy.@@<</replace>><<StartingGirlsCost>><</link>> |
     <<link "Extremely healthy">><<set $activeSlave.health = 80>><<replace "#health">>@@.green;Extremely healthy.@@<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    &nbsp;&nbsp;&nbsp;&nbsp;
    <<if $seeExtreme == 1>>
    ''Limbs:''
    <span id="amp">
    <<if $activeSlave.amp == 1>>Amputee.
    <<else>>Normal.
    <</if>>
    </span>
    <<link "Normal">><<set $activeSlave.amp = 0>><<replace "#amp">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Amputee">><<set $activeSlave.amp = 1>><<replace "#amp">>Amputee.<</replace>><<StartingGirlsCost>><</link>>
    <</if>>
    
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Muscles:''
    
    corncobman21's avatar
    corncobman21 committed
    <<if $activeSlave.muscles > 95>>
    	Ripped.
    <<elseif $activeSlave.muscles > 50>>
    	Quite muscular.
    <<elseif $activeSlave.muscles > 30>>
    	Well built.
    <<elseif $activeSlave.muscles > 5>>
    	Toned.
    <<elseif $activeSlave.muscles > -6>>
    	Normal.
    <<elseif $activeSlave.muscles > -31>>
    	Weak.
    <<elseif $activeSlave.muscles > -96>>
    	Very weak.
    <<else>>
    	Frail.
    
    corncobman21's avatar
    corncobman21 committed
    <<link "Frail">><<set $activeSlave.muscles = -97>><<replace "#muscles">>Frail.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Very weak">><<set $activeSlave.muscles = -66>><<replace "#muscles">>Very weak.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Weak">><<set $activeSlave.muscles = -41>><<replace "#muscles">>Rather weak.<</replace>><<StartingGirlsCost>><</link>> |
    
    <<link "Normal">><<set $activeSlave.muscles = 0>><<replace "#muscles">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Toned">><<set $activeSlave.muscles = 20>><<replace "#muscles">>Toned.<</replace>><<StartingGirlsCost>><</link>> |
    
    corncobman21's avatar
    corncobman21 committed
    <<link "Well built">><<set $activeSlave.muscles = 40>><<replace "#muscles">>Well built.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Muscular">><<set $activeSlave.muscles = 65>><<replace "#muscles">>Muscular.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Ripped">><<set $activeSlave.muscles = 96>><<replace "#muscles">>Ripped.<</replace>><<StartingGirlsCost>><</link>>
    
    &nbsp;&nbsp;&nbsp;&nbsp;
    ''Waist:''
    <span id="waist">
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.waist > 95>>Masculine.
    <<elseif $activeSlave.waist > 40>>Ugly.
    <<elseif $activeSlave.waist > 10>>Unattractive.
    <<elseif $activeSlave.waist >= -10>>Average.
    <<elseif $activeSlave.waist >= -40>>Feminine.
    <<elseif $activeSlave.waist >= -95>>Hourglass.
    <<else>>Absurd.
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Absurd">><<set $activeSlave.waist = -100>><<replace "#waist">>Absurd.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Hourglass">><<set $activeSlave.waist = -55>><<replace "#waist">>Hourglass.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Feminine">><<set $activeSlave.waist = -15>><<replace "#waist">>Feminine.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Average">><<set $activeSlave.waist = 0>><<replace "#waist">>Average.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Unattractive">><<set $activeSlave.waist = 15>><<replace "#waist">>Unattractive.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Ugly">><<set $activeSlave.waist = 55>><<replace "#waist">>Ugly.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Masculine">><<set $activeSlave.waist = 100>><<replace "#waist">>Masculine.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Height:''
    
    <span id="height">
    <<if $activeSlave.height < 150>>Petite.
    <<elseif $activeSlave.height < 160>>Short.
    <<elseif $activeSlave.height < 170>>Average.
    <<elseif $activeSlave.height < 185>>Tall.
    <<else>>Very tall.
    <</if>>
    <<textbox "$activeSlave.height" $activeSlave.height "Starting Girls">> cm
    </span>
    
    
    | <<link "Resync height with age">>
    
    	<<ResyncHeight $activeSlave>><<goto "Starting Girls">>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Weight:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.weight < -95>>@@.red;Emaciated.@@
    <<elseif $activeSlave.weight < -30>>@@.red;Skinny.@@
    
    <<elseif $activeSlave.weight < -10>>Thin.
    <<elseif $activeSlave.weight <= 10>>Average.
    <<elseif $activeSlave.weight <= 30>>Plush.
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.weight <= 95>>@@.red;Chubby.@@
    
    <<elseif $activeSlave.weight <= 130>>@@.red;Fat.@@
    <<elseif $activeSlave.weight <= 160>>@@.red;Obese.@@
    <<elseif $activeSlave.weight <= 190>>@@.red;Super obese.@@
    <<else>>@@.red;Dangerously obese.@@
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Emaciated">><<set $activeSlave.weight = -100>><<replace "#weight">>@@.red;Emaciated.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Skinny">><<set $activeSlave.weight = -50>><<replace "#weight">>@@.red;Skinny.@@<</replace>><<StartingGirlsCost>><</link>> |
    
    <<link "Thin">><<set $activeSlave.weight = -20>><<replace "#weight">>Thin.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Average">><<set $activeSlave.weight = 0>><<replace "#weight">>Average.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Plush">><<set $activeSlave.weight = 20>><<replace "#weight">>Plush.<</replace>><<StartingGirlsCost>><</link>> |
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Chubby">><<set $activeSlave.weight = 50>><<replace "#weight">>@@.red;Chubby.@@<</replace>><<StartingGirlsCost>><</link>> |
    
    <<link "Fat">><<set $activeSlave.weight = 100>><<replace "#weight">>@@.red;Fat.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Obese">><<set $activeSlave.weight = 140>><<replace "#weight">>@@.red;Obese.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Super obese">><<set $activeSlave.weight = 180>><<replace "#weight">>@@.red;Super obese.@@<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Dangerously obese">><<set $activeSlave.weight = 200>><<replace "#weight">>@@.red;Dangerously obese.@@<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Prestige:''
    <span id="prestige">
    <<if $activeSlave.prestige >= 3>>@@.green;World renowned.@@
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.prestige >= 2>>@@.green;Regionally famous.@@
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.prestige >= 1>>@@.green;Locally known.@@
    <<else>>None.
    <</if>>
    </span>
    <<link "None">><<set $activeSlave.prestige = 0>><<replace "#prestige">>None.<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Locally known">><<set $activeSlave.prestige = 1>><<replace "#prestige">>@@.green;Locally known.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Regionally famous">><<set $activeSlave.prestige = 2>><<replace "#prestige">>@@.green;Regionally famous.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "World renowned">><<set $activeSlave.prestige = 3>><<replace "#prestige">>@@.green;World renowned.@@<</replace>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>>
    <span id="prestigeWarning"></span>
    
    
    <br><br>
    <span id = "nationality">
    Her nationality is $activeSlave.nationality.
    
    <<link "Set custom nationality">>
    
    <<replace "#nationality">><<textbox "$activeSlave.nationality" $activeSlave.nationality>>
    <</replace>>
    
    </span>
    <<if $seeRace == 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Ethnicity:'' <span id="ethnicity"><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">></span>
    
    <<link "White">><<set $activeSlave.race = "white">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Black">><<set $activeSlave.race = "black">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Latina">><<set $activeSlave.race = "latina">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Asian">><<set $activeSlave.race = "asian">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Middle Eastern">><<set $activeSlave.race = "middle eastern">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Amerindian">><<set $activeSlave.race = "amerindian">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    
    <<link "Southern European">><<set $activeSlave.race = "southern european">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    
    <<link "Semitic">><<set $activeSlave.race = "semitic">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Malay">><<set $activeSlave.race = "malay">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Indo-aryan">><<set $activeSlave.race = "indo-aryan">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Pacific Islander">><<set $activeSlave.race = "pacific islander">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Mixed Race">><<set $activeSlave.race = "mixed race">><<replace "#ethnicity">><<textbox "$activeSlave.race" $activeSlave.race "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Skin color:'' <span id="skin"><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">></span>
    
    <<link "White">><<set $activeSlave.skin = "white">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Fair">><<set $activeSlave.skin = "fair">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Tanned">><<set $activeSlave.skin = "tanned">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Olive">><<set $activeSlave.skin = "olive">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Light brown">><<set $activeSlave.skin = "light brown">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Brown">><<set $activeSlave.skin = "brown">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Black">><<set $activeSlave.skin = "black">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>> |
    <<link "Pale">><<set $activeSlave.skin = "pale">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Dark">><<set $activeSlave.skin = "dark">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Light">><<set $activeSlave.skin = "light">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>  |
    <<link "Extremely pale">><<set $activeSlave.skin = "extremely pale">><<replace "#skin">><<textbox "$activeSlave.skin" $activeSlave.skin "Starting Girls">><</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Facial appearance:'' <span id="faceShape">$activeSlave.faceShape</span>.
    
    <<link "Normal">><<set $activeSlave.faceShape = "normal">><<replace "#faceShape">>$activeSlave.faceShape<</replace>><<StartingGirlsCost>><</link>> |
    <<if $seeDicks != 0>><<link "Masculine">><<set $activeSlave.faceShape = "masculine">><<replace "#faceShape">>$activeSlave.faceShape<</replace>><<StartingGirlsCost>><</link>> |<</if>>
    <<link "Androgynous">><<set $activeSlave.faceShape = "androgynous">><<replace "#faceShape">>$activeSlave.faceShape<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Cute">><<set $activeSlave.faceShape = "cute">><<replace "#faceShape">>$activeSlave.faceShape<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Sensual">><<set $activeSlave.faceShape = "sensual">><<replace "#faceShape">>$activeSlave.faceShape<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Exotic">><<set $activeSlave.faceShape = "exotic">><<replace "#faceShape">>$activeSlave.faceShape<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Facial attractiveness:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.face < -95>>Very ugly.
    <<elseif $activeSlave.face < -40>>Ugly.
    <<elseif $activeSlave.face < -10>>Unattractive.
    <<elseif $activeSlave.face <= 10>>Average.
    <<elseif $activeSlave.face <= 40>>Attractive.
    <<elseif $activeSlave.face <= 95>>Beautiful.
    
    <<else>>Very beautiful.
    <</if>>
    </span>
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Very ugly">><<set $activeSlave.face = -100>><<replace "#face">>Very ugly.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Ugly">><<set $activeSlave.face = -55>><<replace "#face">>Ugly.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Unattractive">><<set $activeSlave.face = -15>><<replace "#face">>Unattractive.<</replace>><<StartingGirlsCost>><</link>> |
    
    <<link "Average">><<set $activeSlave.face = 0>><<replace "#face">>Average.<</replace>><<StartingGirlsCost>><</link>> |
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Attractive">><<set $activeSlave.face = 15>><<replace "#face">>Attractive.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Beautiful">><<set $activeSlave.face = 55>><<replace "#face">>Beautiful.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Very beautiful">><<set $activeSlave.face = 100>><<replace "#face">>Very beautiful.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Lips:''
    
    <span id="lips">
    <<if $activeSlave.lips <= 10>>Thin.
    <<elseif $activeSlave.lips <= 20>>Normal.
    <<elseif $activeSlave.lips <= 40>>Pretty.
    <<elseif $activeSlave.lips <= 70>>Plush.
    <<elseif $activeSlave.lips <= 95>>Huge.
    <<else>>Facepussy.
    <</if>>
    </span>
    
    <<link "Thin">><<set $activeSlave.lips = 5>><<replace "#lips">>Thin.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Normal">><<set $activeSlave.lips = 15>><<replace "#lips">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Plush">><<set $activeSlave.lips = 25>><<replace "#lips">>Plush.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Big">><<set $activeSlave.lips = 55>><<replace "#lips">>Big.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Huge">><<set $activeSlave.lips = 85>><<replace "#lips">>Huge.<</replace>><<StartingGirlsCost>><</link>>
    
    <<if $seeExtreme == 1>>
    
    <<link "Facepussy">><<set $activeSlave.lips = 100>><<replace "#lips">>Facepussy.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    &nbsp;&nbsp;&nbsp;&nbsp;''Teeth:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.teeth == "crooked">>Crooked.
    <<elseif $activeSlave.teeth == "straightening braces">>Braces.
    
    <<else>>Straight.
    <</if>>
    </span>
    
    <<link "Straight">><<set $activeSlave.teeth = "normal">><<replace "#teeth">>Straight.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Crooked">><<set $activeSlave.teeth = "crooked">><<replace "#teeth">>Crooked.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Braces">><<set $activeSlave.teeth = "straightening braces">><<replace "#teeth">>Braces.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Vision:''
    
    <span id="vision">
    <<if $seeExtreme == 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<<if $activeSlave.eyes == -2>>Blind.
    	<<elseif $activeSlave.eyes == -1>>Nearsighted.
    
    	<<else>>Normal.
    	<</if>>
    <<else>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.eyes == -1>>Nearsighted.
    
    <<else>>Normal.
    	<</if>>
    <</if>>
    </span>
    
    <<link "Normal">><<set $activeSlave.eyes = 1>><<replace "#vision">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Nearsighted">><<set $activeSlave.eyes = -1>><<replace "#vision">>Nearsighted.<</replace>><<StartingGirlsCost>><</link>>
    
    <<link "Blind">><<set $activeSlave.eyes = -2>><<replace "#vision">>Blind.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br><br>''Breasts:''
    
    <span id="boobs">
    <<if $activeSlave.boobs <= 200>>Flat.
    <<elseif $activeSlave.boobs <= 500>>Healthy.
    <<elseif $activeSlave.boobs <= 800>>Large.
    <<elseif $activeSlave.boobs <= 1200>>Very Large.
    <<elseif $activeSlave.boobs <= 2000>>Huge.
    <<elseif $activeSlave.boobs <= 4000>>Massive.
    <<elseif $activeSlave.boobs <= 6000>>Monstrous.
    <<else>>Science experiment.
    <</if>>
    <<textbox "$activeSlave.boobs" $activeSlave.boobs "Starting Girls">> CCs
    </span>
    
    Pregmodder's avatar
    Pregmodder committed
    &nbsp;&nbsp;&nbsp;&nbsp;''Lactation:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.lactation == 2>>Artificial.
    
    <<elseif $activeSlave.lactation == 1>>Natural.
    <<else>>None.
    <</if>>
    </span>
    
    <<link "Artificial">><<set $activeSlave.lactation = 2>><<replace "#lactation">>Artificial.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Natural">><<set $activeSlave.lactation = 1>><<replace "#lactation">>Natural.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "None">><<set $activeSlave.lactation = 0>><<replace "#lactation">>None.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Nipples:'' <span id="nipples">$activeSlave.nipples</span>.
    
    <<link "Tiny">><<set $activeSlave.nipples = "tiny">><<replace "#nipples">>$activeSlave.nipples<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Cute">><<set $activeSlave.nipples = "cute">><<replace "#nipples">>$activeSlave.nipples<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Puffy">><<set $activeSlave.nipples = "puffy">><<replace "#nipples">>$activeSlave.nipples<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Inverted">><<set $activeSlave.nipples = "inverted">><<replace "#nipples">>$activeSlave.nipples<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Huge">><<set $activeSlave.nipples = "huge">><<replace "#nipples">>$activeSlave.nipples<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    &nbsp;&nbsp;&nbsp;&nbsp;''Areolae:''
    
    <span id="areolae">
    <<if $activeSlave.areolae == 1>>
    	Large.
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.areolae == 2>>
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.areolae == 3>>
    
    <<link "Normal">><<set $activeSlave.areolae = 0>><<replace "#areolae">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Large">><<set $activeSlave.areolae = 1>><<replace "#areolae">>Large.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Wide">><<set $activeSlave.areolae = 2>><<replace "#areolae">>Wide.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Huge">><<set $activeSlave.areolae = 3>><<replace "#areolae">>Huge.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Shoulders:''
    
    <span id="shoulders">
    <<if $activeSlave.shoulders < -1>>Very narrow.
    <<elseif $activeSlave.shoulders < 0>>Narrow.
    <<elseif $activeSlave.shoulders > 1>>Very broad.
    <<elseif $activeSlave.shoulders > 0>>Broad.
    <<else>>Feminine.
    <</if>>
    </span>
    
    <<link "Very narrow">><<set $activeSlave.shoulders = -2>><<replace "#shoulders">>Very narrow.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Narrow">><<set $activeSlave.shoulders = -1>><<replace "#shoulders">>Narrow.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Normal">><<set $activeSlave.shoulders = 0>><<replace "#shoulders">>Feminine.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Broad">><<set $activeSlave.shoulders = 1>><<replace "#shoulders">>Broad.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Very broad">><<set $activeSlave.shoulders = 2>><<replace "#shoulders">>Very broad.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Hips:''
    
    <span id="hips">
    <<if $activeSlave.hips < -1>>Very narrow.
    <<elseif $activeSlave.hips < 0>>Narrow.
    <<elseif $activeSlave.hips > 1>>Very broad.
    <<elseif $activeSlave.hips > 0>>Broad.
    <<else>>Normal.
    <</if>>
    </span>
    
    <<link "Very narrow">><<set $activeSlave.hips = -2>><<replace "#hips">>Very narrow.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Narrow">><<set $activeSlave.hips = -1>><<replace "#hips">>Narrow.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Normal">><<set $activeSlave.hips = 0>><<replace "#hips">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Broad">><<set $activeSlave.hips = 1>><<replace "#hips">>Broad.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Very broad">><<set $activeSlave.hips = 2>><<replace "#hips">>Very broad.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Butt:''
    
    <span id="butt">
    <<if $activeSlave.butt == 0>>Flat.
    <<elseif $activeSlave.butt < 2>>Small.
    <<elseif $activeSlave.butt < 3>>Plump.
    <<elseif $activeSlave.butt < 4>>Big.
    <<elseif $activeSlave.butt < 5>>Huge.
    <<elseif $activeSlave.butt < 6>>Enormous.
    <<elseif $activeSlave.butt < 7>>Gigantic.
    <<else>>Massive.
    <</if>>
    </span>
    
    <<link "Flat">><<set $activeSlave.butt = 0>><<replace "#butt">>Flat.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Small">><<set $activeSlave.butt = 1>><<replace "#butt">>Small.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Plump">><<set $activeSlave.butt = 2>><<replace "#butt">>Plump.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Healthy">><<set $activeSlave.butt = 3>><<replace "#butt">>Big.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Huge">><<set $activeSlave.butt = 4>><<replace "#butt">>Huge.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Enormous">><<set $activeSlave.butt = 5>><<replace "#butt">>Enormous.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Gigantic">><<set $activeSlave.butt = 6>><<replace "#butt">>Gigantic.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Massive">><<set $activeSlave.butt = 7>><<replace "#butt">>Massive.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Anus:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.anus == 0>>@@.lime;Virgin.@@
    
    <<elseif $activeSlave.anus == 1>>Normal.
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.anus == 2>>Veteran.
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Anal virgin">><<set $activeSlave.anus = 0>><<replace "#anus">>@@.lime;Virgin.@@<</replace>><<StartingGirlsAnalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Normal">><<set $activeSlave.anus = 1>><<replace "#anus">>Normal.<</replace>><<StartingGirlsAnalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Veteran">><<set $activeSlave.anus = 2>><<replace "#anus">>Veteran.<</replace>><<StartingGirlsAnalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Gaping">><<set $activeSlave.anus = 3>><<replace "#anus">>Gaping.<</replace>><<StartingGirlsAnalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Vagina:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.vagina == -1>>//No vagina.//
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.vagina == 0>>@@.lime;Virgin.@@
    
    <<elseif $activeSlave.vagina == 1>>Normal.
    
    Pregmodder's avatar
    Pregmodder committed
    <<elseif $activeSlave.vagina == 2>>Veteran.
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "No vagina">><<set $activeSlave.vagina = -1, $activeSlave.preg = 0,$activeSlave.belly = 0,$activeSlave.bellyPreg = 0,$activeSlave.pregSource = 0,$activeSlave.pubertyXX = 0,$activeSlave.pubertyAgeXX = $fertilityAge, $activeSlave.ovaries = 0>><<replace "#vagina">>//No vagina.//<</replace>><<StartingGirlsCost>><</link>> |
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Virgin">><<set $activeSlave.vagina = 0, $activeSlave.preg = -1, $activeSlave.belly = 0, $activeSlave.bellyPreg = 0, $activeSlave.ovaries = 1>><<replace "#vagina">>@@.lime;Virgin.@@<</replace>><<StartingGirlsVaginalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Normal">><<set $activeSlave.vagina = 1, $activeSlave.preg = -1, $activeSlave.belly = 0, $activeSlave.bellyPreg = 0, $activeSlave.ovaries = 1>><<replace "#vagina">>Normal.<</replace>><<StartingGirlsVaginalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Veteran">><<set $activeSlave.vagina = 2, $activeSlave.preg = -1, $activeSlave.belly = 0, $activeSlave.bellyPreg = 0, $activeSlave.ovaries = 1>><<replace "#vagina">>Veteran.<</replace>><<StartingGirlsVaginalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>> |
    <<link "Gaping">><<set $activeSlave.vagina = 3, $activeSlave.preg = -1, $activeSlave.belly = 0, $activeSlave.bellyPreg = 0, $activeSlave.ovaries = 1>><<replace "#vagina">>Gaping.<</replace>><<StartingGirlsVaginalSkill>><<StartingGirlsCost>><<StartingGirlsWarnings>><</link>>
    
    
    <span id="vaginablock">
    <<if $activeSlave.vagina > -1>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.dick == 0>>
    	''Clit:''
    	<span id="clit">
    	<<if $activeSlave.clit == 0>>Normal.
    	<<elseif $activeSlave.clit == 1>>Large.
    	<<else>>Huge.
    	<</if>>
    	</span>
    	<<link "Normal">><<set $activeSlave.clit = 0>><<replace "#clit">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Large">><<set $activeSlave.clit = 1>><<replace "#clit">>Large.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Huge">><<set $activeSlave.clit = 2>><<replace "#clit">>Huge.<</replace>><<StartingGirlsCost>><</link>>
    	&nbsp;&nbsp;&nbsp;&nbsp;
    
    Pregmodder's avatar
    Pregmodder committed
    ''Labia:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.labia == 2>>Huge.
    
    <<elseif $activeSlave.labia == 1>>Large.
    <<else>>Normal.
    <</if>>
    </span>
    
    <<link "Normal">><<set $activeSlave.labia = 0>><<replace "#labia">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Large">><<set $activeSlave.labia = 1>><<replace "#labia">>Large.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Huge">><<set $activeSlave.labia = 2>><<replace "#labia">>Huge.<</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    &nbsp;&nbsp;&nbsp;&nbsp;
    ''Vaginal wetness:''
    
    <span id="wetness">
    <<if $activeSlave.vaginaLube == 0>>Dry.
    <<elseif $activeSlave.vaginaLube == 1>>Normal.
    <<else>>Excessive.
    <</if>>
    </span>
    
    <<link "Dry">><<set $activeSlave.vaginaLube = 0>><<replace "#wetness">>Dry.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Normal">><<set $activeSlave.vaginaLube = 1>><<replace "#wetness">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Excessive">><<set $activeSlave.vaginaLube = 2>><<replace "#wetness">>Excessive.<</replace>><<StartingGirlsCost>><</link>>
    
    <<if $seePreg != 0>>
    
    Pregmodder's avatar
    Pregmodder committed
    <br>''Pregnancy:''
    
    Pregmodder's avatar
    Pregmodder committed
    <<if $activeSlave.preg > 39>>Ready to drop.
    <<elseif $activeSlave.preg > 30>>Advanced.
    <<elseif $activeSlave.preg > 20>>Showing.
    <<elseif $activeSlave.preg > 10>>Early.
    
    <<elseif $activeSlave.preg > -2>>None.
    <<else>>Barren.
    <</if>>
    </span>
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Ready to Drop">><<set $activeSlave.preg = 40,$activeSlave.pregType = 1,$activeSlave.belly = 15000,$activeSlave.bellyPreg = 15000,$activeSlave.pubertyXX = 1>><<replace "#preg">>Ready to drop.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Advanced">><<set $activeSlave.preg = 34,$activeSlave.pregType = 1,$activeSlave.belly = 10000,$activeSlave.bellyPreg = 10000,$activeSlave.pubertyXX = 1>><<replace "#preg">>Advanced.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Showing">><<set $activeSlave.preg = 27,$activeSlave.pregType = 1,$activeSlave.belly = 5000,$activeSlave.bellyPreg = 5000,$activeSlave.pubertyXX = 1>><<replace "#preg">>Showing.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Early">><<set $activeSlave.preg = 12,$activeSlave.pregType = 1,$activeSlave.belly = 100,$activeSlave.bellyPreg = 100,$activeSlave.pubertyXX = 1>><<replace "#preg">>Early.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "None">><<set $activeSlave.preg = 0,$activeSlave.pregType = 0,$activeSlave.belly = 0,$activeSlave.bellyPreg = 0,$activeSlave.pregSource = 0>><<replace "#preg">>None.<</replace>><<StartingGirlsCost>><</link>> |
    <<link "Barren">><<set $activeSlave.preg = -2,$activeSlave.pregType = 0,$activeSlave.belly = 0,$activeSlave.bellyPreg = 0,$activeSlave.pregSource = 0>><<replace "#preg">>Barren.<</replace>><<StartingGirlsCost>><</link>>
    
    <br>''Puberty:''
    <span id="pub">
    <<if $activeSlave.pubertyXX == 1>>Postpubescent.
    <<else>>Prepubescent.
    <</if>>
    </span>
    <<textbox "$activeSlave.pubertyAgeXX" $activeSlave.pubertyAgeXX "Starting Girls">>
    
    Pregmodder's avatar
    Pregmodder committed
    <<link "Postpubescent">><<set $activeSlave.pubertyXX = 1>><<replace "#pub">>Postpubescent.<</replace>><<StartingGirlsCost>><</link>> | <<link "Prepubescent">><<set $activeSlave.pubertyXX = 0,$activeSlave.pubertyAgeXX = $fertilityAge,$activeSlave.preg = 0,$activeSlave.pregType = 0,$activeSlave.belly = 0,$activeSlave.bellyPreg = 0,$activeSlave.pregSource = 0>><<replace "#pub">>Prepubescent.<</replace>><<StartingGirlsCost>><</link>>
    
    <<if $PC.dick == 1>>
    	<br> ''Father:''
    	<span id="father">
    	<<if $activeSlave.pregSource == -1>>My child.
    	<<else>>
    	<</if>>
    	</span>
    
    	<<link "Carrying my child">><<set $activeSlave.pregSource = -1>><<StartingGirlsCost>><<replace "#father">>My child.<</replace>><</link>> | <<link "Clear">><<set $activeSlave.pregSource = 0>><<replace "#father">><</replace>><<StartingGirlsCost>><</link>>
    
    Pregmodder's avatar
    Pregmodder committed
    </span>
    
    <<if $seeDicks != 0 || $makeDicks == 1>>
    
    Pregmodder's avatar
    Pregmodder committed
    	<br>''Penis:''
    	<span id="dick">
    	<<if $activeSlave.dick == 0>>None.
    	<<elseif $activeSlave.dick == 1>>Tiny.
    	<<elseif $activeSlave.dick == 2>>Small.
    	<<elseif $activeSlave.dick == 3>>Normal.
    	<<elseif $activeSlave.dick == 4>>Large.
    
    Pregmodder's avatar
    Pregmodder committed
    	<<elseif $activeSlave.dick == 5>>Massive.
    	<<else>>Inhuman.<</if>>
    
    Pregmodder's avatar
    Pregmodder committed
    	</span>
    	<<link "No penis">><<set $activeSlave.dick = 0,$activeSlave.balls = 0,$activeSlave.clit = 0,$activeSlave.pubertyXY = 0,$activeSlave.pubertyAgeXY = $potencyAge>><<replace "#dick">>None.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Tiny">><<set $activeSlave.dick = 1,$activeSlave.clit = 0>><<replace "#dick">>Tiny.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Small">><<set $activeSlave.dick = 2,$activeSlave.clit = 0>><<replace "#dick">>Small.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Normal">><<set $activeSlave.dick = 3,$activeSlave.clit = 0>><<replace "#dick">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Large">><<set $activeSlave.dick = 4,$activeSlave.clit = 0>><<replace "#dick">>Large.<</replace>><<StartingGirlsCost>><</link>> |
    	<<link "Massive">><<set $activeSlave.dick = 5,$activeSlave.clit = 0>><<replace "#dick">>Massive.<</replace>><<StartingGirlsCost>><</link>>
    	<<if $activeSlave.dick > 0>>
    		&nbsp;&nbsp;&nbsp;&nbsp;''Foreskin:''
    		<span id="foreskin">
    		<<if $activeSlave.foreskin == 0>>None.
    		<<elseif $activeSlave.foreskin == 1>>Tiny.
    		<<elseif $activeSlave.foreskin == 2>>Small.
    		<<elseif $activeSlave.foreskin == 3>>Normal.
    		<<elseif $activeSlave.foreskin == 4>>Large.
    		<<else>>Massive.<</if>>
    		</span>
    		<<if $seeCircumcision == 1>><<link "Circumcised">><<set $activeSlave.foreskin = 0>><<replace "#foreskin">>None.<</replace>><<StartingGirlsCost>><</link>> |<</if>>
    		<<link "Tiny">><<set $activeSlave.foreskin = 1>><<replace "#foreskin">>Tiny.<</replace>><<StartingGirlsCost>><</link>> |
    		<<link "Small">><<set $activeSlave.foreskin = 2>><<replace "#foreskin">>Small.<</replace>><<StartingGirlsCost>><</link>> |
    		<<link "Normal">><<set $activeSlave.foreskin = 3>><<replace "#foreskin">>Normal.<</replace>><<StartingGirlsCost>><</link>> |
    		<<link "Large">><<set $activeSlave.foreskin = 4>><<replace "#foreskin">>Large.<</replace>><<StartingGirlsCost>><</link>> |
    		<<link "Massive">><<set $activeSlave.foreskin = 5>><<replace "#foreskin">>Massive.<</replace>><<StartingGirlsCost>><</link>>
    	<</if>>
    	<br>''Testicles:''
    	<span id="balls">
    	<<if $activeSlave.balls == 0>>None.