From 77c584981bfe4c35694a711705facb9ddcd2e138 Mon Sep 17 00:00:00 2001 From: Tempoanon <163687446+TempsRay@users.noreply.github.com> Date: Fri, 19 Apr 2024 12:06:20 -0400 Subject: [PATCH] Add Maylene (#193) * Implement Rivalry * Implement Quick Feet, Liquid Voice, and Normalize * Forgot paralysis is half speed instead of a quarter * Remove log statements * Fix minor edge case in rivalry for gendered vs genderless * Add Maylene --- src/data/biomes.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/biomes.ts b/src/data/biomes.ts index 1bea78f3e50..4f5a4e5af64 100644 --- a/src/data/biomes.ts +++ b/src/data/biomes.ts @@ -1844,7 +1844,7 @@ export const biomeTrainerPools: BiomeTrainerPools = { [BiomePoolTier.RARE]: [], [BiomePoolTier.SUPER_RARE]: [], [BiomePoolTier.ULTRA_RARE]: [], - [BiomePoolTier.BOSS]: [ TrainerType.BRAWLY, TrainerType.KORRINA, TrainerType.BEA ], + [BiomePoolTier.BOSS]: [ TrainerType.BRAWLY, TrainerType.KORRINA, TrainerType.BEA, TrainerType.MAYLENE ], [BiomePoolTier.BOSS_RARE]: [], [BiomePoolTier.BOSS_SUPER_RARE]: [], [BiomePoolTier.BOSS_ULTRA_RARE]: [] @@ -7408,6 +7408,10 @@ export const biomeTrainerPools: BiomeTrainerPools = { [ Biome.LAKE, BiomePoolTier.BOSS ] ] ], + [ TrainerType.MAYLENE, [ + [ Biome.DOJO, BiomePoolTier.BOSS ] + ] + ], [ TrainerType.FANTINA, [ [ Biome.TEMPLE, BiomePoolTier.BOSS ] ]