mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
Added known swsh2 cards Update every sets to remove the images extension as it can be served as png, jpg and webp Added Trainer kits sets Added descriptions for set interface Added new fields see #6 Signed-off-by: Avior <florian.bouillon@delta-wings.net>
31 lines
401 B
TypeScript
31 lines
401 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const year = "2011"
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: `Macdonald's Collection ${year}`,
|
|
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
|