mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
33 lines
479 B
TypeScript
33 lines
479 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Forbidden Light",
|
|
fr: "Lumière Interdite",
|
|
},
|
|
code: "sm6",
|
|
expansionCode: "sm",
|
|
tcgoCode: "FLI",
|
|
|
|
cardCount: {
|
|
total: 146,
|
|
official: 131
|
|
},
|
|
|
|
api: "6-sm",
|
|
|
|
releaseDate: "2018-05-04",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/sm/sm6/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/sm/sm6/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|