mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
430 B
TypeScript
31 lines
430 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw8: Set = {
|
|
id: "bw8",
|
|
|
|
name: {
|
|
en: "Plasma Storm",
|
|
fr: "Tempète Plasma",
|
|
es: "Tormenta Plasma",
|
|
it: "Uragano Plasma",
|
|
de: "Plasma-Sturm",
|
|
pt: "Tempestade de Plasma"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PLS",
|
|
|
|
cardCount: {
|
|
official: 135
|
|
},
|
|
|
|
releaseDate: "2013-02-06",
|
|
|
|
abbreviations: {
|
|
official: "PLS"
|
|
}
|
|
}
|
|
|
|
export default bw8
|