mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
26 lines
333 B
TypeScript
26 lines
333 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: "HeartGold SoulSilver",
|
|
|
|
code: "hgss1",
|
|
expansionCode: "hgss",
|
|
tcgoCode: "HS",
|
|
|
|
cardCount: {
|
|
total: 124,
|
|
official: 123
|
|
},
|
|
|
|
api: "5-heartgold-soulsilver",
|
|
|
|
releaseDate: "2010-02-10",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
}
|
|
}
|
|
|
|
export default set
|