1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00
Florian Bouillon f8744ee6dd
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-02 17:04:19 +02:00

35 lines
440 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Black & White'
const bw8: Set = {
id: "bw8",
name: {
en: "Plasma Storm",
fr: "Tempète Plasma"
},
serie: serie,
tcgOnline: "PLS",
cardCount: {
total: 138,
official: 135
},
releaseDate: "2013-02-06",
legal: {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw8