mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
20 lines
274 B
TypeScript
20 lines
274 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 's1a',
|
|
name: {
|
|
ja: '新たなる試練の向こう',
|
|
ko: '새로운 시련'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 49
|
|
},
|
|
releaseDate: '2017-04-21'
|
|
}
|
|
|
|
export default set
|