import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Vigoroth", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 288, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Slakoth", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Rage", }, effect: { en: "Does 20 damage plus 10 more damage for each damage counter on Vigoroth.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card