mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
27 lines
316 B
TypeScript
27 lines
316 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Emerald"
|
|
},
|
|
code: "ex9",
|
|
expansionCode: "ex",
|
|
tcgoCode: "EM",
|
|
|
|
cardCount: {
|
|
total: 107,
|
|
official: 106
|
|
},
|
|
|
|
api: "1-ex-emerald",
|
|
|
|
releaseDate: "2005-05-09",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
}
|
|
}
|
|
|
|
export default set
|