(fit, beacon, context, projectionRange, **kwargs)
| 34380 | |
| 34381 | @staticmethod |
| 34382 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34383 | for x in range(1, 3): |
| 34384 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34385 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34386 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34387 | |
| 34388 | if id: |
| 34389 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34390 | |
| 34391 | |
| 34392 | class Effect7064(BaseEffect): |
nothing calls this directly
no test coverage detected