mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
Added known swsh2 cards Update every sets to remove the images extension as it can be served as png, jpg and webp Added Trainer kits sets Added descriptions for set interface Added new fields see #6 Signed-off-by: Avior <florian.bouillon@delta-wings.net>
29 lines
339 B
TypeScript
29 lines
339 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Legendary Collection"
|
|
},
|
|
code: "lc",
|
|
expansionCode: "lc",
|
|
tcgoCode: "LC",
|
|
|
|
cardCount: {
|
|
total: 110,
|
|
official: 110
|
|
},
|
|
|
|
releaseDate: "2002-05-24",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
availability: {
|
|
fr: false
|
|
}
|
|
}
|
|
|
|
export default set
|