import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Diglett", fr: "Taupiqueur", es: "Diglett", it: "Diglett", pt: "Diglett", de: "Digda" }, illustrator: "Hasegawa Saki", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Scratch", fr: "Griffe", es: "Arañazo", it: "Graffio", pt: "Arranhão", de: "Kratzer" }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "If a Diglett digs through a field, it leaves the soil perfectly tilled and ideal for planting crops." }, dexId: [50] } export default card