mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
32 lines
457 B
TypeScript
32 lines
457 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const set: Set = {
|
|
id: "swsh9",
|
|
|
|
name: {
|
|
en: "Brilliant Stars",
|
|
fr: "Stars Étincelantes",
|
|
es: "Astros Brillantes",
|
|
it: "Astri Lucenti",
|
|
de: "Strahlende Sterne",
|
|
pt: "Astros Cintilantes"
|
|
},
|
|
|
|
tcgOnline: 'BRS',
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 172
|
|
},
|
|
|
|
releaseDate: "2022-02-25",
|
|
|
|
abbreviations: {
|
|
official: "BRS",
|
|
fr: "STA"
|
|
}
|
|
}
|
|
|
|
export default set
|