import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Gardevoir V", }, illustrator: "Kagemaru Himeno", rarity: "Ultra Rare", category: "Pokemon", set: Set, hp: 210, types: [ "Psychic", ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card