1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
cards-database/data/Base/Base Set.ts
Florian Bouillon 2f5f52b51c
refactor: Add Sets/Series translations (#172)
* refactor: Add set/Series translations

Signed-off-by: Avior <github@avior.me>

* refactor: Done Trainer kits

Signed-off-by: Avior <github@avior.me>
2021-11-16 12:44:58 +01:00

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