(fit, ship, context, projectionRange, **kwargs)
| 20389 | |
| 20390 | @staticmethod |
| 20391 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 20392 | if 'ship' in context: |
| 20393 | skill = 'Caldari Hauler' |
| 20394 | penalties = False |
| 20395 | else: |
| 20396 | skill = None |
| 20397 | penalties = True |
| 20398 | fit.ship.boostItemAttr('agility', ship.getModifiedItemAttr('shipBonusCI2'), |
| 20399 | skill=skill, stackingPenalties=penalties, **kwargs) |
| 20400 | |
| 20401 | |
| 20402 | class Effect5469(BaseEffect): |
nothing calls this directly
no test coverage detected