1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
Florian Bouillon 8eb9131f60
feat: Add series names
Signed-off-by: Avior <git@avior.me>
2024-11-12 11:09:04 +01:00

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