mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
370 B
TypeScript
26 lines
370 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw3: Set = {
|
|
id: "bw3",
|
|
|
|
name: {
|
|
en: "Noble Victories",
|
|
fr: "Nobles Victoires",
|
|
es: "Nobles Victorias",
|
|
it: "Vittorie Regali",
|
|
de: "Königliche Siege"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "NVI",
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2011-11-16"
|
|
}
|
|
|
|
export default bw3
|