mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
26 lines
409 B
TypeScript
26 lines
409 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Pokémon TCG Pocket'
|
|
|
|
const set: Set = {
|
|
id: "A3",
|
|
|
|
name: {
|
|
// de: "Unschlagbare Gene",
|
|
en: "Celestial Guardians",
|
|
// es: "Genes Formidables",
|
|
// fr: "Puissance Génétique",
|
|
// it: "Geni Supremi",
|
|
// pt: "Dominação Genética"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 155
|
|
},
|
|
|
|
releaseDate: "2025-04-30"
|
|
}
|
|
|
|
export default set
|