import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Gardevoir V", fr: "Gardevoir V" }, illustrator: "PLANETA Mochizuki", rarity: "Ultra Rare", category: "Pokemon", set: Set, hp: 210, types: [ "Psychic", ], attacks: [ { cost: [ "Psychic", ], name: { en: "Magical Shot", fr: "Coup Magique" }, damage: 30, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Swelling Pulse", fr: "Pulsation Grandissante" }, effect: { en: "If this Pokémon was healed during this turn, this attack does 80 more damage.", fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 80 dégâts supplémentaires." }, damage: "120+", }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, regulationMark: "D" } export default card