mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
30 lines
453 B
TypeScript
30 lines
453 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Skyridge"
|
|
},
|
|
code: "ecard3",
|
|
expansionCode: "ecard",
|
|
tcgoCode: "SK",
|
|
|
|
cardCount: {
|
|
total: 182,
|
|
official: 144
|
|
},
|
|
|
|
releaseDate: "2003-05-12",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/univ/sets/ecard/ecard3/symbol",
|
|
logo: "https://assets.tcgdex.net/en/sets/ecard/ecard3/logo"
|
|
}
|
|
}
|
|
|
|
export default set
|