(fit, src, context, projectionRange, **kwargs)
| 31567 | |
| 31568 | @staticmethod |
| 31569 | def handler(fit, src, context, projectionRange, **kwargs): |
| 31570 | lvl = src.level |
| 31571 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Skirmish Command'), 'warfareBuff3Multiplier', |
| 31572 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31573 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Skirmish Command'), 'warfareBuff4Multiplier', |
| 31574 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31575 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Skirmish Command'), 'warfareBuff1Multiplier', |
| 31576 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31577 | fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill('Skirmish Command'), 'warfareBuff2Multiplier', |
| 31578 | src.getModifiedItemAttr('commandStrengthBonus') * lvl, **kwargs) |
| 31579 | |
| 31580 | |
| 31581 | class Effect6780(BaseEffect): |
nothing calls this directly
no test coverage detected