mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
20 lines
269 B
TypeScript
20 lines
269 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 'SM4A',
|
|
name: {
|
|
ja: '超次元の暴獣',
|
|
ko: '초차원의 침략자'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 50
|
|
},
|
|
releaseDate: '2017-09-15'
|
|
}
|
|
|
|
export default set
|