mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
28 lines
462 B
TypeScript
28 lines
462 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S12',
|
|
name: {
|
|
ja: 'パラダイムトリガー',
|
|
ko: '패러다임트리거',
|
|
'zh-tw': '思維激盪',
|
|
id: 'Pemicu Paradigma',
|
|
th: 'ปฐมบทแห่งยุคใหม่'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 98
|
|
},
|
|
releaseDate: {
|
|
ja: '2022-10-21',
|
|
'zh-tw': '2022-11-04',
|
|
th: '2022-11-25',
|
|
id: '2022-11-25'
|
|
}
|
|
}
|
|
|
|
export default set
|