mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 13:09:17 +01:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
"ivBest": "最棒",
|
|
"ivFantastic": "了不起",
|
|
"ivVeryGood": "非常好",
|
|
"ivPrettyGood": "相当好",
|
|
"ivDecent": "一般般",
|
|
"ivNoGood": "也许不行",
|
|
} as const;
|