import { Card } from '../../../interfaces' import Set from '../Celebrations' const card: Card = { set: Set, variants: { normal: false, reverse: false, holo: false, firstEdition: false }, name: { en: "Flying Pikachu VMAX" }, rarity: "Ultra Rare", category: "Pokemon", hp: 310, types: ["Lightning"], stage: "VMAX" } export default card