16 lines
444 B
TypeScript
16 lines
444 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonStat: SimpleTranslationEntries = {
|
|
"HP": "最大HP",
|
|
"HPshortened": "最大HP",
|
|
"ATK": "攻击",
|
|
"ATKshortened": "攻击",
|
|
"DEF": "防御",
|
|
"DEFshortened": "防御",
|
|
"SPATK": "特攻",
|
|
"SPATKshortened": "特攻",
|
|
"SPDEF": "特防",
|
|
"SPDEFshortened": "特防",
|
|
"SPD": "速度",
|
|
"SPDshortened": "速度"
|
|
} as const; |