(fit, module, context, projectionRange, **kwargs)
| 31182 | |
| 31183 | @staticmethod |
| 31184 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31185 | for x in range(1, 5): |
| 31186 | if module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)): |
| 31187 | value = module.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 31188 | id = module.getModifiedChargeAttr('warfareBuff{}ID'.format(x)) |
| 31189 | |
| 31190 | if id: |
| 31191 | fit.addCommandBonus(id, value, module, kwargs['effect']) |
| 31192 | |
| 31193 | |
| 31194 | class Effect6734(BaseEffect): |
nothing calls this directly
no test coverage detected