(fit, src, context, projectionRange, **kwargs)
| 39842 | |
| 39843 | @staticmethod |
| 39844 | def handler(fit, src, context, projectionRange, **kwargs): |
| 39845 | for dmgType in ('em', 'thermal', 'kinetic', 'explosive'): |
| 39846 | fit.modules.filteredChargeBoost( |
| 39847 | lambda mod: ( |
| 39848 | mod.charge.requiresSkill('XL Torpedoes') |
| 39849 | or mod.charge.requiresSkill('XL Cruise Missiles') |
| 39850 | or mod.charge.requiresSkill('Torpedoes')), |
| 39851 | f'{dmgType}Damage', |
| 39852 | src.getModifiedItemAttr('shipBonusDreadnoughtA1'), |
| 39853 | skill='Amarr Dreadnought', **kwargs) |
| 39854 | |
| 39855 | |
| 39856 | class Effect11706(BaseEffect): |
nothing calls this directly
no test coverage detected