mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
22 lines
274 B
TypeScript
22 lines
274 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Legendary Collection'
|
|
|
|
const lc: Set = {
|
|
id: "lc",
|
|
|
|
name: {
|
|
en: "Legendary Collection"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "LC",
|
|
|
|
cardCount: {
|
|
official: 110
|
|
},
|
|
|
|
releaseDate: "2002-05-24"
|
|
}
|
|
|
|
export default lc
|