Increase attack type booster limit to 99

This commit is contained in:
Flashfyre 2024-04-04 20:42:55 -04:00
parent e76fa25bc8
commit ea562bbd87
1 changed files with 1 additions and 1 deletions

View File

@ -694,7 +694,7 @@ export class AttackTypeBoosterModifier extends PokemonHeldItemModifier {
} }
getMaxHeldItemCount(pokemon: Pokemon): integer { getMaxHeldItemCount(pokemon: Pokemon): integer {
return 10; return 99;
} }
} }