mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
29 lines
430 B
TypeScript
29 lines
430 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Unseen Forces Unown Collection"
|
|
},
|
|
code: "exu",
|
|
expansionCode: "ex",
|
|
|
|
cardCount: {
|
|
total: 28,
|
|
official: 28
|
|
},
|
|
|
|
releaseDate: "2005-08-22",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/univ/ex/ex10/symbol",
|
|
logo: "https://assets.tcgdex.net/en/ex/ex10/logo"
|
|
}
|
|
}
|
|
|
|
export default set
|