(fit, container, context, projectionRange, **kwargs)
| 1223 | |
| 1224 | @staticmethod |
| 1225 | def handler(fit, container, context, projectionRange, **kwargs): |
| 1226 | level = container.level if 'skill' in context else 1 |
| 1227 | amount = container.getModifiedItemAttr('velocityBonus') or 0 |
| 1228 | penalties = 'skill' not in context and 'implant' not in context and 'booster' not in context |
| 1229 | fit.ship.boostItemAttr('maxVelocity', amount * level, |
| 1230 | stackingPenalties=penalties, **kwargs) |
| 1231 | |
| 1232 | |
| 1233 | class Effect395(BaseEffect): |
nothing calls this directly
no test coverage detected