(fit, beacon, context, projectionRange, **kwargs)
| 69 | |
| 70 | @staticmethod |
| 71 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 72 | for i in range(1, 4): |
| 73 | if id := beacon.getModifiedItemAttr(f'warfareBuff{i}ID'): |
| 74 | value = beacon.getModifiedItemAttr(f'warfareBuff{i}Value') |
| 75 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 76 | |
| 77 | |
| 78 | class Effect100002(BaseEffect): |
nothing calls this directly
no test coverage detected