import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Vigoroth", fr: "Vigoroth", }, illustrator: "Suwama Chiaki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 288, ], hp: 90, types: [ "Colorless", ], evolveFrom: { en: "Slakoth", fr: "Parecool", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", fr: "Griffe", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Reckless Charge", fr: "Attaque Imprudente", }, effect: { en: "Flip a coin. If tails, this Pokémon does 20 damage to itself.", fr: "Lancez une pièce. Si c’est pile, ce Pokémon s’inflige 20 dégâts.", }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card