import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Diglett" }, illustrator: "Masako Yamashita", category: "Pokemon", hp: 50, types: ["Fighting"], stage: "Basic", attacks: [{ cost: ["Fighting"], name: { en: "Mud Slap" }, damage: "20" }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It lives about one yard underground, where it feeds on plant roots. It sometimes appears aboveground.", } } export default card