mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
27 lines
396 B
TypeScript
27 lines
396 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",
|
|
pt: "Vitórias Nobres"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "NVI",
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2011-11-16"
|
|
}
|
|
|
|
export default bw3
|