mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-16 17:18:49 +00:00
24 lines
284 B
TypeScript
24 lines
284 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S1H',
|
|
name: {
|
|
ja: 'シールド',
|
|
ko: '실드'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 60
|
|
},
|
|
releaseDate: '2019-12-06',
|
|
|
|
thirdParty: {
|
|
cardmarket: 3294
|
|
}
|
|
}
|
|
|
|
export default set
|