mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
268 B
TypeScript
22 lines
268 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'SK',
|
|
name: {
|
|
'zh-tw': '頂級訓練家收藏箱 VSTAR'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 30
|
|
},
|
|
|
|
releaseDate: {
|
|
'zh-tw': '2022-01-28'
|
|
}
|
|
}
|
|
|
|
export default set
|