#this file ( and all files in this folder ) is reloadable with console command "reload behavior"
#filewatcher is enabled for all files in this folder

@engagement_range = 50 #300
@return_range = 84 #500

ship_behavior = {
	name = "fighters_behavior"
	preferred_attack_range = median
	formation_distance = @engagement_range
	return_to_formation_distance = @return_range
	
	collision_awareness = 0.2
	collision_strafe = 1.0							#collision_strafe allows the ship to move in any direction while colliding with another
	collision_radius = 0.33

	attack_move_pattern = orbit
	passive_move_pattern = charge
}

ship_behavior = {
	name = "bombers_behavior"
	preferred_attack_range = median
	formation_distance = @engagement_range
	return_to_formation_distance = @return_range

	collision_awareness = 0.2
	collision_strafe = 1.0							#collision_strafe allows the ship to move in any direction while colliding with another
	collision_radius = 0.33
	
	attack_move_pattern = charge
	passive_move_pattern = charge
}