(fit, src, context, projectionRange, **kwargs)
| 31544 | |
| 31545 | @staticmethod |
| 31546 | def handler(fit, src, context, projectionRange, **kwargs): |
| 31547 | lvl = src.level |
| 31548 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Information Command'), 'warfareBuff2Multiplier', |
| 31549 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31550 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Information Command'), 'warfareBuff1Multiplier', |
| 31551 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31552 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Information Command'), 'warfareBuff3Multiplier', |
| 31553 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31554 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Information Command'), 'warfareBuff4Multiplier', |
| 31555 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31556 | |
| 31557 | |
| 31558 | class Effect6779(BaseEffect): |
nothing calls this directly
no test coverage detected