(fit, container, context, projectionRange, **kwargs)
| 2471 | |
| 2472 | @staticmethod |
| 2473 | def handler(fit, container, context, projectionRange, **kwargs): |
| 2474 | level = container.level if 'skill' in context else 1 |
| 2475 | penalized = False if 'skill' in context or 'implant' in context or 'booster' in context else True |
| 2476 | fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Missile Launcher Operation'), |
| 2477 | 'explosionDelay', container.getModifiedItemAttr('maxFlightTimeBonus') * level, |
| 2478 | stackingPenalties=penalized, **kwargs) |
| 2479 | |
| 2480 | |
| 2481 | class Effect804(BaseEffect): |
nothing calls this directly
no test coverage detected