mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
357 B
TypeScript
26 lines
357 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xy7: Set = {
|
|
id: "xy7",
|
|
|
|
name: {
|
|
en: "Ancient Origins",
|
|
fr: "Origines Antiques",
|
|
es: "Antiguos Orígenes",
|
|
it: "Antiche Origini",
|
|
de: "Ewiger Anfang"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "AOR",
|
|
|
|
cardCount: {
|
|
official: 98
|
|
},
|
|
|
|
releaseDate: "2015-08-12"
|
|
}
|
|
|
|
export default xy7
|