import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Nuzleaf", }, 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", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Razor Wind", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card