16 lines
426 B
TypeScript
16 lines
426 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; |