mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
35 lines
443 B
TypeScript
35 lines
443 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const exu: Set = {
|
|
id: "exu",
|
|
|
|
name: {
|
|
en: "Unseen Forces Unown Collection",
|
|
fr: "Unseen Forces Unown Collection"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 28,
|
|
official: 28
|
|
},
|
|
|
|
legal: {
|
|
expanded: false,
|
|
standard: false
|
|
},
|
|
|
|
releaseDate: "2005-08-22",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default exu
|