import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Vigoroth", fr: "Vigoroth", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 288, ], hp: 90, types: [ "Colorless", ], evolveFrom: { en: "Slakoth", fr: "Parecool", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche", }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card