mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-06 16:32:16 +02:00
Fix Notes
This commit is contained in:
parent
452bcb1a7c
commit
eda3081113
@ -3224,7 +3224,7 @@ export const trainerConfigs: TrainerConfigs = {
|
|||||||
.setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GOLISOPOD ]))
|
.setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GOLISOPOD ]))
|
||||||
.setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.EISCUE ])) // Tera Water Eiscue
|
.setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.EISCUE ])) // Tera Water Eiscue
|
||||||
.setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.PELIPPER ], TrainerSlot.TRAINER, true, p => {
|
.setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.PELIPPER ], TrainerSlot.TRAINER, true, p => {
|
||||||
p.abilityIndex = 1;
|
p.abilityIndex = 1; // Drizzle
|
||||||
p.generateAndPopulateMoveset();
|
p.generateAndPopulateMoveset();
|
||||||
}))
|
}))
|
||||||
.setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.TOXAPEX ]))
|
.setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.TOXAPEX ]))
|
||||||
@ -3327,7 +3327,7 @@ export const trainerConfigs: TrainerConfigs = {
|
|||||||
.setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.TALONFLAME ], TrainerSlot.TRAINER, true, p => {
|
.setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.TALONFLAME ], TrainerSlot.TRAINER, true, p => {
|
||||||
p.generateAndPopulateMoveset();
|
p.generateAndPopulateMoveset();
|
||||||
if (!p.moveset.some(move => !isNullOrUndefined(move) && move.moveId === Moves.SUNNY_DAY)) {
|
if (!p.moveset.some(move => !isNullOrUndefined(move) && move.moveId === Moves.SUNNY_DAY)) {
|
||||||
// Check if Techno Blast is in the moveset, if not, replace the third move with Sunny Day.
|
// Check if Sunny Day is in the moveset, if not, replace the third move with Sunny Day.
|
||||||
p.moveset[2] = new PokemonMove(Moves.TECHNO_BLAST);
|
p.moveset[2] = new PokemonMove(Moves.TECHNO_BLAST);
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user