mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
29 lines
489 B
TypeScript
29 lines
489 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SV8a',
|
|
name: {
|
|
ja: 'テラスタルフェスex',
|
|
id: 'Festival Terastal ex',
|
|
th: 'เทศกาลเทรัสตัลex',
|
|
"zh-tw": '太晶慶典ex',
|
|
'zh-cn': '太晶慶典ex'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 187
|
|
},
|
|
releaseDate: {
|
|
ja: '2024-12-06',
|
|
id: '2025-01-31',
|
|
"zh-cn": '2024-12-20',
|
|
"zh-tw": '2024-12-20',
|
|
th: '2025-02-07'
|
|
}
|
|
}
|
|
|
|
export default set
|