mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 18:25:54 +00:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
|
import { PokemonInfoTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||
|
Stat: {
|
||
|
"HP": "HP",
|
||
|
"HPshortened": "HP",
|
||
|
"ATK": "こうげき",
|
||
|
"ATKshortened": "こうげき",
|
||
|
"DEF": "ぼうぎょ",
|
||
|
"DEFshortened": "ぼうぎょ",
|
||
|
"SPATK": "とくこう",
|
||
|
"SPATKshortened": "とくこう",
|
||
|
"SPDEF": "とくぼう",
|
||
|
"SPDEFshortened": "とくぼう",
|
||
|
"SPD": "すばやさ",
|
||
|
"SPDshortened": "すばやさ",
|
||
|
"ACC": "めいちゅう",
|
||
|
"EVA": "かいひ"
|
||
|
},
|
||
|
|
||
|
Type: {
|
||
|
"UNKNOWN": "Unknown",
|
||
|
"NORMAL": "ノーマル",
|
||
|
"FIGHTING": "かくとう",
|
||
|
"FLYING": "ひこう",
|
||
|
"POISON": "どく",
|
||
|
"GROUND": "じめん",
|
||
|
"ROCK": "いわ",
|
||
|
"BUG": "むし",
|
||
|
"GHOST": "ゴースト",
|
||
|
"STEEL": "はがね",
|
||
|
"FIRE": "ほのお",
|
||
|
"WATER": "みず",
|
||
|
"GRASS": "くさ",
|
||
|
"ELECTRIC": "でんき",
|
||
|
"PSYCHIC": "エスパー",
|
||
|
"ICE": "こおり",
|
||
|
"DRAGON": "ドラゴン",
|
||
|
"DARK": "あく",
|
||
|
"FAIRY": "フェアリー",
|
||
|
"STELLAR": "ステラ",
|
||
|
},
|
||
|
} as const;
|