(fit, module, context, projectionRange, **kwargs)
| 31246 | |
| 31247 | @staticmethod |
| 31248 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31249 | for x in range(1, 5): |
| 31250 | if module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)): |
| 31251 | value = module.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 31252 | id = module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)) |
| 31253 | |
| 31254 | if id: |
| 31255 | fit.addCommandBonus(id, value, module, kwargs['effect']) |
| 31256 | |
| 31257 | |
| 31258 | class Effect6737(BaseEffect): |
nothing calls this directly
no test coverage detected