(fit, src, context, projectionRange, **kwargs)
| 31498 | |
| 31499 | @staticmethod |
| 31500 | def handler(fit, src, context, projectionRange, **kwargs): |
| 31501 | lvl = src.level |
| 31502 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Armored Command'), 'warfareBuff1Multiplier', |
| 31503 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31504 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Armored Command'), 'warfareBuff2Multiplier', |
| 31505 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31506 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Armored Command'), 'warfareBuff4Multiplier', |
| 31507 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31508 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Armored Command'), 'warfareBuff3Multiplier', |
| 31509 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31510 | |
| 31511 | |
| 31512 | class Effect6777(BaseEffect): |
nothing calls this directly
no test coverage detected