From 562ee2cfe5493d44ece9c7c4bbe1e5f78750120c Mon Sep 17 00:00:00 2001 From: Blitzy <118096277+Blitz425@users.noreply.github.com> Date: Sat, 28 Sep 2024 21:19:39 -0500 Subject: [PATCH] Slight E4 BST increase --- 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 654ffa1c7e8..c8a55df409b 100644 --- a/src/data/trainer-config.ts +++ b/src/data/trainer-config.ts @@ -863,7 +863,7 @@ export class TrainerConfig { this.setSpeciesFilter(p => specialtyTypes.some(t => p.isOfType(t)) && p.baseTotal >= 450); this.setSpecialtyTypes(...specialtyTypes); } else { - this.setSpeciesFilter(p => p.baseTotal >= 450); + this.setSpeciesFilter(p => p.baseTotal >= 460); } // Localize the trainer's name by converting it to lowercase and replacing spaces with underscores.