import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Gardevoir V", }, illustrator: "PLANETA Mochizuki", rarity: "Ultra Rare", category: "Pokemon", set: Set, hp: 210, types: [ "Psychic", ], attacks: [ { cost: [ "Psychic", ], name: { en: "Magical Shot", }, damage: 30, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Swelling Pulse", }, effect: { en: "If this Pokémon was healed during this turn, this attack does 80 more damage.", }, damage: "120+", }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card