2024-06-17 22:05:33 +01:00
|
|
|
import { PokemonInfoTranslationEntries } from "#app/interfaces/locales";
|
2024-05-17 15:43:11 +01:00
|
|
|
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
2024-05-23 16:03:10 +01:00
|
|
|
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",
|
2024-06-16 03:25:18 +01:00
|
|
|
"SPDshortened": "Vit",
|
2024-07-04 21:38:19 +01:00
|
|
|
"ACC": "Précison",
|
|
|
|
"EVA": "Esquive"
|
2024-05-23 16:03:10 +01:00
|
|
|
},
|
2024-05-17 15:43:11 +01:00
|
|
|
|
2024-05-23 16:03:10 +01:00
|
|
|
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",
|
|
|
|
},
|
2024-05-17 15:43:11 +01:00
|
|
|
} as const;
|