[Hotfix] Fix IVs not being all 10 for fresh start challenge (#3175)
This commit is contained in:
parent
bb005bb506
commit
806f0f4e83
|
@ -655,6 +655,7 @@ export class FreshStartChallenge extends Challenge {
|
||||||
pokemon.variant = 0; // Not shiny
|
pokemon.variant = 0; // Not shiny
|
||||||
pokemon.gender = Gender.MALE; // Starters default to male
|
pokemon.gender = Gender.MALE; // Starters default to male
|
||||||
pokemon.formIndex = 0; // Froakie should be base form
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue