(fit, src, context, projectionRange, **kwargs)
| 43261 | |
| 43262 | @staticmethod |
| 43263 | def handler(fit, src, context, projectionRange, **kwargs): |
| 43264 | boost = src.getModifiedItemAttr('damageMultiplierBonus') * src.level |
| 43265 | for attr in ( |
| 43266 | 'fighterAbilityAttackTurretDamageMultiplier', |
| 43267 | 'fighterAbilityAttackMissileDamageMultiplier', |
| 43268 | 'fighterAbilityMissilesDamageMultiplier' |
| 43269 | ): |
| 43270 | fit.fighters.filteredItemBoost( |
| 43271 | lambda mod: mod.item.requiresSkill('Gallente Fighter Specialization'), |
| 43272 | attr, boost, **kwargs) |
| 43273 | |
| 43274 | |
| 43275 | class Effect12848(BaseEffect): |
nothing calls this directly
no test coverage detected