mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
28 lines
343 B
TypeScript
28 lines
343 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xy8: Set = {
|
|
id: "xy8",
|
|
name: {
|
|
en: "BREAKthrough",
|
|
fr: "Impulsion Turbo"
|
|
,
|
|
},
|
|
serie: serie,
|
|
|
|
tcgOnline: "BKT",
|
|
|
|
cardCount: {
|
|
total: 164,
|
|
official: 162
|
|
},
|
|
|
|
releaseDate: "2015-11-04",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true
|
|
},
|
|
}
|
|
|
|
export default xy8 |