mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-05 10:51:20 +01:00
* Type localization, now type-boosting items descriptions are fully translated * pokemon-stat refactoration * reverted import changes
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|
Stat: {
|
|
"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"
|
|
},
|
|
|
|
Type: {
|
|
"UNKNOWN": "Unknown",
|
|
"NORMAL": "Normal",
|
|
"FIGHTING": "Fighting",
|
|
"FLYING": "Flying",
|
|
"POISON": "Poison",
|
|
"GROUND": "Ground",
|
|
"ROCK": "Rock",
|
|
"BUG": "Bug",
|
|
"GHOST": "Ghost",
|
|
"STEEL": "Steel",
|
|
"FIRE": "Fire",
|
|
"WATER": "Water",
|
|
"GRASS": "Grass",
|
|
"ELECTRIC": "Electric",
|
|
"PSYCHIC": "Psychic",
|
|
"ICE": "Ice",
|
|
"DRAGON": "Dragon",
|
|
"DARK": "Dark",
|
|
"FAIRY": "Fairy",
|
|
"STELLAR": "Stellar",
|
|
},
|
|
} as const; |