(fit, ship, context, projectionRange, **kwargs)
| 20709 | |
| 20710 | @staticmethod |
| 20711 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 20712 | damageTypes = ('em', 'explosive', 'kinetic', 'thermal') |
| 20713 | for damageType in damageTypes: |
| 20714 | fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Heavy Missiles'), |
| 20715 | '{0}Damage'.format(damageType), |
| 20716 | ship.getModifiedItemAttr('eliteBonusCommandShips2'), skill='Command Ships', **kwargs) |
| 20717 | |
| 20718 | |
| 20719 | class Effect5539(BaseEffect): |
nothing calls this directly
no test coverage detected