pokerogue/src/messages.ts

15 lines
482 B
TypeScript
Raw Normal View History

import { BattleSpec } from "./enums/battle-spec";
2023-04-19 21:52:14 +01:00
import Pokemon from "./pokemon";
2023-04-15 06:32:16 +01:00
export function getPokemonMessage(pokemon: Pokemon, content: string): string {
let prefix: string;
switch (pokemon.scene.currentBattle.battleSpec) {
case BattleSpec.DEFAULT:
prefix = !pokemon.isPlayer() ? pokemon.hasTrainer() ? 'Foe ' : 'Wild ' : '';
break;
case BattleSpec.FINAL_BOSS:
prefix = 'Foe ';
break;
}
return `${prefix}${pokemon.name}${content}`;
2023-04-15 06:32:16 +01:00
}