mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
28 lines
441 B
TypeScript
28 lines
441 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S8b',
|
|
name: {
|
|
ja: 'VMAXクライマックス',
|
|
ko: 'VMAX 클라이맥스',
|
|
'zh-tw': 'VMAX絕群壓軸',
|
|
id: 'VMAX Klimaks',
|
|
th: 'VMAX ไคลแมกซ์'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 184
|
|
},
|
|
releaseDate: {
|
|
ja: '2021-12-03',
|
|
'zh-tw': '2021-12-17',
|
|
id: '2022-01-21',
|
|
th: '2021-12-17'
|
|
}
|
|
}
|
|
|
|
export default set
|