mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* feat: Add static data for Journey Together Signed-off-by: Avior <git@avior.me> * feat: finish naming Signed-off-by: Avior <git@avior.me> * should be done Signed-off-by: Avior <git@avior.me> * Update index.ts --------- Signed-off-by: Avior <git@avior.me>
31 lines
465 B
TypeScript
31 lines
465 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Scarlet & Violet'
|
|
|
|
const set: Set = {
|
|
id: "sv09",
|
|
|
|
name: {
|
|
de: "Reisegefährten",
|
|
en: "Journey Together",
|
|
es: "Juntos de Aventuras",
|
|
fr: "Aventures Ensemble",
|
|
it: "Avventure Insieme",
|
|
pt: "Amigos de Jornada",
|
|
"es-mx": 'Aventuras Compartidas'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 159
|
|
},
|
|
|
|
releaseDate: "2025-03-28",
|
|
|
|
abbreviations: {
|
|
official: "JTG"
|
|
}
|
|
}
|
|
|
|
export default set
|