mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
28 lines
348 B
TypeScript
28 lines
348 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Plasma Storm",
|
|
fr: "Tempète Plasma",
|
|
},
|
|
code: "bw8",
|
|
expansionCode: "bw",
|
|
tcgoCode: "PLS",
|
|
|
|
cardCount: {
|
|
total: 138,
|
|
official: 135
|
|
},
|
|
|
|
api: "8-black-white",
|
|
|
|
releaseDate: "2013-02-06",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|