import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Nuzleaf", }, illustrator: "Katsura Tabata", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 274, ], hp: 70, types: [ "Darkness", ], evolveFrom: { en: "Seedot", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", }, damage: 20, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Plunder", }, effect: { en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card