mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
297 B
TypeScript
24 lines
297 B
TypeScript
import Set from '../../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,
|
|
}
|
|
}
|
|
|
|
export default set
|