diff --git a/src/arena.ts b/src/arena.ts index 12a8eaf7b50..ca014a22218 100644 --- a/src/arena.ts +++ b/src/arena.ts @@ -100,7 +100,7 @@ export class Arena { getBiomeKey(): string { switch (this.biomeType) { case Biome.TOWN: - return 'grass'; + return 'plains'; case Biome.TALL_GRASS: return 'grass'; case Biome.CITY: diff --git a/src/data/biome.ts b/src/data/biome.ts index 8f484b514e5..a9b6b6faf06 100644 --- a/src/data/biome.ts +++ b/src/data/biome.ts @@ -174,6 +174,7 @@ export const biomePools: BiomePools = { ], [BiomePoolTier.UNCOMMON]: [ { 1: [ Species.PIDGEY ], 18: [ Species.PIDGEOTTO ], 36: [ Species.PIDGEOT ] }, + { 1: [ Species.SPEAROW ], 20: [ Species.FEAROW ] }, Species.PIKACHU, { 1: [ Species.MANKEY ], 28: [ Species.PRIMEAPE ] }, { 1: [ Species.DODUO ], 31: [ Species.DODRIO ] }, @@ -794,10 +795,12 @@ export const biomePools: BiomePools = { ], [ Species.SPEAROW, Type.NORMAL, Type.FLYING, [ [ Biome.TOWN, BiomePoolTier.COMMON ], + [ Biome.PLAINS, BiomePoolTier.UNCOMMON ], [ Biome.MOUNTAIN, BiomePoolTier.COMMON ] ] ], [ Species.FEAROW, Type.NORMAL, Type.FLYING, [ + [ Biome.PLAINS, BiomePoolTier.UNCOMMON ], [ Biome.MOUNTAIN, BiomePoolTier.COMMON ], [ Biome.MOUNTAIN, BiomePoolTier.BOSS ] ]