mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
32 lines
462 B
TypeScript
32 lines
462 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,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/ex/ex12/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/ex/ex12/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|