mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-01 15:40:23 +01:00
5 lines
189 B
TypeScript
5 lines
189 B
TypeScript
import Pokemon from "./pokemon";
|
|
|
|
export function getPokemonMessage(pokemon: Pokemon, content: string): string {
|
|
return `${!pokemon.isPlayer() ? 'Wild ' : ''}${pokemon.name}${content}`;
|
|
} |