mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
23 lines
294 B
TypeScript
23 lines
294 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../HeartGold & SoulSilver'
|
|
|
|
const hgss3: Set = {
|
|
id: "hgss3",
|
|
|
|
name: {
|
|
en: "Undaunted",
|
|
fr: "Indomptable"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "UD",
|
|
|
|
cardCount: {
|
|
official: 90
|
|
},
|
|
|
|
releaseDate: "2010-08-18"
|
|
}
|
|
|
|
export default hgss3
|