mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
23 lines
346 B
TypeScript
23 lines
346 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../S'
|
|
|
|
const set: Set = {
|
|
id: 'S-P',
|
|
name: {
|
|
id: 'Kartu Promo',
|
|
th: 'การ์ดโปรโม ซอร์ด แอนด์ ชีลด์'
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 0
|
|
},
|
|
releaseDate: {
|
|
id: '2022-07-14',
|
|
th: '2022-05-11'
|
|
}
|
|
}
|
|
|
|
export default set
|