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

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

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

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

mate ( "faithful" , "coy" )
{
	courtship : ( 3 , 100 ) 
	rearing   : ( 10 , 10 )
	offspring : ( 100 )
	distribution : ( "faithful" ,  50, 
			 "coy",      50, 
			 "philanderer", 0, 
			 "fast",      0		
		       )
}

mate ( "faithful" , "fast" )
{
	courtship : (  0 ,100 ) 
	rearing   : ( 10 , 10 )
	offspring : ( 100 )
	distribution : ( "faithful" ,  50, 
			 "fast",      50, 
			 "philanderer", 0, 
			 "coy",      0		
		       )
}

mate ( "philanderer" , "coy" )
{
	courtship : ( 0 ,  0 ) 
	rearing   : (  0 , 20 )
	offspring : (  100 )
	distribution : ( 
			 "philanderer", 50, 
			 "coy",       50, 
			 "faithful",    0, 
			 "fast",      0		
		       )
}

mate ( "philanderer" , "fast" )
{
	courtship : ( 0 , 100 ) 
	rearing   : ( 0 , 20 )
	offspring : ( 100 )
	distribution : ( 
			 "philanderer", 50, 
			 "fast",      50,		
			 "coy",       0, 
			 "faithful",   0
		       )
}



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