mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 22:32:10 +00:00
27 lines
343 B
TypeScript
27 lines
343 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const swsh2: Set = {
|
|
id: "swsh2",
|
|
name: {
|
|
en: "Rebel Clash",
|
|
fr: "Clash des Rebelles"
|
|
,
|
|
},
|
|
serie: serie,
|
|
|
|
|
|
cardCount: {
|
|
total: 209,
|
|
official: 192
|
|
},
|
|
|
|
releaseDate: "2020-05-01",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true
|
|
},
|
|
}
|
|
|
|
export default swsh2 |