import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Dugtrio", }, illustrator: "Keiji Kinebuchi", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 51, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Diglett", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Slash", }, damage: 40, }, { cost: [ "Fighting", "Fighting", "Fighting", "Fighting", ], name: { en: "Earthquake", }, effect: { en: "Does 10 damage to each of your own Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 70, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card