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