mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
28 lines
369 B
TypeScript
28 lines
369 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Supreme Victors",
|
|
fr: "Vainqueurs Suprêmes",
|
|
},
|
|
code: "pl3",
|
|
expansionCode: "pl",
|
|
tcgoCode: "SV",
|
|
|
|
cardCount: {
|
|
total: 153,
|
|
official: 147
|
|
},
|
|
|
|
api: "3-platinum-supreme-victors",
|
|
|
|
releaseDate: "2009-08-19",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
}
|
|
}
|
|
|
|
export default set
|