(fit, beacon, context, projectionRange, **kwargs)
| 34285 | |
| 34286 | @staticmethod |
| 34287 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34288 | for x in range(1, 3): |
| 34289 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34290 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34291 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34292 | if id: |
| 34293 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34294 | |
| 34295 | |
| 34296 | class Effect7060(BaseEffect): |
nothing calls this directly
no test coverage detected