mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
27 lines
337 B
TypeScript
27 lines
337 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
// Card in maxi sizes
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: `Jumbo cards`,
|
|
fr: `Cartes Jumbo`,
|
|
},
|
|
expansionCode: "misc",
|
|
code: `jumbo`,
|
|
|
|
cardCount: {
|
|
total: 160,
|
|
official: 160
|
|
},
|
|
|
|
releaseDate: `2000-02-01`,
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
}
|
|
|
|
export default set
|