mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
27 lines
418 B
TypeScript
27 lines
418 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SV6',
|
|
name: {
|
|
ja: '変幻の仮面',
|
|
'zh-tw': '變幻假面',
|
|
th: 'หน้ากากจอมลวงตา',
|
|
ko: '변환의 가면'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
releaseDate: {
|
|
ja: '2024-04-26',
|
|
'zh-tw': '2024-05-10',
|
|
th: '2024-05-31',
|
|
ko: '2024-06-21'
|
|
}
|
|
}
|
|
|
|
export default set
|