mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 02:05:46 +00:00
10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||
|
"ivBest": "Best",
|
||
|
"ivFantastic": "Fantastic",
|
||
|
"ivVeryGood": "Very Good",
|
||
|
"ivPrettyGood": "Pretty Good",
|
||
|
"ivDecent": "Decent",
|
||
|
"ivNoGood": "No Good",
|
||
|
} as const;
|