1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
cards-database/data/Diamond & Pearl/Diamond & Pearl.ts
Florian Bouillon 57e620fd35
Added DP sets translations (#50)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-14 11:23:45 +00:00

26 lines
368 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"
},
serie: serie,
tcgOnline: "DP",
cardCount: {
official: 130
},
releaseDate: "2007-05-01"
}
export default dp1