mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
33 lines
485 B
TypeScript
33 lines
485 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Hidden Fates",
|
|
fr: "Destinnées Occultes",
|
|
},
|
|
code: "sm115",
|
|
expansionCode: "sm",
|
|
tcgoCode: "HIF",
|
|
|
|
cardCount: {
|
|
total: 163,
|
|
official: 68
|
|
},
|
|
|
|
api: "115-sm",
|
|
|
|
releaseDate: "2019-08-23",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/sm/sm115/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/sm/sm115/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|