Hi,
Well, you don't necessarily need to create a new view file.
First, you can use listing_img. Just copy the copy from listing_img_title in it and change it like you want.
Then, in the module, you can select "image" instead of "image and title" so that it used your modified view file instead of the default.
Also, when you edit the listing_img_title view file, you can change the name of the file in the input field at the top and when you save, it will save the code in a file with that new name as a template override and you'll be able to select it in your modules.
Also, even without a new view, in the same view file, you can add changes that will only happen for one specific module like that:
if($this->params->get('id') == XXX) {
// specific code for the module with the id XXX
}