mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
18 lines
255 B
TypeScript
18 lines
255 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",
|
|
nl: "Basis",
|
|
pl: "Diament i Perla"
|
|
},
|
|
id: "base"
|
|
}
|
|
|
|
export default base
|