mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
388 B
TypeScript
26 lines
388 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw7: Set = {
|
|
id: "bw7",
|
|
|
|
name: {
|
|
en: "Boundaries Crossed",
|
|
fr: "Frontières Franchies",
|
|
es: "Fronteras Cruzadas",
|
|
it: "Confini Varcati",
|
|
de: "Überschrittene Schwellen"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "BCR",
|
|
|
|
cardCount: {
|
|
official: 149
|
|
},
|
|
|
|
releaseDate: "2012-11-07"
|
|
}
|
|
|
|
export default bw7
|