mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
25 lines
395 B
TypeScript
25 lines
395 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'CS2a',
|
|
name: {
|
|
ja: 'トリプレットビート',
|
|
ko: '트리플렛비트',
|
|
'zh-tw': '三連音爆',
|
|
id: 'Hantaman Triplet',
|
|
th: 'ทริปเปิลบีต'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
// TODO: fill the rest
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
releaseDate: '2024-04-26'
|
|
}
|
|
|
|
export default set
|