import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Greedent" }, illustrator: "kirisAki", rarity: "Two Diamond", category: "Pokemon", hp: 120, types: ["Colorless"], evolveFrom: { en: "Skwovet" }, description: { en: "This Pokémon makes off with heaps of fallen berries by wrapping\nthem in its tail, which is roughly twice the length of its body." }, stage: "Stage1", attacks: [{ name: { en: "Enhanced Fang" }, damage: 50, cost: ["Colorless", "Colorless", "Colorless"], effect: { en: "If this Pokémon has a Pokémon Tool attached, this attack does 50 more damage." } }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 2 } export default card