Update src/data/challenge.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Scooom 2025-01-06 14:54:23 -06:00 committed by GitHub
parent 1734854bd8
commit fae46ecc48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -714,18 +714,6 @@ export class FlipStatChallenge extends Challenge {
super(Challenges.FLIP_STAT, 1);
}
applyStarterChoice(pokemon: PokemonSpecies, valid: Utils.BooleanHolder): boolean {
return true;
}
applyStarterCost(species: Species, cost: Utils.NumberHolder): boolean {
return true;
}
override getDifficulty(): number {
return 0;
}
static loadChallenge(source: FlipStatChallenge | any): FlipStatChallenge {
const newChallenge = new FlipStatChallenge();