mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
23 lines
315 B
TypeScript
23 lines
315 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../HeartGold & SoulSilver'
|
|
|
|
const hgss1: Set = {
|
|
id: "hgss1",
|
|
|
|
name: {
|
|
en: "HeartGold SoulSilver",
|
|
fr: "HeartGold SoulSilver"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "HS",
|
|
|
|
cardCount: {
|
|
official: 123
|
|
},
|
|
|
|
releaseDate: "2010-02-10"
|
|
}
|
|
|
|
export default hgss1
|