(fit, beacon, context, projectionRange, **kwargs)
| 34179 | |
| 34180 | @staticmethod |
| 34181 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34182 | for x in range(1, 3): |
| 34183 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34184 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34185 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34186 | if id: |
| 34187 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34188 | |
| 34189 | |
| 34190 | class Effect7052(BaseEffect): |
nothing calls this directly
no test coverage detected