import { Card } from '../../../interfaces' import Set from '../Southern Islands' const card: Card = { name: { en: "Vileplume", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 45, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Gloom", }, stage: "Stage2", attacks: [ { cost: [ "Grass", ], name: { en: "Paradise Pollen", }, effect: { en: "Flip a coin. If heads, remove 2 damage counters from Vileplume (1 if it only has 1). Then, if you have any Benched Pokémon with damage counters on them, choose 1 of them and remove 2 damage counters from it (1 if it only has 1).", }, }, { cost: [ "Grass", "Grass", "Colorless", ], name: { en: "Horrid Pollen", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Confused.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card