(fit, module, context, projectionRange, **kwargs)
| 31161 | |
| 31162 | @staticmethod |
| 31163 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31164 | for x in range(1, 5): |
| 31165 | if module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)): |
| 31166 | value = module.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 31167 | id = module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)) |
| 31168 | |
| 31169 | if id: |
| 31170 | fit.addCommandBonus(id, value, module, kwargs['effect']) |
| 31171 | |
| 31172 | |
| 31173 | class Effect6733(BaseEffect): |
nothing calls this directly
no test coverage detected