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