mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
[Balance][Bug] Rival Fight 3 Fix, Move Noibat in Biomes
Electivire corrected to be Electabuzz in Slot 3 on Fight 3 (55) Noibat has been moved from Uncommon -> Rare in Grassy Field
This commit is contained in:
parent
df98e506ad
commit
76453a31d1
@ -163,15 +163,15 @@ export const biomePokemonPools: BiomePokemonPools = {
|
||||
[BiomePoolTier.UNCOMMON]: {
|
||||
[TimeOfDay.DAWN]: [ SpeciesId.SUNKERN, SpeciesId.COMBEE ],
|
||||
[TimeOfDay.DAY]: [ SpeciesId.SUNKERN, SpeciesId.COMBEE ],
|
||||
[TimeOfDay.DUSK]: [ SpeciesId.SEEDOT, SpeciesId.NOIBAT ],
|
||||
[TimeOfDay.NIGHT]: [ SpeciesId.SEEDOT, SpeciesId.NOIBAT ],
|
||||
[TimeOfDay.DUSK]: [ SpeciesId.SEEDOT ],
|
||||
[TimeOfDay.NIGHT]: [ SpeciesId.SEEDOT ],
|
||||
[TimeOfDay.ALL]: [ SpeciesId.MILTANK, SpeciesId.CHERUBI, SpeciesId.FOONGUS, ]
|
||||
},
|
||||
[BiomePoolTier.RARE]: {
|
||||
[TimeOfDay.DAWN]: [],
|
||||
[TimeOfDay.DAY]: [],
|
||||
[TimeOfDay.DUSK]: [],
|
||||
[TimeOfDay.NIGHT]: [],
|
||||
[TimeOfDay.DUSK]: [ SpeciesId.NOIBAT ],
|
||||
[TimeOfDay.NIGHT]: [ SpeciesId.NOIBAT ],
|
||||
[TimeOfDay.ALL]: [ SpeciesId.BULBASAUR, SpeciesId.GROWLITHE, SpeciesId.TURTWIG, SpeciesId.BONSLY ]
|
||||
},
|
||||
[BiomePoolTier.SUPER_RARE]: { [TimeOfDay.DAWN]: [], [TimeOfDay.DAY]: [], [TimeOfDay.DUSK]: [], [TimeOfDay.NIGHT]: [], [TimeOfDay.ALL]: [] },
|
||||
|
||||
@ -3547,7 +3547,7 @@ export function initBiomes() {
|
||||
],
|
||||
[SpeciesId.NOIBAT, PokemonType.FLYING, PokemonType.DRAGON, [
|
||||
[BiomeId.CAVE, BiomePoolTier.UNCOMMON],
|
||||
[BiomeId.GRASS, BiomePoolTier.UNCOMMON, [TimeOfDay.DUSK, TimeOfDay.NIGHT]]
|
||||
[BiomeId.GRASS, BiomePoolTier.RARE, [TimeOfDay.DUSK, TimeOfDay.NIGHT]]
|
||||
]
|
||||
],
|
||||
[SpeciesId.NOIVERN, PokemonType.FLYING, PokemonType.DRAGON, [
|
||||
|
||||
@ -298,7 +298,7 @@ const SLOT_3_FIGHT_3 = [
|
||||
SpeciesId.RHYDON,
|
||||
SpeciesId.TANGROWTH,
|
||||
SpeciesId.PORYGON2,
|
||||
SpeciesId.ELECTIVIRE,
|
||||
SpeciesId.ELECTABUZZ,
|
||||
SpeciesId.MAGMAR,
|
||||
SpeciesId.AZUMARILL,
|
||||
SpeciesId.URSARING,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user