mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-22 17:44:19 +01:00
[Balance] Fix Depot Agent trainer type lacking Pokémon (#5623)
Fix Depot Agent trainer type lacking Pokémon Also removes a stray duplicate Barboach from the Fisherman.
This commit is contained in:
parent
3ec8f236f9
commit
4740b593a0
@ -1318,7 +1318,16 @@ export const trainerConfigs: TrainerConfigs = {
|
||||
[TrainerPoolTier.RARE]: [Species.BELLOSSOM, Species.HITMONTOP, Species.MIME_JR, Species.ORICORIO],
|
||||
[TrainerPoolTier.SUPER_RARE]: [Species.QUAXLY, Species.JANGMO_O],
|
||||
}),
|
||||
[TrainerType.DEPOT_AGENT]: new TrainerConfig(++t).setMoneyMultiplier(1.45).setEncounterBgm(TrainerType.CLERK),
|
||||
[TrainerType.DEPOT_AGENT]: new TrainerConfig(++t)
|
||||
.setMoneyMultiplier(1.45)
|
||||
.setEncounterBgm(TrainerType.CLERK)
|
||||
.setPartyTemplates(
|
||||
trainerPartyTemplates.TWO_AVG,
|
||||
trainerPartyTemplates.THREE_WEAK,
|
||||
trainerPartyTemplates.THREE_AVG,
|
||||
trainerPartyTemplates.FOUR_WEAK,
|
||||
)
|
||||
.setSpeciesFilter(s => s.isOfType(PokemonType.GROUND)),
|
||||
[TrainerType.DOCTOR]: new TrainerConfig(++t)
|
||||
.setHasGenders("Nurse", "lass")
|
||||
.setHasDouble("Medical Team")
|
||||
@ -1369,7 +1378,6 @@ export const trainerConfigs: TrainerConfigs = {
|
||||
Species.CHINCHOU,
|
||||
Species.CORSOLA,
|
||||
Species.WAILMER,
|
||||
Species.BARBOACH,
|
||||
Species.CLAMPERL,
|
||||
Species.LUVDISC,
|
||||
Species.MANTYKE,
|
||||
|
Loading…
x
Reference in New Issue
Block a user