mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
27 lines
325 B
TypeScript
27 lines
325 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Legend Maker"
|
|
},
|
|
code: "ex12",
|
|
expansionCode: "ex",
|
|
tcgoCode: "LM",
|
|
|
|
cardCount: {
|
|
total: 93,
|
|
official: 92
|
|
},
|
|
|
|
api: "1-ex-legend-maker",
|
|
|
|
releaseDate: "2006-02-13",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
}
|
|
}
|
|
|
|
export default set
|