custom comments on specific post type

Yes, alter the single-debate.php and call a custom comment template using comment_template with a parameter, representing your custom comment template.

<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
    comments_template('custom-comments.php');
?>