mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
32 lines
394 B
TypeScript
32 lines
394 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sun & Moon'
|
|
|
|
const sm7: Set = {
|
|
id: "sm7",
|
|
|
|
name: {
|
|
en: "Celestial Storm",
|
|
fr: "Tempête Céleste"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "CES",
|
|
|
|
cardCount: {
|
|
total: 183,
|
|
official: 168
|
|
},
|
|
|
|
releaseDate: "2018-08-03",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default sm7
|