From e1cf7b4d074a65498ebd4e07ef12aee582dfd646 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sat, 2 Aug 2025 19:31:09 -0700 Subject: [PATCH] Fix spacing (thanks VSCode) --- src/data/balance/pokemon-species.ts | 2 -- src/utils/pokemon-utils.ts | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/data/balance/pokemon-species.ts b/src/data/balance/pokemon-species.ts index cd28470f585..5e9d352f437 100644 --- a/src/data/balance/pokemon-species.ts +++ b/src/data/balance/pokemon-species.ts @@ -6,9 +6,7 @@ import { PokemonType } from "#enums/pokemon-type"; import { SpeciesFormKey } from "#enums/species-form-key"; import { SpeciesId } from "#enums/species-id"; - // biome-ignore format: manually formatted - export function initSpecies() { allSpecies.push( new PokemonSpecies(SpeciesId.BULBASAUR, 1, false, false, false, "Seed Pokémon", PokemonType.GRASS, PokemonType.POISON, 0.7, 6.9, AbilityId.OVERGROW, AbilityId.NONE, AbilityId.CHLOROPHYLL, 318, 45, 49, 49, 65, 65, 45, 45, 50, 64, GrowthRate.MEDIUM_SLOW, 87.5, false), diff --git a/src/utils/pokemon-utils.ts b/src/utils/pokemon-utils.ts index d69fe4a971b..8de0a3bfcf1 100644 --- a/src/utils/pokemon-utils.ts +++ b/src/utils/pokemon-utils.ts @@ -112,6 +112,7 @@ export function getFusedSpeciesName(speciesAName: string, speciesBName: string): return `${speciesAPrefix || speciesBPrefix}${fragA}${fragB}${speciesBSuffix || speciesASuffix}`; } + export function getPokemonSpeciesForm(species: SpeciesId, formIndex: number): PokemonSpeciesForm { const retSpecies: PokemonSpecies = species >= 2000