mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
25 lines
371 B
TypeScript
25 lines
371 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xya: Set = {
|
|
id: "xya",
|
|
|
|
name: {
|
|
en: "Yello A Alternate",
|
|
fr: "carte alternative A Jaune",
|
|
es: "Cartas alternativas",
|
|
it: "Carta Alternatica A Gialla",
|
|
de: "Gelbes-A-Alternativkarten"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 6
|
|
},
|
|
|
|
releaseDate: "2014-02-05"
|
|
}
|
|
|
|
export default xya
|