mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
30 lines
403 B
TypeScript
30 lines
403 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../McDonald\'s Collection'
|
|
|
|
const s2017sm: Set = {
|
|
id: "2017sm",
|
|
|
|
name: {
|
|
en: "Macdonald's Collection 2017",
|
|
fr: "Collection Macdonald 2017"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 12
|
|
},
|
|
|
|
releaseDate: "2017-08-03",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default s2017sm
|