mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
26 lines
410 B
TypeScript
26 lines
410 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SV'
|
|
|
|
const set: Set = {
|
|
id: 'SV3',
|
|
name: {
|
|
ja: '黒炎の支配者',
|
|
ko: '흑염의 지배자',
|
|
'zh-tw': '黯焰支配者',
|
|
th: 'ราชาแห่งเพลิงกาฬ'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 108
|
|
},
|
|
releaseDate: {
|
|
ja: '2023-07-28',
|
|
'zh-tw': '2023-08-11',
|
|
th: '2023-09-29'
|
|
}
|
|
}
|
|
|
|
export default set
|