back again, now on a better keyboard than my phone ;-)
as you can see in the official documentation, comment_type is not an attribute you can set with a value you wish. it describes the system type of the command (either a trackback, pingback or simply, a comment)
considering my comment above, i guess you'd like to differ between your own comments and those of your visitors.
i solved this in my own blog theme by reacting on the author id of the comments.
following a snippet from my comments.php file:
$isCommentFromAuthor = get_the_author_id() == $comment->user_id;
// ...
<div class="<? if($isCommentFromAuthor) : ?>author-content<? else: ?>content<? endif ?>">
this solution checks the author of the current article and compares it with the comments author.
if the comment is from the articles author, another css class is passed to the comment container which will style it differently.
does this help you any further?