import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Dugtrio", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 51, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Diglett", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Burrow", }, effect: { en: "Flip a coin. If heads, prevent all damage done by attacks to Dugtrio during your opponent's next turn. (any other effects of attacks still happen.)", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Dig Under", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. Don't apply Weakness or Resistance. (any other effects that would happen after applying Weakness and Resistance still happen.)", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card