mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
16 lines
244 B
TypeScript
16 lines
244 B
TypeScript
import { Serie } from '../interfaces'
|
|
|
|
const set: Serie = {
|
|
id: "bw",
|
|
name: {
|
|
en: "Black & White",
|
|
fr: "Noir & Blanc",
|
|
es: "Negro y Blanco",
|
|
it: "Nero e Bianco",
|
|
de: "Schwarz & Weiß",
|
|
pt: "Black & White"
|
|
}
|
|
}
|
|
|
|
export default set
|