(fit, ship, context, projectionRange, **kwargs)
| 5699 | |
| 5700 | @staticmethod |
| 5701 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 5702 | if 'ship' in context: |
| 5703 | skill = 'Caldari Battleship' |
| 5704 | penalties = False |
| 5705 | penaltyGroup = None |
| 5706 | else: |
| 5707 | skill = None |
| 5708 | penalties = True |
| 5709 | penaltyGroup = 'postPerc' |
| 5710 | fit.modules.filteredItemBoost( |
| 5711 | lambda mod: mod.item.group.name == 'Missile Launcher Cruise', 'speed', |
| 5712 | ship.getModifiedItemAttr('shipBonus2CB'), skill=skill, |
| 5713 | stackingPenalties=penalties, penaltyGroup=penaltyGroup, **kwargs) |
| 5714 | |
| 5715 | |
| 5716 | class Effect1886(BaseEffect): |
nothing calls this directly
no test coverage detected