mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
372 B
TypeScript
26 lines
372 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",
|
|
es: "Tormenta Celestial",
|
|
it: "Tempesta Astrale",
|
|
de: "Sturm Am Firmament"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "CES",
|
|
|
|
cardCount: {
|
|
official: 168
|
|
},
|
|
|
|
releaseDate: "2018-08-03"
|
|
}
|
|
|
|
export default sm7
|