1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
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
317 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Base'
const base3: Set = {
id: "base3",
name: {
en: "Fossil",
fr: "Fossile",
es: "Fósil",
it: "Fossil",
de: "Fossil"
},
serie: serie,
tcgOnline: "FO",
cardCount: {
official: 62
},
releaseDate: "1999-10-10"
}
export default base3