import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Nuzleaf", }, illustrator: "Tomokazu Komiya", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 274, ], hp: 80, types: [ "Darkness", ], evolveFrom: { en: "Seedot", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Self Charge", }, effect: { en: "Attach a Darkness Energy card from your hand to Nuzleaf.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Corkscrew Punch", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card