import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Vigoroth", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 288, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Slakoth", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Focus Energy", }, effect: { en: "During your next turn, base damage of Vigoroth's slash attack is 90 instead of 40.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Slash", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card