(fit, module, context, projectionRange, **kwargs)
| 31225 | |
| 31226 | @staticmethod |
| 31227 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31228 | for x in range(1, 5): |
| 31229 | if module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)): |
| 31230 | value = module.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 31231 | id = module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)) |
| 31232 | |
| 31233 | if id: |
| 31234 | fit.addCommandBonus(id, value, module, kwargs['effect']) |
| 31235 | |
| 31236 | |
| 31237 | class Effect6736(BaseEffect): |
nothing calls this directly
no test coverage detected