(fit, module, context, projectionRange, **kwargs)
| 31284 | |
| 31285 | @staticmethod |
| 31286 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31287 | for x in range(1, 5): |
| 31288 | if module.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 31289 | value = module.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 31290 | id = module.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 31291 | |
| 31292 | if id: |
| 31293 | fit.addCommandBonus(id, value, module, kwargs['effect']) |
| 31294 | |
| 31295 | |
| 31296 | class Effect6762(BaseEffect): |
nothing calls this directly
no test coverage detected