mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
30 lines
349 B
TypeScript
30 lines
349 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex8: Set = {
|
|
id: "ex8",
|
|
|
|
name: {
|
|
en: "Deoxys",
|
|
fr: "Deoxys"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "DX",
|
|
|
|
cardCount: {
|
|
official: 107
|
|
},
|
|
|
|
releaseDate: "2005-02-01",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default ex8
|