mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
20 lines
260 B
TypeScript
20 lines
260 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 'SM3+',
|
|
name: {
|
|
ja: 'ひかる伝説',
|
|
ko: '빛나는 전설'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 72
|
|
},
|
|
releaseDate: '2017-07-15'
|
|
}
|
|
|
|
export default set
|