[Hotfix] Fix IVs not being all 10 for fresh start challenge (#3175)

This commit is contained in:
Tempoanon 2024-07-27 23:22:45 -04:00 committed by GitHub
parent bb005bb506
commit 806f0f4e83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -655,6 +655,7 @@ export class FreshStartChallenge extends Challenge {
pokemon.variant = 0; // Not shiny
pokemon.gender = Gender.MALE; // Starters default to male
pokemon.formIndex = 0; // Froakie should be base form
pokemon.ivs = [10, 10, 10, 10, 10, 10]; // Default IVs of 10 for all stats
return true;
}