mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
28 lines
456 B
TypeScript
28 lines
456 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S12a',
|
|
name: {
|
|
ja: 'VSTARユニバース',
|
|
ko: 'VSTAR 유니버스',
|
|
'zh-tw': '天地萬物VSTAR',
|
|
th: 'จักรวาลแห่งVSTAR',
|
|
id: 'VSTAR Semesta',
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 172
|
|
},
|
|
releaseDate: {
|
|
ja: '2022-12-02',
|
|
id: '2022-12-23',
|
|
th: '2022-12-23'
|
|
// TODO: find the release dates
|
|
}
|
|
}
|
|
|
|
export default set
|