(fit, beacon, context, projectionRange, **kwargs)
| 34262 | |
| 34263 | @staticmethod |
| 34264 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34265 | for x in range(1, 3): |
| 34266 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34267 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34268 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34269 | if id: |
| 34270 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34271 | |
| 34272 | |
| 34273 | class Effect7059(BaseEffect): |
nothing calls this directly
no test coverage detected