mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-05 00:52:08 +00:00
25 lines
362 B
TypeScript
25 lines
362 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SV9a',
|
|
name: {
|
|
ja: '熱風のアリーナ',
|
|
"zh-cn": '熱風競技場',
|
|
"zh-tw": '熱風競技場'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 63
|
|
},
|
|
releaseDate: {
|
|
ja: '2025-03-14',
|
|
"zh-cn": '2025-03-28',
|
|
"zh-tw": '2025-03-28',
|
|
}
|
|
}
|
|
|
|
export default set
|