import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Nuzleaf", fr: "Pifeuil", }, illustrator: "Yuka Morii", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 274, ], hp: 80, types: [ "Darkness", ], evolveFrom: { en: "Seedot", fr: "Grainipiot", }, stage: "Stage1", attacks: [ { cost: [ "Darkness", ], name: { en: "Corkscrew Punch", fr: "Poing Tire-Bouchon", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Razor Wind", fr: "Coupe-Vent", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card