mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
33 lines
501 B
TypeScript
33 lines
501 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Majestic Dawn",
|
|
fr: "Aube Majestueuse",
|
|
},
|
|
code: "dp5",
|
|
expansionCode: "dp",
|
|
tcgoCode: "MD",
|
|
|
|
cardCount: {
|
|
total: 100,
|
|
official: 100
|
|
},
|
|
|
|
api: "2-diamond-pearl-majestic-dawn",
|
|
|
|
releaseDate: "2008-05-01",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/dp/dp5/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/dp/dp5/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|