mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
17 lines
284 B
TypeScript
17 lines
284 B
TypeScript
import { Serie } from '../interfaces'
|
|
|
|
const set: Serie = {
|
|
id: "dp",
|
|
name: {
|
|
en: "Diamond & Pearl",
|
|
fr: "Diamant & Perle",
|
|
es: "Diamante & Perla",
|
|
it: "Diamante & Perla",
|
|
de: "Diamant & Perl",
|
|
pt: "Diamante & Pérola",
|
|
pl: "Diament i Perla"
|
|
},
|
|
}
|
|
|
|
export default set
|