pokemon-stat.ts 업데이트

This commit is contained in:
GyeongMin Lee 2024-05-11 15:45:43 +09:00 committed by GitHub
parent 267bc7cd6b
commit 6cce0f13ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,16 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const pokemonStat: SimpleTranslationEntries = {
"HP": "Max. HP",
"HPshortened": "MaxHP",
"ATK": "Attack",
"ATKshortened": "Atk",
"DEF": "Defense",
"DEFshortened": "Def",
"SPATK": "Sp. Atk",
"SPATKshortened": "SpAtk",
"SPDEF": "Sp. Def",
"SPDEFshortened": "SpDef",
"SPD": "Speed",
"SPDshortened": "Spd"
"HP": "최대 HP",
"HPshortened": "최대HP",
"ATK": "공격",
"ATKshortened": "공격",
"DEF": "방어",
"DEFshortened": "방어",
"SPATK": "특수공격",
"SPATKshortened": "특수공격",
"SPDEF": "특수방어",
"SPDEFshortened": "특수방어",
"SPD": "스피드",
"SPDshortened": "스피드"
} as const;