mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
28 lines
343 B
TypeScript
28 lines
343 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Ancient Origins",
|
|
fr: "Origines Antiques",
|
|
},
|
|
code: "xy7",
|
|
expansionCode: "xy",
|
|
tcgoCode: "AOR",
|
|
|
|
cardCount: {
|
|
total: 100,
|
|
official: 98
|
|
},
|
|
|
|
api: "7-xy",
|
|
|
|
releaseDate: "2015-08-12",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|