mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-03 08:59:18 +00:00
25 lines
357 B
TypeScript
25 lines
357 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SV11W',
|
|
name: {
|
|
ja: 'ホワイトフレア',
|
|
"zh-cn": '純白閃焰',
|
|
"zh-tw": '純白閃焰'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 86
|
|
},
|
|
releaseDate: {
|
|
ja: '2025-06-06',
|
|
"zh-cn": '2025-06-20',
|
|
"zh-tw": '2025-06-20',
|
|
}
|
|
}
|
|
|
|
export default set
|