mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
19 lines
246 B
TypeScript
19 lines
246 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 'SM-P',
|
|
name: {
|
|
'zh-tw': '特典卡 太陽&月亮'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 0
|
|
},
|
|
releaseDate: '2019-10-09'
|
|
}
|
|
|
|
export default set
|