import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Meganium δ", }, illustrator: "Sumiyoshi Kizuki", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 154, ], hp: 110, types: [ "Fighting", ], evolveFrom: { en: "Bayleef", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Evolutionary Call", }, effect: { en: "Once during your turn, when you play Meganium from your hand to evolve 1 of your Pokémon, you may search your deck for up to 3 in any combination of Basic Pokémon or Evolution cards. Show them to your opponent and put them into your hand. Shuffle your deck afterward.", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Delta Reduction", }, effect: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).", }, damage: 40, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Mega Impact", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-30" }, ], } export default card