mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
33 lines
504 B
TypeScript
33 lines
504 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,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/pl/pl3/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/pl/pl3/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|