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