(fit, container, context, projectionRange, **kwargs)
| 4570 | |
| 4571 | @staticmethod |
| 4572 | def handler(fit, container, context, projectionRange, **kwargs): |
| 4573 | level = container.level if 'skill' in context else 1 |
| 4574 | penalize = False if 'skill' in context or 'implant' in context or 'booster' in context else True |
| 4575 | fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Missile Launcher Operation'), |
| 4576 | 'aoeCloudSize', container.getModifiedItemAttr('aoeCloudSizeBonus') * level, |
| 4577 | stackingPenalties=penalize, **kwargs) |
| 4578 | |
| 4579 | |
| 4580 | class Effect1500(BaseEffect): |
nothing calls this directly
no test coverage detected