import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Vigoroth", fr: "Vigoroth", es: "Vigoroth", it: "Vigoroth", pt: "Vigoroth", de: "Muntier" }, illustrator: "match", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 288, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Slakoth", fr: "Parecool", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Ambush", fr: "Embuscade", }, effect: { en: "Flip a coin. If heads, this attack does 40 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card