mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-19 14:49:55 +00:00
27 lines
437 B
TypeScript
27 lines
437 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Pokémon TCG Pocket'
|
|
|
|
const set: Set = {
|
|
id: "A3",
|
|
|
|
name: {
|
|
de: "Hüter des Firmaments",
|
|
en: "Celestial Guardians",
|
|
es: "Guardianes Celestiales",
|
|
fr: "Gardiens Astraux",
|
|
it: "Guardiani Astrali",
|
|
'pt-br': "Guardiões Celestiais",
|
|
ko: '쌍천의 수호자'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 155
|
|
},
|
|
|
|
releaseDate: "2025-04-30"
|
|
}
|
|
|
|
export default set
|