mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-16 09:08:52 +00:00
24 lines
325 B
TypeScript
24 lines
325 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../SM'
|
|
|
|
const set: Set = {
|
|
id: 'SM8b',
|
|
name: {
|
|
ja: 'GXウルトラシャイニ',
|
|
ko: 'GX 울트라샤이니 ULTIMATE'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 150
|
|
},
|
|
releaseDate: '2018-10-05',
|
|
|
|
thirdParty: {
|
|
cardmarket: 3856
|
|
}
|
|
}
|
|
|
|
export default set
|