mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
28 lines
445 B
TypeScript
28 lines
445 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S6a',
|
|
name: {
|
|
ja: 'イーブイヒーローズ',
|
|
ko: '이브이 히어로즈',
|
|
'zh-tw': '伊布英雄',
|
|
id: 'Para Eevee Pahlawan',
|
|
th: 'อีวุยฮีโร'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 69
|
|
},
|
|
releaseDate: {
|
|
ja: '2021-05-28',
|
|
'zh-tw': '2021-06-11',
|
|
th: '2021-06-25',
|
|
id: '2021-10-01'
|
|
}
|
|
}
|
|
|
|
export default set
|