mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-23 01:54:49 +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.RARE]: [Species.BELLOSSOM, Species.HITMONTOP, Species.MIME_JR, Species.ORICORIO],
|
||||||
[TrainerPoolTier.SUPER_RARE]: [Species.QUAXLY, Species.JANGMO_O],
|
[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)
|
[TrainerType.DOCTOR]: new TrainerConfig(++t)
|
||||||
.setHasGenders("Nurse", "lass")
|
.setHasGenders("Nurse", "lass")
|
||||||
.setHasDouble("Medical Team")
|
.setHasDouble("Medical Team")
|
||||||
@ -1369,7 +1378,6 @@ export const trainerConfigs: TrainerConfigs = {
|
|||||||
Species.CHINCHOU,
|
Species.CHINCHOU,
|
||||||
Species.CORSOLA,
|
Species.CORSOLA,
|
||||||
Species.WAILMER,
|
Species.WAILMER,
|
||||||
Species.BARBOACH,
|
|
||||||
Species.CLAMPERL,
|
Species.CLAMPERL,
|
||||||
Species.LUVDISC,
|
Species.LUVDISC,
|
||||||
Species.MANTYKE,
|
Species.MANTYKE,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user