mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
20 lines
270 B
TypeScript
20 lines
270 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../BW'
|
|
|
|
const set: Set = {
|
|
id: 'EBB',
|
|
name: {
|
|
ja: 'EXバトルブースト',
|
|
ko: 'EX 배틀 부스트'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 96
|
|
},
|
|
releaseDate: '2013-07-13'
|
|
}
|
|
|
|
export default set
|