mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
[Misc] Update biome pools in init functions (#6572)
Added new biome entries for Type: Null, Silvally, Poipole, Naganadel, Kubfu, Urshifu, Scientist, and Swimmer to their respective init functions, and reran `outputPools`.
This commit is contained in:
parent
3d9e493e5f
commit
0e87391b20
@ -5627,10 +5627,12 @@ export function initBiomes() {
|
||||
]
|
||||
],
|
||||
[ SpeciesId.TYPE_NULL, PokemonType.NORMAL, -1, [
|
||||
[ BiomeId.LABORATORY, BiomePoolTier.ULTRA_RARE ]
|
||||
[ BiomeId.LABORATORY, BiomePoolTier.ULTRA_RARE ],
|
||||
[ BiomeId.LABORATORY, BiomePoolTier.BOSS_SUPER_RARE ]
|
||||
]
|
||||
],
|
||||
[ SpeciesId.SILVALLY, PokemonType.NORMAL, -1, [
|
||||
[ BiomeId.LABORATORY, BiomePoolTier.ULTRA_RARE ],
|
||||
[ BiomeId.LABORATORY, BiomePoolTier.BOSS_SUPER_RARE ]
|
||||
]
|
||||
],
|
||||
@ -5773,10 +5775,12 @@ export function initBiomes() {
|
||||
]
|
||||
],
|
||||
[ SpeciesId.POIPOLE, PokemonType.POISON, -1, [
|
||||
[ BiomeId.SWAMP, BiomePoolTier.ULTRA_RARE ]
|
||||
[ BiomeId.SWAMP, BiomePoolTier.ULTRA_RARE ],
|
||||
[ BiomeId.SWAMP, BiomePoolTier.BOSS_SUPER_RARE ]
|
||||
]
|
||||
],
|
||||
[ SpeciesId.NAGANADEL, PokemonType.POISON, PokemonType.DRAGON, [
|
||||
[ BiomeId.SWAMP, BiomePoolTier.ULTRA_RARE ],
|
||||
[ BiomeId.SWAMP, BiomePoolTier.BOSS_SUPER_RARE ]
|
||||
]
|
||||
],
|
||||
@ -6165,10 +6169,12 @@ export function initBiomes() {
|
||||
]
|
||||
],
|
||||
[ SpeciesId.KUBFU, PokemonType.FIGHTING, -1, [
|
||||
[ BiomeId.DOJO, BiomePoolTier.ULTRA_RARE ]
|
||||
[ BiomeId.DOJO, BiomePoolTier.ULTRA_RARE ],
|
||||
[ BiomeId.DOJO, BiomePoolTier.BOSS_SUPER_RARE ]
|
||||
]
|
||||
],
|
||||
[ SpeciesId.URSHIFU, PokemonType.FIGHTING, PokemonType.DARK, [
|
||||
[ BiomeId.DOJO, BiomePoolTier.ULTRA_RARE ],
|
||||
[ BiomeId.DOJO, BiomePoolTier.BOSS_SUPER_RARE ]
|
||||
]
|
||||
],
|
||||
@ -7209,7 +7215,8 @@ export function initBiomes() {
|
||||
],
|
||||
[ TrainerType.SCIENTIST, [
|
||||
[ BiomeId.DESERT, BiomePoolTier.COMMON ],
|
||||
[ BiomeId.RUINS, BiomePoolTier.COMMON ]
|
||||
[ BiomeId.RUINS, BiomePoolTier.COMMON ],
|
||||
[ BiomeId.LABORATORY, BiomePoolTier.COMMON ]
|
||||
]
|
||||
],
|
||||
[ TrainerType.SMASHER, []],
|
||||
@ -7224,7 +7231,8 @@ export function initBiomes() {
|
||||
]
|
||||
],
|
||||
[ TrainerType.SWIMMER, [
|
||||
[ BiomeId.SEA, BiomePoolTier.COMMON ]
|
||||
[ BiomeId.SEA, BiomePoolTier.COMMON ],
|
||||
[ BiomeId.SEABED, BiomePoolTier.COMMON ]
|
||||
]
|
||||
],
|
||||
[ TrainerType.TWINS, [
|
||||
@ -7590,11 +7598,13 @@ export function initBiomes() {
|
||||
[ TrainerType.ALDER, []],
|
||||
[ TrainerType.IRIS, []],
|
||||
[ TrainerType.DIANTHA, []],
|
||||
[ TrainerType.KUKUI, []],
|
||||
[ TrainerType.HAU, []],
|
||||
[ TrainerType.LEON, []],
|
||||
[ TrainerType.MUSTARD, []],
|
||||
[ TrainerType.GEETA, []],
|
||||
[ TrainerType.NEMONA, []],
|
||||
[ TrainerType.KIERAN, []],
|
||||
[ TrainerType.LEON, []],
|
||||
[ TrainerType.RIVAL, []]
|
||||
];
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user