mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +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>
26 lines
330 B
TypeScript
26 lines
330 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Base'
|
|
|
|
const base1: Set = {
|
|
id: "base1",
|
|
|
|
name: {
|
|
en: "Base Set",
|
|
fr: "Set de Base",
|
|
es: "Base Set",
|
|
it: "Set Base",
|
|
de: "Grundset"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "BS",
|
|
|
|
cardCount: {
|
|
official: 102
|
|
},
|
|
|
|
releaseDate: "1999-01-09"
|
|
}
|
|
|
|
export default base1
|