mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
23 lines
309 B
TypeScript
23 lines
309 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../HeartGold & SoulSilver'
|
|
|
|
const hgssp: Set = {
|
|
id: "hgssp",
|
|
|
|
name: {
|
|
en: "HGSS Black Star Promos",
|
|
fr: "Promo HGSS"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PR-HS",
|
|
|
|
cardCount: {
|
|
official: 25
|
|
},
|
|
|
|
releaseDate: "2010-02-11"
|
|
}
|
|
|
|
export default hgssp
|