mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
33 lines
474 B
TypeScript
33 lines
474 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Diamond & Pearl'
|
|
|
|
const dp1: Set = {
|
|
id: "dp1",
|
|
|
|
name: {
|
|
en: "Diamond & Pearl",
|
|
fr: "Diamant & Perle",
|
|
es: "Diamante & Perla",
|
|
it: "Diamante & Perla",
|
|
de: "Diamant & Perl",
|
|
pt: "Diamante & Pérola",
|
|
pl: 'Diament i Perla'
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "DP",
|
|
|
|
cardCount: {
|
|
official: 130
|
|
},
|
|
|
|
releaseDate: "2007-05-01",
|
|
|
|
abbreviations: {
|
|
official: "DP",
|
|
fr: "D&P"
|
|
}
|
|
}
|
|
|
|
export default dp1
|