(fit, src, context, projectionRange, **kwargs)
| 31521 | |
| 31522 | @staticmethod |
| 31523 | def handler(fit, src, context, projectionRange, **kwargs): |
| 31524 | lvl = src.level |
| 31525 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Shield Command'), 'warfareBuff3Multiplier', |
| 31526 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31527 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Shield Command'), 'warfareBuff1Multiplier', |
| 31528 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31529 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Shield Command'), 'warfareBuff2Multiplier', |
| 31530 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31531 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Shield Command'), 'warfareBuff4Multiplier', |
| 31532 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31533 | |
| 31534 | |
| 31535 | class Effect6778(BaseEffect): |
nothing calls this directly
no test coverage detected