mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
28 lines
352 B
TypeScript
28 lines
352 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Noble Victories",
|
|
fr: "Nobles Victoires",
|
|
},
|
|
code: "bw3",
|
|
expansionCode: "bw",
|
|
tcgoCode: "NVI",
|
|
|
|
cardCount: {
|
|
total: 102,
|
|
official: 101
|
|
},
|
|
|
|
api: "3-black-white",
|
|
|
|
releaseDate: "2011-11-16",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|