import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Meganium", }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 154, ], hp: 100, types: [ "Grass", ], evolveFrom: { en: "Bayleef", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Soothing Aroma", }, effect: { en: "Once during your turn (before your attack), you may flip a coin. If heads, remove 1 damage counter from each of your Pokémon that has any. This power can't be used if Meganium is affected by a Special Condition.", }, }, ], attacks: [ { cost: [ "Grass", "Grass", "Colorless", "Colorless", ], name: { en: "Poisonpowder", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-30" }, ], } export default card