mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 08:07:15 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||
|
Stat: {
|
||
|
"HP": "PV",
|
||
|
"HPshortened": "PV",
|
||
|
"ATK": "Attaque",
|
||
|
"ATKshortened": "Atq",
|
||
|
"DEF": "Défense",
|
||
|
"DEFshortened": "Déf",
|
||
|
"SPATK": "Atq. Spé.",
|
||
|
"SPATKshortened": "AtqSp",
|
||
|
"SPDEF": "Déf. Spé.",
|
||
|
"SPDEFshortened": "DéfSp",
|
||
|
"SPD": "Vitesse",
|
||
|
"SPDshortened": "Vit"
|
||
|
},
|
||
|
|
||
|
Type: {
|
||
|
"UNKNOWN": "Inconnu",
|
||
|
"NORMAL": "Normal",
|
||
|
"FIGHTING": "Combat",
|
||
|
"FLYING": "Vol",
|
||
|
"POISON": "Poison",
|
||
|
"GROUND": "Sol",
|
||
|
"ROCK": "Roche",
|
||
|
"BUG": "Insecte",
|
||
|
"GHOST": "Spectre",
|
||
|
"STEEL": "Acier",
|
||
|
"FIRE": "Feu",
|
||
|
"WATER": "Eau",
|
||
|
"GRASS": "Plante",
|
||
|
"ELECTRIC": "Électrik",
|
||
|
"PSYCHIC": "Psy",
|
||
|
"ICE": "Glace",
|
||
|
"DRAGON": "Dragon",
|
||
|
"DARK": "Ténèbres",
|
||
|
"FAIRY": "Fée",
|
||
|
"STELLAR": "Stellaire",
|
||
|
},
|
||
|
} as const;
|