Sorry, the code is wrong, here it is :
$urgence = serialize($_POST['urgence']);
$fiche = array(
'post_title' => $_POST['nom'],
'post_content' => "",
'post_type' => 'fiche-animal',
'post_status' => 'draft'
);
$id_post = wp_insert_post($fiche);
add_post_meta( $id_post, 'wpcf-urgence', $urgence );