Skip to content
Snippets Groups Projects
childrenReport.tw 3.15 KiB
Newer Older
  • Learn to ignore specific revisions
  • :: Children Report [nobr]
    
    <<set $nurserySlaves = 0>>
    
    <<for _nur = 0; _nur < $cribs.length; _nur++>>
    	<<set $cribs[_nur].birthWeek += 1>>
    	<<if $cribs[_nur].birthWeek >= 52>>
    		<<set $cribs[_nur].birthWeek = 0>>
    		<<if $seeAge == 1>>
    			<<set $cribs[_nur].actualAge++, $cribs[_nur].ovaryAge++>>
    		<</if>>
    	<</if>>
    	<<set $nurserySlaves += 1>>
    
    	<<if $cribs[_nur].growTime > 0>>
    		<<set $cribs[_nur].growTime -= 1>>
    
    		<br>@@.pink;<<print $cribs[_nur].slaveName>>@@ is growing steadily. $He <<if $cribs[_nur].growTime <= 0>>is @@.lime;ready for release.@@ $He will be ejected from $his crib upon your approach<<else>>will be ready for release in about <<print $cribs[_nur].growTime>> weeks<</if>>.
    	<<else>>
    		@@.pink;$cribs[_nur].slaveName@@ is @@.lime;ready for release.@@ $He will be removed from $nurseryName upon your approach.
    	<</if>>
    
    
    brickode's avatar
    brickode committed
    	<<if $nurseryWeight == 1>>
    
    		<br>
    		<<if $nurseryWeightSetting == 1>>
    			<<if $cribs[_nur].weight < 200>>
    
    klorpa's avatar
    klorpa committed
    				<<set $cribs[_nur].weight += 5>>
    
    			<</if>>
    			The weight monitoring systems are overloading $his intake causing @@.red;rapid weight gain.@@
    		<<elseif $nurseryWeightSetting == 2>>
    			<<if $cribs[_nur].weight > 10>>
    
    klorpa's avatar
    klorpa committed
    				<<set $cribs[_nur].weight -= 1>>
    
    				The weight monitoring systems detect $he is overweight and @@.green;decrease $his caloric intake.@@
    			<<elseif $cribs[_nur].weight < -10>>
    
    klorpa's avatar
    klorpa committed
    				<<set $cribs[_nur].weight += 1>>
    
    				The weight monitoring systems detect $he is underweight and @@.green;increase $his caloric intake.@@
    			<<else>>
    				$He is @@.lime;currently a healthy weight;@@ efforts will be made to maintain it.
    			<</if>>
    		<<elseif $nurseryWeightSetting == 0>>
    			<<if $cribs[_nur].weight > -100>>
    				$His developing body @@.red;quickly sheds its gained weight.@@
    				<<set $cribs[_nur].weight -= 40>>
    			<</if>>
    		<</if>>
    	<<else>>
    		<<if $cribs[_nur].weight > -100>>
    			$His developing body @@.red;quickly sheds its gained weight.@@
    			<<set $cribs[_nur].weight -= 40>>
    		<</if>>
    	<</if>>
    
    klorpa's avatar
    klorpa committed
    
    
    brickode's avatar
    brickode committed
    	<<if $nurseryMuscles == 1>>
    
    		<br>
    		<<if $nurseryMusclesSetting == 2>>
    			<<if $cribs[_nur].muscles < 100>>
    
    klorpa's avatar
    klorpa committed
    				<<set $cribs[_nur].muscles += 5>>
    
    			<</if>>
    			The strength monitoring systems are overloading $him with steroids causing @@.green;rapid muscle development.@@
    		<<elseif $nurseryMusclesSetting == 1>>
    			<<if $cribs[_nur].muscles > 10>>
    
    klorpa's avatar
    klorpa committed
    				<<set $cribs[_nur].muscles-->>
    
    				The strength monitoring systems detect $he is overly muscular and @@.green;decrease $his steroid dosage.@@
    			<<elseif $cribs[_nur].muscles < -10>>
    
    klorpa's avatar
    klorpa committed
    				<<set $cribs[_nur].muscles++>>
    
    				The strength monitoring systems detect $he is weak and @@.green;increase $his steroid dosage.@@
    			<<else>>
    				$He has @@.lime;a healthy musculature;@@ efforts will be made to maintain it.
    			<</if>>
    		<<elseif $nurseryMusclesSetting == 0>>
    			<<if $cribs[_nur].muscles > -100>>
    				$His developing body @@.red;quickly loses its gained muscle.@@
    				<<set $cribs[_nur].muscles -= 40>>
    			<</if>>
    		<</if>>
    	<<else>>
    		<<if $cribs[_nur].muscles > -100>>
    			$His developing body @@.red;quickly loses its gained muscle.@@
    			<<set $cribs[_nur].muscles -= 40>>
    		<</if>>
    	<</if>>
    <br>
    <</for>>
    /*
    <<if $nurserySlaves == 0>>
    $nurseryNameCaps is currently unused.
    <</if>>
    */
    
    <br><br>