import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Nuzleaf", fr: "Pifeuil", de: "Blanas" }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 274, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Seedot", }, stage: "Stage1", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Stun Spore", fr: "Para-spore", de: "Stun Spore" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed." }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Razor Wind", fr: "Coupe-vent", de: "Razor Wind" }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.", de: "Flip a coin. If tails, this attack does nothing." }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card