mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
346 B
TypeScript
24 lines
346 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S4',
|
|
name: {
|
|
ja: '仰天のボルテッカー',
|
|
ko: '앙천의 볼트태클',
|
|
'zh-tw': '驚天伏特攻擊',
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 100
|
|
},
|
|
releaseDate: {
|
|
ja: '2020-09-18',
|
|
'zh-tw': '2020-10-09'
|
|
}
|
|
}
|
|
|
|
export default set
|