mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 03:07:28 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
44 lines
1001 B
TypeScript
44 lines
1001 B
TypeScript
import { PokemonInfoTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|
Stat: {
|
|
"HP": "KP",
|
|
"HPshortened": "KP",
|
|
"ATK": "Angriff",
|
|
"ATKshortened": "Ang",
|
|
"DEF": "Verteidigung",
|
|
"DEFshortened": "Vert",
|
|
"SPATK": "Sp. Ang",
|
|
"SPATKshortened": "SpAng",
|
|
"SPDEF": "Sp. Vert",
|
|
"SPDEFshortened": "SpVert",
|
|
"SPD": "Initiative",
|
|
"SPDshortened": "Init",
|
|
"ACC": "Genauigkeit",
|
|
"EVA": "Fluchtwert",
|
|
},
|
|
|
|
Type: {
|
|
"UNKNOWN": "Unbekannt",
|
|
"NORMAL": "Normal",
|
|
"FIGHTING": "Kampf",
|
|
"FLYING": "Flug",
|
|
"POISON": "Gift",
|
|
"GROUND": "Boden",
|
|
"ROCK": "Gestein",
|
|
"BUG": "Käfer",
|
|
"GHOST": "Geist",
|
|
"STEEL": "Stahl",
|
|
"FIRE": "Feuer",
|
|
"WATER": "Wasser",
|
|
"GRASS": "Pflanze",
|
|
"ELECTRIC": "Elektro",
|
|
"PSYCHIC": "Psycho",
|
|
"ICE": "Eis",
|
|
"DRAGON": "Drache",
|
|
"DARK": "Unlicht",
|
|
"FAIRY": "Fee",
|
|
"STELLAR": "Stellar",
|
|
},
|
|
} as const;
|