import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Excadrill", fr: "Minotaupe", es: "Excadrill", it: "Excadrill", pt: "Excadrill", de: "Stalobor" }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 530, ], hp: 120, types: [ "Fighting", ], evolveFrom: { en: "Drilbur", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Tunnel Strike", }, effect: { en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Fighting", "Fighting", ], name: { en: "Dig Uppercut", }, effect: { en: "Put a card from your discard pile into your hand.", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 3 } export default card