mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
31 lines
433 B
TypeScript
31 lines
433 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Diamond & Pearl'
|
|
|
|
const dp4: Set = {
|
|
id: "dp4",
|
|
|
|
name: {
|
|
en: "Great Encounters",
|
|
fr: "Duels au Sommets",
|
|
es: "Grandes Encuentros",
|
|
de: "Epische Begegnungen",
|
|
it: "Incontri Leggendari"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "GE",
|
|
|
|
cardCount: {
|
|
official: 106
|
|
},
|
|
|
|
releaseDate: "2008-02-01",
|
|
|
|
abbreviations: {
|
|
official: "GE",
|
|
fr: "DAS"
|
|
}
|
|
}
|
|
|
|
export default dp4
|