mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
25 lines
341 B
TypeScript
25 lines
341 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../HeartGold & SoulSilver'
|
|
|
|
const hgss4: Set = {
|
|
id: "hgss4",
|
|
|
|
name: {
|
|
en: "Triumphant",
|
|
fr: "Triomphant",
|
|
it: "Battaglie Trionfali",
|
|
de: "Triumph"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "TM",
|
|
|
|
cardCount: {
|
|
official: 102
|
|
},
|
|
|
|
releaseDate: "2010-11-03"
|
|
}
|
|
|
|
export default hgss4
|