(fit, module, context, projectionRange, **kwargs)
| 31203 | |
| 31204 | @staticmethod |
| 31205 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31206 | for x in range(1, 5): |
| 31207 | if module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)): |
| 31208 | value = module.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 31209 | id = module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)) |
| 31210 | |
| 31211 | if id: |
| 31212 | fit.addCommandBonus(id, value, module, kwargs['effect']) |
| 31213 | |
| 31214 | |
| 31215 | class Effect6735(BaseEffect): |
nothing calls this directly
no test coverage detected