1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
2021-11-22 15:51:59 +01:00

16 lines
215 B
TypeScript

import { Serie } from '../interfaces'
const base: Serie = {
name: {
en: "Base",
fr: "Base",
es: "Clásica",
it: "Originale",
de: "Grund",
pt: "Coleção Básica"
},
id: "base"
}
export default base