Formatting Fix

This commit is contained in:
Blitzy 2025-01-28 21:09:54 -06:00 committed by GitHub
parent eaece8c086
commit 91a2f22268
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1956,11 +1956,7 @@ export const trainerConfigs: TrainerConfigs = {
.setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.DECIDUEYE, Species.INCINEROAR, Species.PRIMARINA ], TrainerSlot.TRAINER, true, p => {
p.generateAndPopulateMoveset();
p.setBoss(true, 2);
if (p.species.speciesId === Species.PRIMARINA) {
p.gender = Gender.FEMALE
} else {
p.gender = Gender.MALE;
}
p.gender = p.species.speciesId === Species.PRIMARINA ? Gender.FEMALE : Gender.MALE;
}))
.setGenModifiersFunc(party => {
const teraPokemon = party[3];