mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
30 lines
367 B
TypeScript
30 lines
367 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
const year = "2013"
|
|
|
|
const set: Set = {
|
|
name: {
|
|
fr: `Collection Macdonald ${year}`,
|
|
},
|
|
expansionCode: "mc",
|
|
code: `${year}bw`,
|
|
|
|
cardCount: {
|
|
total: 12,
|
|
official: 12
|
|
},
|
|
|
|
releaseDate: `${year}-11-01`,
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
availability: {
|
|
en: false,
|
|
}
|
|
}
|
|
|
|
export default set
|