mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
25 lines
371 B
TypeScript
25 lines
371 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SV10',
|
|
name: {
|
|
ja: 'ロケット団の栄光',
|
|
"zh-cn": '火箭隊的榮耀',
|
|
"zh-tw": '火箭隊的榮耀'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 98
|
|
},
|
|
releaseDate: {
|
|
ja: '2025-04-18',
|
|
"zh-cn": '2025-05-02',
|
|
"zh-tw": '2025-05-02',
|
|
}
|
|
}
|
|
|
|
export default set
|