import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Vigoroth", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 288, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Slakoth", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Wake-up Punch", }, effect: { en: "If Vigoroth evolved from Slakoth during this turn and Slakoth was Asleep, this attack's base damage is 60 instead of 10.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+20" }, ], } export default card