(fit, ship, context, projectionRange, **kwargs)
| 20690 | |
| 20691 | @staticmethod |
| 20692 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 20693 | damageTypes = ('em', 'explosive', 'kinetic', 'thermal') |
| 20694 | for damageType in damageTypes: |
| 20695 | fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Heavy Assault Missiles'), |
| 20696 | '{0}Damage'.format(damageType), |
| 20697 | ship.getModifiedItemAttr('eliteBonusCommandShips2'), skill='Command Ships', **kwargs) |
| 20698 | |
| 20699 | |
| 20700 | class Effect5521(BaseEffect): |
nothing calls this directly
no test coverage detected