mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
31 lines
382 B
TypeScript
31 lines
382 B
TypeScript
import Set from '../../interfaces/Set'
|
|
import swsh from '../../expansions/swordShield'
|
|
const set: Set = {
|
|
name: {
|
|
en: "Sword & Shield"
|
|
},
|
|
|
|
expansion: swsh,
|
|
expansionCode: "swsh",
|
|
|
|
code: "swsh1",
|
|
// tcgoCode
|
|
|
|
cardCount: {
|
|
total: 216,
|
|
official: 202
|
|
},
|
|
|
|
api: '1-swsh',
|
|
|
|
releaseDate: "2020-02-07",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true
|
|
}
|
|
|
|
}
|
|
|
|
export default set
|