mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
20 lines
273 B
TypeScript
20 lines
273 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const set: Set = {
|
|
id: 'XY3',
|
|
name: {
|
|
ja: 'ライジングフィスト',
|
|
ko: '라이징피스트'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 96
|
|
},
|
|
releaseDate: '2014-09-13'
|
|
}
|
|
|
|
export default set
|