mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
30 lines
384 B
TypeScript
30 lines
384 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex2: Set = {
|
|
id: "ex2",
|
|
|
|
name: {
|
|
en: "Sandstorm",
|
|
fr: "EX Tempête de sable",
|
|
it: "EX Tempesta di Sabbia",
|
|
de: "EX Sandsturm"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "SS",
|
|
|
|
cardCount: {
|
|
official: 100
|
|
},
|
|
|
|
releaseDate: "2003-09-18",
|
|
|
|
abbreviations: {
|
|
official: "SS",
|
|
fr: "TES"
|
|
}
|
|
}
|
|
|
|
export default ex2
|