mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
22 lines
288 B
TypeScript
22 lines
288 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S2',
|
|
name: {
|
|
ja: '反逆クラッシュ',
|
|
ko: '반역크래시',
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
// TODO: fill the rest
|
|
|
|
cardCount: {
|
|
official: 96
|
|
},
|
|
releaseDate: '2020-03-06'
|
|
}
|
|
|
|
export default set
|