mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
20 lines
265 B
TypeScript
20 lines
265 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../BW'
|
|
|
|
const set: Set = {
|
|
id: 'BW8a',
|
|
name: {
|
|
ja: 'ライデンナックル',
|
|
ko: '볼트너클'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 51
|
|
},
|
|
releaseDate: '2012-12-14'
|
|
}
|
|
|
|
export default set
|