1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
cards-database/sets/mc/2021swsh.ts
Florian Bouillon d89dff6e16 started working on the latest promo
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-02-12 16:50:41 +01:00

27 lines
377 B
TypeScript

import Set from '@tcgdex/sdk/interfaces/Set'
const year = "2021"
const set: Set = {
name: {
en: `Macdonald's Collection ${year}`,
// fr: `Collection Macdonald ${year}`,
},
expansionCode: "mc",
code: `${year}swsh`,
cardCount: {
total: 25,
official: 25
},
releaseDate: `${year}-02-09`,
legal: {
standard: false,
expanded: false,
}
}
export default set