mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 22:39:54 +00:00
18 lines
480 B
TypeScript
18 lines
480 B
TypeScript
import { Serie } from '../interfaces'
|
||
|
||
const serie: Serie = {
|
||
id: "tcgp",
|
||
name: {
|
||
en: "Pokémon TCG Pocket",
|
||
de: "Pokémon‑Sammelkartenspiel‑Pocket",
|
||
es: "Juego de Cartas Coleccionables Pokémon Pocket",
|
||
fr: "Jeu de Cartes à Collectionner Pokémon Pocket",
|
||
it: "Gioco di Carte Collezionabili Pokémon Pocket",
|
||
'pt-br': "Pokémon Estampas Ilustradas Pocket",
|
||
ko: "포켓몬 카드 게임",
|
||
ja: 'Pokémon Trading Card Game Pocket'
|
||
},
|
||
}
|
||
|
||
export default serie
|