mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
24 lines
334 B
TypeScript
24 lines
334 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S4a',
|
|
name: {
|
|
ja: 'シャイニースターV',
|
|
ko: '샤이니스타V',
|
|
'zh-tw': '閃色明星V',
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 190
|
|
},
|
|
releaseDate: {
|
|
ja: '2020-11-20',
|
|
'zh-tw': '2020-11-27'
|
|
}
|
|
}
|
|
|
|
export default set
|