(fit, ship, context, projectionRange, **kwargs)
| 2656 | |
| 2657 | @staticmethod |
| 2658 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 2659 | if 'ship' in context: |
| 2660 | skill = 'Caldari Battleship' |
| 2661 | penalties = False |
| 2662 | else: |
| 2663 | skill = None |
| 2664 | penalties = True |
| 2665 | fit.modules.filteredChargeBoost( |
| 2666 | lambda mod: mod.charge.requiresSkill('Torpedoes'), 'maxVelocity', |
| 2667 | ship.getModifiedItemAttr('shipBonusCB3'), skill=skill, stackingPenalties=penalties, **kwargs) |
| 2668 | |
| 2669 | |
| 2670 | class Effect896(BaseEffect): |
nothing calls this directly
no test coverage detected