mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
23 lines
402 B
TypeScript
23 lines
402 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 'AS1a',
|
|
name: {
|
|
id: 'Matahari & Bulan: Hantaman Pertama Set A',
|
|
th: 'ซันแอนด์มูน เฟิร์สอิมแพค Sun & Moon: First Impact Set A'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 150
|
|
},
|
|
releaseDate: {
|
|
id: '2019-08-09',
|
|
th: '2019-02-01'
|
|
}
|
|
}
|
|
|
|
export default set
|