(fit, beacon, context, projectionRange, **kwargs)
| 34356 | |
| 34357 | @staticmethod |
| 34358 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34359 | for x in range(1, 3): |
| 34360 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34361 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34362 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34363 | |
| 34364 | if id: |
| 34365 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34366 | |
| 34367 | |
| 34368 | class Effect7063(BaseEffect): |
nothing calls this directly
no test coverage detected