Add construction site and jungle biomes

pull/2/head
Flashfyre 2023-10-09 23:43:19 -04:00
parent 6d73d71608
commit 75bd40863e
4 changed files with 268 additions and 170 deletions

Binary file not shown.

BIN
public/audio/bgm/jungle.mp3 Normal file

Binary file not shown.

View File

@ -292,6 +292,10 @@ export class Arena {
return 5.130; return 5.130;
case Biome.SPACE: case Biome.SPACE:
return 21.347; return 21.347;
case Biome.CONSTRUCTION_SITE:
return 1.222;
case Biome.JUNGLE:
return 2.477;
} }
} }
} }
@ -300,6 +304,10 @@ export function getBiomeKey(biome: Biome): string {
switch (biome) { switch (biome) {
case Biome.POWER_PLANT: case Biome.POWER_PLANT:
return 'ruins'; return 'ruins';
case Biome.CONSTRUCTION_SITE:
return 'city';
case Biome.JUNGLE:
return 'tall_grass';
case Biome.END: case Biome.END:
return 'wasteland'; return 'wasteland';
} }

View File

@ -33,7 +33,9 @@ export enum Biome {
WASTELAND, WASTELAND,
ABYSS, ABYSS,
SPACE, SPACE,
END CONSTRUCTION_SITE,
JUNGLE,
END = 50
}; };
export function getBiomeName(biome: Biome) { export function getBiomeName(biome: Biome) {
@ -62,8 +64,8 @@ export const biomeLinks: BiomeLinks = {
[Biome.PLAINS]: [ Biome.GRASS, Biome.CITY, Biome.LAKE ], [Biome.PLAINS]: [ Biome.GRASS, Biome.CITY, Biome.LAKE ],
[Biome.GRASS]: Biome.TALL_GRASS, [Biome.GRASS]: Biome.TALL_GRASS,
[Biome.TALL_GRASS]: [ Biome.FOREST, Biome.CAVE ], [Biome.TALL_GRASS]: [ Biome.FOREST, Biome.CAVE ],
[Biome.CITY]: [ Biome.DOJO, Biome.POWER_PLANT ], [Biome.CITY]: [ Biome.CONSTRUCTION_SITE ],
[Biome.FOREST]: Biome.MEADOW, [Biome.FOREST]: [ Biome.JUNGLE, Biome.MEADOW ],
[Biome.SEA]: [ Biome.SEABED, Biome.ICE_CAVE ], [Biome.SEA]: [ Biome.SEABED, Biome.ICE_CAVE ],
[Biome.SWAMP]: [ Biome.GRAVEYARD, Biome.TALL_GRASS ], [Biome.SWAMP]: [ Biome.GRAVEYARD, Biome.TALL_GRASS ],
[Biome.BEACH]: Biome.SEA, [Biome.BEACH]: Biome.SEA,
@ -83,7 +85,9 @@ export const biomeLinks: BiomeLinks = {
[Biome.RUINS]: Biome.FOREST, [Biome.RUINS]: Biome.FOREST,
[Biome.WASTELAND]: Biome.BADLANDS, [Biome.WASTELAND]: Biome.BADLANDS,
[Biome.ABYSS]: Biome.SPACE, [Biome.ABYSS]: Biome.SPACE,
[Biome.SPACE]: Biome.RUINS [Biome.SPACE]: Biome.RUINS,
[Biome.CONSTRUCTION_SITE]: [ Biome.DOJO, Biome.POWER_PLANT ],
[Biome.JUNGLE]: Biome.SWAMP
}; };
export enum BiomePoolTier { export enum BiomePoolTier {
@ -216,17 +220,11 @@ export const biomePokemonPools: BiomePokemonPools = {
{ 1: [ Species.COTTONEE ], 20: [ Species.WHIMSICOTT ] } { 1: [ Species.COTTONEE ], 20: [ Species.WHIMSICOTT ] }
], ],
[BiomePoolTier.UNCOMMON]: [ { 1: [ Species.COMBEE ], 21: [ Species.VESPIQUEN ] }, { 1: [ Species.CHERUBI ], 25: [ Species.CHERRIM ] }, { 1: [ Species.FOONGUS ], 39: [ Species.AMOONGUSS ] } ], [BiomePoolTier.UNCOMMON]: [ { 1: [ Species.COMBEE ], 21: [ Species.VESPIQUEN ] }, { 1: [ Species.CHERUBI ], 25: [ Species.CHERRIM ] }, { 1: [ Species.FOONGUS ], 39: [ Species.AMOONGUSS ] } ],
[BiomePoolTier.RARE]: [ [BiomePoolTier.RARE]: [ { 1: [ Species.BULBASAUR ], 16: [ Species.IVYSAUR ], 32: [ Species.VENUSAUR ] }, Species.GROWLITHE, { 1: [ Species.TURTWIG ], 18: [ Species.GROTLE ], 32: [ Species.TORTERRA ] } ],
{ 1: [ Species.BULBASAUR ], 16: [ Species.IVYSAUR ], 32: [ Species.VENUSAUR ] },
Species.GROWLITHE,
Species.EXEGGCUTE,
{ 1: [ Species.TURTWIG ], 18: [ Species.GROTLE ], 32: [ Species.TORTERRA ] },
{ 1: [ Species.SNIVY ], 17: [ Species.SERVINE ], 36: [ Species.SERPERIOR ] }
],
[BiomePoolTier.SUPER_RARE]: [ Species.SUDOWOODO ], [BiomePoolTier.SUPER_RARE]: [ Species.SUDOWOODO ],
[BiomePoolTier.ULTRA_RARE]: [], [BiomePoolTier.ULTRA_RARE]: [],
[BiomePoolTier.BOSS]: [ Species.JUMPLUFF, Species.SUNFLORA, Species.WHIMSICOTT ], [BiomePoolTier.BOSS]: [ Species.JUMPLUFF, Species.SUNFLORA, Species.WHIMSICOTT ],
[BiomePoolTier.BOSS_RARE]: [ Species.VENUSAUR, Species.SUDOWOODO, Species.TORTERRA, Species.SERPERIOR ], [BiomePoolTier.BOSS_RARE]: [ Species.VENUSAUR, Species.SUDOWOODO, Species.TORTERRA ],
[BiomePoolTier.BOSS_SUPER_RARE]: [], [BiomePoolTier.BOSS_SUPER_RARE]: [],
[BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.SHAYMIN ] [BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.SHAYMIN ]
}, },
@ -235,28 +233,22 @@ export const biomePokemonPools: BiomePokemonPools = {
{ 1: [ Species.NIDORAN_F ], 16: [ Species.NIDORINA ] }, { 1: [ Species.NIDORAN_F ], 16: [ Species.NIDORINA ] },
{ 1: [ Species.NIDORAN_M ], 16: [ Species.NIDORINO ] }, { 1: [ Species.NIDORAN_M ], 16: [ Species.NIDORINO ] },
{ 1: [ Species.ODDISH ], 21: [ Species.GLOOM ] }, { 1: [ Species.ODDISH ], 21: [ Species.GLOOM ] },
Species.TANGELA, { 1: [ Species.NINCADA ], 20: [ Species.NINJASK ] },
{ 1: [ Species.NINCADA ], 20: [ Species.NINJASK ] }
],
[BiomePoolTier.UNCOMMON]: [
Species.VULPIX,
{ 1: [ Species.PARAS ], 24: [ Species.PARASECT ] },
{ 1: [ Species.VENONAT ], 31: [ Species.VENOMOTH ] },
{ 1: [ Species.SPINARAK ], 22: [ Species.ARIADOS ] },
{ 1: [ Species.KRICKETOT ], 10: [ Species.KRICKETUNE ] } { 1: [ Species.KRICKETOT ], 10: [ Species.KRICKETUNE ] }
], ],
[BiomePoolTier.UNCOMMON]: [ Species.VULPIX, { 1: [ Species.PARAS ], 24: [ Species.PARASECT ] }, { 1: [ Species.VENONAT ], 31: [ Species.VENOMOTH ] }, { 1: [ Species.SPINARAK ], 22: [ Species.ARIADOS ] } ],
[BiomePoolTier.RARE]: [ Species.PINSIR, { 1: [ Species.CHIKORITA ], 16: [ Species.BAYLEEF ], 32: [ Species.MEGANIUM ] }, Species.GIRAFARIG, Species.ZANGOOSE, Species.KECLEON, Species.TROPIUS ], [BiomePoolTier.RARE]: [ Species.PINSIR, { 1: [ Species.CHIKORITA ], 16: [ Species.BAYLEEF ], 32: [ Species.MEGANIUM ] }, Species.GIRAFARIG, Species.ZANGOOSE, Species.KECLEON, Species.TROPIUS ],
[BiomePoolTier.SUPER_RARE]: [ Species.KANGASKHAN, Species.SCYTHER, Species.SHEDINJA ], [BiomePoolTier.SUPER_RARE]: [ Species.SCYTHER, Species.SHEDINJA ],
[BiomePoolTier.ULTRA_RARE]: [], [BiomePoolTier.ULTRA_RARE]: [],
[BiomePoolTier.BOSS]: [ Species.NIDOQUEEN, Species.NIDOKING, Species.VILEPLUME, Species.NINJASK, Species.ZANGOOSE, Species.KECLEON, Species.TROPIUS, Species.KRICKETUNE, Species.TANGROWTH ], [BiomePoolTier.BOSS]: [ Species.NIDOQUEEN, Species.NIDOKING, Species.VILEPLUME, Species.NINJASK, Species.ZANGOOSE, Species.KECLEON, Species.KRICKETUNE ],
[BiomePoolTier.BOSS_RARE]: [ Species.KANGASKHAN, Species.PINSIR, Species.MEGANIUM, Species.BELLOSSOM, Species.GIRAFARIG ], [BiomePoolTier.BOSS_RARE]: [ Species.PINSIR, Species.MEGANIUM, Species.BELLOSSOM, Species.GIRAFARIG ],
[BiomePoolTier.BOSS_SUPER_RARE]: [], [BiomePoolTier.BOSS_SUPER_RARE]: [],
[BiomePoolTier.BOSS_ULTRA_RARE]: [] [BiomePoolTier.BOSS_ULTRA_RARE]: []
}, },
[Biome.CITY]: { [Biome.CITY]: {
[BiomePoolTier.COMMON]: [ [BiomePoolTier.COMMON]: [
{ 1: [ Species.RATTATA ], 20: [ Species.RATICATE ] }, { 1: [ Species.RATTATA ], 20: [ Species.RATICATE ] },
Species.GRIMER, { 1: [ Species.GRIMER ], 38: [ Species.MUK ] },
{ 1: [ Species.KOFFING ], 35: [ Species.WEEZING ] }, { 1: [ Species.KOFFING ], 35: [ Species.WEEZING ] },
{ 1: [ Species.PATRAT ], 20: [ Species.WATCHOG ] }, { 1: [ Species.PATRAT ], 20: [ Species.WATCHOG ] },
{ 1: [ Species.LILLIPUP ], 16: [ Species.HERDIER ], 32: [ Species.STOUTLAND ] }, { 1: [ Species.LILLIPUP ], 16: [ Species.HERDIER ], 32: [ Species.STOUTLAND ] },
@ -264,8 +256,8 @@ export const biomePokemonPools: BiomePokemonPools = {
], ],
[BiomePoolTier.UNCOMMON]: [ { 1: [ Species.BURMY ], 20: [ Species.WORMADAM ] }, { 1: [ Species.STUNKY ], 34: [ Species.SKUNTANK ] } ], [BiomePoolTier.UNCOMMON]: [ { 1: [ Species.BURMY ], 20: [ Species.WORMADAM ] }, { 1: [ Species.STUNKY ], 34: [ Species.SKUNTANK ] } ],
[BiomePoolTier.RARE]: [], [BiomePoolTier.RARE]: [],
[BiomePoolTier.SUPER_RARE]: [ Species.EEVEE, Species.SMEARGLE ], [BiomePoolTier.SUPER_RARE]: [ Species.DITTO, Species.EEVEE, Species.SMEARGLE ],
[BiomePoolTier.ULTRA_RARE]: [ Species.DITTO, Species.CASTFORM ], [BiomePoolTier.ULTRA_RARE]: [ Species.CASTFORM ],
[BiomePoolTier.BOSS]: [ Species.MUK, Species.WEEZING, Species.WORMADAM, Species.SKUNTANK, Species.WATCHOG, Species.STOUTLAND, Species.GARBODOR ], [BiomePoolTier.BOSS]: [ Species.MUK, Species.WEEZING, Species.WORMADAM, Species.SKUNTANK, Species.WATCHOG, Species.STOUTLAND, Species.GARBODOR ],
[BiomePoolTier.BOSS_RARE]: [ Species.CASTFORM ], [BiomePoolTier.BOSS_RARE]: [ Species.CASTFORM ],
[BiomePoolTier.BOSS_SUPER_RARE]: [], [BiomePoolTier.BOSS_SUPER_RARE]: [],
@ -284,44 +276,25 @@ export const biomePokemonPools: BiomePokemonPools = {
{ 1: [ Species.SEEDOT ], 14: [ Species.NUZLEAF ] }, { 1: [ Species.SEEDOT ], 14: [ Species.NUZLEAF ] },
{ 1: [ Species.SHROOMISH ], 23: [ Species.BRELOOM ] }, { 1: [ Species.SHROOMISH ], 23: [ Species.BRELOOM ] },
{ 1: [ Species.COMBEE ], 21: [ Species.VESPIQUEN ] }, { 1: [ Species.COMBEE ], 21: [ Species.VESPIQUEN ] },
{ 1: [ Species.CHERUBI ], 25: [ Species.CHERRIM ] },
{ 1: [ Species.SEWADDLE ], 20: [ Species.SWADLOON ], 30: [ Species.LEAVANNY ] },
{ 1: [ Species.VENIPEDE ], 22: [ Species.WHIRLIPEDE ], 30: [ Species.SCOLIPEDE ] }, { 1: [ Species.VENIPEDE ], 22: [ Species.WHIRLIPEDE ], 30: [ Species.SCOLIPEDE ] },
Species.PETILIL, Species.PETILIL,
{ 1: [ Species.DEERLING ], 34: [ Species.SAWSBUCK ] }, { 1: [ Species.DEERLING ], 34: [ Species.SAWSBUCK ] }
{ 1: [ Species.FOONGUS ], 39: [ Species.AMOONGUSS ] }
], ],
[BiomePoolTier.UNCOMMON]: [ [BiomePoolTier.UNCOMMON]: [
{ 1: [ Species.EKANS ], 22: [ Species.ARBOK ] }, { 1: [ Species.EKANS ], 22: [ Species.ARBOK ] },
Species.EXEGGCUTE,
Species.TANGELA,
{ 1: [ Species.HOOTHOOT ], 20: [ Species.NOCTOWL ] }, { 1: [ Species.HOOTHOOT ], 20: [ Species.NOCTOWL ] },
Species.AIPOM,
{ 1: [ Species.TEDDIURSA ], 30: [ Species.URSARING ] }, { 1: [ Species.TEDDIURSA ], 30: [ Species.URSARING ] },
Species.ROSELIA, Species.ROSELIA,
Species.TROPIUS,
{ 1: [ Species.BURMY ], 20: [ Species.MOTHIM, Species.WORMADAM ] }, { 1: [ Species.BURMY ], 20: [ Species.MOTHIM, Species.WORMADAM ] },
{ 1: [ Species.PANSAGE ], 20: [ Species.SIMISAGE ] }, { 1: [ Species.PANSAGE ], 20: [ Species.SIMISAGE ] },
{ 1: [ Species.JOLTIK ], 36: [ Species.GALVANTULA ] } { 1: [ Species.SEWADDLE ], 20: [ Species.SWADLOON ], 30: [ Species.LEAVANNY ] }
], ],
[BiomePoolTier.RARE]: [ [BiomePoolTier.RARE]: [ Species.EXEGGCUTE, Species.SCYTHER, Species.HERACROSS, Species.STANTLER, { 1: [ Species.TREECKO ], 16: [ Species.GROVYLE ], 36: [ Species.SCEPTILE ] }, Species.TROPIUS, Species.KARRABLAST, Species.SHELMET ],
Species.SCYTHER, [BiomePoolTier.SUPER_RARE]: [ Species.DURANT ],
Species.YANMA,
Species.HERACROSS,
Species.STANTLER,
{ 1: [ Species.TREECKO ], 16: [ Species.GROVYLE ], 36: [ Species.SCEPTILE ] },
{ 1: [ Species.SLAKOTH ], 18: [ Species.VIGOROTH ], 36: [ Species.SLAKING ] },
Species.SEVIPER,
Species.CARNIVINE,
Species.KARRABLAST,
Species.SHELMET
],
[BiomePoolTier.SUPER_RARE]: [ Species.CHATOT, Species.DURANT ],
[BiomePoolTier.ULTRA_RARE]: [ Species.CELEBI ], [BiomePoolTier.ULTRA_RARE]: [ Species.CELEBI ],
[BiomePoolTier.BOSS]: [ [BiomePoolTier.BOSS]: [
Species.VENOMOTH, Species.VENOMOTH,
Species.VICTREEBEL, Species.VICTREEBEL,
Species.EXEGGUTOR,
Species.NOCTOWL, Species.NOCTOWL,
Species.ARIADOS, Species.ARIADOS,
Species.FORRETRESS, Species.FORRETRESS,
@ -329,23 +302,15 @@ export const biomePokemonPools: BiomePokemonPools = {
Species.DUSTOX, Species.DUSTOX,
Species.SHIFTRY, Species.SHIFTRY,
Species.BRELOOM, Species.BRELOOM,
Species.SEVIPER,
Species.WORMADAM, Species.WORMADAM,
Species.MOTHIM, Species.MOTHIM,
Species.VESPIQUEN, Species.VESPIQUEN,
Species.CHERRIM,
Species.AMBIPOM,
Species.CARNIVINE,
Species.YANMEGA,
Species.SIMISAGE, Species.SIMISAGE,
Species.LEAVANNY,
Species.SCOLIPEDE, Species.SCOLIPEDE,
Species.LILLIGANT, Species.LILLIGANT,
Species.SAWSBUCK, Species.SAWSBUCK
Species.AMOONGUSS,
Species.GALVANTULA
], ],
[BiomePoolTier.BOSS_RARE]: [ Species.SCIZOR, Species.HERACROSS, Species.STANTLER, Species.SCEPTILE, Species.SLAKING, Species.LEAFEON, Species.ESCAVALIER, Species.ACCELGOR, Species.DURANT ], [BiomePoolTier.BOSS_RARE]: [ Species.HERACROSS, Species.STANTLER, Species.SCEPTILE, Species.ESCAVALIER, Species.ACCELGOR, Species.DURANT ],
[BiomePoolTier.BOSS_SUPER_RARE]: [], [BiomePoolTier.BOSS_SUPER_RARE]: [],
[BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.CELEBI ] [BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.CELEBI ]
}, },
@ -636,20 +601,14 @@ export const biomePokemonPools: BiomePokemonPools = {
[BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.GIRATINA ] [BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.GIRATINA ]
}, },
[Biome.DOJO]: { [Biome.DOJO]: {
[BiomePoolTier.COMMON]: [ [BiomePoolTier.COMMON]: [ { 1: [ Species.MANKEY ], 28: [ Species.PRIMEAPE ] }, { 1: [ Species.MAKUHITA ], 24: [ Species.HARIYAMA ] }, { 1: [ Species.MEDITITE ], 37: [ Species.MEDICHAM ] } ],
{ 1: [ Species.MANKEY ], 28: [ Species.PRIMEAPE ] },
{ 1: [ Species.MACHOP ], 28: [ Species.MACHOKE ] },
{ 1: [ Species.MAKUHITA ], 24: [ Species.HARIYAMA ] },
{ 1: [ Species.MEDITITE ], 37: [ Species.MEDICHAM ] },
{ 1: [ Species.TIMBURR ], 25: [ Species.GURDURR ] }
],
[BiomePoolTier.UNCOMMON]: [ { 1: [ Species.CROAGUNK ], 37: [ Species.TOXICROAK ] }, { 1: [ Species.SCRAGGY ], 39: [ Species.SCRAFTY ] }, { 1: [ Species.MIENFOO ], 50: [ Species.MIENSHAO ] } ], [BiomePoolTier.UNCOMMON]: [ { 1: [ Species.CROAGUNK ], 37: [ Species.TOXICROAK ] }, { 1: [ Species.SCRAGGY ], 39: [ Species.SCRAFTY ] }, { 1: [ Species.MIENFOO ], 50: [ Species.MIENSHAO ] } ],
[BiomePoolTier.RARE]: [ { 1: [ Species.TYROGUE ], 20: [ Species.HITMONLEE ] }, Species.HITMONCHAN, Species.LUCARIO, Species.THROH, Species.SAWK ], [BiomePoolTier.RARE]: [ { 1: [ Species.TYROGUE ], 20: [ Species.HITMONLEE ] }, Species.HITMONCHAN, Species.LUCARIO, Species.THROH, Species.SAWK ],
[BiomePoolTier.SUPER_RARE]: [ Species.HITMONTOP, Species.GALLADE ], [BiomePoolTier.SUPER_RARE]: [ Species.HITMONTOP, Species.GALLADE ],
[BiomePoolTier.ULTRA_RARE]: [ Species.COBALION, Species.TERRAKION, Species.VIRIZION ], [BiomePoolTier.ULTRA_RARE]: [ Species.TERRAKION ],
[BiomePoolTier.BOSS]: [ Species.PRIMEAPE, Species.MACHAMP, Species.HITMONLEE, Species.HITMONCHAN, Species.HARIYAMA, Species.MEDICHAM, Species.LUCARIO, Species.TOXICROAK, Species.THROH, Species.SAWK, Species.SCRAFTY, Species.MIENSHAO ], [BiomePoolTier.BOSS]: [ Species.PRIMEAPE, Species.HITMONLEE, Species.HITMONCHAN, Species.HARIYAMA, Species.MEDICHAM, Species.LUCARIO, Species.TOXICROAK, Species.THROH, Species.SAWK, Species.SCRAFTY, Species.MIENSHAO ],
[BiomePoolTier.BOSS_RARE]: [ Species.HITMONTOP, Species.GALLADE ], [BiomePoolTier.BOSS_RARE]: [ Species.HITMONTOP, Species.GALLADE ],
[BiomePoolTier.BOSS_SUPER_RARE]: [ Species.COBALION, Species.TERRAKION, Species.VIRIZION ], [BiomePoolTier.BOSS_SUPER_RARE]: [ Species.TERRAKION ],
[BiomePoolTier.BOSS_ULTRA_RARE]: [] [BiomePoolTier.BOSS_ULTRA_RARE]: []
}, },
[Biome.FACTORY]: { [Biome.FACTORY]: {
@ -664,7 +623,7 @@ export const biomePokemonPools: BiomePokemonPools = {
[BiomePoolTier.RARE]: [], [BiomePoolTier.RARE]: [],
[BiomePoolTier.SUPER_RARE]: [ { 1: [ Species.PORYGON ], 20: [ Species.PORYGON2 ] }, { 1: [ Species.BELDUM ], 20: [ Species.METANG ], 45: [ Species.METAGROSS ] } ], [BiomePoolTier.SUPER_RARE]: [ { 1: [ Species.PORYGON ], 20: [ Species.PORYGON2 ] }, { 1: [ Species.BELDUM ], 20: [ Species.METANG ], 45: [ Species.METAGROSS ] } ],
[BiomePoolTier.ULTRA_RARE]: [ Species.GENESECT ], [BiomePoolTier.ULTRA_RARE]: [ Species.GENESECT ],
[BiomePoolTier.BOSS]: [ Species.CONKELDURR, Species.KLINKLANG ], [BiomePoolTier.BOSS]: [ Species.KLINKLANG ],
[BiomePoolTier.BOSS_RARE]: [], [BiomePoolTier.BOSS_RARE]: [],
[BiomePoolTier.BOSS_SUPER_RARE]: [ Species.GENESECT ], [BiomePoolTier.BOSS_SUPER_RARE]: [ Species.GENESECT ],
[BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.MEWTWO ] [BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.MEWTWO ]
@ -726,6 +685,66 @@ export const biomePokemonPools: BiomePokemonPools = {
[BiomePoolTier.BOSS_SUPER_RARE]: [ Species.JIRACHI, Species.DEOXYS, Species.CRESSELIA ], [BiomePoolTier.BOSS_SUPER_RARE]: [ Species.JIRACHI, Species.DEOXYS, Species.CRESSELIA ],
[BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.RAYQUAZA, Species.ARCEUS ] [BiomePoolTier.BOSS_ULTRA_RARE]: [ Species.RAYQUAZA, Species.ARCEUS ]
}, },
[Biome.CONSTRUCTION_SITE]: {
[BiomePoolTier.COMMON]: [
{ 1: [ Species.MACHOP ], 28: [ Species.MACHOKE ] },
{ 1: [ Species.MAGNEMITE ], 30: [ Species.MAGNETON ] },
{ 1: [ Species.DRILBUR ], 31: [ Species.EXCADRILL ] },
{ 1: [ Species.TIMBURR ], 25: [ Species.GURDURR ] }
],
[BiomePoolTier.UNCOMMON]: [
{ 1: [ Species.GRIMER ], 38: [ Species.MUK ] },
{ 1: [ Species.KOFFING ], 35: [ Species.WEEZING ] },
{ 1: [ Species.RHYHORN ], 42: [ Species.RHYDON ] },
{ 1: [ Species.SCRAGGY ], 39: [ Species.SCRAFTY ] }
],
[BiomePoolTier.RARE]: [ Species.ONIX, { 1: [ Species.TYROGUE ], 20: [ Species.HITMONLEE ] }, Species.HITMONCHAN ],
[BiomePoolTier.SUPER_RARE]: [ Species.DITTO, Species.HITMONTOP ],
[BiomePoolTier.ULTRA_RARE]: [ Species.COBALION ],
[BiomePoolTier.BOSS]: [ Species.MACHAMP, Species.CONKELDURR ],
[BiomePoolTier.BOSS_RARE]: [],
[BiomePoolTier.BOSS_SUPER_RARE]: [ Species.COBALION ],
[BiomePoolTier.BOSS_ULTRA_RARE]: []
},
[Biome.JUNGLE]: {
[BiomePoolTier.COMMON]: [
{ 1: [ Species.SPINARAK ], 22: [ Species.ARIADOS ] },
Species.AIPOM,
Species.DONPHAN,
Species.SHROOMISH,
Species.VESPIQUEN,
{ 1: [ Species.CHERUBI ], 25: [ Species.CHERRIM ] },
{ 1: [ Species.PURRLOIN ], 20: [ Species.LIEPARD ] },
{ 1: [ Species.BLITZLE ], 27: [ Species.ZEBSTRIKA ] },
{ 1: [ Species.SEWADDLE ], 20: [ Species.SWADLOON ], 30: [ Species.LEAVANNY ] },
{ 1: [ Species.FOONGUS ], 39: [ Species.AMOONGUSS ] }
],
[BiomePoolTier.UNCOMMON]: [
Species.EXEGGCUTE,
Species.TANGELA,
Species.PHANPY,
Species.TROPIUS,
Species.COMBEE,
{ 1: [ Species.PANSAGE ], 20: [ Species.SIMISAGE ] },
{ 1: [ Species.PANSEAR ], 20: [ Species.SIMISEAR ] },
{ 1: [ Species.PANPOUR ], 20: [ Species.SIMIPOUR ] },
{ 1: [ Species.JOLTIK ], 36: [ Species.GALVANTULA ] }
],
[BiomePoolTier.RARE]: [
Species.SCYTHER,
Species.YANMA,
{ 1: [ Species.SLAKOTH ], 18: [ Species.VIGOROTH ], 36: [ Species.SLAKING ] },
Species.SEVIPER,
Species.CARNIVINE,
{ 1: [ Species.SNIVY ], 17: [ Species.SERVINE ], 36: [ Species.SERPERIOR ] }
],
[BiomePoolTier.SUPER_RARE]: [ Species.KANGASKHAN, Species.CHATOT ],
[BiomePoolTier.ULTRA_RARE]: [ Species.VIRIZION ],
[BiomePoolTier.BOSS]: [ Species.EXEGGUTOR, Species.BRELOOM, Species.SEVIPER, Species.TROPIUS, Species.CHERRIM, Species.AMBIPOM, Species.CARNIVINE, Species.TANGROWTH, Species.YANMEGA, Species.LEAVANNY, Species.AMOONGUSS, Species.GALVANTULA ],
[BiomePoolTier.BOSS_RARE]: [ Species.KANGASKHAN, Species.SCIZOR, Species.SLAKING, Species.LEAFEON, Species.SERPERIOR ],
[BiomePoolTier.BOSS_SUPER_RARE]: [ Species.VIRIZION ],
[BiomePoolTier.BOSS_ULTRA_RARE]: []
},
[Biome.END]: { [Biome.END]: {
[BiomePoolTier.COMMON]: [ Species.ARCANINE, Species.DRAGONITE, Species.TYRANITAR, Species.SALAMENCE, Species.GARCHOMP, Species.HYDREIGON, Species.VOLCARONA ], [BiomePoolTier.COMMON]: [ Species.ARCANINE, Species.DRAGONITE, Species.TYRANITAR, Species.SALAMENCE, Species.GARCHOMP, Species.HYDREIGON, Species.VOLCARONA ],
[BiomePoolTier.UNCOMMON]: [ Species.KINGDRA, Species.METAGROSS, Species.MAGNEZONE, Species.RHYPERIOR, Species.TANGROWTH, Species.ELECTIVIRE, Species.MAGMORTAR, Species.TOGEKISS, Species.MAMOSWINE ], [BiomePoolTier.UNCOMMON]: [ Species.KINGDRA, Species.METAGROSS, Species.MAGNEZONE, Species.RHYPERIOR, Species.TANGROWTH, Species.ELECTIVIRE, Species.MAGMORTAR, Species.TOGEKISS, Species.MAMOSWINE ],
@ -785,7 +804,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[BiomePoolTier.BOSS_ULTRA_RARE]: [] [BiomePoolTier.BOSS_ULTRA_RARE]: []
}, },
[Biome.CITY]: { [Biome.CITY]: {
[BiomePoolTier.COMMON]: [ TrainerType.BAKER, TrainerType.OFFICER ], [BiomePoolTier.COMMON]: [ TrainerType.BAKER ],
[BiomePoolTier.UNCOMMON]: [ TrainerType.BREEDER ], [BiomePoolTier.UNCOMMON]: [ TrainerType.BREEDER ],
[BiomePoolTier.RARE]: [ TrainerType.ARTIST ], [BiomePoolTier.RARE]: [ TrainerType.ARTIST ],
[BiomePoolTier.SUPER_RARE]: [], [BiomePoolTier.SUPER_RARE]: [],
@ -928,7 +947,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[BiomePoolTier.BOSS_ULTRA_RARE]: [] [BiomePoolTier.BOSS_ULTRA_RARE]: []
}, },
[Biome.POWER_PLANT]: { [Biome.POWER_PLANT]: {
[BiomePoolTier.COMMON]: [], [BiomePoolTier.COMMON]: [ TrainerType.WORKER ],
[BiomePoolTier.UNCOMMON]: [], [BiomePoolTier.UNCOMMON]: [],
[BiomePoolTier.RARE]: [], [BiomePoolTier.RARE]: [],
[BiomePoolTier.SUPER_RARE]: [], [BiomePoolTier.SUPER_RARE]: [],
@ -972,7 +991,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[BiomePoolTier.BOSS_ULTRA_RARE]: [] [BiomePoolTier.BOSS_ULTRA_RARE]: []
}, },
[Biome.FACTORY]: { [Biome.FACTORY]: {
[BiomePoolTier.COMMON]: [], [BiomePoolTier.COMMON]: [ TrainerType.WORKER ],
[BiomePoolTier.UNCOMMON]: [], [BiomePoolTier.UNCOMMON]: [],
[BiomePoolTier.RARE]: [], [BiomePoolTier.RARE]: [],
[BiomePoolTier.SUPER_RARE]: [], [BiomePoolTier.SUPER_RARE]: [],
@ -1026,6 +1045,28 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[BiomePoolTier.BOSS_SUPER_RARE]: [], [BiomePoolTier.BOSS_SUPER_RARE]: [],
[BiomePoolTier.BOSS_ULTRA_RARE]: [] [BiomePoolTier.BOSS_ULTRA_RARE]: []
}, },
[Biome.CONSTRUCTION_SITE]: {
[BiomePoolTier.COMMON]: [ TrainerType.WORKER ],
[BiomePoolTier.UNCOMMON]: [],
[BiomePoolTier.RARE]: [],
[BiomePoolTier.SUPER_RARE]: [],
[BiomePoolTier.ULTRA_RARE]: [],
[BiomePoolTier.BOSS]: [],
[BiomePoolTier.BOSS_RARE]: [],
[BiomePoolTier.BOSS_SUPER_RARE]: [],
[BiomePoolTier.BOSS_ULTRA_RARE]: []
},
[Biome.JUNGLE]: {
[BiomePoolTier.COMMON]: [ TrainerType.BACKPACKER, TrainerType.RANGER ],
[BiomePoolTier.UNCOMMON]: [],
[BiomePoolTier.RARE]: [],
[BiomePoolTier.SUPER_RARE]: [],
[BiomePoolTier.ULTRA_RARE]: [],
[BiomePoolTier.BOSS]: [],
[BiomePoolTier.BOSS_RARE]: [],
[BiomePoolTier.BOSS_SUPER_RARE]: [],
[BiomePoolTier.BOSS_ULTRA_RARE]: []
},
[Biome.END]: { [Biome.END]: {
[BiomePoolTier.COMMON]: [], [BiomePoolTier.COMMON]: [],
[BiomePoolTier.UNCOMMON]: [], [BiomePoolTier.UNCOMMON]: [],
@ -1356,18 +1397,18 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.MACHOP, Type.FIGHTING, -1, [ [ Species.MACHOP, Type.FIGHTING, -1, [
[ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ], [ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ],
[ Biome.DOJO, BiomePoolTier.COMMON ], [ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.MACHOKE, Type.FIGHTING, -1, [ [ Species.MACHOKE, Type.FIGHTING, -1, [
[ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ], [ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ],
[ Biome.DOJO, BiomePoolTier.COMMON ], [ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.MACHAMP, Type.FIGHTING, -1, [ [ Species.MACHAMP, Type.FIGHTING, -1, [
[ Biome.DOJO, BiomePoolTier.BOSS ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.BELLSPROUT, Type.GRASS, Type.POISON, [ [ Species.BELLSPROUT, Type.GRASS, Type.POISON, [
@ -1434,12 +1475,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.MAGNEMITE, Type.ELECTRIC, Type.STEEL, [ [ Species.MAGNEMITE, Type.ELECTRIC, Type.STEEL, [
[ Biome.POWER_PLANT, BiomePoolTier.COMMON ], [ Biome.POWER_PLANT, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ] [ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.MAGNETON, Type.ELECTRIC, Type.STEEL, [ [ Species.MAGNETON, Type.ELECTRIC, Type.STEEL, [
[ Biome.POWER_PLANT, BiomePoolTier.COMMON ], [ Biome.POWER_PLANT, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ] [ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.FARFETCHD, Type.NORMAL, Type.FLYING, [ [ Species.FARFETCHD, Type.NORMAL, Type.FLYING, [
@ -1466,10 +1509,13 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.GRIMER, Type.POISON, -1, [ [ Species.GRIMER, Type.POISON, -1, [
[ Biome.CITY, BiomePoolTier.COMMON ] [ Biome.CITY, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.MUK, Type.POISON, -1, [ [ Species.MUK, Type.POISON, -1, [
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ],
[ Biome.CITY, BiomePoolTier.COMMON ],
[ Biome.CITY, BiomePoolTier.BOSS ] [ Biome.CITY, BiomePoolTier.BOSS ]
] ]
], ],
@ -1498,7 +1544,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ Species.ONIX, Type.ROCK, Type.GROUND, [ [ Species.ONIX, Type.ROCK, Type.GROUND, [
[ Biome.BADLANDS, BiomePoolTier.RARE ], [ Biome.BADLANDS, BiomePoolTier.RARE ],
[ Biome.CAVE, BiomePoolTier.RARE ], [ Biome.CAVE, BiomePoolTier.RARE ],
[ Biome.CAVE, BiomePoolTier.BOSS ] [ Biome.CAVE, BiomePoolTier.BOSS ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.DROWZEE, Type.PSYCHIC, -1, [ [ Species.DROWZEE, Type.PSYCHIC, -1, [
@ -1530,12 +1577,12 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.EXEGGCUTE, Type.GRASS, Type.PSYCHIC, [ [ Species.EXEGGCUTE, Type.GRASS, Type.PSYCHIC, [
[ Biome.GRASS, BiomePoolTier.RARE ], [ Biome.FOREST, BiomePoolTier.RARE ],
[ Biome.FOREST, BiomePoolTier.UNCOMMON ] [ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.EXEGGUTOR, Type.GRASS, Type.PSYCHIC, [ [ Species.EXEGGUTOR, Type.GRASS, Type.PSYCHIC, [
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.CUBONE, Type.GROUND, -1, [ [ Species.CUBONE, Type.GROUND, -1, [
@ -1551,12 +1598,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.HITMONLEE, Type.FIGHTING, -1, [ [ Species.HITMONLEE, Type.FIGHTING, -1, [
[ Biome.DOJO, BiomePoolTier.RARE ], [ Biome.DOJO, BiomePoolTier.RARE ],
[ Biome.DOJO, BiomePoolTier.BOSS ] [ Biome.DOJO, BiomePoolTier.BOSS ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.HITMONCHAN, Type.FIGHTING, -1, [ [ Species.HITMONCHAN, Type.FIGHTING, -1, [
[ Biome.DOJO, BiomePoolTier.RARE ], [ Biome.DOJO, BiomePoolTier.RARE ],
[ Biome.DOJO, BiomePoolTier.BOSS ] [ Biome.DOJO, BiomePoolTier.BOSS ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.LICKITUNG, Type.NORMAL, -1, [ [ Species.LICKITUNG, Type.NORMAL, -1, [
@ -1564,22 +1613,26 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.KOFFING, Type.POISON, -1, [ [ Species.KOFFING, Type.POISON, -1, [
[ Biome.CITY, BiomePoolTier.COMMON ] [ Biome.CITY, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.WEEZING, Type.POISON, -1, [ [ Species.WEEZING, Type.POISON, -1, [
[ Biome.CITY, BiomePoolTier.COMMON ], [ Biome.CITY, BiomePoolTier.COMMON ],
[ Biome.CITY, BiomePoolTier.BOSS ] [ Biome.CITY, BiomePoolTier.BOSS ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.RHYHORN, Type.GROUND, Type.ROCK, [ [ Species.RHYHORN, Type.GROUND, Type.ROCK, [
[ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ], [ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ],
[ Biome.BADLANDS, BiomePoolTier.COMMON ] [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.RHYDON, Type.GROUND, Type.ROCK, [ [ Species.RHYDON, Type.GROUND, Type.ROCK, [
[ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ], [ Biome.MOUNTAIN, BiomePoolTier.UNCOMMON ],
[ Biome.BADLANDS, BiomePoolTier.COMMON ] [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.CHANSEY, Type.NORMAL, -1, [ [ Species.CHANSEY, Type.NORMAL, -1, [
@ -1588,13 +1641,12 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.TANGELA, Type.GRASS, -1, [ [ Species.TANGELA, Type.GRASS, -1, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ], [ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
[ Biome.TALL_GRASS, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.KANGASKHAN, Type.NORMAL, -1, [ [ Species.KANGASKHAN, Type.NORMAL, -1, [
[ Biome.TALL_GRASS, BiomePoolTier.SUPER_RARE ], [ Biome.JUNGLE, BiomePoolTier.SUPER_RARE ],
[ Biome.TALL_GRASS, BiomePoolTier.BOSS_RARE ] [ Biome.JUNGLE, BiomePoolTier.BOSS_RARE ]
] ]
], ],
[ Species.HORSEA, Type.WATER, -1, [ [ Species.HORSEA, Type.WATER, -1, [
@ -1634,7 +1686,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.SCYTHER, Type.BUG, Type.FLYING, [ [ Species.SCYTHER, Type.BUG, Type.FLYING, [
[ Biome.TALL_GRASS, BiomePoolTier.SUPER_RARE ], [ Biome.TALL_GRASS, BiomePoolTier.SUPER_RARE ],
[ Biome.FOREST, BiomePoolTier.RARE ] [ Biome.FOREST, BiomePoolTier.RARE ],
[ Biome.JUNGLE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.JYNX, Type.ICE, Type.PSYCHIC, [ [ Species.JYNX, Type.ICE, Type.PSYCHIC, [
@ -1680,7 +1733,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ Species.DITTO, Type.NORMAL, -1, [ [ Species.DITTO, Type.NORMAL, -1, [
[ Biome.TOWN, BiomePoolTier.ULTRA_RARE ], [ Biome.TOWN, BiomePoolTier.ULTRA_RARE ],
[ Biome.PLAINS, BiomePoolTier.ULTRA_RARE ], [ Biome.PLAINS, BiomePoolTier.ULTRA_RARE ],
[ Biome.CITY, BiomePoolTier.ULTRA_RARE ] [ Biome.CITY, BiomePoolTier.SUPER_RARE ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.SUPER_RARE ]
] ]
], ],
[ Species.EEVEE, Type.NORMAL, -1, [ [ Species.EEVEE, Type.NORMAL, -1, [
@ -1845,13 +1899,15 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.SPINARAK, Type.BUG, Type.POISON, [ [ Species.SPINARAK, Type.BUG, Type.POISON, [
[ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ], [ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.ARIADOS, Type.BUG, Type.POISON, [ [ Species.ARIADOS, Type.BUG, Type.POISON, [
[ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ], [ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ], [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.FOREST, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.CROBAT, Type.POISON, Type.FLYING, [ [ Species.CROBAT, Type.POISON, Type.FLYING, [
@ -1950,7 +2006,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.AIPOM, Type.NORMAL, -1, [ [ Species.AIPOM, Type.NORMAL, -1, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ] [ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.SUNKERN, Type.GRASS, -1, [ [ Species.SUNKERN, Type.GRASS, -1, [
@ -1963,7 +2019,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.YANMA, Type.BUG, Type.FLYING, [ [ Species.YANMA, Type.BUG, Type.FLYING, [
[ Biome.FOREST, BiomePoolTier.RARE ] [ Biome.JUNGLE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.WOOPER, Type.WATER, Type.GROUND, [ [ Species.WOOPER, Type.WATER, Type.GROUND, [
@ -2051,7 +2107,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.SCIZOR, Type.BUG, Type.STEEL, [ [ Species.SCIZOR, Type.BUG, Type.STEEL, [
[ Biome.FOREST, BiomePoolTier.BOSS_RARE ] [ Biome.JUNGLE, BiomePoolTier.BOSS_RARE ]
] ]
], ],
[ Species.SHUCKLE, Type.BUG, Type.ROCK, [ [ Species.SHUCKLE, Type.BUG, Type.ROCK, [
@ -2142,12 +2198,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.PHANPY, Type.GROUND, -1, [ [ Species.PHANPY, Type.GROUND, -1, [
[ Biome.BADLANDS, BiomePoolTier.COMMON ] [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.DONPHAN, Type.GROUND, -1, [ [ Species.DONPHAN, Type.GROUND, -1, [
[ Biome.BADLANDS, BiomePoolTier.COMMON ], [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.BADLANDS, BiomePoolTier.BOSS ] [ Biome.BADLANDS, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.PORYGON2, Type.NORMAL, -1, [ [ Species.PORYGON2, Type.NORMAL, -1, [
@ -2166,12 +2224,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.TYROGUE, Type.FIGHTING, -1, [ [ Species.TYROGUE, Type.FIGHTING, -1, [
[ Biome.TOWN, BiomePoolTier.SUPER_RARE ], [ Biome.TOWN, BiomePoolTier.SUPER_RARE ],
[ Biome.DOJO, BiomePoolTier.RARE ] [ Biome.DOJO, BiomePoolTier.RARE ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.HITMONTOP, Type.FIGHTING, -1, [ [ Species.HITMONTOP, Type.FIGHTING, -1, [
[ Biome.DOJO, BiomePoolTier.SUPER_RARE ], [ Biome.DOJO, BiomePoolTier.SUPER_RARE ],
[ Biome.DOJO, BiomePoolTier.BOSS_RARE ] [ Biome.DOJO, BiomePoolTier.BOSS_RARE ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.SUPER_RARE ]
] ]
], ],
[ Species.SMOOCHUM, Type.ICE, Type.PSYCHIC, [ [ Species.SMOOCHUM, Type.ICE, Type.PSYCHIC, [
@ -2398,27 +2458,29 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ Species.SHROOMISH, Type.GRASS, -1, [ [ Species.SHROOMISH, Type.GRASS, -1, [
[ Biome.TOWN, BiomePoolTier.UNCOMMON ], [ Biome.TOWN, BiomePoolTier.UNCOMMON ],
[ Biome.GRASS, BiomePoolTier.COMMON ], [ Biome.GRASS, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.BRELOOM, Type.GRASS, Type.FIGHTING, [ [ Species.BRELOOM, Type.GRASS, Type.FIGHTING, [
[ Biome.TOWN, BiomePoolTier.UNCOMMON ], [ Biome.TOWN, BiomePoolTier.UNCOMMON ],
[ Biome.GRASS, BiomePoolTier.COMMON ], [ Biome.GRASS, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ], [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.FOREST, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.SLAKOTH, Type.NORMAL, -1, [ [ Species.SLAKOTH, Type.NORMAL, -1, [
[ Biome.FOREST, BiomePoolTier.RARE ] [ Biome.JUNGLE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.VIGOROTH, Type.NORMAL, -1, [ [ Species.VIGOROTH, Type.NORMAL, -1, [
[ Biome.FOREST, BiomePoolTier.RARE ] [ Biome.JUNGLE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.SLAKING, Type.NORMAL, -1, [ [ Species.SLAKING, Type.NORMAL, -1, [
[ Biome.FOREST, BiomePoolTier.RARE ], [ Biome.JUNGLE, BiomePoolTier.RARE ],
[ Biome.FOREST, BiomePoolTier.BOSS_RARE ] [ Biome.JUNGLE, BiomePoolTier.BOSS_RARE ]
] ]
], ],
[ Species.NINCADA, Type.BUG, Type.GROUND, [ [ Species.NINCADA, Type.BUG, Type.GROUND, [
@ -2641,8 +2703,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.SEVIPER, Type.POISON, -1, [ [ Species.SEVIPER, Type.POISON, -1, [
[ Biome.FOREST, BiomePoolTier.RARE ], [ Biome.JUNGLE, BiomePoolTier.RARE ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.LUNATONE, Type.ROCK, Type.PSYCHIC, [ [ Species.LUNATONE, Type.ROCK, Type.PSYCHIC, [
@ -2740,9 +2802,10 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.TROPIUS, Type.GRASS, Type.FLYING, [ [ Species.TROPIUS, Type.GRASS, Type.FLYING, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ],
[ Biome.TALL_GRASS, BiomePoolTier.RARE ], [ Biome.TALL_GRASS, BiomePoolTier.RARE ],
[ Biome.TALL_GRASS, BiomePoolTier.BOSS ] [ Biome.FOREST, BiomePoolTier.RARE ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ],
[ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.CHIMECHO, Type.PSYCHIC, -1, [ [ Species.CHIMECHO, Type.PSYCHIC, -1, [
@ -2951,11 +3014,11 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.KRICKETOT, Type.BUG, -1, [ [ Species.KRICKETOT, Type.BUG, -1, [
[ Biome.TOWN, BiomePoolTier.UNCOMMON ], [ Biome.TOWN, BiomePoolTier.UNCOMMON ],
[ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ] [ Biome.TALL_GRASS, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.KRICKETUNE, Type.BUG, -1, [ [ Species.KRICKETUNE, Type.BUG, -1, [
[ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ], [ Biome.TALL_GRASS, BiomePoolTier.COMMON ],
[ Biome.TALL_GRASS, BiomePoolTier.BOSS ] [ Biome.TALL_GRASS, BiomePoolTier.BOSS ]
] ]
], ],
@ -3024,13 +3087,15 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ Species.COMBEE, Type.BUG, Type.FLYING, [ [ Species.COMBEE, Type.BUG, Type.FLYING, [
[ Biome.TOWN, BiomePoolTier.UNCOMMON ], [ Biome.TOWN, BiomePoolTier.UNCOMMON ],
[ Biome.GRASS, BiomePoolTier.UNCOMMON ], [ Biome.GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.VESPIQUEN, Type.BUG, Type.FLYING, [ [ Species.VESPIQUEN, Type.BUG, Type.FLYING, [
[ Biome.GRASS, BiomePoolTier.UNCOMMON ], [ Biome.GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ], [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.FOREST, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.PACHIRISU, Type.ELECTRIC, -1, [ [ Species.PACHIRISU, Type.ELECTRIC, -1, [
@ -3049,14 +3114,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ Species.CHERUBI, Type.GRASS, -1, [ [ Species.CHERUBI, Type.GRASS, -1, [
[ Biome.TOWN, BiomePoolTier.UNCOMMON ], [ Biome.TOWN, BiomePoolTier.UNCOMMON ],
[ Biome.GRASS, BiomePoolTier.UNCOMMON ], [ Biome.GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.CHERRIM, Type.GRASS, -1, [ [ Species.CHERRIM, Type.GRASS, -1, [
[ Biome.TOWN, BiomePoolTier.UNCOMMON ], [ Biome.TOWN, BiomePoolTier.UNCOMMON ],
[ Biome.GRASS, BiomePoolTier.UNCOMMON ], [ Biome.GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ], [ Biome.JUNGLE, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.SHELLOS, Type.WATER, -1, [ [ Species.SHELLOS, Type.WATER, -1, [
@ -3071,7 +3136,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.AMBIPOM, Type.NORMAL, -1, [ [ Species.AMBIPOM, Type.NORMAL, -1, [
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.DRIFLOON, Type.GHOST, Type.FLYING, [ [ Species.DRIFLOON, Type.GHOST, Type.FLYING, [
@ -3149,7 +3214,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.CHATOT, Type.NORMAL, Type.FLYING, [ [ Species.CHATOT, Type.NORMAL, Type.FLYING, [
[ Biome.FOREST, BiomePoolTier.SUPER_RARE ] [ Biome.JUNGLE, BiomePoolTier.SUPER_RARE ]
] ]
], ],
[ Species.SPIRITOMB, Type.GHOST, Type.DARK, [ [ Species.SPIRITOMB, Type.GHOST, Type.DARK, [
@ -3220,8 +3285,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.CARNIVINE, Type.GRASS, -1, [ [ Species.CARNIVINE, Type.GRASS, -1, [
[ Biome.FOREST, BiomePoolTier.RARE ], [ Biome.JUNGLE, BiomePoolTier.RARE ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.FINNEON, Type.WATER, -1, [ [ Species.FINNEON, Type.WATER, -1, [
@ -3265,7 +3330,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.TANGROWTH, Type.GRASS, -1, [ [ Species.TANGROWTH, Type.GRASS, -1, [
[ Biome.TALL_GRASS, BiomePoolTier.BOSS ], [ Biome.JUNGLE, BiomePoolTier.BOSS ],
[ Biome.END, BiomePoolTier.UNCOMMON ] [ Biome.END, BiomePoolTier.UNCOMMON ]
] ]
], ],
@ -3285,11 +3350,11 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.YANMEGA, Type.BUG, Type.FLYING, [ [ Species.YANMEGA, Type.BUG, Type.FLYING, [
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.LEAFEON, Type.GRASS, -1, [ [ Species.LEAFEON, Type.GRASS, -1, [
[ Biome.FOREST, BiomePoolTier.BOSS_RARE ] [ Biome.JUNGLE, BiomePoolTier.BOSS_RARE ]
] ]
], ],
[ Species.GLACEON, Type.ICE, -1, [ [ Species.GLACEON, Type.ICE, -1, [
@ -3405,16 +3470,16 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.SNIVY, Type.GRASS, -1, [ [ Species.SNIVY, Type.GRASS, -1, [
[ Biome.GRASS, BiomePoolTier.RARE ] [ Biome.JUNGLE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.SERVINE, Type.GRASS, -1, [ [ Species.SERVINE, Type.GRASS, -1, [
[ Biome.GRASS, BiomePoolTier.RARE ] [ Biome.JUNGLE, BiomePoolTier.RARE ]
] ]
], ],
[ Species.SERPERIOR, Type.GRASS, -1, [ [ Species.SERPERIOR, Type.GRASS, -1, [
[ Biome.GRASS, BiomePoolTier.RARE ], [ Biome.JUNGLE, BiomePoolTier.RARE ],
[ Biome.GRASS, BiomePoolTier.BOSS_RARE ] [ Biome.JUNGLE, BiomePoolTier.BOSS_RARE ]
] ]
], ],
[ Species.TEPIG, Type.FIRE, -1, [ [ Species.TEPIG, Type.FIRE, -1, [
@ -3469,40 +3534,48 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.PURRLOIN, Type.DARK, -1, [ [ Species.PURRLOIN, Type.DARK, -1, [
[ Biome.TOWN, BiomePoolTier.COMMON ], [ Biome.TOWN, BiomePoolTier.COMMON ],
[ Biome.ABYSS, BiomePoolTier.COMMON ] [ Biome.ABYSS, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.LIEPARD, Type.DARK, -1, [ [ Species.LIEPARD, Type.DARK, -1, [
[ Biome.TOWN, BiomePoolTier.COMMON ], [ Biome.TOWN, BiomePoolTier.COMMON ],
[ Biome.ABYSS, BiomePoolTier.COMMON ], [ Biome.ABYSS, BiomePoolTier.COMMON ],
[ Biome.ABYSS, BiomePoolTier.BOSS ] [ Biome.ABYSS, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.PANSAGE, Type.GRASS, -1, [ [ Species.PANSAGE, Type.GRASS, -1, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ] [ Biome.FOREST, BiomePoolTier.UNCOMMON ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.SIMISAGE, Type.GRASS, -1, [ [ Species.SIMISAGE, Type.GRASS, -1, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ], [ Biome.FOREST, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.FOREST, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.PANSEAR, Type.FIRE, -1, [ [ Species.PANSEAR, Type.FIRE, -1, [
[ Biome.VOLCANO, BiomePoolTier.UNCOMMON ] [ Biome.VOLCANO, BiomePoolTier.UNCOMMON ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.SIMISEAR, Type.FIRE, -1, [ [ Species.SIMISEAR, Type.FIRE, -1, [
[ Biome.VOLCANO, BiomePoolTier.UNCOMMON ], [ Biome.VOLCANO, BiomePoolTier.UNCOMMON ],
[ Biome.VOLCANO, BiomePoolTier.BOSS ] [ Biome.VOLCANO, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.PANPOUR, Type.WATER, -1, [ [ Species.PANPOUR, Type.WATER, -1, [
[ Biome.SEA, BiomePoolTier.UNCOMMON ] [ Biome.SEA, BiomePoolTier.UNCOMMON ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.SIMIPOUR, Type.WATER, -1, [ [ Species.SIMIPOUR, Type.WATER, -1, [
[ Biome.SEA, BiomePoolTier.UNCOMMON ], [ Biome.SEA, BiomePoolTier.UNCOMMON ],
[ Biome.SEA, BiomePoolTier.BOSS ] [ Biome.SEA, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.MUNNA, Type.PSYCHIC, -1, [ [ Species.MUNNA, Type.PSYCHIC, -1, [
@ -3532,12 +3605,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.BLITZLE, Type.ELECTRIC, -1, [ [ Species.BLITZLE, Type.ELECTRIC, -1, [
[ Biome.MEADOW, BiomePoolTier.COMMON ] [ Biome.MEADOW, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.ZEBSTRIKA, Type.ELECTRIC, -1, [ [ Species.ZEBSTRIKA, Type.ELECTRIC, -1, [
[ Biome.MEADOW, BiomePoolTier.COMMON ], [ Biome.MEADOW, BiomePoolTier.COMMON ],
[ Biome.MEADOW, BiomePoolTier.BOSS ] [ Biome.MEADOW, BiomePoolTier.BOSS ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.ROGGENROLA, Type.ROCK, -1, [ [ Species.ROGGENROLA, Type.ROCK, -1, [
@ -3566,12 +3641,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.DRILBUR, Type.GROUND, -1, [ [ Species.DRILBUR, Type.GROUND, -1, [
[ Biome.BADLANDS, BiomePoolTier.COMMON ] [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.EXCADRILL, Type.GROUND, Type.STEEL, [ [ Species.EXCADRILL, Type.GROUND, Type.STEEL, [
[ Biome.BADLANDS, BiomePoolTier.COMMON ], [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.BADLANDS, BiomePoolTier.BOSS ] [ Biome.BADLANDS, BiomePoolTier.BOSS ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.AUDINO, Type.NORMAL, -1, [ [ Species.AUDINO, Type.NORMAL, -1, [
@ -3580,17 +3657,17 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.TIMBURR, Type.FIGHTING, -1, [ [ Species.TIMBURR, Type.FIGHTING, -1, [
[ Biome.DOJO, BiomePoolTier.COMMON ], [ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.GURDURR, Type.FIGHTING, -1, [ [ Species.GURDURR, Type.FIGHTING, -1, [
[ Biome.DOJO, BiomePoolTier.COMMON ], [ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.CONKELDURR, Type.FIGHTING, -1, [ [ Species.CONKELDURR, Type.FIGHTING, -1, [
[ Biome.FACTORY, BiomePoolTier.BOSS ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.TYMPOLE, Type.WATER, -1, [ [ Species.TYMPOLE, Type.WATER, -1, [
@ -3617,16 +3694,19 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.SEWADDLE, Type.BUG, Type.GRASS, [ [ Species.SEWADDLE, Type.BUG, Type.GRASS, [
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.FOREST, BiomePoolTier.UNCOMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.SWADLOON, Type.BUG, Type.GRASS, [ [ Species.SWADLOON, Type.BUG, Type.GRASS, [
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.FOREST, BiomePoolTier.UNCOMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.LEAVANNY, Type.BUG, Type.GRASS, [ [ Species.LEAVANNY, Type.BUG, Type.GRASS, [
[ Biome.FOREST, BiomePoolTier.COMMON ], [ Biome.FOREST, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.VENIPEDE, Type.BUG, Type.POISON, [ [ Species.VENIPEDE, Type.BUG, Type.POISON, [
@ -3704,12 +3784,14 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.SCRAGGY, Type.DARK, Type.FIGHTING, [ [ Species.SCRAGGY, Type.DARK, Type.FIGHTING, [
[ Biome.DOJO, BiomePoolTier.UNCOMMON ] [ Biome.DOJO, BiomePoolTier.UNCOMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.SCRAFTY, Type.DARK, Type.FIGHTING, [ [ Species.SCRAFTY, Type.DARK, Type.FIGHTING, [
[ Biome.DOJO, BiomePoolTier.UNCOMMON ], [ Biome.DOJO, BiomePoolTier.UNCOMMON ],
[ Biome.DOJO, BiomePoolTier.BOSS ] [ Biome.DOJO, BiomePoolTier.BOSS ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.UNCOMMON ]
] ]
], ],
[ Species.SIGILYPH, Type.PSYCHIC, Type.FLYING, [ [ Species.SIGILYPH, Type.PSYCHIC, Type.FLYING, [
@ -3848,13 +3930,13 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ Species.FOONGUS, Type.GRASS, Type.POISON, [ [ Species.FOONGUS, Type.GRASS, Type.POISON, [
[ Biome.GRASS, BiomePoolTier.UNCOMMON ], [ Biome.GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ Species.AMOONGUSS, Type.GRASS, Type.POISON, [ [ Species.AMOONGUSS, Type.GRASS, Type.POISON, [
[ Biome.GRASS, BiomePoolTier.UNCOMMON ], [ Biome.GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ], [ Biome.JUNGLE, BiomePoolTier.COMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.FRILLISH, Type.WATER, Type.GHOST, [ [ Species.FRILLISH, Type.WATER, Type.GHOST, [
@ -3872,12 +3954,12 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.JOLTIK, Type.BUG, Type.ELECTRIC, [ [ Species.JOLTIK, Type.BUG, Type.ELECTRIC, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ] [ Biome.JUNGLE, BiomePoolTier.UNCOMMON ],
] ]
], ],
[ Species.GALVANTULA, Type.BUG, Type.ELECTRIC, [ [ Species.GALVANTULA, Type.BUG, Type.ELECTRIC, [
[ Biome.FOREST, BiomePoolTier.UNCOMMON ], [ Biome.JUNGLE, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.BOSS ] [ Biome.JUNGLE, BiomePoolTier.BOSS ]
] ]
], ],
[ Species.FERROSEED, Type.GRASS, Type.STEEL, [ [ Species.FERROSEED, Type.GRASS, Type.STEEL, [
@ -4073,8 +4155,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.COBALION, Type.STEEL, Type.FIGHTING, [ [ Species.COBALION, Type.STEEL, Type.FIGHTING, [
[ Biome.DOJO, BiomePoolTier.ULTRA_RARE ], [ Biome.CONSTRUCTION_SITE, BiomePoolTier.ULTRA_RARE ],
[ Biome.DOJO, BiomePoolTier.BOSS_SUPER_RARE ] [ Biome.CONSTRUCTION_SITE, BiomePoolTier.BOSS_SUPER_RARE ]
] ]
], ],
[ Species.TERRAKION, Type.ROCK, Type.FIGHTING, [ [ Species.TERRAKION, Type.ROCK, Type.FIGHTING, [
@ -4083,8 +4165,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
] ]
], ],
[ Species.VIRIZION, Type.GRASS, Type.FIGHTING, [ [ Species.VIRIZION, Type.GRASS, Type.FIGHTING, [
[ Biome.DOJO, BiomePoolTier.ULTRA_RARE ], [ Biome.JUNGLE, BiomePoolTier.ULTRA_RARE ],
[ Biome.DOJO, BiomePoolTier.BOSS_SUPER_RARE ] [ Biome.JUNGLE, BiomePoolTier.BOSS_SUPER_RARE ]
] ]
], ],
[ Species.TORNADUS, Type.FLYING, -1, [ [ Species.TORNADUS, Type.FLYING, -1, [
@ -4160,7 +4242,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ TrainerType.BACKPACKER, [ [ TrainerType.BACKPACKER, [
[ Biome.MOUNTAIN, BiomePoolTier.COMMON ], [ Biome.MOUNTAIN, BiomePoolTier.COMMON ],
[ Biome.CAVE, BiomePoolTier.COMMON ], [ Biome.CAVE, BiomePoolTier.COMMON ],
[ Biome.BADLANDS, BiomePoolTier.COMMON ] [ Biome.BADLANDS, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ TrainerType.BAKER, [ [ TrainerType.BAKER, [
@ -4224,6 +4307,7 @@ export const biomeTrainerPools: BiomeTrainerPools = {
[ TrainerType.NURSERY_AIDE, [] ], [ TrainerType.NURSERY_AIDE, [] ],
[ TrainerType.OFFICER, [ [ TrainerType.OFFICER, [
[ Biome.CITY, BiomePoolTier.COMMON ] [ Biome.CITY, BiomePoolTier.COMMON ]
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
] ]
], ],
[ TrainerType.PARASOL_LADY, [ [ TrainerType.PARASOL_LADY, [
@ -4240,7 +4324,8 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ TrainerType.RANGER, [ [ TrainerType.RANGER, [
[ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ], [ Biome.TALL_GRASS, BiomePoolTier.UNCOMMON ],
[ Biome.FOREST, BiomePoolTier.COMMON ] [ Biome.FOREST, BiomePoolTier.COMMON ],
[ Biome.JUNGLE, BiomePoolTier.COMMON ]
] ]
], ],
[ TrainerType.RICH_KID, [] ], [ TrainerType.RICH_KID, [] ],
@ -4267,7 +4352,12 @@ export const biomeTrainerPools: BiomeTrainerPools = {
], ],
[ TrainerType.VETERAN, [] ], [ TrainerType.VETERAN, [] ],
[ TrainerType.WAITER, [] ], [ TrainerType.WAITER, [] ],
[ TrainerType.WORKER, [] ], [ TrainerType.WORKER, [
[ Biome.POWER_PLANT, BiomePoolTier.COMMON ],
[ Biome.FACTORY, BiomePoolTier.COMMON ],
[ Biome.CONSTRUCTION_SITE, BiomePoolTier.COMMON ]
]
],
[ TrainerType.YOUNGSTER, [ [ TrainerType.YOUNGSTER, [
[ Biome.TOWN, BiomePoolTier.COMMON ] [ Biome.TOWN, BiomePoolTier.COMMON ]
] ]