You can achieve this by creating inherited classes, you can create a base bomb class and other bomb types as different classes that inherit from the base class. That way the base class can handle the basic explosion and the other class types can have different customizations.
Note: I’m not that good at OOP so this might not be the best method to do this