mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
357 B
TypeScript
26 lines
357 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../McDonald\'s Collection'
|
|
|
|
const s2018sm: Set = {
|
|
id: "2018sm",
|
|
|
|
name: {
|
|
en: "Macdonald's Collection 2018",
|
|
it: "McDonald's Collection 2018"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 12
|
|
},
|
|
|
|
releaseDate: "2018-10-19",
|
|
|
|
abbreviations: {
|
|
official: "MCD18"
|
|
}
|
|
}
|
|
|
|
export default s2018sm
|