[Balance] Remove accuracy cap from Wide Lens

This commit is contained in:
damocleas 2025-04-05 01:45:10 -04:00 committed by GitHub
commit fdf8c1a695
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2734,7 +2734,7 @@ export class PokemonMoveAccuracyBoosterModifier extends PokemonHeldItemModifier
* @returns always `true` * @returns always `true`
*/ */
override apply(_pokemon: Pokemon, moveAccuracy: NumberHolder): boolean { override apply(_pokemon: Pokemon, moveAccuracy: NumberHolder): boolean {
moveAccuracy.value = Math.min(moveAccuracy.value + this.accuracyAmount * this.getStackCount(), 100); moveAccuracy.value = moveAccuracy.value + this.accuracyAmount * this.getStackCount();
return true; return true;
} }