Increase Champion BST

This commit is contained in:
Blitzy 2024-09-28 20:59:21 -05:00 committed by GitHub
parent 000b8d9b2b
commit cfc9c82dd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -914,7 +914,7 @@ export class TrainerConfig {
});
// Set species filter to only include species with a base total of 470 or higher.
this.setSpeciesFilter(p => p.baseTotal >= 470);
this.setSpeciesFilter(p => p.baseTotal >= 508);
// Localize the trainer's name by converting it to lowercase and replacing spaces with underscores.
const nameForCall = this.name.toLowerCase().replace(/\s/g, "_");