mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
30 lines
393 B
TypeScript
30 lines
393 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../E-Card'
|
|
|
|
const ecard1: Set = {
|
|
id: "ecard1",
|
|
|
|
name: {
|
|
en: "Expedition Base Set",
|
|
fr: "Expedition",
|
|
it: "Expedition Set Base",
|
|
de: "Expedition"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "EX",
|
|
|
|
cardCount: {
|
|
official: 165
|
|
},
|
|
|
|
releaseDate: "2002-09-15",
|
|
|
|
abbreviations: {
|
|
official: "EX",
|
|
fr: "EXP"
|
|
}
|
|
}
|
|
|
|
export default ecard1
|