mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
20 lines
260 B
TypeScript
20 lines
260 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 's1a',
|
|
name: {
|
|
ja: 'VMAXライジング',
|
|
ko: 'VMAX라이징'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 70
|
|
},
|
|
releaseDate: '2020-02-07'
|
|
}
|
|
|
|
export default set
|