Update pokemon-stat.ts

This commit is contained in:
Nekiritan 2024-05-07 19:10:52 +02:00 committed by GitHub
parent cc3113ff43
commit acb50dde08
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"; import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const pokemonStat: SimpleTranslationEntries = { export const pokemonStat: SimpleTranslationEntries = {
"HP": "Max. KP", "HP": "KP",
"HPshortened": "MaxKP", "HPshortened": "KP",
"ATK": "Angriff", "ATK": "Angriff",
"ATKshortened": "Ang", "ATKshortened": "Ang.",
"DEF": "Verteidigung", "DEF": "Verteidigung",
"DEFshortened": "Vert", "DEFshortened": "Vert.",
"SPATK": "Sp. Ang", "SPATK": "Spezialangriff",
"SPATKshortened": "SpAng", "SPATKshortened": "Sp. Ang.",
"SPDEF": "Sp. Vert", "SPDEF": "Spezialverteidigung",
"SPDEFshortened": "SpVert", "SPDEFshortened": "Sp. Ver.",
"SPD": "Initiative", "SPD": "Initiative",
"SPDshortened": "Init" "SPDshortened": "Init."
} as const; } as const;