mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-21 00:58:33 +01:00
[Balance] Remove accuracy cap from Wide Lens
This commit is contained in:
commit
fdf8c1a695
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user