From 9be123ab620f12ddc3d32041b2f0e70ab12da982 Mon Sep 17 00:00:00 2001 From: AJ Fontaine <36677462+Fontbane@users.noreply.github.com> Date: Sun, 27 Jul 2025 21:22:39 -0400 Subject: [PATCH] Thank you VSCode Refactor button Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> --- src/utils/pokemon-utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/pokemon-utils.ts b/src/utils/pokemon-utils.ts index ecd98296400..d69fe4a971b 100644 --- a/src/utils/pokemon-utils.ts +++ b/src/utils/pokemon-utils.ts @@ -22,11 +22,11 @@ export function getPokemonSpecies(species: SpeciesId | SpeciesId[]): PokemonSpec } return allSpecies[species - 1]; } + /** * Method to get the daily list of starters with Pokerus. * @returns A list of starters with Pokerus */ - export function getPokerusStarters(): PokemonSpecies[] { const pokerusStarters: PokemonSpecies[] = []; const date = new Date(); @@ -46,6 +46,7 @@ export function getPokerusStarters(): PokemonSpecies[] { ); return pokerusStarters; } + export function getFusedSpeciesName(speciesAName: string, speciesBName: string): string { const fragAPattern = /([a-z]{2}.*?[aeiou(?:y$)\-']+)(.*?)$/i; const fragBPattern = /([a-z]{2}.*?[aeiou(?:y$)\-'])(.*?)$/i;