mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
24 lines
296 B
TypeScript
24 lines
296 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const dc1: Set = {
|
|
id: "dc1",
|
|
|
|
name: {
|
|
en: "Double Crisis",
|
|
fr: "Double Danger",
|
|
pt: "Crise Dupla"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "DCR",
|
|
|
|
cardCount: {
|
|
official: 34
|
|
},
|
|
|
|
releaseDate: "2015-03-25"
|
|
}
|
|
|
|
export default dc1
|