mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-22 17:09:50 +00:00
30 lines
354 B
TypeScript
30 lines
354 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Scarlet & Violet'
|
|
|
|
const set: Set = {
|
|
id: "sv10.5b",
|
|
|
|
name: {
|
|
de: "151",
|
|
en: "Black Bolt",
|
|
es: "151",
|
|
fr: "151",
|
|
it: "151",
|
|
pt: "151"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 86
|
|
},
|
|
|
|
releaseDate: "2025-07-17",
|
|
|
|
abbreviations: {
|
|
official: "BLK"
|
|
}
|
|
}
|
|
|
|
export default set
|