mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
22 lines
303 B
TypeScript
22 lines
303 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../McDonald\'s Collection'
|
|
|
|
const set: Set = {
|
|
id: "2019sm-fr",
|
|
|
|
name: {
|
|
// en: Not Available outer France
|
|
fr: "Promo McDonald's 2019"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 40
|
|
},
|
|
|
|
releaseDate: "2019-10-30"
|
|
}
|
|
|
|
export default set
|