import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Nuzleaf", }, illustrator: "Hisao Nakamura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 274, ], hp: 70, types: [ "Darkness", ], evolveFrom: { en: "Seedot", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Upper Hand", }, effect: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", }, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Feint Attack", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card