mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
28 lines
366 B
TypeScript
28 lines
366 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,
|
|
}
|
|
}
|
|
|
|
export default set
|