mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-27 03:59:20 +01:00
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
"ivBest": "Best",
|
|
"ivFantastic": "Fantastic",
|
|
"ivVeryGood": "Very Good",
|
|
"ivPrettyGood": "Pretty Good",
|
|
"ivDecent": "Decent",
|
|
"ivNoGood": "No Good",
|
|
} as const;
|