mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
411 B
TypeScript
31 lines
411 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",
|
|
pt: "Destemido"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "UD",
|
|
|
|
cardCount: {
|
|
official: 90
|
|
},
|
|
|
|
releaseDate: "2010-08-18",
|
|
|
|
abbreviations: {
|
|
official: "UND",
|
|
fr: "IND"
|
|
}
|
|
}
|
|
|
|
export default hgss3
|