mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
407 B
TypeScript
31 lines
407 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Diamond & Pearl'
|
|
|
|
const dp7: Set = {
|
|
id: "dp7",
|
|
|
|
name: {
|
|
en: "Stormfront",
|
|
fr: "Tempête",
|
|
es: "Frente Tormentoso",
|
|
it: "Fronte di Tempesta",
|
|
de: "Sturmtief"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "SF",
|
|
|
|
cardCount: {
|
|
official: 100
|
|
},
|
|
|
|
releaseDate: "2008-11-01",
|
|
|
|
abbreviations: {
|
|
official: "FS",
|
|
fr: "TEM"
|
|
}
|
|
}
|
|
|
|
export default dp7
|