mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
28 lines
347 B
TypeScript
28 lines
347 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xy7: Set = {
|
|
id: "xy7",
|
|
name: {
|
|
en: "Ancient Origins",
|
|
fr: "Origines Antiques"
|
|
,
|
|
},
|
|
serie: serie,
|
|
|
|
tcgOnline: "AOR",
|
|
|
|
cardCount: {
|
|
total: 100,
|
|
official: 98
|
|
},
|
|
|
|
releaseDate: "2015-08-12",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true
|
|
},
|
|
}
|
|
|
|
export default xy7 |