1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
cards-database/sets/mc/2014xy.ts
Florian Bouillon a284fcac64
Updated DB and made it work with SDK
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 09:41:29 +01:00

27 lines
372 B
TypeScript

import Set from '@tcgdex/sdk/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