mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
27 lines
382 B
TypeScript
27 lines
382 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sun & Moon'
|
|
|
|
const sm9: Set = {
|
|
id: "sm9",
|
|
|
|
name: {
|
|
en: "Team Up",
|
|
fr: "Duo de Choc",
|
|
es: "Union de Aliados",
|
|
it: "Gioco di Squadra",
|
|
de: "Teams Sind Trumpf",
|
|
pt: "União de Aliados"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "TEU",
|
|
|
|
cardCount: {
|
|
official: 181
|
|
},
|
|
|
|
releaseDate: "2019-01-31"
|
|
}
|
|
|
|
export default sm9
|