mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
27 lines
421 B
TypeScript
27 lines
421 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Pokémon TCG Pocket'
|
|
|
|
const set: Set = {
|
|
id: "A1",
|
|
|
|
name: {
|
|
de: "Unschlagbare Gene",
|
|
en: "Genetic Apex",
|
|
es: "Genes Formidables",
|
|
fr: "Puissance Génétique",
|
|
it: "Geni Supremi",
|
|
'pt-br': "Dominação Genética",
|
|
ko: '최강의 유전자'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 226
|
|
},
|
|
|
|
releaseDate: "2024-10-30"
|
|
}
|
|
|
|
export default set
|