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 => { .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.DECIDUEYE, Species.INCINEROAR, Species.PRIMARINA ], TrainerSlot.TRAINER, true, p => {
p.generateAndPopulateMoveset(); p.generateAndPopulateMoveset();
p.setBoss(true, 2); p.setBoss(true, 2);
if (p.species.speciesId === Species.PRIMARINA) { p.gender = p.species.speciesId === Species.PRIMARINA ? Gender.FEMALE : Gender.MALE;
p.gender = Gender.FEMALE
} else {
p.gender = Gender.MALE;
}
})) }))
.setGenModifiersFunc(party => { .setGenModifiersFunc(party => {
const teraPokemon = party[3]; const teraPokemon = party[3];