mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
23 lines
292 B
TypeScript
23 lines
292 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Diamond & Pearl'
|
|
|
|
const dp1: Set = {
|
|
id: "dp1",
|
|
|
|
name: {
|
|
en: "Diamond & Pearl",
|
|
fr: "Diamant & Perle"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "DP",
|
|
|
|
cardCount: {
|
|
official: 130
|
|
},
|
|
|
|
releaseDate: "2007-05-01"
|
|
}
|
|
|
|
export default dp1
|