type "coy"
{
	symbol : 12 
	color  : (red,dark_grey,normal,underline) 
	lifespan : 150
	dormancy : 5
	speed : 1
}

type "fast" 
{
	symbol : 12 
	color  : (light_red,dark_grey,normal,underline) 
	lifespan : 150
	dormancy : 5
	speed : 1
}

type "faithful" 
{
	symbol : 11
	color  : (blue, dark_grey,normal, underline)
	lifespan : 150
	dormancy : 5 
	speed : 1
}

type "philanderer" 
{
	symbol : 11
	color  : (light_blue,dark_grey,normal,underline) 
	lifespan : 150
	dormancy : 5
	speed : 1
}

mate ( "faithful" , "coy" )
{
	courtship : ( 15 , 80 ) 
	rearing   : ( 20 , 20 )
	offspring : ( 0, 15 , 85 )
	distribution : ( "faithful" ,  30, 
			 "coy",      50, 
			 "philanderer", 10, 
			 "fast",      10		
		       )
}

mate ( "faithful" , "fast" )
{
	courtship : (  5 , 90 ) 
	rearing   : ( 10 , 30 )
	offspring : ( 50, 25 , 25 )
	distribution : ( "faithful" ,  40, 
			 "fast",      20, 
			 "philanderer", 20, 
			 "coy",      20		
		       )
}

mate ( "philanderer" , "coy" )
{
	courtship : ( 15 ,  25 ) 
	rearing   : (  5 , 30 )
	offspring : ( 85, 10, 5) 
	distribution : ( 
			 "philanderer", 10, 
			 "coy",       50, 
			 "faithful",    20, 
			 "fast",      20		
		       )
}

mate ( "philanderer" , "fast" )
{
	courtship : ( 0 , 100 ) 
	rearing   : ( 5 , 35 )
	offspring : ( 65, 25, 10)
	distribution : ( 
			 "philanderer", 30, 
			 "fast",      30,		
			 "coy",       20, 
			 "faithful",   20
		       )
}



population
{
	"faithful"    : 25
	"coy"	   : 25		
	"philanderer" : 25				
	"fast"      : 25
}		
