mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
431 B
TypeScript
32 lines
431 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const set: Set = {
|
|
id: "cel25",
|
|
|
|
name: {
|
|
en: "Celebrations",
|
|
fr: "Célébrations",
|
|
es: "Celebraciones",
|
|
de: "Celebrations",
|
|
it: "Gran Festa",
|
|
pt: "Celebrações"
|
|
},
|
|
|
|
tcgOnline: 'CEL',
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 25
|
|
},
|
|
|
|
releaseDate: "2021-10-08",
|
|
|
|
abbreviations: {
|
|
official: "CEL",
|
|
fr: "CEL"
|
|
}
|
|
}
|
|
|
|
export default set
|