mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
456 B
TypeScript
32 lines
456 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",
|
|
pt: "Tempestade Celestial"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "CES",
|
|
|
|
cardCount: {
|
|
official: 168
|
|
},
|
|
|
|
releaseDate: "2018-08-03",
|
|
|
|
abbreviations: {
|
|
official: "CES",
|
|
fr: "TCE"
|
|
}
|
|
}
|
|
|
|
export default sm7
|