1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
cards-database/sets/mc/2016xy.ts
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

27 lines
366 B
TypeScript

import Set from '../../interfaces/Set'
const year = "2016"
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}-08-20`,
legal: {
standard: false,
expanded: false,
}
}
export default set