Each Brass Knuckles copy contributes two linear scaling stats:
1. Damage Bonus
Each copy adds +25% damage against nearby enemies:
$$
\text{BonusDamage}(n) = 0.25n
$$
2. Radius Increase
Each copy increases the proximity check radius by +2 units:
$$
\text{Radius}(n) = 8 + 2n
$$
There is no cap on either the damage bonus or the radius.
More copies = larger radius AND higher bonus damage.
Example table
| Copies (n) | Radius | Bonus Damage |
|---|
| 1 | 10 | +25% |
| 3 | 14 | +75% |
| 5 | 18 | +125% |
| 10 | 28 | +250% |