mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
30 lines
415 B
TypeScript
30 lines
415 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../McDonald\'s Collection'
|
|
|
|
const s2018sm: Set = {
|
|
id: "2018sm",
|
|
|
|
name: {
|
|
en: "Macdonald's Collection 2018",
|
|
fr: "Collection Macdonald 2018"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 12,
|
|
official: 12
|
|
},
|
|
|
|
releaseDate: "2018-10-19",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default s2018sm |