mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
21 lines
248 B
TypeScript
21 lines
248 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SVEM',
|
|
name: {
|
|
'zh-tw': '超夢ex'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 20
|
|
},
|
|
releaseDate: {
|
|
'zh-tw': '2023-09-29'
|
|
}
|
|
}
|
|
|
|
export default set
|