mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
20 lines
310 B
TypeScript
20 lines
310 B
TypeScript
import { Set } from '../../interfaces'
|
||
import serie from '../XYb'
|
||
|
||
const set: Set = {
|
||
id: 'CP4',
|
||
name: {
|
||
ja: 'プレミアムチャンピオンパック EX×M×BREAK',
|
||
ko: '프리미엄 챔피언팩'
|
||
},
|
||
|
||
serie: serie,
|
||
|
||
cardCount: {
|
||
official: 131
|
||
},
|
||
releaseDate: '2016-04-16'
|
||
}
|
||
|
||
export default set
|