mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
25 lines
380 B
TypeScript
25 lines
380 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sun & Moon'
|
|
|
|
const sma: Set = {
|
|
id: "sma",
|
|
|
|
name: {
|
|
en: "Yellow A Alternate",
|
|
fr: "Carte Alternative A Jaune",
|
|
es: "Cartas alternativas",
|
|
it: "Carta Alternativa A Gialla",
|
|
de: "Gelbes A-Alternativkarte"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 94
|
|
},
|
|
|
|
releaseDate: "2019-08-23"
|
|
}
|
|
|
|
export default sma
|