From cfc9c82dd1e8e26fae90bd163fc1484f9ae316bc Mon Sep 17 00:00:00 2001 From: Blitzy <118096277+Blitz425@users.noreply.github.com> Date: Sat, 28 Sep 2024 20:59:21 -0500 Subject: [PATCH] Increase Champion BST --- src/data/trainer-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/trainer-config.ts b/src/data/trainer-config.ts index 75a849574ea..654ffa1c7e8 100644 --- a/src/data/trainer-config.ts +++ b/src/data/trainer-config.ts @@ -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, "_");