mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
25 lines
340 B
TypeScript
25 lines
340 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"
|
|
}
|
|
|
|
export default ecard1
|