mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
243 B
TypeScript
22 lines
243 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../E-Card'
|
|
|
|
const sp: Set = {
|
|
id: "sp",
|
|
|
|
name: {
|
|
en: "Sample",
|
|
fr: "Sample"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 10
|
|
},
|
|
|
|
releaseDate: "2002-08-01"
|
|
}
|
|
|
|
export default sp
|