mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12: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>
23 lines
354 B
TypeScript
23 lines
354 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../McDonald\'s Collection'
|
|
|
|
const s2012bw: Set = {
|
|
id: "2012bw",
|
|
|
|
name: {
|
|
en: "Macdonald's Collection 2012",
|
|
es: "Colección de McDonald's 2012",
|
|
it: "McDonald's Collection 2012",
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 12
|
|
},
|
|
|
|
releaseDate: "2012-06-15"
|
|
}
|
|
|
|
export default s2012bw
|