mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
28 lines
345 B
TypeScript
28 lines
345 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Dragon Majesty",
|
|
fr: "Majesté Des Dragons",
|
|
},
|
|
code: "sm75",
|
|
expansionCode: "sm",
|
|
tcgoCode: "DRM",
|
|
|
|
cardCount: {
|
|
total: 78,
|
|
official: 70
|
|
},
|
|
|
|
api: "75-sm",
|
|
|
|
releaseDate: "2018-09-07",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|