(fit, beacon, context, projectionRange, **kwargs)
| 34309 | |
| 34310 | @staticmethod |
| 34311 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34312 | for x in range(1, 5): |
| 34313 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34314 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34315 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34316 | if id: |
| 34317 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34318 | |
| 34319 | |
| 34320 | class Effect7061(BaseEffect): |
nothing calls this directly
no test coverage detected